pax_global_header00006660000000000000000000000064146515637020014523gustar00rootroot0000000000000052 comment=f4f9d900b238d03da601bf7c75cff5bcbcee6d7c sphinxcontrib-applehelp-2.0.0/000077500000000000000000000000001465156370200163645ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/.github/000077500000000000000000000000001465156370200177245ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/.github/dependabot.yml000066400000000000000000000003131465156370200225510ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" sphinxcontrib-applehelp-2.0.0/.github/workflows/000077500000000000000000000000001465156370200217615ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/.github/workflows/create-release.yml000066400000000000000000000055051465156370200253720ustar00rootroot00000000000000name: Create release on: push: tags: - "*.*.*" workflow_dispatch: permissions: contents: read jobs: publish-pypi: runs-on: ubuntu-latest name: PyPI Release environment: release permissions: id-token: write # for PyPI trusted publishing steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3 cache: pip cache-dependency-path: pyproject.toml - name: Install build dependencies (pypa/build, twine) run: | pip install -U pip pip install build twine - name: Build distribution run: python -m build - 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 check dist/* twine upload dist/* github-release: runs-on: ubuntu-latest name: GitHub release environment: release permissions: contents: write # for softprops/action-gh-release to create GitHub release steps: - uses: actions/checkout@v4 - name: Get release version id: get_version uses: actions/github-script@v7 with: script: core.setOutput('version', context.ref.replace("refs/tags/", "")) - name: Create GitHub release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: name: "sphinxcontrib-applehelp ${{ steps.get_version.outputs.version }}" body: "Changelog: https://github.com/sphinx-doc/sphinxcontrib-applehelp/blob/master/CHANGES.rst" sphinxcontrib-applehelp-2.0.0/.github/workflows/test.yml000066400000000000000000000042341465156370200234660ustar00rootroot00000000000000name: Test on: push: pull_request: workflow_dispatch: permissions: contents: read concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true env: FORCE_COLOR: "1" PYTHONDEVMODE: "1" # -X dev PYTHONWARNDEFAULTENCODING: "1" # -X warn_default_encoding jobs: tests: runs-on: ubuntu-latest strategy: matrix: python: - "3.9" - "3.10" - "3.11" - "3.12" - "3.13-dev" fail-fast: false steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v5 if: "!endsWith(matrix.python, '-dev')" with: python-version: ${{ matrix.python }} - name: Set up Python ${{ matrix.python }} (deadsnakes) uses: deadsnakes/action@v3.1.0 if: "endsWith(matrix.python, '-dev')" with: python-version: ${{ matrix.python }} - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install .[standalone,test] - name: Test with pytest run: python -m pytest -vv --durations 25 test-latest-sphinx: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v5 with: python-version: "3" - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install .[test] python -m pip install "Sphinx @ git+https://github.com/sphinx-doc/sphinx" - name: Test with pytest run: python -m pytest -vv --durations 25 lint: runs-on: ubuntu-latest strategy: matrix: env: - ruff - mypy steps: - uses: actions/checkout@v4 - name: Setup python uses: actions/setup-python@v5 with: python-version: "3" - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install --upgrade tox - name: Run tox run: tox -e ${{ matrix.env }} sphinxcontrib-applehelp-2.0.0/.github/workflows/transifex.yml000066400000000000000000000045731465156370200245200ustar00rootroot00000000000000name: Synchronise translations on: schedule: # 22:38 GMT, every Sunday. Chosen to be a random time. - cron: "38 22 * * SUN" workflow_dispatch: permissions: contents: read jobs: push: if: github.repository_owner == 'sphinx-doc' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3 - name: Install transifex client run: | mkdir -p /tmp/tx_cli && cd $_ curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash shell: bash - name: Install dependencies run: pip install --upgrade babel jinja2 - name: Extract translations from source code run: python utils/babel_runner.py extract - name: Push translations to transifex.com run: | cd sphinxcontrib/applehelp/locales /tmp/tx_cli/tx push --source --use-git-timestamps --workers 10 env: TX_TOKEN: ${{ secrets.TX_TOKEN }} pull: permissions: contents: write # for peter-evans/create-pull-request to create branch pull-requests: write # for peter-evans/create-pull-request to create a PR if: github.repository_owner == 'sphinx-doc' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3 - name: Install transifex client run: | mkdir -p /tmp/tx_cli && cd $_ curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash shell: bash - name: Install dependencies run: pip install --upgrade babel jinja2 - name: Extract translations from source code run: python utils/babel_runner.py extract - name: Pull translations from transifex.com run: | cd sphinxcontrib/applehelp/locales /tmp/tx_cli/tx pull --translations --all --force --use-git-timestamps --workers 10 env: TX_TOKEN: ${{ secrets.TX_TOKEN }} - name: Compile message catalogs run: python utils/babel_runner.py compile - name: Create Pull Request uses: peter-evans/create-pull-request@v6 with: commit-message: "[internationalisation] Update translations" branch: bot/pull-translations title: "[bot]: Update message catalogues" labels: "internals:internationalisation" sphinxcontrib-applehelp-2.0.0/.gitignore000066400000000000000000000001621465156370200203530ustar00rootroot00000000000000*.pyc .DS_Store idea/ .vscode/ .mypy_cache/ .pytest_cache/ .ruff_cache/ .tags .tox/ .venv/ venv/ build/ dist/ sphinxcontrib-applehelp-2.0.0/.ruff.toml000066400000000000000000000022331465156370200203010ustar00rootroot00000000000000target-version = "py39" # Pin Ruff to Python 3.9 output-format = "full" line-length = 95 [lint] preview = true select = [ # "ANN", # flake8-annotations "C4", # flake8-comprehensions "COM", # flake8-commas "B", # flake8-bugbear "DTZ", # flake8-datetimez "E", # pycodestyle "EM", # flake8-errmsg "EXE", # flake8-executable "F", # pyflakes "FA", # flake8-future-annotations "FLY", # flynt "FURB", # refurb "G", # flake8-logging-format "I", # isort "ICN", # flake8-import-conventions "INT", # flake8-gettext "LOG", # flake8-logging "PERF", # perflint "PGH", # pygrep-hooks "PIE", # flake8-pie "PT", # flake8-pytest-style "SIM", # flake8-simplify "SLOT", # flake8-slots "TCH", # flake8-type-checking "UP", # pyupgrade "W", # pycodestyle "YTT", # flake8-2020 ] ignore = [ "E116", "E241", "E251", ] [lint.per-file-ignores] "tests/*" = [ "ANN", # tests don't need annotations ] [lint.isort] forced-separate = [ "tests", ] required-imports = [ "from __future__ import annotations", ] sphinxcontrib-applehelp-2.0.0/CHANGES.rst000066400000000000000000000022531465156370200201700ustar00rootroot00000000000000Release 2.0.0 (2024-07-28) ========================== * Adopt Ruff * Tighten MyPy settings * Update GitHub actions versions Release 1.0.8 (2024-01-13) ========================== * Remove Sphinx as a required dependency, as circular dependencies may cause failure with package managers that expect a directed acyclic graph (DAG) of dependencies. Release 1.0.7 (2023-08-14) ========================== * Use ``os.PathLike`` over ``pathlib.Path`` Release 1.0.6 (2023-08-09) ========================== * Fix tests for Sphinx 7.1 and below Release 1.0.5 (2023-08-07) ========================== * Drop support for Python 3.8 * Raise minimum required Sphinx version to 5.0 Release 1.0.4 (2023-01-21) ========================== * Fix package name Release 1.0.3 (2023-01-08) ========================== * Drop Python 3.7 and lower * Fix deprecation warnings from Sphinx 6.1 Release 1.0.2 (2019-02-29) ========================== * Fix package metadata has broken Release 1.0.1 (2019-02-15) ========================== * Fix release package does not contain templates and locale files Release 1.0.0 (2019-02-06) ========================== * Initial release (copied from sphinx package) sphinxcontrib-applehelp-2.0.0/LICENCE.rst000066400000000000000000000026411465156370200201630ustar00rootroot00000000000000License for sphinxcontrib-applehelp =================================== Copyright (c) 2007-2019 by the Sphinx team (see https://github.com/sphinx-doc/sphinx/blob/master/AUTHORS). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. sphinxcontrib-applehelp-2.0.0/Makefile000066400000000000000000000022311465156370200200220ustar00rootroot00000000000000PYTHON ?= python3 .PHONY: all all: clean-pyc clean-backupfiles style-check type-check test .PHONY: clean clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-testfiles clean-buildfiles clean-distfiles clean-mypyfiles clean-pyc: find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} + .PHONY: clean-pycache clean-pycache: find . -name __pycache__ -exec rm -rf {} + .PHONY: clean-patchfiles clean-patchfiles: find . -name '*.orig' -exec rm -f {} + find . -name '*.rej' -exec rm -f {} + .PHONY: clean-backupfiles clean-backupfiles: find . -name '*~' -exec rm -f {} + find . -name '*.bak' -exec rm -f {} + find . -name '*.swp' -exec rm -f {} + find . -name '*.swo' -exec rm -f {} + .PHONY: clean-testfiles clean-testfiles: rm -rf tests/.coverage rm -rf tests/build rm -rf .tox/ rm -rf .cache/ .PHONY: clean-buildfiles clean-buildfiles: rm -rf build .PHONY: clean-distfiles clean-dist:files rm -rf dist/ .PHONY: clean-mypyfiles clean-mypyfiles: rm -rf .mypy_cache/ .PHONY: style-check style-check: @ruff check .PHONY: type-check type-check: mypy sphinxcontrib .PHONY: test test: @$(PYTHON) -m pytest -v $(TEST) sphinxcontrib-applehelp-2.0.0/README.rst000066400000000000000000000006511465156370200200550ustar00rootroot00000000000000======================= sphinxcontrib-applehelp ======================= sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books. For more details, please visit http://www.sphinx-doc.org/. Installing ========== Install from PyPI:: pip install -U sphinxcontrib-applehelp Contributing ============ See `CONTRIBUTING.rst`__ .. __: https://github.com/sphinx-doc/sphinx/blob/master/CONTRIBUTING.rst sphinxcontrib-applehelp-2.0.0/babel.cfg000066400000000000000000000003371465156370200201150ustar00rootroot00000000000000[extract_messages] output_file = sphinxcontrib/applehelp/locales/sphinxcontrib.applehelp.pot keywords = _ __ [compile_catalog] domain = sphinxcontrib.applehelp directory = sphinxcontrib/applehelp/locales/ use_fuzzy = true sphinxcontrib-applehelp-2.0.0/pyproject.toml000066400000000000000000000052651465156370200213100ustar00rootroot00000000000000[build-system] requires = ["flit_core>=3.7"] build-backend = "flit_core.buildapi" # project metadata [project] name = "sphinxcontrib-applehelp" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" readme = "README.rst" urls.Changelog = "https://github.com/sphinx-doc/sphinxcontrib-applehelp/blob/master/CHANGES.rst" urls.Code = "https://github.com/sphinx-doc/sphinxcontrib-applehelp/" urls.Download = "https://pypi.org/project/sphinxcontrib-applehelp/" urls.Homepage = "https://www.sphinx-doc.org/" urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx/issues/" license.text = "BSD-2-Clause" requires-python = ">=3.9" # Classifiers list: https://pypi.org/classifiers/ classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Framework :: Sphinx", "Framework :: Sphinx :: Extension", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", "Topic :: Text Processing", "Topic :: Utilities", ] dependencies = [] dynamic = ["version"] [project.optional-dependencies] test = [ "pytest", ] lint = [ "ruff==0.5.5", "mypy", "types-docutils", ] standalone = [ "Sphinx>=5", ] [[project.authors]] name = "Georg Brandl" email = "georg@python.org" [tool.flit.module] name = "sphinxcontrib.applehelp" [tool.flit.sdist] include = [ "CHANGES.rst", "LICENCE.rst", # Tests "tests/", "tox.ini", ] exclude = [ "doc/_build", ] [tool.mypy] python_version = "3.9" packages = [ "sphinxcontrib", "tests", ] exclude = [ "tests/roots", ] check_untyped_defs = true disallow_any_generics = true disallow_incomplete_defs = true disallow_subclassing_any = true disallow_untyped_calls = true disallow_untyped_decorators = true disallow_untyped_defs = true explicit_package_bases = true extra_checks = true no_implicit_reexport = true show_column_numbers = true show_error_context = true strict_optional = true warn_redundant_casts = true warn_unused_configs = true warn_unused_ignores = true enable_error_code = [ "type-arg", "redundant-self", "truthy-iterable", "ignore-without-code", "unused-awaitable", ] sphinxcontrib-applehelp-2.0.0/release-checklist.rst000066400000000000000000000016251465156370200225110ustar00rootroot00000000000000ToDo for releasing ================== preparation ----------- 1. run ``python setup.py extract_messages`` 2. run ``(cd sphinxcontrib/applehelp/locales/; tx push -s)`` 3. call for translation release ------- 1. check travis-ci testing result 2. run ``(cd sphinxcontrib/applehelp/locales/; tx pull -a -f)`` 3. run ``python setup.py compile_catalog`` 4. Run ``git add sphinxcontrib`` 5. Run ``git commit -am 'Update message catalogs'`` 6. check release version in ``sphinxcontrib/applehelp/version.py`` 7. update release date in ``CHANGES`` 8. Run ``make clean`` 9. build distribtion files: ``python setup.py release sdist bdist_wheel`` 10. make a release: ``twine upload --sign --identity= dist/`` 11. check PyPI page: https://pypi.org/p/sphinxcontrib-applehelp 12. tagging with version name. e.g.: git tag 1.1.0 13. bump version in ``sphinxcontrib/applehelp/version.py`` sphinxcontrib-applehelp-2.0.0/sphinxcontrib/000077500000000000000000000000001465156370200212565ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/000077500000000000000000000000001465156370200232305ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/__init__.py000066400000000000000000000252771465156370200253560ustar00rootroot00000000000000"""Build Apple help books.""" from __future__ import annotations import plistlib import shlex import subprocess from os import environ, path from pathlib import Path from subprocess import PIPE, STDOUT, CalledProcessError from typing import TYPE_CHECKING import sphinx from sphinx.builders.html import StandaloneHTMLBuilder from sphinx.errors import SphinxError from sphinx.locale import get_translation from sphinx.util import logging from sphinx.util.fileutil import copy_asset, copy_asset_file from sphinx.util.matching import Matcher from sphinx.util.osutil import ensuredir, make_filename if TYPE_CHECKING: from typing import Any from sphinx.application import Sphinx if sphinx.version_info[:2] >= (6, 1): from sphinx.util.display import SkipProgressMessage, progress_message else: from sphinx.util import ( # type: ignore[no-redef] SkipProgressMessage, progress_message, ) __version__ = '2.0.0' __version_info__ = (2, 0, 0) package_dir = path.abspath(path.dirname(__file__)) template_dir = path.join(package_dir, 'templates') __ = get_translation(__name__, 'console') logger = logging.getLogger(__name__) class AppleHelpIndexerFailed(SphinxError): category = __('Help indexer failed') class AppleHelpCodeSigningFailed(SphinxError): category = __('Code signing failed') class AppleHelpBuilder(StandaloneHTMLBuilder): """ Builder that outputs an Apple help book. Requires Mac OS X as it relies on the ``hiutil`` command line tool. """ name = 'applehelp' epilog = __('The help book is in %(outdir)s.\n' 'Note that won\'t be able to view it unless you put it in ' '~/Library/Documentation/Help or install it in your application ' 'bundle.') # don't copy the reST source copysource = False supported_image_types = ['image/png', 'image/gif', 'image/jpeg', 'image/tiff', 'image/jp2', 'image/svg+xml'] # don't add links add_permalinks = False # this is an embedded HTML format embedded = True # don't generate the search index or include the search page search = False def init(self) -> None: super().init() # the output files for HTML help must be .html only self.out_suffix = '.html' self.link_suffix = '.html' if self.config.applehelp_bundle_id is None: msg = __('You must set applehelp_bundle_id ' 'before building Apple Help output') raise SphinxError(msg) self.bundle_path = path.join(self.outdir, self.config.applehelp_bundle_name + '.help') self.outdir = type(self.outdir)(Path( self.bundle_path, 'Contents', 'Resources', self.config.applehelp_locale + '.lproj', )) def handle_finish(self) -> None: super().handle_finish() self.finish_tasks.add_task(self.copy_localized_files) self.finish_tasks.add_task(self.build_helpbook) @progress_message(__('copying localized files')) def copy_localized_files(self) -> None: source_dir = path.join(self.confdir, self.config.applehelp_locale + '.lproj') target_dir = self.outdir if path.isdir(source_dir): excluded = Matcher(self.config.exclude_patterns + ['**/.*']) copy_asset(source_dir, target_dir, excluded, context=self.globalcontext, renderer=self.templates) def build_helpbook(self) -> None: contents_dir = path.join(self.bundle_path, 'Contents') resources_dir = path.join(contents_dir, 'Resources') language_dir = path.join(resources_dir, self.config.applehelp_locale + '.lproj') ensuredir(language_dir) self.build_info_plist(contents_dir) self.copy_applehelp_icon(resources_dir) self.build_access_page(language_dir) self.build_helpindex(language_dir) if self.config.applehelp_codesign_identity: self.do_codesign() @progress_message(__('writing Info.plist')) def build_info_plist(self, contents_dir: str) -> None: """Construct the Info.plist file.""" info_plist = { 'CFBundleDevelopmentRegion': self.config.applehelp_dev_region, 'CFBundleIdentifier': self.config.applehelp_bundle_id, 'CFBundleInfoDictionaryVersion': '6.0', 'CFBundlePackageType': 'BNDL', 'CFBundleShortVersionString': self.config.release, 'CFBundleSignature': 'hbwr', 'CFBundleVersion': self.config.applehelp_bundle_version, 'HPDBookAccessPath': '_access.html', 'HPDBookIndexPath': 'search.helpindex', 'HPDBookTitle': self.config.applehelp_title, 'HPDBookType': '3', 'HPDBookUsesExternalViewer': False, } if self.config.applehelp_icon is not None: info_plist['HPDBookIconPath'] = path.basename(self.config.applehelp_icon) if self.config.applehelp_kb_url is not None: info_plist['HPDBookKBProduct'] = self.config.applehelp_kb_product info_plist['HPDBookKBURL'] = self.config.applehelp_kb_url if self.config.applehelp_remote_url is not None: info_plist['HPDBookRemoteURL'] = self.config.applehelp_remote_url with open(path.join(contents_dir, 'Info.plist'), 'wb') as f: plistlib.dump(info_plist, f) def copy_applehelp_icon(self, resources_dir: str) -> None: """Copy the icon, if one is supplied.""" if self.config.applehelp_icon: try: with progress_message(__('copying icon... ')): applehelp_icon = path.join(self.srcdir, self.config.applehelp_icon) copy_asset_file(applehelp_icon, resources_dir) except Exception as err: logger.warning(__('cannot copy icon file %r: %s'), applehelp_icon, err) @progress_message(__('building access page')) def build_access_page(self, language_dir: str) -> None: """Build the access page.""" context = { 'toc': self.config.master_doc + self.out_suffix, 'title': self.config.applehelp_title, } copy_asset_file(path.join(template_dir, '_access.html_t'), language_dir, context) @progress_message(__('generating help index')) def build_helpindex(self, language_dir: str) -> None: """Generate the help index.""" args = [ self.config.applehelp_indexer_path, '-Cf', path.join(language_dir, 'search.helpindex'), language_dir, ] if self.config.applehelp_index_anchors is not None: args.append('-a') if self.config.applehelp_min_term_length is not None: args += ['-m', f'{self.config.applehelp_min_term_length}'] if self.config.applehelp_stopwords is not None: args += ['-s', self.config.applehelp_stopwords] if self.config.applehelp_locale is not None: args += ['-l', self.config.applehelp_locale] if self.config.applehelp_disable_external_tools: raise SkipProgressMessage(__('you will need to index this help book with:\n %s'), ' '.join([shlex.quote(arg) for arg in args])) else: try: subprocess.run(args, stdout=PIPE, stderr=STDOUT, check=True) except OSError as err: msg = __('Command not found: %s') % args[0] raise AppleHelpIndexerFailed(msg) from err except CalledProcessError as err: raise AppleHelpIndexerFailed(err.stdout) from err @progress_message(__('signing help book')) def do_codesign(self) -> None: """If we've been asked to, sign the bundle.""" args = [ self.config.applehelp_codesign_path, '-s', self.config.applehelp_codesign_identity, '-f', ] args += self.config.applehelp_codesign_flags args.append(self.bundle_path) if self.config.applehelp_disable_external_tools: raise SkipProgressMessage(__('you will need to sign this help book with:\n %s'), ' '.join([shlex.quote(arg) for arg in args])) else: try: subprocess.run(args, stdout=PIPE, stderr=STDOUT, check=True) except OSError as err: msg = __('Command not found: %s') % args[0] raise AppleHelpCodeSigningFailed(msg) from err except CalledProcessError as err: raise AppleHelpCodeSigningFailed(err.stdout) from err def setup(app: Sphinx) -> dict[str, Any]: app.require_sphinx('5.0') app.setup_extension('sphinx.builders.html') app.add_builder(AppleHelpBuilder) app.add_message_catalog(__name__, path.join(package_dir, 'locales')) app.add_config_value('applehelp_bundle_name', lambda self: make_filename(self.project), 'applehelp') app.add_config_value('applehelp_bundle_id', None, 'applehelp', [str]) app.add_config_value('applehelp_dev_region', 'en-us', 'applehelp') app.add_config_value('applehelp_bundle_version', '1', 'applehelp') app.add_config_value('applehelp_icon', None, 'applehelp', [str]) app.add_config_value('applehelp_kb_product', lambda self: f'{make_filename(self.project)}-{self.release}', 'applehelp') app.add_config_value('applehelp_kb_url', None, 'applehelp', [str]) app.add_config_value('applehelp_remote_url', None, 'applehelp', [str]) app.add_config_value('applehelp_index_anchors', False, 'applehelp', [str]) app.add_config_value('applehelp_min_term_length', None, 'applehelp', [str]) app.add_config_value('applehelp_stopwords', lambda self: self.language or 'en', 'applehelp') app.add_config_value('applehelp_locale', lambda self: self.language or 'en', 'applehelp') app.add_config_value('applehelp_title', lambda self: self.project + ' Help', 'applehelp') app.add_config_value('applehelp_codesign_identity', lambda self: environ.get('CODE_SIGN_IDENTITY', None), 'applehelp') app.add_config_value('applehelp_codesign_flags', lambda self: shlex.split(environ.get('OTHER_CODE_SIGN_FLAGS', '')), 'applehelp') app.add_config_value('applehelp_indexer_path', '/usr/bin/hiutil', 'applehelp') app.add_config_value('applehelp_codesign_path', '/usr/bin/codesign', 'applehelp') app.add_config_value('applehelp_disable_external_tools', False, 'applehelp') return { 'version': __version__, 'parallel_read_safe': True, 'parallel_write_safe': True, } sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/000077500000000000000000000000001465156370200246525ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/.tx/000077500000000000000000000000001465156370200253635ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/.tx/config000066400000000000000000000003431465156370200265530ustar00rootroot00000000000000[main] host = https://www.transifex.com [sphinx-1.sphinxcontrib-applehelp-pot] file_filter = /LC_MESSAGES/sphinxcontrib.applehelp.po minimum_perc = 0 source_file = sphinxcontrib.applehelp.pot source_lang = en type = PO sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ar/000077500000000000000000000000001465156370200252545ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ar/LC_MESSAGES/000077500000000000000000000000001465156370200270415ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035311465156370200341640ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ar/LC_MESSAGES  !7KB-B_p0/$BVlBbw0/)Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ar Language-Team: Arabic (https://www.transifex.com/sphinx-doc/teams/36659/ar/) 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 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044421465156370200341710ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ar/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Arabic (https://www.transifex.com/sphinx-doc/teams/36659/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "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" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/bn/000077500000000000000000000000001465156370200252515ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/bn/LC_MESSAGES/000077500000000000000000000000001465156370200270365ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034071465156370200341630ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/bn/LC_MESSAGES  !7KB-B_p0/$.B%BSk0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: bn Language-Team: Bengali (https://www.transifex.com/sphinx-doc/teams/36659/bn/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043201465156370200341610ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/bn/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Bengali (https://www.transifex.com/sphinx-doc/teams/36659/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ca/000077500000000000000000000000001465156370200252355ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ca/LC_MESSAGES/000077500000000000000000000000001465156370200270225ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034071465156370200341470ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ca/LC_MESSAGES  !7KB-B_p0/$.B%BSk0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ca Language-Team: Catalan (https://www.transifex.com/sphinx-doc/teams/36659/ca/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043201465156370200341450ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ca/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Catalan (https://www.transifex.com/sphinx-doc/teams/36659/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cak/000077500000000000000000000000001465156370200254105ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cak/LC_MESSAGES/000077500000000000000000000000001465156370200271755ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000033411465156370200343170ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cak/LC_MESSAGES  !7KB-B_p0/$B-E[m0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: cak Language-Team: Kaqchikel (https://www.transifex.com/sphinx-doc/teams/36659/cak/) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043241465156370200343240ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cak/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Kaqchikel (https://www.transifex.com/sphinx-doc/teams/36659/cak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cs/000077500000000000000000000000001465156370200252575ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cs/LC_MESSAGES/000077500000000000000000000000001465156370200270445ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035251465156370200341720ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cs/LC_MESSAGES  !7KB-B_p0/$>Rh|B^s0/%Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: cs Language-Team: Czech (https://www.transifex.com/sphinx-doc/teams/36659/cs/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044361465156370200341770ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cs/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Czech (https://www.transifex.com/sphinx-doc/teams/36659/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "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" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cy/000077500000000000000000000000001465156370200252655ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cy/LC_MESSAGES/000077500000000000000000000000001465156370200270525ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034621465156370200342000ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cy/LC_MESSAGES  !7KB-B_p0/$/EYB;Pm~0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: cy Language-Team: Welsh (https://www.transifex.com/sphinx-doc/teams/36659/cy/) Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043731465156370200342050ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/cy/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Welsh (https://www.transifex.com/sphinx-doc/teams/36659/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/da/000077500000000000000000000000001465156370200252365ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/da/LC_MESSAGES/000077500000000000000000000000001465156370200270235ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034061465156370200341470ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/da/LC_MESSAGES  !7KB-B_p0/$-B$ARj0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: da Language-Team: Danish (https://www.transifex.com/sphinx-doc/teams/36659/da/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043171465156370200341540ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/da/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Danish (https://www.transifex.com/sphinx-doc/teams/36659/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/de/000077500000000000000000000000001465156370200252425ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/de/LC_MESSAGES/000077500000000000000000000000001465156370200270275ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034061465156370200341530ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/de/LC_MESSAGES  !7KB-B_p0/$-B$ARj0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: de Language-Team: German (https://www.transifex.com/sphinx-doc/teams/36659/de/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043171465156370200341600ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/de/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: German (https://www.transifex.com/sphinx-doc/teams/36659/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/el/000077500000000000000000000000001465156370200252525ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/el/LC_MESSAGES/000077500000000000000000000000001465156370200270375ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034051465156370200341620ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/el/LC_MESSAGES  !7KB-B_p0/$,B#@Qi0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: el Language-Team: Greek (https://www.transifex.com/sphinx-doc/teams/36659/el/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043161465156370200341670ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/el/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Greek (https://www.transifex.com/sphinx-doc/teams/36659/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eo/000077500000000000000000000000001465156370200252555ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eo/LC_MESSAGES/000077500000000000000000000000001465156370200270425ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034111465156370200341620ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eo/LC_MESSAGES  !7KB-B_p0/$0B'DUm0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: eo Language-Team: Esperanto (https://www.transifex.com/sphinx-doc/teams/36659/eo/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043221465156370200341670ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eo/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Esperanto (https://www.transifex.com/sphinx-doc/teams/36659/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/es/000077500000000000000000000000001465156370200252615ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/es/LC_MESSAGES/000077500000000000000000000000001465156370200270465ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034411465156370200341710ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/es/LC_MESSAGES  !7KB-B_p0/$ #7B+.Zm0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: Edward Villegas-Pulgarin, 2019 Language: es Language-Team: Spanish (https://www.transifex.com/sphinx-doc/teams/36659/es/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedComando no encontrado: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pageno se puede copiar archivo de ícono %r: %scopiando ícono...copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000046151465156370200342000ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/es/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # Edward Villegas-Pulgarin, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: Edward Villegas-Pulgarin, 2019\n" "Language-Team: Spanish (https://www.transifex.com/sphinx-doc/teams/36659/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "copiando ícono..." #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "no se puede copiar archivo de ícono %r: %s" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "Comando no encontrado: %s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/et/000077500000000000000000000000001465156370200252625ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/et/LC_MESSAGES/000077500000000000000000000000001465156370200270475ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034431465156370200341740ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/et/LC_MESSAGES  !7KB-B_p0/$ "6B+-Yo0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: Ivar Smolin , 2019 Language: et Language-Team: Estonian (https://www.transifex.com/sphinx-doc/teams/36659/et/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedKäsku ei leitud: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pageikoonifaili %r pole võimalik kopeerida: %sikooni kopeerimine...copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000046221465156370200341770ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/et/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # Ivar Smolin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: Ivar Smolin , 2019\n" "Language-Team: Estonian (https://www.transifex.com/sphinx-doc/teams/36659/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "ikooni kopeerimine..." #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "ikoonifaili %r pole võimalik kopeerida: %s" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "Käsku ei leitud: %s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eu/000077500000000000000000000000001465156370200252635ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eu/LC_MESSAGES/000077500000000000000000000000001465156370200270505ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034061465156370200341740ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eu/LC_MESSAGES  !7KB-B_p0/$-B$ARj0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: eu Language-Team: Basque (https://www.transifex.com/sphinx-doc/teams/36659/eu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043171465156370200342010ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/eu/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Basque (https://www.transifex.com/sphinx-doc/teams/36659/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fa/000077500000000000000000000000001465156370200252405ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fa/LC_MESSAGES/000077500000000000000000000000001465156370200270255ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034061465156370200341510ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fa/LC_MESSAGES  !7KB-B_p0/$-B$ARj0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: fa Language-Team: Persian (https://www.transifex.com/sphinx-doc/teams/36659/fa/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043171465156370200341560ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fa/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Persian (https://www.transifex.com/sphinx-doc/teams/36659/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fi/000077500000000000000000000000001465156370200252505ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fi/LC_MESSAGES/000077500000000000000000000000001465156370200270355ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034071465156370200341620ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fi/LC_MESSAGES  !7KB-B_p0/$.B%BSk0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: fi Language-Team: Finnish (https://www.transifex.com/sphinx-doc/teams/36659/fi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043201465156370200341600ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fi/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Finnish (https://www.transifex.com/sphinx-doc/teams/36659/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fr/000077500000000000000000000000001465156370200252615ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fr/LC_MESSAGES/000077500000000000000000000000001465156370200270465ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035661465156370200342010ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fr/LC_MESSAGES  !7KB-B_p0/$"3VBW'l!-.GCode signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: LAURENT Raphaël , 2019 Language: fr Language-Team: French (https://www.transifex.com/sphinx-doc/teams/36659/fr/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Signature du code en écheccommande introuvable : %sl'indexation de l'aide a échouéeLe manuel d'aide se trouve dans %(outdir)s. Vous ne pourrez pas voir ce dernier tant que vous ne le mettez pas dans ~/Library/Documentation/Help ou que vous l'installiez avec l'application.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecopie du fichier icon impossible %r: %scopie du fichier icon...copying localized filesgénération de l'index de l'aidesigning help bookécriture du fichier info.plistvous devez indexer ce manuel d'aide avec : %svous devrez signer ce livre d’aide avec : %ssphinxcontrib.applehelp.po000066400000000000000000000054771465156370200342070ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/fr/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # LAURENT Raphaël , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: LAURENT Raphaël , 2019\n" "Language-Team: French (https://www.transifex.com/sphinx-doc/teams/36659/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "l'indexation de l'aide a échouée" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "Signature du code en échec" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" "Le manuel d'aide se trouve dans %(outdir)s. Vous ne pourrez pas voir ce " "dernier tant que vous ne le mettez pas dans ~/Library/Documentation/Help ou " "que vous l'installiez avec l'application." #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "écriture du fichier info.plist" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "copie du fichier icon..." #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "copie du fichier icon impossible %r: %s" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "génération de l'index de l'aide" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "vous devez indexer ce manuel d'aide avec : %s" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "commande introuvable : %s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "vous devrez signer ce livre d’aide avec : %s" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/he/000077500000000000000000000000001465156370200252465ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/he/LC_MESSAGES/000077500000000000000000000000001465156370200270335ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035441465156370200341620ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/he/LC_MESSAGES  !7KB-B_p0/($MawB*m0/4Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: he Language-Team: Hebrew (https://www.transifex.com/sphinx-doc/teams/36659/he/) Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044551465156370200341670ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/he/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Hebrew (https://www.transifex.com/sphinx-doc/teams/36659/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi/000077500000000000000000000000001465156370200252525ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi/LC_MESSAGES/000077500000000000000000000000001465156370200270375ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034051465156370200341620ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi/LC_MESSAGES  !7KB-B_p0/$,B#@Qi0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: hi Language-Team: Hindi (https://www.transifex.com/sphinx-doc/teams/36659/hi/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043161465156370200341670ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Hindi (https://www.transifex.com/sphinx-doc/teams/36659/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi_IN/000077500000000000000000000000001465156370200256405ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi_IN/LC_MESSAGES/000077500000000000000000000000001465156370200274255ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034231465156370200345500ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi_IN/LC_MESSAGES  !7KB-B_p0/$&:B1N_w0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: hi_IN Language-Team: Hindi (India) (https://www.transifex.com/sphinx-doc/teams/36659/hi_IN/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043341465156370200345550ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hi_IN/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Hindi (India) (https://www.transifex.com/sphinx-doc/teams/36659/hi_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hr/000077500000000000000000000000001465156370200252635ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hr/LC_MESSAGES/000077500000000000000000000000001465156370200270505ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035201465156370200341710ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hr/LC_MESSAGES  !7KB-B_p0/$9McwBYn0/ Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: hr Language-Team: Croatian (https://www.transifex.com/sphinx-doc/teams/36659/hr/) Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044311465156370200341760ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hr/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Croatian (https://www.transifex.com/sphinx-doc/teams/36659/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hu/000077500000000000000000000000001465156370200252665ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hu/LC_MESSAGES/000077500000000000000000000000001465156370200270535ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034111465156370200341730ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hu/LC_MESSAGES  !7KB-B_p0/$0B'DUm0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: hu Language-Team: Hungarian (https://www.transifex.com/sphinx-doc/teams/36659/hu/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043221465156370200342000ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/hu/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Hungarian (https://www.transifex.com/sphinx-doc/teams/36659/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/id/000077500000000000000000000000001465156370200252465ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/id/LC_MESSAGES/000077500000000000000000000000001465156370200270335ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035001465156370200341520ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/id/LC_MESSAGES  !7KB-B_p0/$-R1'Fn92 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: Tumpal Gemelli, 2019 Language: id Language-Team: Indonesian (https://www.transifex.com/sphinx-doc/teams/36659/id/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Signing kode gagalTidak ditemukan perintah: %sindexer Bantuan gagalBuku bantuan terdapat di %(outdir)s. Catatan bahwa tidak dapat melihatnya kecuali anda menyimpannya di ~/Library/Documentation/Help atau memasangnya pada bundle aplikasi anda.Anda harus mengatur applehelp_bundle_id sebelum dapat membagun keluaran Apple Helpbuilding access pagetidak dapat menyalin berkas icon %r: %smenyalin icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistanda akan perlu mengindeks buku bantuan ini dengan : %sanda akan perlu sign buku bantuan ini dengan: %ssphinxcontrib.applehelp.po000066400000000000000000000054421465156370200341640ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/id/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # Tumpal Gemelli, 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: Tumpal Gemelli, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/sphinx-doc/teams/36659/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "indexer Bantuan gagal" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "Signing kode gagal" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" "Buku bantuan terdapat di %(outdir)s.\n" "Catatan bahwa tidak dapat melihatnya kecuali anda menyimpannya di ~/Library/Documentation/Help atau memasangnya pada bundle aplikasi anda." #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" "Anda harus mengatur applehelp_bundle_id sebelum dapat membagun keluaran " "Apple Help" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "menyalin icon... " #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "tidak dapat menyalin berkas icon %r: %s" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" "anda akan perlu mengindeks buku bantuan ini dengan :\n" " %s" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "Tidak ditemukan perintah: %s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" "anda akan perlu sign buku bantuan ini dengan:\n" " %s" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/it/000077500000000000000000000000001465156370200252665ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/it/LC_MESSAGES/000077500000000000000000000000001465156370200270535ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034071465156370200342000ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/it/LC_MESSAGES  !7KB-B_p0/$.B%BSk0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: it Language-Team: Italian (https://www.transifex.com/sphinx-doc/teams/36659/it/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043201465156370200341760ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/it/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Italian (https://www.transifex.com/sphinx-doc/teams/36659/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ja/000077500000000000000000000000001465156370200252445ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ja/LC_MESSAGES/000077500000000000000000000000001465156370200270315ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034011465156370200341500ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ja/LC_MESSAGES  !7KB-B_p0/$(B <Me{0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ja Language-Team: Japanese (https://www.transifex.com/sphinx-doc/teams/36659/ja/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043121465156370200341550ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ja/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Japanese (https://www.transifex.com/sphinx-doc/teams/36659/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ko/000077500000000000000000000000001465156370200252635ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ko/LC_MESSAGES/000077500000000000000000000000001465156370200270505ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000037101465156370200341720ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ko/LC_MESSAGES  !7KB-B_p0/$%$?TP:l! F=CCode signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: YT H , 2019 Language: ko Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 코드 서명 실패명령을 찾을 수 없습니다: %s도움말 인덱서 실패도움말 책은 %(outdir)s에 있습니다. 이것을 ~/Library/Documentation/Help에 넣거나 응용 프로그램 번들에 설치해야만 볼 수 있다는 점에 주의하십시오.Apple 도움말을 작성하기 전에 applehelp_bundle_id를 설정해야 합니다접근 페이지 빌드 중아이콘 파일 %r을(를) 복사할 수 없습니다: %s아이콘 복사 중…지역화 된 파일 복사 중도움말 인덱스 생성 중도움말 책을 서명하는 중Info.plist 파일 쓰는 중다음 명령으로 이 도움말 책을 색인화해야 합니다: %s다음 명령으로 이 도움말 책을 서명해야 합니다: %ssphinxcontrib.applehelp.po000066400000000000000000000057771465156370200342140ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ko/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # YT H , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: YT H , 2019\n" "Language-Team: Korean (https://www.transifex.com/sphinx-doc/teams/36659/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "도움말 인덱서 실패" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "코드 서명 실패" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" "도움말 책은 %(outdir)s에 있습니다.\n" "이것을 ~/Library/Documentation/Help에 넣거나 응용 프로그램 번들에 설치해야만 볼 수 있다는 점에 주의하십시오." #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "Apple 도움말을 작성하기 전에 applehelp_bundle_id를 설정해야 합니다" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "지역화 된 파일 복사 중" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "Info.plist 파일 쓰는 중" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "아이콘 복사 중…" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "아이콘 파일 %r을(를) 복사할 수 없습니다: %s" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "접근 페이지 빌드 중" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "도움말 인덱스 생성 중" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "다음 명령으로 이 도움말 책을 색인화해야 합니다: %s" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "명령을 찾을 수 없습니다: %s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "도움말 책을 서명하는 중" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "다음 명령으로 이 도움말 책을 서명해야 합니다: %s" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lt/000077500000000000000000000000001465156370200252715ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lt/LC_MESSAGES/000077500000000000000000000000001465156370200270565ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000036151465156370200342040ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lt/LC_MESSAGES  !7KB-B_p0/Q$vBS0,/]Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: lt Language-Team: Lithuanian (https://www.transifex.com/sphinx-doc/teams/36659/lt/) Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000045261465156370200342110ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lt/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Lithuanian (https://www.transifex.com/sphinx-doc/teams/36659/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lv/000077500000000000000000000000001465156370200252735ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lv/LC_MESSAGES/000077500000000000000000000000001465156370200270605ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034521465156370200342050ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lv/LC_MESSAGES  !7KB-B_p0/$'=QB3Hev0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: lv Language-Team: Latvian (https://www.transifex.com/sphinx-doc/teams/36659/lv/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043631465156370200342120ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/lv/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Latvian (https://www.transifex.com/sphinx-doc/teams/36659/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/mk/000077500000000000000000000000001465156370200252615ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/mk/LC_MESSAGES/000077500000000000000000000000001465156370200270465ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034501465156370200341710ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/mk/LC_MESSAGES  !7KB-B_p0/$%;OB1Fct0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: mk Language-Team: Macedonian (https://www.transifex.com/sphinx-doc/teams/36659/mk/) Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043611465156370200341760ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/mk/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Macedonian (https://www.transifex.com/sphinx-doc/teams/36659/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nb_NO/000077500000000000000000000000001465156370200256455ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nb_NO/LC_MESSAGES/000077500000000000000000000000001465156370200274325ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034401465156370200345540ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nb_NO/LC_MESSAGES  !7KB-B_p0/$ 3GB)>[l0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: nb_NO Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/sphinx-doc/teams/36659/nb_NO/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043511465156370200345610ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nb_NO/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/sphinx-doc/teams/36659/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ne/000077500000000000000000000000001465156370200252545ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ne/LC_MESSAGES/000077500000000000000000000000001465156370200270415ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034061465156370200341650ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ne/LC_MESSAGES  !7KB-B_p0/$-B$ARj0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ne Language-Team: Nepali (https://www.transifex.com/sphinx-doc/teams/36659/ne/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043171465156370200341720ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ne/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Nepali (https://www.transifex.com/sphinx-doc/teams/36659/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nl/000077500000000000000000000000001465156370200252635ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nl/LC_MESSAGES/000077500000000000000000000000001465156370200270505ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034051465156370200341730ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nl/LC_MESSAGES  !7KB-B_p0/$,B#@Qi0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: nl Language-Team: Dutch (https://www.transifex.com/sphinx-doc/teams/36659/nl/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043161465156370200342000ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/nl/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Dutch (https://www.transifex.com/sphinx-doc/teams/36659/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pl/000077500000000000000000000000001465156370200252655ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pl/LC_MESSAGES/000077500000000000000000000000001465156370200270525ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000036561465156370200342050ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pl/LC_MESSAGES  !7KB-B_p0/h$Bq(:0M/~Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: m_aciek , 2019 Language: pl Language-Team: Polish (https://www.transifex.com/sphinx-doc/teams/36659/pl/) Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedNie znaleziono polecenia: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %skopiowanie ikony...copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000050231465156370200341760ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pl/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # Tawez, 2019 # m_aciek , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: m_aciek , 2019\n" "Language-Team: Polish (https://www.transifex.com/sphinx-doc/teams/36659/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "kopiowanie ikony..." #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "Nie znaleziono polecenia: %s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt/000077500000000000000000000000001465156370200252755ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt/LC_MESSAGES/000077500000000000000000000000001465156370200270625ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034121465156370200342030ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt/LC_MESSAGES  !7KB-B_p0/$1B(EVn0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: pt Language-Team: Portuguese (https://www.transifex.com/sphinx-doc/teams/36659/pt/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043231465156370200342100ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Portuguese (https://www.transifex.com/sphinx-doc/teams/36659/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_BR/000077500000000000000000000000001465156370200256605ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_BR/LC_MESSAGES/000077500000000000000000000000001465156370200274455ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034301465156370200345660ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_BR/LC_MESSAGES  !7KB-B_p0/$+?B!6Sd|0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: pt_BR Language-Team: Portuguese (Brazil) (https://www.transifex.com/sphinx-doc/teams/36659/pt_BR/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043411465156370200345730ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_BR/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/sphinx-doc/teams/36659/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_PT/000077500000000000000000000000001465156370200257005ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_PT/LC_MESSAGES/000077500000000000000000000000001465156370200274655ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034331465156370200346110ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_PT/LC_MESSAGES  !7KB-B_p0/$.BB$9Vg0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: pt_PT Language-Team: Portuguese (Portugal) (https://www.transifex.com/sphinx-doc/teams/36659/pt_PT/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043441465156370200346160ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/pt_PT/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Portuguese (Portugal) (https://www.transifex.com/sphinx-doc/teams/36659/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ro/000077500000000000000000000000001465156370200252725ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ro/LC_MESSAGES/000077500000000000000000000000001465156370200270575ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034611465156370200342040ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ro/LC_MESSAGES  !7KB-B_p0/$.DXB:Ol}0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ro Language-Team: Romanian (https://www.transifex.com/sphinx-doc/teams/36659/ro/) Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043721465156370200342110ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ro/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Romanian (https://www.transifex.com/sphinx-doc/teams/36659/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ru/000077500000000000000000000000001465156370200253005ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ru/LC_MESSAGES/000077500000000000000000000000001465156370200270655ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000036211465156370200342100ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ru/LC_MESSAGES  !7KB-B_p0/U$zBW 00/aCode signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ru Language-Team: Russian (https://www.transifex.com/sphinx-doc/teams/36659/ru/) Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000045321465156370200342150ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ru/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Russian (https://www.transifex.com/sphinx-doc/teams/36659/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/si/000077500000000000000000000000001465156370200252655ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/si/LC_MESSAGES/000077500000000000000000000000001465156370200270525ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034071465156370200341770ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/si/LC_MESSAGES  !7KB-B_p0/$.B%BSk0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: si Language-Team: Sinhala (https://www.transifex.com/sphinx-doc/teams/36659/si/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043201465156370200341750ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/si/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Sinhala (https://www.transifex.com/sphinx-doc/teams/36659/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sk/000077500000000000000000000000001465156370200252675ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sk/LC_MESSAGES/000077500000000000000000000000001465156370200270545ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035211465156370200341760ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sk/LC_MESSAGES  !7KB-B_p0/$:NdxBZo0/!Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: sk Language-Team: Slovak (https://www.transifex.com/sphinx-doc/teams/36659/sk/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044321465156370200342030ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sk/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Slovak (https://www.transifex.com/sphinx-doc/teams/36659/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sl/000077500000000000000000000000001465156370200252705ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sl/LC_MESSAGES/000077500000000000000000000000001465156370200270555ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034751465156370200342070ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sl/LC_MESSAGES  !7KB-B_p0/$&:PdBF[x0/ Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: sl Language-Team: Slovenian (https://www.transifex.com/sphinx-doc/teams/36659/sl/) Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044061465156370200342050ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sl/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Slovenian (https://www.transifex.com/sphinx-doc/teams/36659/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sphinxcontrib.applehelp.pot000066400000000000000000000042301465156370200322400ustar00rootroot00000000000000# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-26 12:47+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in " "~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr/000077500000000000000000000000001465156370200252765ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr/LC_MESSAGES/000077500000000000000000000000001465156370200270635ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035211465156370200342050ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr/LC_MESSAGES  !7KB-B_p0/$:NdxBZo0/!Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: sr Language-Team: Serbian (https://www.transifex.com/sphinx-doc/teams/36659/sr/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044321465156370200342120ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Serbian (https://www.transifex.com/sphinx-doc/teams/36659/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr@latin/000077500000000000000000000000001465156370200264265ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr@latin/LC_MESSAGES/000077500000000000000000000000001465156370200302135ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000035471465156370200353450ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr@latin/LC_MESSAGES  !7KB-B_p0/+$PdzB-p0/7Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: sr@latin Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/) Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000044601465156370200353430ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sr@latin/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Serbian (Latin) (https://www.transifex.com/sphinx-doc/teams/36659/sr%40latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sv/000077500000000000000000000000001465156370200253025ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sv/LC_MESSAGES/000077500000000000000000000000001465156370200270675ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034071465156370200342140ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sv/LC_MESSAGES  !7KB-B_p0/$.B%BSk0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: sv Language-Team: Swedish (https://www.transifex.com/sphinx-doc/teams/36659/sv/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043201465156370200342120ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/sv/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Swedish (https://www.transifex.com/sphinx-doc/teams/36659/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ta/000077500000000000000000000000001465156370200252565ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ta/LC_MESSAGES/000077500000000000000000000000001465156370200270435ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034051465156370200341660ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ta/LC_MESSAGES  !7KB-B_p0/$,B#@Qi0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ta Language-Team: Tamil (https://www.transifex.com/sphinx-doc/teams/36659/ta/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043161465156370200341730ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ta/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Tamil (https://www.transifex.com/sphinx-doc/teams/36659/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/tr/000077500000000000000000000000001465156370200252775ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/tr/LC_MESSAGES/000077500000000000000000000000001465156370200270645ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034061465156370200342100ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/tr/LC_MESSAGES  !7KB-B_p0/$-B$ARj0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: tr Language-Team: Turkish (https://www.transifex.com/sphinx-doc/teams/36659/tr/) Plural-Forms: nplurals=2; plural=(n > 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043171465156370200342150ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/tr/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Turkish (https://www.transifex.com/sphinx-doc/teams/36659/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/uk_UA/000077500000000000000000000000001465156370200256565ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/uk_UA/LC_MESSAGES/000077500000000000000000000000001465156370200274435ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000037671465156370200346010ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/uk_UA/LC_MESSAGES  !7KB-B_p0/$ B2C[q0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: uk_UA Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/sphinx-doc/teams/36659/uk_UA/) Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000047001465156370200345700ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/uk_UA/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/sphinx-doc/teams/36659/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ur/000077500000000000000000000000001465156370200253005ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ur/LC_MESSAGES/000077500000000000000000000000001465156370200270655ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034041465156370200342070ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ur/LC_MESSAGES  !7KB-B_p0/$+B "?Ph~0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: ur Language-Team: Urdu (https://www.transifex.com/sphinx-doc/teams/36659/ur/) Plural-Forms: nplurals=2; plural=(n != 1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043151465156370200342140ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/ur/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Urdu (https://www.transifex.com/sphinx-doc/teams/36659/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/vi/000077500000000000000000000000001465156370200252705ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/vi/LC_MESSAGES/000077500000000000000000000000001465156370200270555ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034031465156370200341760ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/vi/LC_MESSAGES  !7KB-B_p0/$*B !>Og}0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: vi Language-Team: Vietnamese (https://www.transifex.com/sphinx-doc/teams/36659/vi/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043141465156370200342030ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/vi/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Vietnamese (https://www.transifex.com/sphinx-doc/teams/36659/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_CN/000077500000000000000000000000001465156370200256535ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_CN/LC_MESSAGES/000077500000000000000000000000001465156370200274405ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034311465156370200345620ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_CN/LC_MESSAGES  !7KB-B_p0/$-LB< Qr!Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: Yinian Chin , 2019 Language: zh_CN Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 代码签名失败命令不存在:%s构建帮助文件索引失败帮助文件存放在 %(outdir)s 中。 注意你现在无法直接调用它,你需要把它放到 ~/Library/Documentation/Help 目录下或是安装到应用捆绑中。构建 Apple 帮助文件输出前必须设置 applehelp_bundle_idbuilding access page无法复制图标文件 %r:%s复制图标……copying localized filesgenerating help indexsigning help bookwriting Info.plist索引此帮助文件需要: %s签名帮助文件需要: %ssphinxcontrib.applehelp.po000066400000000000000000000054101465156370200345640ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_CN/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # # Translators: # Yinian Chin , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Last-Translator: Yinian Chin , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/sphinx-doc/teams/36659/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "构建帮助文件索引失败" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "代码签名失败" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" "帮助文件存放在 %(outdir)s 中。\n" "注意你现在无法直接调用它,你需要把它放到 ~/Library/Documentation/Help 目录下或是安装到应用捆绑中。" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "构建 Apple 帮助文件输出前必须设置 applehelp_bundle_id" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "复制图标……" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "无法复制图标文件 %r:%s" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" "索引此帮助文件需要:\n" "%s" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "命令不存在:%s" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" "签名帮助文件需要:\n" "%s" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_TW/000077500000000000000000000000001465156370200257055ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/000077500000000000000000000000001465156370200274725ustar00rootroot00000000000000sphinxcontrib.applehelp.mo000066400000000000000000000034171465156370200346200ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES  !7KB-B_p0/$ "6B-J[s0/Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %sProject-Id-Version: sphinxcontrib-applehelp 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2019-01-20 16:59+0900 PO-Revision-Date: 2019-01-20 07:59+0000 Last-Translator: FULL NAME Language: zh_TW Language-Team: Chinese (Taiwan) (https://www.transifex.com/sphinx-doc/teams/36659/zh_TW/) Plural-Forms: nplurals=1; plural=0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.6.0 Code signing failedCommand not found: %sHelp indexer failedThe help book is in %(outdir)s. Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle.You must set applehelp_bundle_id before building Apple Help outputbuilding access pagecannot copy icon file %r: %scopying icon... copying localized filesgenerating help indexsigning help bookwriting Info.plistyou will need to index this help book with: %syou will need to sign this help book with: %ssphinxcontrib.applehelp.po000066400000000000000000000043301465156370200346160ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES# Translations template for sphinxcontrib-applehelp. # Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the # sphinxcontrib-applehelp project. # FIRST AUTHOR , 2019. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: sphinxcontrib-applehelp 1.0.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2019-01-20 16:59+0900\n" "PO-Revision-Date: 2019-01-20 07:59+0000\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/sphinx-doc/teams/36659/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.6.0\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #: sphinxcontrib/applehelp/__init__.py:39 msgid "Help indexer failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:43 msgid "Code signing failed" msgstr "" #: sphinxcontrib/applehelp/__init__.py:52 #, python-format msgid "" "The help book is in %(outdir)s.\n" "Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." msgstr "" #: sphinxcontrib/applehelp/__init__.py:79 msgid "You must set applehelp_bundle_id before building Apple Help output" msgstr "" #: sphinxcontrib/applehelp/__init__.py:96 msgid "copying localized files" msgstr "" #: sphinxcontrib/applehelp/__init__.py:123 msgid "writing Info.plist" msgstr "" #: sphinxcontrib/applehelp/__init__.py:161 msgid "copying icon... " msgstr "" #: sphinxcontrib/applehelp/__init__.py:165 #, python-format msgid "cannot copy icon file %r: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:167 msgid "building access page" msgstr "" #: sphinxcontrib/applehelp/__init__.py:177 msgid "generating help index" msgstr "" #: sphinxcontrib/applehelp/__init__.py:201 #, python-format msgid "" "you will need to index this help book with:\n" " %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:207 #: sphinxcontrib/applehelp/__init__.py:232 #, python-format msgid "Command not found: %s" msgstr "" #: sphinxcontrib/applehelp/__init__.py:211 msgid "signing help book" msgstr "" #: sphinxcontrib/applehelp/__init__.py:226 #, python-format msgid "" "you will need to sign this help book with:\n" " %s" msgstr "" sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/py.typed000066400000000000000000000000001465156370200247150ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/templates/000077500000000000000000000000001465156370200252265ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/sphinxcontrib/applehelp/templates/_access.html_t000066400000000000000000000006231465156370200300400ustar00rootroot00000000000000 {{ title|e }} sphinxcontrib-applehelp-2.0.0/tests/000077500000000000000000000000001465156370200175265ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/tests/conftest.py000066400000000000000000000003471465156370200217310ustar00rootroot00000000000000from __future__ import annotations from pathlib import Path import pytest pytest_plugins = 'sphinx.testing.fixtures' @pytest.fixture(scope='session') def rootdir() -> Path: return Path(__file__).resolve().parent / 'roots' sphinxcontrib-applehelp-2.0.0/tests/roots/000077500000000000000000000000001465156370200206745ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/tests/roots/test-basic/000077500000000000000000000000001465156370200227325ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/tests/roots/test-basic/conf.py000066400000000000000000000000001465156370200242170ustar00rootroot00000000000000sphinxcontrib-applehelp-2.0.0/tests/roots/test-basic/index.rst000066400000000000000000000000261465156370200245710ustar00rootroot00000000000000test-basic ========== sphinxcontrib-applehelp-2.0.0/tests/test_applehelp.py000066400000000000000000000031301465156370200231060ustar00rootroot00000000000000"""Test for applehelp extension.""" from __future__ import annotations import plistlib from pathlib import Path from typing import TYPE_CHECKING import pytest if TYPE_CHECKING: from sphinx.application import Sphinx def check_structure(outdir: Path) -> None: contentsdir = outdir / 'Contents' assert contentsdir.is_dir() assert (contentsdir / 'Info.plist').is_file() with contentsdir.joinpath('Info.plist').open('rb') as f: plist = plistlib.load(f) assert plist assert len(plist) assert plist.get('CFBundleIdentifier', None) == 'org.sphinx-doc.Sphinx.help' assert (contentsdir / 'Resources').is_dir() assert (contentsdir / 'Resources' / 'en.lproj').is_dir() def check_localization(outdir: Path) -> None: lprojdir = outdir / 'Contents' / 'Resources' / 'en.lproj' assert (lprojdir / 'localized.txt').is_file() @pytest.mark.sphinx( 'applehelp', testroot='basic', srcdir='applehelp_output', confoverrides={'applehelp_bundle_id': 'org.sphinx-doc.Sphinx.help', 'applehelp_disable_external_tools': True}) def test_applehelp_output(app: Sphinx) -> None: LPROJ_DIR = Path(app.srcdir / 'en.lproj') LPROJ_DIR.mkdir(parents=True, exist_ok=True) LPROJ_DIR.joinpath('localized.txt').touch() app.builder.build_all() # Have to use bundle_path, not outdir, because we alter the latter # to point to the lproj directory so that the HTML arrives in the # correct location. bundle_path = Path(app.builder.bundle_path) # type: ignore[attr-defined] check_structure(bundle_path) check_localization(bundle_path) sphinxcontrib-applehelp-2.0.0/tox.ini000066400000000000000000000013401465156370200176750ustar00rootroot00000000000000[tox] minversion = 2.4.0 envlist = py{39,310,311,312,313}, ruff, mypy isolated_build = True [testenv] usedevelop = True passenv = https_proxy http_proxy no_proxy COLORTERM PERL PERL5LIB PYTEST_ADDOPTS TERM deps= pytest sphinx @ git+https://github.com/sphinx-doc/sphinx extras= test setenv = PYTHONWARNINGS = all,ignore::DeprecationWarning:docutils.io PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:} --color yes commands= python -X dev -X warn_default_encoding -m pytest --durations 25 {posargs} [testenv:ruff] description = Run style checks. extras= lint commands= ruff check [testenv:mypy] description = Run type checks. extras= lint commands= mypy