Merge branch 'main' into sysvers
This commit is contained in:
commit
c7701709ef
460 changed files with 9635 additions and 5522 deletions
|
|
@ -16,7 +16,7 @@ runs:
|
|||
tar -xaf dosfstools-4.2.tar.gz
|
||||
cd dosfstools-4.2
|
||||
./configure
|
||||
make -j 2
|
||||
make -j4
|
||||
cd src
|
||||
echo >> $GITHUB_PATH $(pwd)
|
||||
shell: bash
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ runs:
|
|||
shell: bash
|
||||
|
||||
- name: Cache IDF submodules
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
.git/modules/ports/espressif/esp-idf
|
||||
|
|
@ -26,7 +26,7 @@ runs:
|
|||
key: submodules-idf-${{ steps.idf-commit.outputs.commit }}
|
||||
|
||||
- name: Cache IDF tools
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ env.IDF_TOOLS_PATH }}
|
||||
key: ${{ runner.os }}-${{ env.pythonLocation }}-tools-idf-${{ steps.idf-commit.outputs.commit }}
|
||||
|
|
|
|||
4
.github/actions/deps/python/action.yml
vendored
4
.github/actions/deps/python/action.yml
vendored
|
|
@ -16,7 +16,7 @@ runs:
|
|||
- name: Cache python dependencies
|
||||
id: cache-python-deps
|
||||
if: inputs.action == 'cache'
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: .cp_tools
|
||||
key: ${{ runner.os }}-${{ env.pythonLocation }}-tools-cp-${{ hashFiles('requirements-dev.txt') }}
|
||||
|
|
@ -24,7 +24,7 @@ runs:
|
|||
- name: Restore python dependencies
|
||||
id: restore-python-deps
|
||||
if: inputs.action == 'restore'
|
||||
uses: actions/cache/restore@v3
|
||||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
path: .cp_tools
|
||||
key: ${{ runner.os }}-${{ env.pythonLocation }}-tools-cp-${{ hashFiles('requirements-dev.txt') }}
|
||||
|
|
|
|||
4
.github/actions/deps/submodules/action.yml
vendored
4
.github/actions/deps/submodules/action.yml
vendored
|
|
@ -48,7 +48,7 @@ runs:
|
|||
|
||||
- name: Cache submodules
|
||||
if: ${{ inputs.action == 'cache' }}
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ".git/modules/\n${{ join(fromJSON(steps.create-submodule-status.outputs.submodules), '\n') }}"
|
||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
||||
|
|
@ -56,7 +56,7 @@ runs:
|
|||
|
||||
- name: Restore submodules
|
||||
if: ${{ inputs.action == 'restore' }}
|
||||
uses: actions/cache/restore@v3
|
||||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
path: ".git/modules/\n${{ join(fromJSON(steps.create-submodule-status.outputs.submodules), '\n') }}"
|
||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
||||
|
|
|
|||
6
.github/actions/mpy_cross/action.yml
vendored
6
.github/actions/mpy_cross/action.yml
vendored
|
|
@ -16,7 +16,7 @@ runs:
|
|||
id: download-mpy-cross
|
||||
if: inputs.download == 'true'
|
||||
continue-on-error: true
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: mpy-cross
|
||||
path: mpy-cross/build
|
||||
|
|
@ -28,7 +28,7 @@ runs:
|
|||
|
||||
- name: Build mpy-cross
|
||||
if: inputs.download == 'false' || steps.download-mpy-cross.outcome == 'failure'
|
||||
run: make -C mpy-cross -j2
|
||||
run: make -C mpy-cross -j4
|
||||
shell: bash
|
||||
env:
|
||||
CP_VERSION: ${{ inputs.cp-version }}
|
||||
|
|
@ -36,7 +36,7 @@ runs:
|
|||
- name: Upload mpy-cross
|
||||
if: inputs.download == 'false' || steps.download-mpy-cross.outcome == 'failure'
|
||||
continue-on-error: true
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: mpy-cross
|
||||
path: mpy-cross/build/mpy-cross
|
||||
|
|
|
|||
14
.github/workflows/build-boards.yml
vendored
14
.github/workflows/build-boards.yml
vendored
|
|
@ -26,22 +26,27 @@ jobs:
|
|||
board: ${{ fromJSON(inputs.boards) }}
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
|
||||
- name: Set up port
|
||||
id: set-up-port
|
||||
uses: ./.github/actions/deps/ports
|
||||
with:
|
||||
board: ${{ matrix.board }}
|
||||
|
||||
- name: Set up submodules
|
||||
id: set-up-submodules
|
||||
uses: ./.github/actions/deps/submodules
|
||||
|
||||
- name: Set up external
|
||||
uses: ./.github/actions/deps/external
|
||||
with:
|
||||
|
|
@ -67,18 +72,21 @@ jobs:
|
|||
|
||||
- name: Set up build failure matcher
|
||||
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
||||
|
||||
- name: Build board
|
||||
run: python3 -u build_release_files.py
|
||||
working-directory: tools
|
||||
env:
|
||||
BOARDS: ${{ matrix.board }}
|
||||
PULL: ${{ github.event.number }}
|
||||
HEAD_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.board }}
|
||||
path: bin/${{ matrix.board }}
|
||||
|
||||
- name: Upload to S3
|
||||
uses: ./.github/actions/upload_aws
|
||||
with:
|
||||
|
|
|
|||
9
.github/workflows/build-mpy-cross.yml
vendored
9
.github/workflows/build-mpy-cross.yml
vendored
|
|
@ -28,12 +28,13 @@ jobs:
|
|||
OS_static-raspbian: linux-raspbian
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Set up submodules
|
||||
|
|
@ -53,7 +54,7 @@ jobs:
|
|||
sudo apt-get install -y mingw-w64
|
||||
|
||||
- name: Build mpy-cross.${{ matrix.mpy-cross }}
|
||||
run: make -C mpy-cross -j2 -f Makefile.${{ matrix.mpy-cross }}
|
||||
run: make -C mpy-cross -j4 -f Makefile.${{ matrix.mpy-cross }}
|
||||
|
||||
- name: Set output
|
||||
run: |
|
||||
|
|
@ -61,7 +62,7 @@ jobs:
|
|||
echo >> $GITHUB_ENV "OS=${{ env[format('OS_{0}', matrix.mpy-cross)] }}"
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: mpy-cross.${{ env.EX }}
|
||||
path: mpy-cross/build-${{ matrix.mpy-cross }}/mpy-cross.${{ env.EX }}
|
||||
|
|
|
|||
52
.github/workflows/build.yml
vendored
52
.github/workflows/build.yml
vendored
|
|
@ -28,12 +28,13 @@ jobs:
|
|||
env:
|
||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Duplicate USB VID/PID check
|
||||
|
|
@ -108,12 +109,13 @@ jobs:
|
|||
CP_VERSION: ${{ needs.scheduler.outputs.cp-version }}
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Set up submodules
|
||||
|
|
@ -124,21 +126,21 @@ jobs:
|
|||
python3 --version
|
||||
msgfmt --version
|
||||
- name: Build mpy-cross
|
||||
run: make -C mpy-cross -j2
|
||||
- uses: actions/upload-artifact@v3
|
||||
run: make -C mpy-cross -j4
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: mpy-cross-macos-11-x64
|
||||
path: mpy-cross/build/mpy-cross
|
||||
- name: Build mpy-cross (arm64)
|
||||
run: make -C mpy-cross -j2 -f Makefile.m1 V=2
|
||||
- uses: actions/upload-artifact@v3
|
||||
run: make -C mpy-cross -j4 -f Makefile.m1 V=2
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: mpy-cross-macos-11-arm64
|
||||
path: mpy-cross/build-arm64/mpy-cross-arm64
|
||||
- name: Make universal binary
|
||||
run: lipo -create -output mpy-cross-macos-universal mpy-cross/build/mpy-cross mpy-cross/build-arm64/mpy-cross-arm64
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: mpy-cross-macos-11-universal
|
||||
path: mpy-cross-macos-universal
|
||||
|
|
@ -163,12 +165,13 @@ jobs:
|
|||
CP_VERSION: ${{ needs.scheduler.outputs.cp-version }}
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Set up submodules
|
||||
|
|
@ -179,23 +182,23 @@ jobs:
|
|||
sudo apt-get install -y latexmk librsvg2-bin texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
|
||||
pip install -r requirements-doc.txt
|
||||
- name: Build and Validate Stubs
|
||||
run: make check-stubs -j2
|
||||
- uses: actions/upload-artifact@v3
|
||||
run: make check-stubs -j4
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: stubs
|
||||
path: circuitpython-stubs/dist/*
|
||||
- name: Test Documentation Build (HTML)
|
||||
run: sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: docs
|
||||
name: docs-html
|
||||
path: _build/html
|
||||
- name: Test Documentation Build (LaTeX/PDF)
|
||||
run: |
|
||||
make latexpdf
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: docs
|
||||
name: docs-latexpdf
|
||||
path: _build/latex
|
||||
- name: Upload to S3
|
||||
uses: ./.github/actions/upload_aws
|
||||
|
|
@ -260,24 +263,25 @@ jobs:
|
|||
which python; python --version; python -c "import cascadetoml"
|
||||
which python3; python3 --version; python3 -c "import cascadetoml"
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up submodules
|
||||
uses: ./.github/actions/deps/submodules
|
||||
- name: build mpy-cross
|
||||
run: make -j2 -C mpy-cross
|
||||
run: make -j4 -C mpy-cross
|
||||
- name: build rp2040
|
||||
run: make -j2 -C ports/raspberrypi BOARD=adafruit_feather_rp2040 TRANSLATION=de_DE
|
||||
run: make -j4 -C ports/raspberrypi BOARD=adafruit_feather_rp2040 TRANSLATION=de_DE
|
||||
- name: build samd21
|
||||
run: make -j2 -C ports/atmel-samd BOARD=feather_m0_express TRANSLATION=zh_Latn_pinyin
|
||||
run: make -j4 -C ports/atmel-samd BOARD=feather_m0_express TRANSLATION=zh_Latn_pinyin
|
||||
- name: build samd51
|
||||
run: make -j2 -C ports/atmel-samd BOARD=feather_m4_express TRANSLATION=es
|
||||
run: make -j4 -C ports/atmel-samd BOARD=feather_m4_express TRANSLATION=es
|
||||
- name: build nrf
|
||||
run: make -j2 -C ports/nrf BOARD=feather_nrf52840_express TRANSLATION=fr
|
||||
run: make -j4 -C ports/nrf BOARD=feather_nrf52840_express TRANSLATION=fr
|
||||
- name: build stm
|
||||
run: make -j2 -C ports/stm BOARD=feather_stm32f405_express TRANSLATION=pt_BR
|
||||
run: make -j4 -C ports/stm BOARD=feather_stm32f405_express TRANSLATION=pt_BR
|
||||
# I gave up trying to do esp builds on windows when I saw
|
||||
# ERROR: Platform MINGW64_NT-10.0-17763-x86_64 appears to be unsupported
|
||||
# https://github.com/espressif/esp-idf/issues/7062
|
||||
|
|
|
|||
5
.github/workflows/create-website-pr.yml
vendored
5
.github/workflows/create-website-pr.yml
vendored
|
|
@ -17,12 +17,13 @@ jobs:
|
|||
env:
|
||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Set up submodules
|
||||
|
|
|
|||
6
.github/workflows/custom-board-build.yml
vendored
6
.github/workflows/custom-board-build.yml
vendored
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
run: |
|
||||
> custom-build && git add custom-build
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Set up port
|
||||
|
|
@ -81,10 +81,10 @@ jobs:
|
|||
riscv64-unknown-elf-gcc --version || true
|
||||
mkfs.fat --version || true
|
||||
- name: Build board
|
||||
run: make -j2 ${{ inputs.flags }} BOARD=${{ inputs.board }} DEBUG=${{ inputs.debug && '1' || '0' }} TRANSLATION=${{ inputs.language }}
|
||||
run: make -j4 ${{ inputs.flags }} BOARD=${{ inputs.board }} DEBUG=${{ inputs.debug && '1' || '0' }} TRANSLATION=${{ inputs.language }}
|
||||
working-directory: ports/${{ steps.set-up-port.outputs.port }}
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ inputs.board }}-${{ inputs.language }}-${{ inputs.version }}${{ inputs.flags != '' && '-custom' || '' }}${{ inputs.debug && '-debug' || '' }}
|
||||
path: ports/${{ steps.set-up-port.outputs.port }}/build-${{ inputs.board }}/firmware.*
|
||||
|
|
|
|||
7
.github/workflows/pre-commit.yml
vendored
7
.github/workflows/pre-commit.yml
vendored
|
|
@ -17,12 +17,13 @@ jobs:
|
|||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- name: Set up submodules
|
||||
|
|
@ -40,7 +41,7 @@ jobs:
|
|||
run: git diff > ~/pre-commit.patch
|
||||
- name: Upload patch
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: patch
|
||||
path: ~/pre-commit.patch
|
||||
|
|
|
|||
11
.github/workflows/run-tests.yml
vendored
11
.github/workflows/run-tests.yml
vendored
|
|
@ -24,12 +24,13 @@ jobs:
|
|||
TEST_native_mpy: --via-mpy --emit native -d basics float micropython
|
||||
steps:
|
||||
- name: Set up repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: false
|
||||
show-progress: false
|
||||
fetch-depth: 1
|
||||
- name: Set up python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Set up submodules
|
||||
|
|
@ -44,12 +45,12 @@ jobs:
|
|||
with:
|
||||
cp-version: ${{ inputs.cp-version }}
|
||||
- name: Build unix port
|
||||
run: make -C ports/unix VARIANT=coverage -j2
|
||||
run: make -C ports/unix VARIANT=coverage -j4
|
||||
- name: Run tests
|
||||
run: ./run-tests.py -j2 ${{ env[format('TEST_{0}', matrix.test)] }}
|
||||
run: ./run-tests.py -j4 ${{ env[format('TEST_{0}', matrix.test)] }}
|
||||
working-directory: tests
|
||||
- name: Print failure info
|
||||
run: ./run-tests.py -j2 --print-failures
|
||||
run: ./run-tests.py -j4 --print-failures
|
||||
if: failure()
|
||||
working-directory: tests
|
||||
- name: Build native modules
|
||||
|
|
|
|||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -306,7 +306,8 @@
|
|||
url = https://github.com/elecfreaks/circuitpython_picoed.git
|
||||
[submodule "ports/raspberrypi/lib/cyw43-driver"]
|
||||
path = ports/raspberrypi/lib/cyw43-driver
|
||||
url = https://github.com/georgerobotics/cyw43-driver.git
|
||||
url = https://github.com/adafruit/cyw43-driver
|
||||
branch = circuitpython9
|
||||
[submodule "ports/raspberrypi/lib/lwip"]
|
||||
path = ports/raspberrypi/lib/lwip
|
||||
url = https://github.com/adafruit/lwip.git
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -271,6 +271,8 @@ stubs:
|
|||
@cp setup.py-stubs circuitpython-stubs/setup.py
|
||||
@cp README.rst-stubs circuitpython-stubs/README.rst
|
||||
@cp MANIFEST.in-stubs circuitpython-stubs/MANIFEST.in
|
||||
@$(PYTHON) tools/board_stubs/build_board_specific_stubs/board_stub_builder.py
|
||||
@cp -r tools/board_stubs/circuitpython_setboard circuitpython-stubs/circuitpython_setboard
|
||||
@$(PYTHON) -m build circuitpython-stubs
|
||||
|
||||
.PHONY: check-stubs
|
||||
|
|
|
|||
|
|
@ -52,27 +52,9 @@ SRC_QSTR += $(SRC_C) $(SRC_BINDINGS_EXPANDED) $(STM_SRC_C)
|
|||
The `Makefile` defines the modules to build and adds the sources to include the `shared-bindings` version and the `common-hal` version within the port specific directory. You may comment out certain subfolders to reduce the number of modules to add but don't comment out individual classes. It won't compile then.
|
||||
|
||||
### Hooking the modules in
|
||||
Built in modules are typically defined in `mpconfigport.h`. To add support you should have something like:
|
||||
|
||||
```
|
||||
extern const struct _mp_obj_module_t microcontroller_module;
|
||||
extern const struct _mp_obj_module_t analogio_module;
|
||||
extern const struct _mp_obj_module_t digitalio_module;
|
||||
extern const struct _mp_obj_module_t pulseio_module;
|
||||
extern const struct _mp_obj_module_t busio_module;
|
||||
extern const struct _mp_obj_module_t board_module;
|
||||
extern const struct _mp_obj_module_t time_module;
|
||||
extern const struct _mp_obj_module_t neopixel_write_module;
|
||||
|
||||
#define MICROPY_PORT_BUILTIN_MODULES \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_microcontroller), (mp_obj_t)µcontroller_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_analogio), (mp_obj_t)&analogio_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_digitalio), (mp_obj_t)&digitalio_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_pulseio), (mp_obj_t)&pulseio_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_busio), (mp_obj_t)&busio_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_board), (mp_obj_t)&board_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_time), (mp_obj_t)&time_module }, \
|
||||
{ MP_OBJ_NEW_QSTR(MP_QSTR_neopixel_write),(mp_obj_t)&neopixel_write_module } \
|
||||
Modules are registered by the macro `MP_REGISTER_MODULE` from `py/obj.h`. The macro takes two arguments: the module name as a QSTR and the module object itself. The `board` module is registered like so:
|
||||
```py
|
||||
MP_REGISTER_MODULE(MP_QSTR_board, board_module);
|
||||
```
|
||||
|
||||
### Implementing the Common HAL
|
||||
|
|
|
|||
|
|
@ -173,6 +173,11 @@ def get_settings_from_makefile(port_dir, board_name):
|
|||
|
||||
This list must explicitly include any setting queried by tools/ci_set_matrix.py.
|
||||
"""
|
||||
if os.getenv('NO_BINDINGS_MATRIX'):
|
||||
return {
|
||||
'CIRCUITPY_BUILD_EXTENSIONS': '.bin'
|
||||
}
|
||||
|
||||
contents = subprocess.run(
|
||||
["make", "-C", port_dir, "-f", "Makefile", f"BOARD={board_name}", "print-CFLAGS", "print-CIRCUITPY_BUILD_EXTENSIONS", "print-FROZEN_MPY_DIRS", "print-SRC_PATTERNS", "print-SRC_SUPERVISOR"],
|
||||
encoding="utf-8",
|
||||
|
|
|
|||
|
|
@ -71,8 +71,7 @@ Read-only characteristic that returns the UTF-8 encoded version string.
|
|||
If the keys `CIRCUITPY_WIFI_SSID` and `CIRCUITPY_WIFI_PASSWORD` are set in `settings.toml`,
|
||||
CircuitPython will automatically connect to the given Wi-Fi network on boot and upon reload.
|
||||
|
||||
If `CIRCUITPY_WEB_API_PASSWORD` is also set, the web workflow will also start.
|
||||
The web workflow will only be enabled if the Wi-Fi connection succeeds upon boot.
|
||||
If `CIRCUITPY_WEB_API_PASSWORD` is set, MDNS and the http server for the web workflow will also start.
|
||||
|
||||
The webserver is on port 80 unless overridden by `CIRCUITPY_WEB_API_PORT`. It also enables MDNS.
|
||||
The name of the board as advertised to the network can be overridden by `CIRCUITPY_WEB_INSTANCE_NAME`.
|
||||
|
|
@ -84,7 +83,7 @@ Here is an example `/settings.toml`:
|
|||
CIRCUITPY_WIFI_SSID="scottswifi"
|
||||
CIRCUITPY_WIFI_PASSWORD="secretpassword"
|
||||
|
||||
# To enable the the webserver. Change this too!
|
||||
# To enable the web workflow. Change this too!
|
||||
# Leave the User field blank in the browser.
|
||||
CIRCUITPY_WEB_API_PASSWORD="passw0rd"
|
||||
|
||||
|
|
@ -165,6 +164,13 @@ Returns a JSON representation of the directory.
|
|||
* `403 Forbidden` - No `CIRCUITPY_WEB_API_PASSWORD` set
|
||||
* `404 Not Found` - Missing directory
|
||||
|
||||
Returns directory information:
|
||||
* `free`: Count of free blocks on the disk holding this directory.
|
||||
* `total`: Total blocks that make up the disk holding this directory.
|
||||
* `block_size`: Size of a block in bytes.
|
||||
* `writable`: True when CircuitPython and the web workflow can write to the disk. USB may claim a disk instead.
|
||||
* `files`: Array of objects. One for each file.
|
||||
|
||||
Returns information about each file in the directory:
|
||||
|
||||
* `name` - File name. No trailing `/` on directory names
|
||||
|
|
@ -179,14 +185,20 @@ curl -v -u :passw0rd -H "Accept: application/json" -L --location-trusted http://
|
|||
```
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"name": "world.txt",
|
||||
"directory": false,
|
||||
"modified_ns": 946934328000000000,
|
||||
"file_size": 12
|
||||
}
|
||||
]
|
||||
{
|
||||
"free": 451623,
|
||||
"total": 973344,
|
||||
"block_size": 32768,
|
||||
"writable": true,
|
||||
"files": [
|
||||
{
|
||||
"name": "world.txt",
|
||||
"directory": false,
|
||||
"modified_ns": 946934328000000000,
|
||||
"file_size": 12
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
##### PUT
|
||||
|
|
@ -196,7 +208,7 @@ time resolution) used for the directories modification time. The RTC time will u
|
|||
|
||||
Returns:
|
||||
|
||||
* `204 No Content` - Directory exists
|
||||
* `204 No Content` - Directory or file exists
|
||||
* `201 Created` - Directory created
|
||||
* `401 Unauthorized` - Incorrect password
|
||||
* `403 Forbidden` - No `CIRCUITPY_WEB_API_PASSWORD` set
|
||||
|
|
@ -373,10 +385,10 @@ curl -v -L http://circuitpython.local/cp/devices.json
|
|||
Returns information about the attached disk(s). A list of objects, one per disk.
|
||||
|
||||
* `root`: Filesystem path to the root of the disk.
|
||||
* `free`: Count of free bytes on the disk.
|
||||
* `free`: Count of free blocks on the disk.
|
||||
* `total`: Total blocks that make up the disk.
|
||||
* `block_size`: Size of a block in bytes.
|
||||
* `writable`: True when CircuitPython and the web workflow can write to the disk. USB may claim a disk instead.
|
||||
* `total`: Total bytes that make up the disk.
|
||||
|
||||
Example:
|
||||
```sh
|
||||
|
|
@ -405,7 +417,7 @@ This is an authenticated endpoint in both modes.
|
|||
|
||||
Returns information about the device.
|
||||
|
||||
* `web_api_version`: Between `1` and `3`. This versions the rest of the API and new versions may not be backwards compatible. See below for more info.
|
||||
* `web_api_version`: Between `1` and `4`. This versions the rest of the API and new versions may not be backwards compatible. See below for more info.
|
||||
* `version`: CircuitPython build version.
|
||||
* `build_date`: CircuitPython build date.
|
||||
* `board_name`: Human readable name of the board.
|
||||
|
|
@ -467,3 +479,5 @@ Only one WebSocket at a time is supported.
|
|||
* `1` - Initial version.
|
||||
* `2` - Added `/cp/diskinfo.json`.
|
||||
* `3` - Changed `/cp/diskinfo.json` to return a list in preparation for multi-disk support.
|
||||
* `4` - Changed directory json to an object with additional data. File list is under `files` and is
|
||||
the same as the old format.
|
||||
|
|
|
|||
|
|
@ -48,6 +48,8 @@
|
|||
#define MP_BLOCKDEV_FLAG_USB_WRITABLE (0x0010)
|
||||
// Bit set when the above flag is checked before opening a file for write.
|
||||
#define MP_BLOCKDEV_FLAG_CONCURRENT_WRITE_PROTECTED (0x0020)
|
||||
// Bit set when something has claimed the right to mutate the blockdev.
|
||||
#define MP_BLOCKDEV_FLAG_LOCKED (0x0040)
|
||||
|
||||
// constants for block protocol ioctl
|
||||
#define MP_BLOCKDEV_IOCTL_INIT (1)
|
||||
|
|
|
|||
|
|
@ -30,12 +30,41 @@
|
|||
#include "py/mperrno.h"
|
||||
#include "extmod/vfs.h"
|
||||
|
||||
#if CIRCUITPY_SDCARDIO
|
||||
#include "shared-bindings/sdcardio/SDCard.h"
|
||||
#endif
|
||||
#if CIRCUITPY_SDIOIO
|
||||
#include "shared-bindings/sdioio/SDCard.h"
|
||||
#endif
|
||||
|
||||
|
||||
#if MICROPY_VFS
|
||||
|
||||
void mp_vfs_blockdev_init(mp_vfs_blockdev_t *self, mp_obj_t bdev) {
|
||||
mp_load_method(bdev, MP_QSTR_readblocks, self->readblocks);
|
||||
mp_load_method_maybe(bdev, MP_QSTR_writeblocks, self->writeblocks);
|
||||
mp_load_method_maybe(bdev, MP_QSTR_ioctl, self->u.ioctl);
|
||||
|
||||
// CIRCUITPY-CHANGE: Support native SD cards.
|
||||
#if CIRCUITPY_SDCARDIO
|
||||
if (mp_obj_get_type(bdev) == &sdcardio_SDCard_type) {
|
||||
self->flags |= MP_BLOCKDEV_FLAG_NATIVE | MP_BLOCKDEV_FLAG_HAVE_IOCTL;
|
||||
self->readblocks[0] = mp_const_none;
|
||||
self->readblocks[1] = bdev;
|
||||
self->readblocks[2] = (mp_obj_t)sdcardio_sdcard_readblocks; // native version
|
||||
self->writeblocks[0] = mp_const_none;
|
||||
self->writeblocks[1] = bdev;
|
||||
self->writeblocks[2] = (mp_obj_t)sdcardio_sdcard_writeblocks; // native version
|
||||
self->u.ioctl[0] = mp_const_none;
|
||||
self->u.ioctl[1] = bdev;
|
||||
self->u.ioctl[2] = (mp_obj_t)sdcardio_sdcard_ioctl; // native version
|
||||
}
|
||||
#endif
|
||||
#if CIRCUITPY_SDIOIO
|
||||
if (mp_obj_get_type(bdev) == &sdioio_SDCard_type) {
|
||||
// TODO: Enable native blockdev for SDIO too.
|
||||
}
|
||||
#endif
|
||||
if (self->u.ioctl[0] != MP_OBJ_NULL) {
|
||||
// Device supports new block protocol, so indicate it
|
||||
self->flags |= MP_BLOCKDEV_FLAG_HAVE_IOCTL;
|
||||
|
|
@ -48,8 +77,10 @@ void mp_vfs_blockdev_init(mp_vfs_blockdev_t *self, mp_obj_t bdev) {
|
|||
|
||||
int mp_vfs_blockdev_read(mp_vfs_blockdev_t *self, size_t block_num, size_t num_blocks, uint8_t *buf) {
|
||||
if (self->flags & MP_BLOCKDEV_FLAG_NATIVE) {
|
||||
mp_uint_t (*f)(uint8_t *, uint32_t, uint32_t) = (void *)(uintptr_t)self->readblocks[2];
|
||||
return f(buf, block_num, num_blocks);
|
||||
// CIRCUITPY-CHANGE: Pass the blockdev object into native readblocks so
|
||||
// it has the corresponding state.
|
||||
mp_uint_t (*f)(mp_obj_t self, uint8_t *, uint32_t, uint32_t) = (void *)(uintptr_t)self->readblocks[2];
|
||||
return f(self->readblocks[1], buf, block_num, num_blocks);
|
||||
} else {
|
||||
mp_obj_array_t ar = {{&mp_type_bytearray}, BYTEARRAY_TYPECODE, 0, num_blocks *self->block_size, buf};
|
||||
self->readblocks[2] = MP_OBJ_NEW_SMALL_INT(block_num);
|
||||
|
|
@ -80,8 +111,10 @@ int mp_vfs_blockdev_write(mp_vfs_blockdev_t *self, size_t block_num, size_t num_
|
|||
}
|
||||
|
||||
if (self->flags & MP_BLOCKDEV_FLAG_NATIVE) {
|
||||
mp_uint_t (*f)(const uint8_t *, uint32_t, uint32_t) = (void *)(uintptr_t)self->writeblocks[2];
|
||||
return f(buf, block_num, num_blocks);
|
||||
// CIRCUITPY-CHANGE: Pass the blockdev object into native readblocks so
|
||||
// it has the corresponding state.
|
||||
mp_uint_t (*f)(mp_obj_t self, const uint8_t *, uint32_t, uint32_t) = (void *)(uintptr_t)self->writeblocks[2];
|
||||
return f(self->writeblocks[1], buf, block_num, num_blocks);
|
||||
} else {
|
||||
mp_obj_array_t ar = {{&mp_type_bytearray}, BYTEARRAY_TYPECODE, 0, num_blocks *self->block_size, (void *)buf};
|
||||
self->writeblocks[2] = MP_OBJ_NEW_SMALL_INT(block_num);
|
||||
|
|
@ -112,6 +145,16 @@ int mp_vfs_blockdev_write_ext(mp_vfs_blockdev_t *self, size_t block_num, size_t
|
|||
|
||||
mp_obj_t mp_vfs_blockdev_ioctl(mp_vfs_blockdev_t *self, uintptr_t cmd, uintptr_t arg) {
|
||||
if (self->flags & MP_BLOCKDEV_FLAG_HAVE_IOCTL) {
|
||||
// CIRCUITPY-CHANGE: Support native IOCTL so it can run outside of the VM.
|
||||
if (self->flags & MP_BLOCKDEV_FLAG_NATIVE) {
|
||||
size_t out_value;
|
||||
bool (*f)(mp_obj_t self, uint32_t, uint32_t, size_t *) = (void *)(uintptr_t)self->u.ioctl[2];
|
||||
bool b = f(self->u.ioctl[1], cmd, arg, &out_value);
|
||||
if (!b) {
|
||||
return mp_const_none;
|
||||
}
|
||||
return MP_OBJ_NEW_SMALL_INT(out_value);
|
||||
}
|
||||
// New protocol with ioctl
|
||||
self->u.ioctl[2] = MP_OBJ_NEW_SMALL_INT(cmd);
|
||||
self->u.ioctl[3] = MP_OBJ_NEW_SMALL_INT(arg);
|
||||
|
|
|
|||
|
|
@ -34,6 +34,10 @@ typedef struct _fs_user_mount_t {
|
|||
mp_obj_base_t base;
|
||||
mp_vfs_blockdev_t blockdev;
|
||||
FATFS fatfs;
|
||||
|
||||
// CIRCUITPY-CHANGE: Count the users that are manipulating the blockdev via
|
||||
// native fatfs so we can lock and unlock the blockdev.
|
||||
int8_t lock_count;
|
||||
} fs_user_mount_t;
|
||||
|
||||
extern const byte fresult_to_errno_table[20];
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 267219f161d002e7a724859e01d000a88dc08683
|
||||
Subproject commit 76dd808fa4a8bc5c20fa2660d3b45ce9b33e2be6
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit f975229b3f0182e7ea857446ca610dee6e54cc95
|
||||
Subproject commit f90a7cbccfd698f6c2fb36bf787295bcf9ddb910
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 1f35b4a552045bd1a216507b17833960364dce2c
|
||||
Subproject commit 0adb75b898a133d929eb14baa2e54b7e9e23899c
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 4754bf3e5fdb559be9ea085bfb65bd435039e887
|
||||
Subproject commit 178dbc30ff660fb93dc8fd8d1c193a00067398e4
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 8efd9f76ceaeae0fc43892108ff71335b8da1888
|
||||
Subproject commit 5417f6225fb0573853972852ebdfa3aa080fed93
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 3203fbaea4f6ebc97ff7c3a1dc8dfaa899ff6216
|
||||
Subproject commit b9c8eedd7b2c7e657ebb8195dde7a6190ae9b866
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit db3b03c4c68a4d4d32a3d145f6fad8935a89a345
|
||||
Subproject commit 7469b5fd5e24b856f01d59a03eed1c8e7049f0d9
|
||||
|
|
@ -19,7 +19,8 @@
|
|||
|
||||
#include "py/runtime.h"
|
||||
#include "py/mperrno.h"
|
||||
#include "lib/mbedtls/include/mbedtls/x509_crt.h"
|
||||
#include "mbedtls/version.h"
|
||||
#include "mbedtls/x509_crt.h"
|
||||
#include "lib/mbedtls_config/crt_bundle.h"
|
||||
|
||||
#define BUNDLE_HEADER_OFFSET 2
|
||||
|
|
@ -55,6 +56,10 @@ static crt_bundle_t s_crt_bundle;
|
|||
static int crt_check_signature(mbedtls_x509_crt *child, const uint8_t *pub_key_buf, size_t pub_key_len);
|
||||
|
||||
|
||||
#if MBEDTLS_VERSION_MAJOR < 3
|
||||
#define MBEDTLS_PRIVATE(x) x
|
||||
#endif
|
||||
|
||||
static int crt_check_signature(mbedtls_x509_crt *child, const uint8_t *pub_key_buf, size_t pub_key_len) {
|
||||
int ret = 0;
|
||||
mbedtls_x509_crt parent;
|
||||
|
|
@ -70,21 +75,22 @@ static int crt_check_signature(mbedtls_x509_crt *child, const uint8_t *pub_key_b
|
|||
|
||||
|
||||
// Fast check to avoid expensive computations when not necessary
|
||||
if (!mbedtls_pk_can_do(&parent.pk, child->sig_pk)) {
|
||||
if (!mbedtls_pk_can_do(&parent.pk, child->MBEDTLS_PRIVATE(sig_pk))) {
|
||||
LOGE(TAG, "Simple compare failed");
|
||||
ret = -1;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
md_info = mbedtls_md_info_from_type(child->sig_md);
|
||||
md_info = mbedtls_md_info_from_type(child->MBEDTLS_PRIVATE(sig_md));
|
||||
if ((ret = mbedtls_md(md_info, child->tbs.p, child->tbs.len, hash)) != 0) {
|
||||
LOGE(TAG, "Internal mbedTLS error %X", ret);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if ((ret = mbedtls_pk_verify_ext(child->sig_pk, child->sig_opts, &parent.pk,
|
||||
child->sig_md, hash, mbedtls_md_get_size(md_info),
|
||||
child->sig.p, child->sig.len)) != 0) {
|
||||
if ((ret = mbedtls_pk_verify_ext(
|
||||
child->MBEDTLS_PRIVATE(sig_pk), child->MBEDTLS_PRIVATE(sig_opts), &parent.pk,
|
||||
child->MBEDTLS_PRIVATE(sig_md), hash, mbedtls_md_get_size(md_info),
|
||||
child->MBEDTLS_PRIVATE(sig).p, child->MBEDTLS_PRIVATE(sig).len)) != 0) {
|
||||
|
||||
LOGE(TAG, "PK verify failed with error %X", ret);
|
||||
goto cleanup;
|
||||
|
|
|
|||
|
|
@ -154,8 +154,12 @@
|
|||
#endif
|
||||
|
||||
#if defined(MBEDTLS_PADLOCK_C)
|
||||
#if defined(MBEDTLS_PADLOCK_FILE)
|
||||
#include MBEDTLS_PADLOCK_FILE
|
||||
#else
|
||||
#include "mbedtls/padlock.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)
|
||||
#include "mbedtls/pem.h"
|
||||
|
|
@ -235,7 +239,9 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED), "CIPHER_FULL_BLOCK_EXPECTED" },
|
||||
{ -(MBEDTLS_ERR_CIPHER_AUTH_FAILED), "CIPHER_AUTH_FAILED" },
|
||||
{ -(MBEDTLS_ERR_CIPHER_INVALID_CONTEXT), "CIPHER_INVALID_CONTEXT" },
|
||||
#if defined(MBEDTLS_ERR_CIPHER_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_CIPHER_HW_ACCEL_FAILED), "CIPHER_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_CIPHER_C */
|
||||
|
||||
#if defined(MBEDTLS_DHM_C)
|
||||
|
|
@ -261,7 +267,9 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_ECP_RANDOM_FAILED), "ECP_RANDOM_FAILED" },
|
||||
{ -(MBEDTLS_ERR_ECP_INVALID_KEY), "ECP_INVALID_KEY" },
|
||||
{ -(MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH), "ECP_SIG_LEN_MISMATCH" },
|
||||
#if defined(MBEDTLS_ERR_ECP_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_ECP_HW_ACCEL_FAILED), "ECP_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_ECP_IN_PROGRESS), "ECP_IN_PROGRESS" },
|
||||
#endif /* MBEDTLS_ECP_C */
|
||||
|
||||
|
|
@ -270,7 +278,9 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_MD_BAD_INPUT_DATA), "MD_BAD_INPUT_DATA" },
|
||||
{ -(MBEDTLS_ERR_MD_ALLOC_FAILED), "MD_ALLOC_FAILED" },
|
||||
{ -(MBEDTLS_ERR_MD_FILE_IO_ERROR), "MD_FILE_IO_ERROR" },
|
||||
#if defined(MBEDTLS_ERR_MD_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_MD_HW_ACCEL_FAILED), "MD_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_MD_C */
|
||||
|
||||
#if defined(MBEDTLS_PEM_PARSE_C) || defined(MBEDTLS_PEM_WRITE_C)
|
||||
|
|
@ -300,7 +310,9 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE), "PK_UNKNOWN_NAMED_CURVE" },
|
||||
{ -(MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE), "PK_FEATURE_UNAVAILABLE" },
|
||||
{ -(MBEDTLS_ERR_PK_SIG_LEN_MISMATCH), "PK_SIG_LEN_MISMATCH" },
|
||||
#if defined(MBEDTLS_ERR_PK_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_PK_HW_ACCEL_FAILED), "PK_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_PK_C */
|
||||
|
||||
#if defined(MBEDTLS_PKCS12_C)
|
||||
|
|
@ -327,8 +339,12 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_RSA_VERIFY_FAILED), "RSA_VERIFY_FAILED" },
|
||||
{ -(MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE), "RSA_OUTPUT_TOO_LARGE" },
|
||||
{ -(MBEDTLS_ERR_RSA_RNG_FAILED), "RSA_RNG_FAILED" },
|
||||
#if defined(MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION)
|
||||
{ -(MBEDTLS_ERR_RSA_UNSUPPORTED_OPERATION), "RSA_UNSUPPORTED_OPERATION" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_RSA_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_RSA_HW_ACCEL_FAILED), "RSA_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_RSA_C */
|
||||
|
||||
#if defined(MBEDTLS_SSL_TLS_C)
|
||||
|
|
@ -337,35 +353,75 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_SSL_INVALID_MAC), "SSL_INVALID_MAC" },
|
||||
{ -(MBEDTLS_ERR_SSL_INVALID_RECORD), "SSL_INVALID_RECORD" },
|
||||
{ -(MBEDTLS_ERR_SSL_CONN_EOF), "SSL_CONN_EOF" },
|
||||
#if defined(MBEDTLS_ERR_SSL_UNKNOWN_CIPHER)
|
||||
{ -(MBEDTLS_ERR_SSL_UNKNOWN_CIPHER), "SSL_UNKNOWN_CIPHER" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN)
|
||||
{ -(MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN), "SSL_NO_CIPHER_CHOSEN" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_NO_RNG), "SSL_NO_RNG" },
|
||||
{ -(MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE), "SSL_NO_CLIENT_CERTIFICATE" },
|
||||
#if defined(MBEDTLS_ERR_SSL_CERTIFICATE_TOO_LARGE)
|
||||
{ -(MBEDTLS_ERR_SSL_CERTIFICATE_TOO_LARGE), "SSL_CERTIFICATE_TOO_LARGE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_CERTIFICATE_REQUIRED)
|
||||
{ -(MBEDTLS_ERR_SSL_CERTIFICATE_REQUIRED), "SSL_CERTIFICATE_REQUIRED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED), "SSL_PRIVATE_KEY_REQUIRED" },
|
||||
{ -(MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED), "SSL_CA_CHAIN_REQUIRED" },
|
||||
{ -(MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE), "SSL_UNEXPECTED_MESSAGE" },
|
||||
#if defined(MBEDTLS_ERR_SSL_PEER_VERIFY_FAILED)
|
||||
{ -(MBEDTLS_ERR_SSL_PEER_VERIFY_FAILED), "SSL_PEER_VERIFY_FAILED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY), "SSL_PEER_CLOSE_NOTIFY" },
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO), "SSL_BAD_HS_CLIENT_HELLO" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO), "SSL_BAD_HS_SERVER_HELLO" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE), "SSL_BAD_HS_CERTIFICATE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST), "SSL_BAD_HS_CERTIFICATE_REQUEST" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE), "SSL_BAD_HS_SERVER_KEY_EXCHANGE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO_DONE)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO_DONE), "SSL_BAD_HS_SERVER_HELLO_DONE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE), "SSL_BAD_HS_CLIENT_KEY_EXCHANGE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP), "SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS), "SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY), "SSL_BAD_HS_CERTIFICATE_VERIFY" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_CHANGE_CIPHER_SPEC)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_CHANGE_CIPHER_SPEC), "SSL_BAD_HS_CHANGE_CIPHER_SPEC" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_FINISHED)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_FINISHED), "SSL_BAD_HS_FINISHED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_ALLOC_FAILED), "SSL_ALLOC_FAILED" },
|
||||
{ -(MBEDTLS_ERR_SSL_HW_ACCEL_FAILED), "SSL_HW_ACCEL_FAILED" },
|
||||
{ -(MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH), "SSL_HW_ACCEL_FALLTHROUGH" },
|
||||
#if defined(MBEDTLS_ERR_SSL_COMPRESSION_FAILED)
|
||||
{ -(MBEDTLS_ERR_SSL_COMPRESSION_FAILED), "SSL_COMPRESSION_FAILED" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION), "SSL_BAD_HS_PROTOCOL_VERSION" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_SSL_BAD_HS_NEW_SESSION_TICKET)
|
||||
{ -(MBEDTLS_ERR_SSL_BAD_HS_NEW_SESSION_TICKET), "SSL_BAD_HS_NEW_SESSION_TICKET" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED), "SSL_SESSION_TICKET_EXPIRED" },
|
||||
{ -(MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH), "SSL_PK_TYPE_MISMATCH" },
|
||||
{ -(MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY), "SSL_UNKNOWN_IDENTITY" },
|
||||
|
|
@ -374,14 +430,18 @@ static const struct ssl_errs mbedtls_high_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO), "SSL_WAITING_SERVER_HELLO_RENEGO" },
|
||||
{ -(MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED), "SSL_HELLO_VERIFY_REQUIRED" },
|
||||
{ -(MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL), "SSL_BUFFER_TOO_SMALL" },
|
||||
#if defined(MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE)
|
||||
{ -(MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE), "SSL_NO_USABLE_CIPHERSUITE" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_WANT_READ), "SSL_WANT_READ" },
|
||||
{ -(MBEDTLS_ERR_SSL_WANT_WRITE), "SSL_WANT_WRITE" },
|
||||
{ -(MBEDTLS_ERR_SSL_TIMEOUT), "SSL_TIMEOUT" },
|
||||
{ -(MBEDTLS_ERR_SSL_CLIENT_RECONNECT), "SSL_CLIENT_RECONNECT" },
|
||||
{ -(MBEDTLS_ERR_SSL_UNEXPECTED_RECORD), "SSL_UNEXPECTED_RECORD" },
|
||||
{ -(MBEDTLS_ERR_SSL_NON_FATAL), "SSL_NON_FATAL" },
|
||||
#if defined(MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH)
|
||||
{ -(MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH), "SSL_INVALID_VERIFY_HASH" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SSL_CONTINUE_PROCESSING), "SSL_CONTINUE_PROCESSING" },
|
||||
{ -(MBEDTLS_ERR_SSL_ASYNC_IN_PROGRESS), "SSL_ASYNC_IN_PROGRESS" },
|
||||
{ -(MBEDTLS_ERR_SSL_EARLY_MESSAGE), "SSL_EARLY_MESSAGE" },
|
||||
|
|
@ -424,8 +484,12 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
{ -(MBEDTLS_ERR_AES_INVALID_KEY_LENGTH), "AES_INVALID_KEY_LENGTH" },
|
||||
{ -(MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH), "AES_INVALID_INPUT_LENGTH" },
|
||||
{ -(MBEDTLS_ERR_AES_BAD_INPUT_DATA), "AES_BAD_INPUT_DATA" },
|
||||
#if defined(MBEDTLS_ERR_AES_FEATURE_UNAVAILABLE)
|
||||
{ -(MBEDTLS_ERR_AES_FEATURE_UNAVAILABLE), "AES_FEATURE_UNAVAILABLE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_AES_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_AES_HW_ACCEL_FAILED), "AES_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_AES_C */
|
||||
|
||||
#if defined(MBEDTLS_ARC4_C)
|
||||
|
|
@ -435,8 +499,12 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
#if defined(MBEDTLS_ARIA_C)
|
||||
{ -(MBEDTLS_ERR_ARIA_BAD_INPUT_DATA), "ARIA_BAD_INPUT_DATA" },
|
||||
{ -(MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH), "ARIA_INVALID_INPUT_LENGTH" },
|
||||
#if defined(MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE)
|
||||
{ -(MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE), "ARIA_FEATURE_UNAVAILABLE" },
|
||||
#endif
|
||||
#if defined(MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED), "ARIA_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_ARIA_C */
|
||||
|
||||
#if defined(MBEDTLS_ASN1_PARSE_C)
|
||||
|
|
@ -480,13 +548,17 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
#if defined(MBEDTLS_CCM_C)
|
||||
{ -(MBEDTLS_ERR_CCM_BAD_INPUT), "CCM_BAD_INPUT" },
|
||||
{ -(MBEDTLS_ERR_CCM_AUTH_FAILED), "CCM_AUTH_FAILED" },
|
||||
#if defined(MBEDTLS_ERR_CCM_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_CCM_HW_ACCEL_FAILED), "CCM_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_CCM_C */
|
||||
|
||||
#if defined(MBEDTLS_CHACHA20_C)
|
||||
{ -(MBEDTLS_ERR_CHACHA20_BAD_INPUT_DATA), "CHACHA20_BAD_INPUT_DATA" },
|
||||
{ -(MBEDTLS_ERR_CHACHA20_FEATURE_UNAVAILABLE), "CHACHA20_FEATURE_UNAVAILABLE" },
|
||||
#if defined(MBEDTLS_ERR_CHACHA20_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_CHACHA20_HW_ACCEL_FAILED), "CHACHA20_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_CHACHA20_C */
|
||||
|
||||
#if defined(MBEDTLS_CHACHAPOLY_C)
|
||||
|
|
@ -495,7 +567,9 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
#endif /* MBEDTLS_CHACHAPOLY_C */
|
||||
|
||||
#if defined(MBEDTLS_CMAC_C)
|
||||
#if defined(MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_CMAC_HW_ACCEL_FAILED), "CMAC_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_CMAC_C */
|
||||
|
||||
#if defined(MBEDTLS_CTR_DRBG_C)
|
||||
|
|
@ -525,7 +599,9 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
|
||||
#if defined(MBEDTLS_GCM_C)
|
||||
{ -(MBEDTLS_ERR_GCM_AUTH_FAILED), "GCM_AUTH_FAILED" },
|
||||
#if defined(MBEDTLS_ERR_GCM_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_GCM_HW_ACCEL_FAILED), "GCM_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_GCM_BAD_INPUT), "GCM_BAD_INPUT" },
|
||||
#endif /* MBEDTLS_GCM_C */
|
||||
|
||||
|
|
@ -549,7 +625,9 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
#endif /* MBEDTLS_MD4_C */
|
||||
|
||||
#if defined(MBEDTLS_MD5_C)
|
||||
#if defined(MBEDTLS_ERR_MD5_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_MD5_HW_ACCEL_FAILED), "MD5_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
#endif /* MBEDTLS_MD5_C */
|
||||
|
||||
#if defined(MBEDTLS_NET_C)
|
||||
|
|
@ -593,17 +671,23 @@ static const struct ssl_errs mbedtls_low_level_error_tab[] = {
|
|||
#endif /* MBEDTLS_RIPEMD160_C */
|
||||
|
||||
#if defined(MBEDTLS_SHA1_C)
|
||||
#if defined(MBEDTLS_ERR_SHA1_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_SHA1_HW_ACCEL_FAILED), "SHA1_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SHA1_BAD_INPUT_DATA), "SHA1_BAD_INPUT_DATA" },
|
||||
#endif /* MBEDTLS_SHA1_C */
|
||||
|
||||
#if defined(MBEDTLS_SHA256_C)
|
||||
#if defined(MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_SHA256_HW_ACCEL_FAILED), "SHA256_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SHA256_BAD_INPUT_DATA), "SHA256_BAD_INPUT_DATA" },
|
||||
#endif /* MBEDTLS_SHA256_C */
|
||||
|
||||
#if defined(MBEDTLS_SHA512_C)
|
||||
#if defined(MBEDTLS_ERR_SHA512_HW_ACCEL_FAILED)
|
||||
{ -(MBEDTLS_ERR_SHA512_HW_ACCEL_FAILED), "SHA512_HW_ACCEL_FAILED" },
|
||||
#endif
|
||||
{ -(MBEDTLS_ERR_SHA512_BAD_INPUT_DATA), "SHA512_BAD_INPUT_DATA" },
|
||||
#endif /* MBEDTLS_SHA512_C */
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 98a2da6da4bdbfee8f3ab2334871e8c360dccae3
|
||||
Subproject commit eadf2ee8144d2b526f6adef5c9270e2625aee835
|
||||
211
locale/ID.po
211
locale/ID.po
|
|
@ -210,7 +210,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -219,7 +220,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -236,7 +238,7 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q di luar jangkauan"
|
||||
|
||||
|
|
@ -477,12 +479,6 @@ msgstr ""
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Semua perangkat I2C sedang digunakan"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Semua unit PCNT sedang digunakan"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -500,7 +496,6 @@ msgstr "Semua perangkat UART sedang digunakan"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -523,24 +518,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Semua channel event yang disinkronisasi sedang digunakan"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Semua timer untuk pin ini sedang digunakan"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Semua timer sedang digunakan"
|
||||
|
||||
|
|
@ -741,6 +730,7 @@ msgstr "Tidak dapat mengatur CCCD pada Karakteristik lokal"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -783,12 +773,6 @@ msgstr "Tidak dapat merekam ke file"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -806,12 +790,6 @@ msgstr "Tidak dapat menentukan RTS atau CTS dalam mode RS485"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Tidak dapat membuat subkelas dari irisan"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
"Tidak dapat membuat variasi frekuensi pada penghitung waktu yang sudah "
|
||||
"digunakan"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -847,18 +825,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Tidak dapat memulai PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Tidak dapat memulai interupsi, RX sibuk"
|
||||
|
|
@ -906,10 +876,6 @@ msgstr "Data terlalu besar untuk paket advertisment"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Kapasitas tujuan lebih kecil dari destination_length."
|
||||
|
|
@ -954,16 +920,6 @@ msgstr "ECB hanya beroperasi pada 16 byte di satu waktu"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Channel EXTINT sedang digunakan"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Error pada regex"
|
||||
|
|
@ -1096,10 +1052,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "Frekuensi harus cocok dengan PWMOut yang ada menggunakan timer ini"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1134,11 +1086,6 @@ msgstr "Perangkat keras sedang digunakan, coba pin alternatif"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "operasi I/O pada file tertutup"
|
||||
|
|
@ -1181,7 +1128,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Kesalahan input/output"
|
||||
|
||||
|
|
@ -1214,7 +1161,7 @@ msgid "Internal define error"
|
|||
msgstr "Kesalahan definisi internal"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1223,6 +1170,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Kesalahan internal #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1240,7 +1197,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1388,6 +1345,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Harus berupa subclass %q."
|
||||
|
|
@ -1472,9 +1433,11 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Tidak ada clocks yang tersedia"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1492,15 +1455,12 @@ msgstr "Tidak ada koneksi: panjang tidak dapat ditentukan"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Tidak ada standar bus %q"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Tidak ada GCLK yang kosong"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Tidak ada perangkat keras acak yang tersedia"
|
||||
|
|
@ -1704,13 +1664,6 @@ msgstr "Kehabisan socket"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"Frekuensi PWM tidak dapat ditulis ketika variabel_frequency Salah pada "
|
||||
"konstruksi."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1756,11 +1709,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Pin harus mendukung interupsi perangkat keras"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1998,12 +1946,8 @@ msgstr "Buffer sumber dan tujuan harus memiliki panjang yang sama"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2112,10 +2056,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (bagian terakhir dari panggilan terkini):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Diperlukan argumen Tuple atau struct_time"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2471,10 +2411,6 @@ msgstr "Argumen argsort harus berupa ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "argumen memiliki tipe yang salah"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2484,10 +2420,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "argumen num/types tidak cocok"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argumen harus berupa '%q' bukan '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "argumen harus berupa ndarrays"
|
||||
|
|
@ -2565,6 +2497,10 @@ msgstr "typecode buruk"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2668,7 +2604,7 @@ msgstr ""
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2677,18 +2613,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3176,10 +3104,6 @@ msgstr "fungsi kehilangan argumen posisi #%d yang dibutuhkan"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "fungsi mengambil posisi argumen %d tapi %d yang diberikan"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3905,10 +3829,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "parameter harus menjadi register dalam urutan r0 sampai r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4034,10 +3954,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4303,6 +4219,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4349,6 +4269,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4420,6 +4350,45 @@ msgstr "zi harus berjenis float"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "Zi harus berbentuk (n_section, 2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Semua unit PCNT sedang digunakan"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr ""
|
||||
#~ "Tidak dapat membuat variasi frekuensi pada penghitung waktu yang sudah "
|
||||
#~ "digunakan"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Tidak dapat memulai PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Channel EXTINT sedang digunakan"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "Frekuensi harus cocok dengan PWMOut yang ada menggunakan timer ini"
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Tidak ada clocks yang tersedia"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "Frekuensi PWM tidak dapat ditulis ketika variabel_frequency Salah pada "
|
||||
#~ "konstruksi."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Pin harus mendukung interupsi perangkat keras"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Diperlukan argumen Tuple atau struct_time"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "argumen memiliki tipe yang salah"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argumen harus berupa '%q' bukan '%q'"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Sebuah channel hardware interrupt sedang digunakan"
|
||||
|
||||
|
|
|
|||
|
|
@ -207,7 +207,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -216,7 +217,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -233,7 +235,7 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -474,12 +476,6 @@ msgstr ""
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -497,7 +493,6 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -520,24 +515,18 @@ msgid "All sync event channels in use"
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -736,6 +725,7 @@ msgstr ""
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -776,12 +766,6 @@ msgstr ""
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -799,10 +783,6 @@ msgstr ""
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -837,18 +817,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr ""
|
||||
|
|
@ -896,10 +868,6 @@ msgstr ""
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr ""
|
||||
|
|
@ -944,16 +912,6 @@ msgstr ""
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr ""
|
||||
|
|
@ -1086,10 +1044,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1124,11 +1078,6 @@ msgstr ""
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr ""
|
||||
|
|
@ -1171,7 +1120,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1204,7 +1153,7 @@ msgid "Internal define error"
|
|||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1213,6 +1162,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1230,7 +1189,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1378,6 +1337,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr ""
|
||||
|
|
@ -1462,8 +1425,10 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
|
|
@ -1482,15 +1447,12 @@ msgstr ""
|
|||
msgid "No default %q bus"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr ""
|
||||
|
|
@ -1689,11 +1651,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1739,11 +1696,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1974,12 +1926,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2088,10 +2036,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2445,10 +2389,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2458,10 +2398,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2539,6 +2475,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2642,7 +2582,7 @@ msgstr ""
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2651,18 +2591,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3150,10 +3082,6 @@ msgstr ""
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3879,10 +3807,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4008,10 +3932,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4277,6 +4197,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4323,6 +4247,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
|
|||
205
locale/cs.po
205
locale/cs.po
|
|
@ -218,7 +218,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q musí být typu %q nebo %q, ne %q"
|
||||
|
|
@ -227,7 +228,8 @@ msgstr "%q musí být typu %q nebo %q, ne %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q musí být typu %q, ne %q"
|
||||
|
||||
|
|
@ -244,7 +246,7 @@ msgstr "%q je mimo hranice"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q je mimo rozsah"
|
||||
|
||||
|
|
@ -485,12 +487,6 @@ msgstr "Všechny CAN periferie jsou používány"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Všechny I2C periferie jsou používány"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Všechny PCNT jednotky jsou používány"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -508,7 +504,6 @@ msgstr "Všechny UART periferie jsou používány"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Všechny kanály jsou používány"
|
||||
|
||||
|
|
@ -531,24 +526,18 @@ msgid "All sync event channels in use"
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Všechny časovače pro tento pin jsou používány"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Všechny časovače jsou používány"
|
||||
|
||||
|
|
@ -752,6 +741,7 @@ msgstr "Nelze nastavit CCCD na místní charakteristiku"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Nelze změnit USB zařízení"
|
||||
|
||||
|
|
@ -792,13 +782,6 @@ msgstr "Nelze nahrávat do souboru"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Není možné znovu připojit '/', pokud je viditelné pomocí USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
"Reset do bootloaderu není možný, protože žádný bootloader není přítomen"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Nelze nastavit možnosti socketu"
|
||||
|
|
@ -816,10 +799,6 @@ msgstr "Nelze určit RTS nebo CTS v režimu RS485"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Nelze použít řez podtřídy"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Nelze měnit frekvenci časovače, který je již používán"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "Nelze probudit hranou na pinu, pouze úrovní"
|
||||
|
|
@ -855,18 +834,10 @@ msgstr "Pole souřadnic mají různé délky"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Nelze načíst hodiny"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Není možné nastavit adresu"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Nelze spustit PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Nelze začít přerušení, RX je zaneprázdněn"
|
||||
|
|
@ -915,10 +886,6 @@ msgid "Deep sleep pins must use a rising edge with pulldown"
|
|||
msgstr ""
|
||||
"Piny pro hluboký spánek musí používat náběžnou hranu s pulldown rezistorem"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Cílová kapacita je menší než destination_length."
|
||||
|
|
@ -963,16 +930,6 @@ msgstr "ECB operuje najednou pouze 16 bajtů"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF alokace paměti selhala"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT kanál se již používá"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Chyba v regulárním výrazu"
|
||||
|
|
@ -1107,10 +1064,6 @@ msgstr ""
|
|||
"Frekvence musí být 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 nebo 1008 "
|
||||
"Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1145,12 +1098,6 @@ msgstr "Hardware je používán, zkuste alternativní piny"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Alokace heapu při neběžícím VM."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
"Heap byl poškozen, protože je stack příliš malý. Navyš velikost stacku."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "I/O operace nad zavřeným souborem"
|
||||
|
|
@ -1193,7 +1140,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr "Vstup trval příliš dlouho"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Chyba vstupu/výstupu"
|
||||
|
||||
|
|
@ -1226,7 +1173,7 @@ msgid "Internal define error"
|
|||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Interní chyba"
|
||||
|
||||
|
|
@ -1235,6 +1182,16 @@ msgstr "Interní chyba"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Vnitřní chyba #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Interní watchdog timer expiroval."
|
||||
|
|
@ -1252,7 +1209,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Špatný %s"
|
||||
|
||||
|
|
@ -1400,6 +1357,10 @@ msgstr "Chybí first_set_pin. %q[%u] nastavuje pin(y)"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "Chybí jmp_pin. %q[%u] skáče na pin"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Musí být podtřída %q."
|
||||
|
|
@ -1484,9 +1445,11 @@ msgstr "Žádné I2C zařízení na adrese: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "Není IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Žádné dostupné hodiny"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1504,15 +1467,12 @@ msgstr "Žádné připojení: nelze určit délku"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Žádná výchozí sběrnice %q"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Žádné volné GCLK"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr ""
|
||||
|
|
@ -1714,11 +1674,6 @@ msgstr "Došly sockety"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "Restart PWM"
|
||||
|
|
@ -1764,11 +1719,6 @@ msgstr "Pin je pouze vstupní"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "Pin musí být na PWM kanálu B"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2001,13 +1951,9 @@ msgstr "Zdrojové a cílové buffery musí být stejné délky"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Specifikuj přesně jeden z data0 nebo data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Levý stereo kanál musí být na PWM kanálu A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Pravý stereo kanál musí být na PWM kanálu B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2116,10 +2062,6 @@ msgstr "Touch alarmy nejsou dostupné"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "De-inicializace UART"
|
||||
|
|
@ -2478,10 +2420,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort není implementován pro zploštěná pole"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "jméno argumentu znovupoužito"
|
||||
|
|
@ -2491,10 +2429,6 @@ msgstr "jméno argumentu znovupoužito"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2572,6 +2506,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "velikosti bitmapy musí odpovídat"
|
||||
|
|
@ -2675,7 +2613,7 @@ msgstr "nelze převést %s na complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "nelze převést %s na float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2684,18 +2622,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "nelze převést complex na float"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "nelze převést na complex"
|
||||
|
|
@ -3183,10 +3113,6 @@ msgstr "funkci chybí požadovaný argument na pozici #%d"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3912,10 +3838,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4041,10 +3963,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4310,6 +4228,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4356,6 +4278,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4427,6 +4359,39 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Všechny PCNT jednotky jsou používány"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Nelze načíst hodiny"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr ""
|
||||
#~ "Reset do bootloaderu není možný, protože žádný bootloader není přítomen"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Nelze měnit frekvenci časovače, který je již používán"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Nelze spustit PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT kanál se již používá"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "Heap byl poškozen, protože je stack příliš malý. Navyš velikost stacku."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Žádné dostupné hodiny"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Levý stereo kanál musí být na PWM kanálu A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Pravý stereo kanál musí být na PWM kanálu B"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Kanál hardwarového přerušení je již používán"
|
||||
|
||||
|
|
|
|||
246
locale/de_DE.po
246
locale/de_DE.po
|
|
@ -217,7 +217,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr "%q muss ein Vielfaches von 8 sein."
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q muss von Typ %q oder %q sein, nicht %q"
|
||||
|
|
@ -226,7 +227,8 @@ msgstr "%q muss von Typ %q oder %q sein, nicht %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr "%q muss vom Typ %q, %q oder %q sein, und nicht %q"
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q muss von Typ %q sein, nicht %q"
|
||||
|
||||
|
|
@ -243,7 +245,7 @@ msgstr "%q außerhalb der Grenzen"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q außerhalb des Bereichs"
|
||||
|
||||
|
|
@ -485,12 +487,6 @@ msgstr "Alle CAN-Schnittstellen sind in Benutzung"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Alle I2C-Peripheriegeräte sind in Benutzung"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Alle PCNT-Einheiten sind in Benutzung"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -508,7 +504,6 @@ msgstr "Alle UART-Peripheriegeräte sind in Benutzung"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Alle Kanäle werden verwendet"
|
||||
|
||||
|
|
@ -531,24 +526,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Alle Sync Event-Kanäle werden benutzt"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Alle Timer für diesen Pin werden bereits benutzt"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Alle Timer werden benutzt"
|
||||
|
||||
|
|
@ -751,6 +740,7 @@ msgstr "CCCD kann nicht auf lokales Merkmal eingestellt werden"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Kann USB-Geräte jetzt nicht ändern"
|
||||
|
||||
|
|
@ -792,12 +782,6 @@ msgstr "Aufnahme in eine Datei nicht möglich"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "'/' kann nicht wiedereingehängt werden, wenn per USB sichtbar."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "Kann nicht in den Bootloader resetten, weil keiner vorhanden ist"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Socket-Optionen können nicht gesetzt werden"
|
||||
|
|
@ -815,11 +799,6 @@ msgstr "RTS oder CTS können im RS485-Modus nicht angegeben werden"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Slice kann keine sub-klasse sein"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
"Die Frequenz eines bereits verwendeten Timers kann nicht variiert werden"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "Kann nicht durch Flanke an Pin geweckt werden, sondern nur durch Pegel"
|
||||
|
|
@ -856,18 +835,10 @@ msgstr "Koordinaten-Arrays haben unterschiedliche Längen"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Typen der Koordinaten-Arrays haben unterschiedliche Längen"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Clock konnte nicht ermittelt werden"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Konnte Adresse nicht setzen"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "PWM konnte nicht gestartet werden"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Interrupt konnte nicht gestartet werden, RX beschäftigt"
|
||||
|
|
@ -915,10 +886,6 @@ msgstr "Zu vielen Daten für das advertisement packet"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr "Deep Sleep Pins müssen eine steigende Flanke mit Pulldown verwenden"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Die Zielkapazität ist kleiner als destination_length."
|
||||
|
|
@ -965,16 +932,6 @@ msgstr "Die EZB arbeitet jeweils nur mit 16 Bytes"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF Speicherallozierung fehlgeschlagen"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT Kanal ist schon in Benutzung"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Fehler in regex"
|
||||
|
|
@ -1110,12 +1067,6 @@ msgstr ""
|
|||
"Die Frequenz muss 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 oder 1008 "
|
||||
"MHz betragen"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"Die Frequenz muss mit dem vorhandenen PWMOut unter Verwendung dieses Timers "
|
||||
"übereinstimmen"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1150,12 +1101,6 @@ msgstr "Hardware in Benutzung, probiere alternative Pins"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Allokation auf Heap während VM nicht läuft."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
"Heap wurde beschädigt, weil der Stack zu klein war. Bitte Stack vergrößern."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Lese/Schreibe-operation an geschlossener Datei"
|
||||
|
|
@ -1202,7 +1147,7 @@ msgstr "Input buffer länge (%d) muss ein vielfaches vom Strand Count (%d) sein"
|
|||
msgid "Input taking too long"
|
||||
msgstr "Input benötigt zu lange"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Eingabe-/Ausgabefehler"
|
||||
|
||||
|
|
@ -1235,7 +1180,7 @@ msgid "Internal define error"
|
|||
msgstr "Interner Definitionsfehler"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Interner Fehler"
|
||||
|
||||
|
|
@ -1244,6 +1189,16 @@ msgstr "Interner Fehler"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Interner Fehler #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Der Interne WatchDog Timer ist abgelaufen."
|
||||
|
|
@ -1261,7 +1216,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Ungültiger %q"
|
||||
|
||||
|
|
@ -1409,6 +1364,10 @@ msgstr "first_set_pin fehlt. %q[%u] setzt Pin(s)"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "jmp_pin fehlt. %q[%u] springt basierend auf dem Pin"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Muss eine %q Unterklasse sein."
|
||||
|
|
@ -1493,9 +1452,11 @@ msgstr "Kein I2C-Gerät an Adresse: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "Keine IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Keine Taktgeber verfügbar"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1513,15 +1474,12 @@ msgstr "Keine Verbindung: Länge kann nicht bestimmt werden"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Kein Standard %q Bus"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Keine freien GCLKs"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Kein hardware random verfügbar"
|
||||
|
|
@ -1726,11 +1684,6 @@ msgstr "Keine Sockets mehr verfügbar"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Out-Buffer-Elemente müssen <= 4 bytes lang sein"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr "Die PWM-Frequenz ist nicht schreibbar, wenn variable_Frequenz = False."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "PWM Neustart"
|
||||
|
|
@ -1776,11 +1729,6 @@ msgstr "Pin kann nur als Eingang verwendet werden"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "Pin muss auf PWM-Kanal B sein"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Pin muss Hardware-Interrupts unterstützen"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2017,13 +1965,9 @@ msgstr "Quell- und Zielpuffer müssen gleich lang sein"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Gib genau einen von data0 oder data_pins an"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Stereo links muss sich auf PWM-Kanal A befinden"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Stereo rechts muss sich auf PWM-Kanal B befinden"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2138,10 +2082,6 @@ msgstr "Touch-Alarme nicht verfügbar"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Zurückverfolgung (jüngste Aufforderung zuletzt):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Tuple- oder struct_time-Argument erforderlich"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "UART wird de-initialisiert"
|
||||
|
|
@ -2507,10 +2447,6 @@ msgstr "Das Argument argsort muss ein ndarray sein"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort ist für flattened Arrays nicht implementiert"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "Argument hat falschen Typ"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "Name des Arguments wiederverwendet"
|
||||
|
|
@ -2520,10 +2456,6 @@ msgstr "Name des Arguments wiederverwendet"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "Anzahl/Typen der Argumente passen nicht"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "Argument sollte '%q' sein, nicht '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "Argumente müssen ndarrays sein"
|
||||
|
|
@ -2601,6 +2533,10 @@ msgstr "Falscher Typcode"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "Der binäre Operator %q ist nicht implementiert"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "Bitmap-Größen müssen übereinstimmen"
|
||||
|
|
@ -2706,7 +2642,7 @@ msgstr "kann %s nicht nach complex konvertieren"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "kann %s nicht nach float konvertieren"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "kann %s nicht nach int konvertieren"
|
||||
|
|
@ -2715,18 +2651,10 @@ msgstr "kann %s nicht nach int konvertieren"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "kann NaN nicht nach int konvertieren"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "Complex kann nicht in Float konvertiert werden"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "kann inf nicht nach int konvertieren"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "kann nicht nach complex konvertieren"
|
||||
|
|
@ -3226,10 +3154,6 @@ msgstr ""
|
|||
"Funktion nimmt %d Argumente ohne Schlüsselwort an, aber es wurden %d "
|
||||
"angegeben"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "Funktion benötigt genau 9 Argumente"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "Generator läuft bereits"
|
||||
|
|
@ -3965,10 +3889,6 @@ msgstr "Die Parameter müssen Register der Reihenfolge a2 bis a5 sein"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "Parameter müssen Register im Bereich von r0 bis r3 sein"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "Pixelkoordinaten außerhalb der Grenzen"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "Abfrage der Datei unter Win32 nicht verfügbar"
|
||||
|
|
@ -4094,10 +4014,6 @@ msgstr "Vorzeichen mit ganzzahligem Formatbezeichner 'c' nicht erlaubt"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "Größe ist nur für ndarrays definiert"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "Die Schlafdauer darf nicht negativ sein"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "Slice nicht unterstützt"
|
||||
|
|
@ -4365,6 +4281,10 @@ msgstr "nicht unterstützter Thumb-Befehl '%s' mit %d Argumenten"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "nicht unterstützte Xtensa-Anweisung '%s' mit %d Argumenten"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "Farbraum wird nicht unterstützt für GifWriter"
|
||||
|
|
@ -4411,6 +4331,16 @@ msgstr "Wert außerhalb des Zielbereiches"
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "Breite muss größer als 0 sein"
|
||||
|
|
@ -4482,6 +4412,78 @@ msgstr "zi muss eine Gleitkommazahl sein"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi muss die Form (n_section, 2) haben"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Alle PCNT-Einheiten sind in Benutzung"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Clock konnte nicht ermittelt werden"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr "Kann nicht in den Bootloader resetten, weil keiner vorhanden ist"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr ""
|
||||
#~ "Die Frequenz eines bereits verwendeten Timers kann nicht variiert werden"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "PWM konnte nicht gestartet werden"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT Kanal ist schon in Benutzung"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "Die Frequenz muss mit dem vorhandenen PWMOut unter Verwendung dieses "
|
||||
#~ "Timers übereinstimmen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "Heap wurde beschädigt, weil der Stack zu klein war. Bitte Stack "
|
||||
#~ "vergrößern."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Keine Taktgeber verfügbar"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "Die PWM-Frequenz ist nicht schreibbar, wenn variable_Frequenz = False."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Pin muss Hardware-Interrupts unterstützen"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Stereo links muss sich auf PWM-Kanal A befinden"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Stereo rechts muss sich auf PWM-Kanal B befinden"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Tuple- oder struct_time-Argument erforderlich"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "Argument hat falschen Typ"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "Argument sollte '%q' sein, nicht '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "kann NaN nicht nach int konvertieren"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "kann inf nicht nach int konvertieren"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "Funktion benötigt genau 9 Argumente"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "Die Schlafdauer darf nicht negativ sein"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "Pixelkoordinaten außerhalb der Grenzen"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Ein Hardware Interrupt Kanal wird schon benutzt"
|
||||
|
||||
|
|
|
|||
192
locale/el.po
192
locale/el.po
|
|
@ -222,7 +222,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q πρέπει να είναι τύπου %q ή %q, όχι %q"
|
||||
|
|
@ -231,7 +232,8 @@ msgstr "%q πρέπει να είναι τύπου %q ή %q, όχι %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q πρέπει να είναι τύπου %q, όχι %q"
|
||||
|
||||
|
|
@ -248,7 +250,7 @@ msgstr "%q εκτός ορίων"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q εκτός εμβέλειας"
|
||||
|
||||
|
|
@ -489,12 +491,6 @@ msgstr "Όλα τα περιφεριακά CAN είναι σε χρήση"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Όλα τα I2C περιφεριακά ειναι σε χρήση"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Όλες οι μονάδες PCNT είναι σε χρήση"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -512,7 +508,6 @@ msgstr "Όλα τα UART περιφεριακά ειναι σε χρήση"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Όλα τα κανάλια είναι σε χρήση"
|
||||
|
||||
|
|
@ -535,24 +530,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Όλα τα κανάλια συμβάντων συγχρονισμού είναι σε χρήση"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Όλοι οι χρονιστές για αυτό το pin χρησιμοποιούνται ήδη"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Όλοι οι χρονιστές βρίσκονται σε χρήση"
|
||||
|
||||
|
|
@ -754,6 +743,7 @@ msgstr "Δεν μπορεί να οριστεί CCCD σε τοπικό Character
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Δεν μπορούν να αλλάξουν οι USB συσκευές τώρα"
|
||||
|
||||
|
|
@ -797,14 +787,6 @@ msgstr "Δεν μπορεί να γίνει καταγραφή σε αρχείο
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Δεν μπορεί να γίνει remount του '/' όταν είναι ορατό μέσω USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
"Δεν μπορεί να γίνει επανεκκίνηση στον bootloader διότι δεν υπάρχει "
|
||||
"bootloader παρόν"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Δεν μπορεί να γίνει ρύθμιση των επιλογών του socket"
|
||||
|
|
@ -822,12 +804,6 @@ msgstr "Δεν μπορεί να οριστεί RTS ή CTS σε RS485 mode"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Δεν γίνεται υποκατηγορία ενός slice"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
"Δεν μπορεί να γίνει δυναμική μεταβολή της συχνότητας σε έναν χρονιστή που "
|
||||
"είναι ήδη σε χρήση"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "Δεν γίνεται αφύπνηση σε pin edge, αλλά μόνο σε level"
|
||||
|
|
@ -864,18 +840,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Δεν μπόρεσε να ανακληθεί το ρολόι"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Δεν μπόρεσε να ρυθμιστεί η διεύθυνση"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Δεν μπόρεσε να ξεκινήσει το PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Δεν μπόρεσε να εκκινηθεί το interrupt, RX κατειλημμένο"
|
||||
|
|
@ -923,10 +891,6 @@ msgstr "Τα δεδομένα είναι πολύ μεγάλα για πακέτ
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr "Τα pins βαθύ ύπνου πρέπει να χρησιμοποιούν rising edge με pulldown"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr ""
|
||||
|
|
@ -974,16 +938,6 @@ msgstr "ECB δουλεύει μόνο σε 16 bytes κάθε φορά"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF δέσμευση μνήμης απέτυχε"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT κανάλι ήδη σε χρήση"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Σφάλμα σε regex"
|
||||
|
|
@ -1116,10 +1070,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1154,11 +1104,6 @@ msgstr ""
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr ""
|
||||
|
|
@ -1201,7 +1146,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1234,7 +1179,7 @@ msgid "Internal define error"
|
|||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1243,6 +1188,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1260,7 +1215,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1408,6 +1363,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr ""
|
||||
|
|
@ -1492,8 +1451,10 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
|
|
@ -1512,15 +1473,12 @@ msgstr ""
|
|||
msgid "No default %q bus"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr ""
|
||||
|
|
@ -1719,11 +1677,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1769,11 +1722,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2006,12 +1954,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2120,10 +2064,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2477,10 +2417,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2490,10 +2426,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2571,6 +2503,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2674,7 +2610,7 @@ msgstr ""
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2683,18 +2619,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3182,10 +3110,6 @@ msgstr ""
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3911,10 +3835,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4040,10 +3960,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4309,6 +4225,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4355,6 +4275,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4426,6 +4356,28 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Όλες οι μονάδες PCNT είναι σε χρήση"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Δεν μπόρεσε να ανακληθεί το ρολόι"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr ""
|
||||
#~ "Δεν μπορεί να γίνει επανεκκίνηση στον bootloader διότι δεν υπάρχει "
|
||||
#~ "bootloader παρόν"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr ""
|
||||
#~ "Δεν μπορεί να γίνει δυναμική μεταβολή της συχνότητας σε έναν χρονιστή που "
|
||||
#~ "είναι ήδη σε χρήση"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Δεν μπόρεσε να ξεκινήσει το PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT κανάλι ήδη σε χρήση"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Ένα κανάλι interrupt υλικού είναι ήδη σε χρήση"
|
||||
|
||||
|
|
|
|||
251
locale/en_GB.po
251
locale/en_GB.po
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2024-01-02 22:11+0000\n"
|
||||
"PO-Revision-Date: 2024-02-07 02:01+0000\n"
|
||||
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: en_GB\n"
|
||||
|
|
@ -220,7 +220,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr "%q must be multiple of 8."
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q must be of type %q or %q, not %q"
|
||||
|
|
@ -229,7 +230,8 @@ msgstr "%q must be of type %q or %q, not %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr "%q must be of type %q, %q, or %q, not %q"
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q must be of type %q, not %q"
|
||||
|
||||
|
|
@ -246,7 +248,7 @@ msgstr "%q out of bounds"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q out of range"
|
||||
|
||||
|
|
@ -487,12 +489,6 @@ msgstr "All CAN peripherals are in use"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "All I2C peripherals are in use"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "All PCNT units in use"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -510,7 +506,6 @@ msgstr "All UART peripherals are in use"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "All channels in use"
|
||||
|
||||
|
|
@ -533,24 +528,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "All sync event channels in use"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "All timers for this pin are in use"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "All timers in use"
|
||||
|
||||
|
|
@ -751,6 +740,7 @@ msgstr "Can't set CCCD on local Characteristic"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Cannot change USB devices now"
|
||||
|
||||
|
|
@ -791,12 +781,6 @@ msgstr "Cannot record to a file"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Cannot remount '/' when visible via USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "Cannot reset into bootloader because no bootloader is present"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Cannot set socket options"
|
||||
|
|
@ -814,10 +798,6 @@ msgstr "Cannot specify RTS or CTS in RS485 mode"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Cannot subclass slice"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Cannot vary frequency on a timer that is already in use"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "Cannot wake on pin edge, only level"
|
||||
|
|
@ -854,18 +834,10 @@ msgstr "Coordinate arrays have different lengths"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Coordinate arrays types have different sizes"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Could not retrieve clock"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Could not set address"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Could not start PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Could not start interrupt, RX busy"
|
||||
|
|
@ -913,10 +885,6 @@ msgstr "Data too large for advertisement packet"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr "Deep sleep pins must use a rising edge with pulldown"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr "Destination bitmap too small to contain image"
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Destination capacity is smaller than destination_length."
|
||||
|
|
@ -961,16 +929,6 @@ msgstr "ECB only operates on 16 bytes at a time"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF memory allocation failed"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT channel already in use"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Error in regex"
|
||||
|
|
@ -1105,10 +1063,6 @@ msgid ""
|
|||
msgstr ""
|
||||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "Frequency must match existing PWMOut using this timer"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1143,12 +1097,6 @@ msgstr "Hardware in use, try alternative pins"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Heap allocation when VM not running."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "I/O operation on closed file"
|
||||
|
|
@ -1191,7 +1139,7 @@ msgstr "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
|||
msgid "Input taking too long"
|
||||
msgstr "Input taking too long"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Input/output error"
|
||||
|
||||
|
|
@ -1224,7 +1172,7 @@ msgid "Internal define error"
|
|||
msgstr "Internal define error"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Internal error"
|
||||
|
||||
|
|
@ -1233,6 +1181,16 @@ msgstr "Internal error"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Internal error #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr "Internal resource(s) in use"
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Internal watchdog timer expired."
|
||||
|
|
@ -1250,7 +1208,7 @@ msgstr "Interrupted by output function"
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Invalid %q"
|
||||
|
||||
|
|
@ -1398,6 +1356,10 @@ msgstr "Missing first_set_pin. %q[%u] sets pin(s)"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr "Mount point directory missing"
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Must be a %q subclass."
|
||||
|
|
@ -1482,9 +1444,11 @@ msgstr "No I2C device at address: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "No IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "No available clocks"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr "No bootloader present"
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1502,15 +1466,12 @@ msgstr "No connection: length cannot be determined"
|
|||
msgid "No default %q bus"
|
||||
msgstr "No default %q bus"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "No free GCLKs"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr "No free GLCKs"
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "No hardware random available"
|
||||
|
|
@ -1713,12 +1674,6 @@ msgstr "Out of sockets"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Out-buffer elements must be <= 4 bytes long"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "PWM restart"
|
||||
|
|
@ -1764,11 +1719,6 @@ msgstr "Pin is input only"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "Pin must be on PWM Channel B"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Pin must support hardware interrupts"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2002,13 +1952,9 @@ msgstr "Source and destination buffers must be the same length"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Specify exactly one of data0 or data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Stereo left must be on PWM channel A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr "Stack overflow. Increase stack size."
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2118,10 +2064,6 @@ msgstr "Touch alarms not available"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (most recent call last):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Tuple or struct_time argument required"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "UART de-init"
|
||||
|
|
@ -2482,10 +2424,6 @@ msgstr "argsort argument must be an ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort is not implemented for flattened arrays"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "argument has wrong type"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "argument name reused"
|
||||
|
|
@ -2495,10 +2433,6 @@ msgstr "argument name reused"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "argument num/types mismatch"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argument should be a '%q' not a '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "arguments must be ndarrays"
|
||||
|
|
@ -2576,6 +2510,10 @@ msgstr "bad typecode"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "binary op %q not implemented"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr "bitmap size and depth must match"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "bitmap sizes must match"
|
||||
|
|
@ -2679,7 +2617,7 @@ msgstr "can't convert %s to complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "can't convert %s to float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "can't convert %s to int"
|
||||
|
|
@ -2688,18 +2626,10 @@ msgstr "can't convert %s to int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "Can't convert '%q' object to %q implicitly"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "can't convert NaN to int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "can't convert complex to float"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "can't convert inf to int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "can't convert to complex"
|
||||
|
|
@ -3190,10 +3120,6 @@ msgstr "function missing required positional argument #%d"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "function takes %d positional arguments but %d were given"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "function takes exactly 9 arguments"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "generator already executing"
|
||||
|
|
@ -3919,10 +3845,6 @@ msgstr "parameters must be registers in sequence a2 to a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "parameters must be registers in sequence r0 to r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "pixel coordinates out of bounds"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "poll on file not available on win32"
|
||||
|
|
@ -4048,10 +3970,6 @@ msgstr "sign not allowed with integer format specifier 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "size is defined for ndarrays only"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "sleep length must be non-negative"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "slice unsupported"
|
||||
|
|
@ -4317,6 +4235,10 @@ msgstr "unsupported Thumb instruction '%s' with %d arguments"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr "unsupported bitmap depth"
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "unsupported colourspace for GifWriter"
|
||||
|
|
@ -4363,6 +4285,18 @@ msgstr "value out of range of target"
|
|||
msgid "wbits"
|
||||
msgstr "wbits"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "width must be greater than zero"
|
||||
|
|
@ -4434,6 +4368,81 @@ msgstr "zi must be of float type"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi must be of shape (n_section, 2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "All PCNT units in use"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Could not retrieve clock"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr "Cannot reset into bootloader because no bootloader is present"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Cannot vary frequency on a timer that is already in use"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Could not start PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT channel already in use"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "Frequency must match existing PWMOut using this timer"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "No available clocks"
|
||||
|
||||
#~ msgid "No free GLCKs"
|
||||
#~ msgstr "No free GLCKs"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Pin must support hardware interrupts"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Stereo left must be on PWM channel A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Stereo right must be on PWM channel B"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Tuple or struct_time argument required"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "argument has wrong type"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argument should be a '%q' not a '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "can't convert NaN to int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "can't convert inf to int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "function takes exactly 9 arguments"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "sleep length must be non-negative"
|
||||
|
||||
#~ msgid "Destination bitmap too small to contain image"
|
||||
#~ msgstr "Destination bitmap too small to contain image"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "pixel coordinates out of bounds"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "A hardware interrupt channel is already in use"
|
||||
|
||||
|
|
|
|||
249
locale/es.po
249
locale/es.po
|
|
@ -222,7 +222,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q debe ser del tipo %q o %q, y no %q"
|
||||
|
|
@ -231,7 +232,8 @@ msgstr "%q debe ser del tipo %q o %q, y no %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q debe ser del tipo %q, y no %q"
|
||||
|
||||
|
|
@ -248,7 +250,7 @@ msgstr "%q fuera de limites"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q fuera de rango"
|
||||
|
||||
|
|
@ -489,12 +491,6 @@ msgstr "Todos los periféricos CAN están en uso"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Todos los periféricos I2C están en uso"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Todas las unidades PCNT en uso"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -512,7 +508,6 @@ msgstr "Todos los periféricos UART están en uso"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Todos los canales están en uso"
|
||||
|
||||
|
|
@ -537,24 +532,18 @@ msgstr ""
|
|||
"en uso"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Todos los timers para este pin están en uso"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Todos los timers en uso"
|
||||
|
||||
|
|
@ -758,6 +747,7 @@ msgstr "No se puede configurar CCCD en la característica local"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "No se pueden cambiar dispositivos USB en este momento"
|
||||
|
||||
|
|
@ -800,14 +790,6 @@ msgstr "No se puede grabar en un archivo"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "No se puede remountar '/' cuanto se es visible vía USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
"No puede se reinicilizado al bootloader porque el bootloader no se encuentra "
|
||||
"presente"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "No se pueden definir opciones para enchufe"
|
||||
|
|
@ -825,10 +807,6 @@ msgstr "No se puede especificar RTS o CTS en modo RS485"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "No se puede manejar la partición en una subclase"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "No puede variar la frecuencia en un temporizador que ya está en uso"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "No puede ser despertado en transición de pin, only nivel"
|
||||
|
|
@ -865,18 +843,10 @@ msgstr "Las matrices de coordenadas tienen diferentes longitudes"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Las matrices de coordenadas tienen diferentes tamaños"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "No puedo traer el reloj"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "No se puede definir la dirección"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "No se pudo iniciar PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "No se pudo iniciar la interrupción, RX ocupado"
|
||||
|
|
@ -925,10 +895,6 @@ msgid "Deep sleep pins must use a rising edge with pulldown"
|
|||
msgstr ""
|
||||
"Pines de sueño profundo deben usar eje de subida con jalado hacia abajo"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Capacidad de destino es mas pequeña que destination_length."
|
||||
|
|
@ -973,16 +939,6 @@ msgstr "ECB solo opera sobre 16 bytes a la vez"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "Fallo ESP-IDF al tomar la memoria"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "El canal EXTINT ya está siendo utilizado"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Error en regex"
|
||||
|
|
@ -1120,11 +1076,6 @@ msgstr ""
|
|||
"La frecuencia debe ser 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 o "
|
||||
"1008 Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"La frecuencia debe coincidir con PWMOut existente usando este temporizador"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1159,12 +1110,6 @@ msgstr "Hardware en uso, pruebe pines alternativos"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Alocación del Heap cuando la VM no esta corriendo."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
"El Heap está corrupto, ya que la pila era muy pequeña. Incremente el tamaño."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Operación I/O en archivo cerrado"
|
||||
|
|
@ -1214,7 +1159,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr "La entrada está durando mucho tiempo"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "error Input/output"
|
||||
|
||||
|
|
@ -1247,7 +1192,7 @@ msgid "Internal define error"
|
|||
msgstr "Error interno de definición"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Error interno"
|
||||
|
||||
|
|
@ -1256,6 +1201,16 @@ msgstr "Error interno"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Error interno #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "El temporizador interno watchdog terminó."
|
||||
|
|
@ -1273,7 +1228,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "%q inválido"
|
||||
|
||||
|
|
@ -1421,6 +1376,10 @@ msgstr "Falta first_set_pin. %q[%u] configura pin(es)"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "Falta jmp_pin. %q[%u] salta en pin"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Debe de ser una subclase de %q."
|
||||
|
|
@ -1505,9 +1464,11 @@ msgstr "No hay dispositivo en la dirección: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "No IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Relojes no disponibles"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1525,15 +1486,12 @@ msgstr "Sin conexión: no se puede determinar la longitud"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Sin bus %q por defecto"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Sin GCLKs libres"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "No hay hardware random disponible"
|
||||
|
|
@ -1738,13 +1696,6 @@ msgstr "Se acabaron los enchufes"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Los elementos del búfer de salida deben ser de una longitud <= 4 bytes"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"La frecuencia de PWM no se puede escribir variable_frequency es False en la "
|
||||
"construcción."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "Reinicio de PWM"
|
||||
|
|
@ -1790,11 +1741,6 @@ msgstr "El pin es solo de entrada"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "El pin debe estar en el PWM canal B"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "El pin debe admitir interrupciones de hardware"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2033,13 +1979,9 @@ msgstr "Los buffers de fuente y destino deben ser del mismo tamaño"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Especifique exactamente uno de data0 or data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Estéreo izquierdo debe estar en el canal PWM A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Estéreo derecho debe estar en el canal PWM B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2153,10 +2095,6 @@ msgstr "Alarmas táctiles no disponibles"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (ultima llamada reciente):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Argumento tuple o struct_time requerido"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "Desinicialización de UART"
|
||||
|
|
@ -2518,10 +2456,6 @@ msgstr "El argumento para argsort debe ser un ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "El argot no está implementado para arrays aplanados"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "el argumento tiene un tipo erroneo"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "nombre de argumento reutilizado"
|
||||
|
|
@ -2531,10 +2465,6 @@ msgstr "nombre de argumento reutilizado"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "argumento número/tipos no coinciden"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argumento deberia ser un '%q' no un '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "argumentos deben ser ndarrays"
|
||||
|
|
@ -2612,6 +2542,10 @@ msgstr "typecode erroneo"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "operacion binaria %q no implementada"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "Los tamaños de los bitmap deben coincidir"
|
||||
|
|
@ -2715,7 +2649,7 @@ msgstr "no se puede convertir %s a complejo"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "no se puede convertir %s a float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "no se puede convertir %s a int"
|
||||
|
|
@ -2724,18 +2658,10 @@ msgstr "no se puede convertir %s a int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "no se puede convertir el objeto '%q' a %q implícitamente"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "no se puede convertir Nan a int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "no se puede convertir complejo a float"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "no se puede convertir inf en int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "no se puede convertir a complejo"
|
||||
|
|
@ -3230,10 +3156,6 @@ msgstr "la función requiere del argumento posicional #%d"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "la función toma %d argumentos posicionales pero le fueron dados %d"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "la función toma exactamente 9 argumentos"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "generador ya se esta ejecutando"
|
||||
|
|
@ -3962,10 +3884,6 @@ msgstr "los parámetros deben ser registros en secuencia de a2 a a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "los parametros deben ser registros en secuencia del r0 al r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "coordenadas del pixel fuera de límites"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "el sondeo del archivo no esta disponible en win32"
|
||||
|
|
@ -4091,10 +4009,6 @@ msgstr "signo no permitido con el especificador integer format 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "el tamaño se define solo para ndarrays"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "la longitud de sleep no puede ser negativa"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "sin capacidades para rebanado"
|
||||
|
|
@ -4361,6 +4275,10 @@ msgstr "instrucción de tipo Thumb no admitida '%s' con %d argumentos"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "instrucción Xtensa '%s' con %d argumentos no soportada"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "espacio de color no soportado para GifWriter"
|
||||
|
|
@ -4407,6 +4325,16 @@ msgstr "valor fuera de alcance al blanco"
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "el ancho debe ser mayor que cero"
|
||||
|
|
@ -4478,6 +4406,79 @@ msgstr "zi debe ser de tipo flotante"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi debe ser una forma (n_section,2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Todas las unidades PCNT en uso"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "No puedo traer el reloj"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr ""
|
||||
#~ "No puede se reinicilizado al bootloader porque el bootloader no se "
|
||||
#~ "encuentra presente"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "No puede variar la frecuencia en un temporizador que ya está en uso"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "No se pudo iniciar PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "El canal EXTINT ya está siendo utilizado"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "La frecuencia debe coincidir con PWMOut existente usando este temporizador"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "El Heap está corrupto, ya que la pila era muy pequeña. Incremente el "
|
||||
#~ "tamaño."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Relojes no disponibles"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "La frecuencia de PWM no se puede escribir variable_frequency es False en "
|
||||
#~ "la construcción."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "El pin debe admitir interrupciones de hardware"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Estéreo izquierdo debe estar en el canal PWM A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Estéreo derecho debe estar en el canal PWM B"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Argumento tuple o struct_time requerido"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "el argumento tiene un tipo erroneo"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argumento deberia ser un '%q' no un '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "no se puede convertir Nan a int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "no se puede convertir inf en int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "la función toma exactamente 9 argumentos"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "la longitud de sleep no puede ser negativa"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "coordenadas del pixel fuera de límites"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Un canal de interrupción por hardware ya está en uso"
|
||||
|
||||
|
|
|
|||
202
locale/fil.po
202
locale/fil.po
|
|
@ -208,7 +208,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -217,7 +218,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -234,7 +236,7 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -476,12 +478,6 @@ msgstr ""
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Lahat ng I2C peripherals ginagamit"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -500,7 +496,6 @@ msgstr "Lahat ng I2C peripherals ginagamit"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -523,24 +518,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Lahat ng sync event channels ay ginagamit"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Lahat ng timers para sa pin na ito ay ginagamit"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Lahat ng timer ginagamit"
|
||||
|
||||
|
|
@ -742,6 +731,7 @@ msgstr ""
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -783,12 +773,6 @@ msgstr "Hindi ma-record sa isang file"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -806,10 +790,6 @@ msgstr ""
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Hindi magawa ang sublcass slice"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -844,18 +824,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr ""
|
||||
|
|
@ -905,10 +877,6 @@ msgstr "Hindi makasya ang data sa loob ng advertisement packet"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr ""
|
||||
|
|
@ -954,16 +922,6 @@ msgstr ""
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Ginagamit na ang EXTINT channel"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "May pagkakamali sa REGEX"
|
||||
|
|
@ -1096,10 +1054,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1134,11 +1088,6 @@ msgstr ""
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "I/O operasyon sa saradong file"
|
||||
|
|
@ -1181,7 +1130,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "May mali sa Input/Output"
|
||||
|
||||
|
|
@ -1214,7 +1163,7 @@ msgid "Internal define error"
|
|||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1223,6 +1172,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1240,7 +1199,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1388,6 +1347,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr ""
|
||||
|
|
@ -1472,8 +1435,10 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
|
|
@ -1492,15 +1457,12 @@ msgstr ""
|
|||
msgid "No default %q bus"
|
||||
msgstr "Walang default na %q bus"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Walang libreng GCLKs"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Walang magagamit na hardware random"
|
||||
|
|
@ -1702,12 +1664,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"PWM frequency hindi writable kapag variable_frequency ay False sa pag buo."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1753,11 +1709,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1988,12 +1939,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2102,10 +2049,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (pinakahuling huling tawag): \n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Tuple o struct_time argument kailangan"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2461,10 +2404,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "may maling type ang argument"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2474,10 +2413,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "hindi tugma ang argument num/types"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argument ay dapat na '%q' hindi '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2555,6 +2490,10 @@ msgstr "masamang typecode"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "binary op %q hindi implemented"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2660,7 +2599,7 @@ msgstr "hindi ma-convert %s sa complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "hindi ma-convert %s sa int"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "hindi ma-convert %s sa int"
|
||||
|
|
@ -2669,18 +2608,10 @@ msgstr "hindi ma-convert %s sa int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "hindi ma i-convert NaN sa int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "hindi ma i-convert inf sa int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "hindi ma-convert sa complex"
|
||||
|
|
@ -3177,10 +3108,6 @@ msgid "function takes %d positional arguments but %d were given"
|
|||
msgstr ""
|
||||
"ang function ay kumuhuha ng %d positional arguments ngunit %d ang ibinigay"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "function kumukuha ng 9 arguments"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "insinasagawa na ng generator"
|
||||
|
|
@ -3908,11 +3835,6 @@ msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence a2 hanggang a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence r0 hanggang r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
#, fuzzy
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "wala sa sakop ang address"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4038,10 +3960,6 @@ msgstr "sign hindi maari sa integer format specifier 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "sleep length ay dapat hindi negatibo"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4307,6 +4225,10 @@ msgstr "hindi sinusuportahan ang thumb instruktion '%s' sa %d argumento"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "hindi sinusuportahan ang instruction ng Xtensa '%s' sa %d argumento"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4353,6 +4275,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4424,6 +4356,40 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Ginagamit na ang EXTINT channel"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "PWM frequency hindi writable kapag variable_frequency ay False sa pag buo."
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Tuple o struct_time argument kailangan"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "may maling type ang argument"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argument ay dapat na '%q' hindi '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "hindi ma i-convert NaN sa int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "hindi ma i-convert inf sa int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "function kumukuha ng 9 arguments"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "sleep length ay dapat hindi negatibo"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "wala sa sakop ang address"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Isang channel ng hardware interrupt ay ginagamit na"
|
||||
|
||||
|
|
|
|||
248
locale/fr.po
248
locale/fr.po
|
|
@ -223,7 +223,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q doit être de type %q ou %q, pas %q"
|
||||
|
|
@ -232,7 +233,8 @@ msgstr "%q doit être de type %q ou %q, pas %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q doit être de type %q, pas %q"
|
||||
|
||||
|
|
@ -249,7 +251,7 @@ msgstr "%q est hors intervalle"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q est hors de portée"
|
||||
|
||||
|
|
@ -493,12 +495,6 @@ msgstr "Tous les périphériques CAN sont utilisés"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Tous les périphériques I2C sont utilisés"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Toutes les unités PCNT sont utilisées"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -516,7 +512,6 @@ msgstr "Tous les périphériques UART sont utilisés"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Tout les canaux sont utilisés"
|
||||
|
||||
|
|
@ -539,24 +534,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Tout les canaux d'événements sync sont utilisés"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Tous les minuteurs pour cette broche sont utilisés"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Tous les minuteurs sont utilisés"
|
||||
|
||||
|
|
@ -761,6 +750,7 @@ msgstr "Impossible de définir CCCD sur une caractéristique locale"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Impossible de changer de périphérique USB maintenant"
|
||||
|
||||
|
|
@ -804,13 +794,6 @@ msgstr "Impossible d'enregistrer vers un fichier"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Ne peut démonter '/' quand est visible par USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
"Impossible de redémarrer dans le bootloader puisque aucun n'est présent"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Ne peut définir les options de socket"
|
||||
|
|
@ -829,10 +812,6 @@ msgstr "Impossible de spécifier RTS ou CTS en mode RS485"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "On ne peut faire de sous-classes de tranches"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Impossible de faire varier la fréquence sur un minuteur déjà utilisée"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -872,18 +851,10 @@ msgstr "Les tableaux de coordonnées sont de longueur différentes"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Les types des matrices de coordonnées sont de longueur différentes"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Impossible d'obtenir l'horloge"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Impossible de définir l'adresse"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Impossible de démarrer PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Impossible de démarrer l'interruption, RX occupé"
|
||||
|
|
@ -932,10 +903,6 @@ msgid "Deep sleep pins must use a rising edge with pulldown"
|
|||
msgstr ""
|
||||
"Les broches de sommeil profond doivent utiliser un montant avec un pulldown"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "La capacité de destination est plus petite que 'destination_length'."
|
||||
|
|
@ -981,16 +948,6 @@ msgstr "La BCE ne fonctionne que sur 16 octets à la fois"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF échec d'allocation de la mémoire"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Canal EXTINT déjà utilisé"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Erreur dans l'expression régulière"
|
||||
|
|
@ -1130,12 +1087,6 @@ msgstr ""
|
|||
"La fréquence doit être 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 ou "
|
||||
"1008 MHz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"La fréquence doit correspondre à PWMOut existant à l'utilisation de ce "
|
||||
"minuteur"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1170,11 +1121,6 @@ msgstr "Matériel utilisé, essayez d'autres broches"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Allocation du tas en dehors de la MV."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr "Tas corrompu parce que la pile était trop petite. Augmenter la pile."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Opération d'E/S sur un fichier fermé"
|
||||
|
|
@ -1222,7 +1168,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr "L'entrée prend trop de temps"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Erreur d'entrée/sortie"
|
||||
|
||||
|
|
@ -1255,7 +1201,7 @@ msgid "Internal define error"
|
|||
msgstr "Erreur de définition interne"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Erreur interne"
|
||||
|
||||
|
|
@ -1264,6 +1210,16 @@ msgstr "Erreur interne"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Erreur interne #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Le minuteur du watchdog interne a expiré."
|
||||
|
|
@ -1281,7 +1237,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "%q invalide"
|
||||
|
||||
|
|
@ -1437,6 +1393,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Doit être une sous-classe de %q."
|
||||
|
|
@ -1522,9 +1482,11 @@ msgstr "Aucun périphérique I2S à l'adresse : 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "Aucune IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Pas d'horloge disponible"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1542,15 +1504,12 @@ msgstr "Pas de connexion : la longueur ne peut pas être déterminée"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Pas de bus %q par défaut"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Pas de GCLK libre"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Aucunes source de valeurs aléatoire matérielle disponible"
|
||||
|
|
@ -1755,13 +1714,6 @@ msgstr "Plus de sockets"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Éléments du tampon de sortie doivent être <= à 4 octets"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"La fréquence de PWM n'est pas modifiable quand variable_frequency est False "
|
||||
"à la construction."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "Redémarrage PWM"
|
||||
|
|
@ -1807,11 +1759,6 @@ msgstr "La broche est entrée uniquement"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "La broche doit être sur le canal B du PWM"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "La broche doit supporter les interruptions matérielles"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2049,13 +1996,9 @@ msgstr "Les tampons source et de destination doivent être de la même longueur"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Spécifiez une unique broche parmi data0 ou data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Canal stéréo gauche doit être sur le canal PWM A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Canal stéréo droit doit être sur le canal PWM B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2166,10 +2109,6 @@ msgstr "Les touches d'alarme ne sont pas disponibles"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (appels les plus récents en dernier) :\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Paramètre de type tuple ou struct_time requis"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "Dé-initialisation du UART"
|
||||
|
|
@ -2536,10 +2475,6 @@ msgstr "le paramêtre argsort doit être un ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort n'est pas implémenté pour les arrays aplatis"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "l'argument est d'un mauvais type"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "le nom de l'argument est réutilisé"
|
||||
|
|
@ -2549,10 +2484,6 @@ msgstr "le nom de l'argument est réutilisé"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "nombre/types de paramètres ne correspondent pas"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "le paramètre devrait être un(e) '%q', pas '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "les paramètres doivent être des ndarrays"
|
||||
|
|
@ -2630,6 +2561,10 @@ msgstr "mauvais code type"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "opération binaire '%q' non implémentée"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "les tailles des images doivent correspondre"
|
||||
|
|
@ -2734,7 +2669,7 @@ msgstr "ne peut convertir %s en nombre complexe"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "ne peut convertir %s en nombre à virgule flottante 'float'"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "ne peut convertir %s en entier 'int'"
|
||||
|
|
@ -2743,18 +2678,10 @@ msgstr "ne peut convertir %s en entier 'int'"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "impossible de convertir l'objet '%q' en '%q' implicitement"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "on ne peut convertir NaN en entier 'int'"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "ne peut convertir un complexe en flottant"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "on ne peut convertir l'infini 'inf' en entier 'int'"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "ne peut convertir en nombre complexe"
|
||||
|
|
@ -3254,10 +3181,6 @@ msgstr "il manque l'argument positionnel obligatoire #%d"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "la fonction prend %d argument(s) positionnels mais %d ont été donné(s)"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "la fonction prend exactement 9 arguments"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "générateur déjà en cours d'exécution"
|
||||
|
|
@ -3993,10 +3916,6 @@ msgstr "les paramètres doivent être des registres dans la séquence a2 à a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "les paramètres doivent être des registres dans la séquence r0 à r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "coordonnées de pixel hors limites"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "le polling sur un fichier n'est pas disponible sous win32"
|
||||
|
|
@ -4122,10 +4041,6 @@ msgstr "signe non autorisé avec la spéc. de format d'entier 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "la taille n'est définie que pour les ndarrays"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "la longueur de sleep ne doit pas être négative"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "slice non-supporté"
|
||||
|
|
@ -4391,6 +4306,10 @@ msgstr "instruction Thumb '%s' non supportée avec %d paramètres"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "instruction Xtensa '%s' non supportée avec %d paramètres"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "espace de couleur non supporté pour GifWriter"
|
||||
|
|
@ -4437,6 +4356,16 @@ msgstr "valeur hors de l'intervalle de la cible"
|
|||
msgid "wbits"
|
||||
msgstr "wbits"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "width doit être plus que zero"
|
||||
|
|
@ -4508,6 +4437,79 @@ msgstr "zi doit être de type float"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi doit être de forme (n_section, 2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Toutes les unités PCNT sont utilisées"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Impossible d'obtenir l'horloge"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr ""
|
||||
#~ "Impossible de redémarrer dans le bootloader puisque aucun n'est présent"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr ""
|
||||
#~ "Impossible de faire varier la fréquence sur un minuteur déjà utilisée"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Impossible de démarrer PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Canal EXTINT déjà utilisé"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "La fréquence doit correspondre à PWMOut existant à l'utilisation de ce "
|
||||
#~ "minuteur"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "Tas corrompu parce que la pile était trop petite. Augmenter la pile."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Pas d'horloge disponible"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "La fréquence de PWM n'est pas modifiable quand variable_frequency est "
|
||||
#~ "False à la construction."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "La broche doit supporter les interruptions matérielles"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Canal stéréo gauche doit être sur le canal PWM A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Canal stéréo droit doit être sur le canal PWM B"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Paramètre de type tuple ou struct_time requis"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "l'argument est d'un mauvais type"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "le paramètre devrait être un(e) '%q', pas '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "on ne peut convertir NaN en entier 'int'"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "on ne peut convertir l'infini 'inf' en entier 'int'"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "la fonction prend exactement 9 arguments"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "la longueur de sleep ne doit pas être négative"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "coordonnées de pixel hors limites"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Un canal d'interruptions matériel est déjà utilisé"
|
||||
|
||||
|
|
|
|||
166
locale/hi.po
166
locale/hi.po
|
|
@ -209,7 +209,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -218,7 +219,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -235,7 +237,7 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -476,12 +478,6 @@ msgstr ""
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -499,7 +495,6 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -522,24 +517,18 @@ msgid "All sync event channels in use"
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -738,6 +727,7 @@ msgstr ""
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -778,12 +768,6 @@ msgstr ""
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -801,10 +785,6 @@ msgstr ""
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -839,18 +819,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr ""
|
||||
|
|
@ -898,10 +870,6 @@ msgstr ""
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr ""
|
||||
|
|
@ -946,16 +914,6 @@ msgstr ""
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr ""
|
||||
|
|
@ -1088,10 +1046,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1126,11 +1080,6 @@ msgstr ""
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr ""
|
||||
|
|
@ -1173,7 +1122,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1206,7 +1155,7 @@ msgid "Internal define error"
|
|||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1215,6 +1164,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1232,7 +1191,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1380,6 +1339,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr ""
|
||||
|
|
@ -1464,8 +1427,10 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
|
|
@ -1484,15 +1449,12 @@ msgstr ""
|
|||
msgid "No default %q bus"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr ""
|
||||
|
|
@ -1691,11 +1653,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1741,11 +1698,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1976,12 +1928,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2090,10 +2038,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2447,10 +2391,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2460,10 +2400,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2541,6 +2477,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2644,7 +2584,7 @@ msgstr ""
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2653,18 +2593,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3152,10 +3084,6 @@ msgstr ""
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3881,10 +3809,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4010,10 +3934,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4279,6 +4199,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4325,6 +4249,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
|
|||
214
locale/it_IT.po
214
locale/it_IT.po
|
|
@ -211,7 +211,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -220,7 +221,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -237,7 +239,7 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q oltre il limite"
|
||||
|
||||
|
|
@ -478,12 +480,6 @@ msgstr "Tutte le periferiche CAN sono in uso"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Tutte le periferiche I2C sono in uso"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Tutte le unità PCNT sono in uso"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -502,7 +498,6 @@ msgstr "Tutte le periferiche I2C sono in uso"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -525,24 +520,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Tutti i canali di eventi sincronizzati in uso"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Tutti i timer per questo pin sono in uso"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Tutti i timer utilizzati"
|
||||
|
||||
|
|
@ -743,6 +732,7 @@ msgstr ""
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -784,12 +774,6 @@ msgstr "Impossibile registrare in un file"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -807,10 +791,6 @@ msgstr ""
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Impossibile subclasare slice"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -845,18 +825,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr ""
|
||||
|
|
@ -906,10 +878,6 @@ msgstr "Impossibile inserire dati nel pacchetto di advertisement."
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "La capacità di destinazione è più piccola di destination_length."
|
||||
|
|
@ -954,16 +922,6 @@ msgstr ""
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Canale EXTINT già in uso"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Errore nella regex"
|
||||
|
|
@ -1096,10 +1054,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1134,11 +1088,6 @@ msgstr ""
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "operazione I/O su file chiuso"
|
||||
|
|
@ -1181,7 +1130,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Errore input/output"
|
||||
|
||||
|
|
@ -1214,7 +1163,7 @@ msgid "Internal define error"
|
|||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1223,6 +1172,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1240,7 +1199,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1388,6 +1347,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr ""
|
||||
|
|
@ -1472,9 +1435,11 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Nessun orologio a disposizione"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1492,15 +1457,12 @@ msgstr ""
|
|||
msgid "No default %q bus"
|
||||
msgstr "Nessun bus %q predefinito"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Nessun GCLK libero"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Nessun generatore hardware di numeri casuali disponibile"
|
||||
|
|
@ -1703,14 +1665,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"frequenza PWM frequency non è scrivibile quando variable_frequency è "
|
||||
"impostato nel costruttore a False."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1756,11 +1710,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1992,12 +1941,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2106,10 +2051,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (chiamata più recente per ultima):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Tupla o struct_time richiesto come argomento"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2465,10 +2406,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "il tipo dell'argomento è errato"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2478,10 +2415,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "discrepanza di numero/tipo di argomenti"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2559,6 +2492,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "operazione binaria %q non implementata"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2666,7 +2603,7 @@ msgstr "non è possibile convertire a complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "non è possibile convertire %s a float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "non è possibile convertire %s a int"
|
||||
|
|
@ -2675,18 +2612,10 @@ msgstr "non è possibile convertire %s a int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "impossibile convertire NaN in int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "impossibile convertire inf in int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "non è possibile convertire a complex"
|
||||
|
|
@ -3180,10 +3109,6 @@ msgid "function takes %d positional arguments but %d were given"
|
|||
msgstr ""
|
||||
"la funzione prende %d argomenti posizionali ma ne sono stati forniti %d"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "la funzione prende esattamente 9 argomenti"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3916,11 +3841,6 @@ msgstr "parametri devono essere i registri in sequenza da a2 a a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "parametri devono essere i registri in sequenza da a2 a a5"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
#, fuzzy
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "indirizzo fuori limite"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4046,10 +3966,6 @@ msgstr "segno non permesso nello spcificatore di formato 'c' della stringa"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "la lunghezza di sleed deve essere non negativa"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4315,6 +4231,10 @@ msgstr "istruzione '%s' Xtensa non supportata con %d argomenti"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "istruzione '%s' Xtensa non supportata con %d argomenti"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4361,6 +4281,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4432,6 +4362,48 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Tutte le unità PCNT sono in uso"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Canale EXTINT già in uso"
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Nessun orologio a disposizione"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "frequenza PWM frequency non è scrivibile quando variable_frequency è "
|
||||
#~ "impostato nel costruttore a False."
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Tupla o struct_time richiesto come argomento"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "il tipo dell'argomento è errato"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "impossibile convertire NaN in int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "impossibile convertire inf in int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "la funzione prende esattamente 9 argomenti"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "la lunghezza di sleed deve essere non negativa"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "indirizzo fuori limite"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Un canale di interruzione hardware è già in uso"
|
||||
|
||||
|
|
|
|||
315
locale/ja.po
315
locale/ja.po
|
|
@ -8,15 +8,15 @@ msgstr ""
|
|||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-04 12:55-0600\n"
|
||||
"PO-Revision-Date: 2023-11-16 15:03+0000\n"
|
||||
"Last-Translator: Yutaro Urata <yutarourata04@gmail.com>\n"
|
||||
"PO-Revision-Date: 2024-01-22 14:03+0000\n"
|
||||
"Last-Translator: Nemoto <sidespoilenm@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.2\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: main.c
|
||||
msgid ""
|
||||
|
|
@ -40,18 +40,25 @@ msgid ""
|
|||
"Please file an issue with your program at github.com/adafruit/circuitpython/"
|
||||
"issues."
|
||||
msgstr ""
|
||||
"\n"
|
||||
"プログラムに問題がある場合は、github.com/adafruit/circuitpython/issues に問題"
|
||||
"を報告してください。"
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"\n"
|
||||
"Press reset to exit safe mode.\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
"セーフモードからぬけるにはリセットを押してください。\n"
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"\n"
|
||||
"You are in safe mode because:\n"
|
||||
msgstr ""
|
||||
"\n"
|
||||
"セーフモードに入った理由:\n"
|
||||
|
||||
#: py/obj.c
|
||||
msgid " File \"%q\""
|
||||
|
|
@ -63,7 +70,7 @@ msgstr " ファイル \"%q\", 行 %d"
|
|||
|
||||
#: py/builtinhelp.c
|
||||
msgid " is of type %q\n"
|
||||
msgstr ""
|
||||
msgstr " は %q 型\n"
|
||||
|
||||
#: main.c
|
||||
msgid " not found.\n"
|
||||
|
|
@ -86,7 +93,7 @@ msgstr "%dアドレスピン、%dRGBピン、%dタイルは%dの高さを指示
|
|||
|
||||
#: shared-bindings/microcontroller/Pin.c
|
||||
msgid "%q and %q contain duplicate pins"
|
||||
msgstr ""
|
||||
msgstr "%q と %q に重複するピンがあります"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
msgid "%q and %q must be different"
|
||||
|
|
@ -94,11 +101,11 @@ msgstr "%qと%qが必ず異なるのは必要"
|
|||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "%q and %q must share a clock unit"
|
||||
msgstr ""
|
||||
msgstr "%q と %q はクロックユニットを共有する必要があります"
|
||||
|
||||
#: shared-bindings/microcontroller/Pin.c
|
||||
msgid "%q contains duplicate pins"
|
||||
msgstr ""
|
||||
msgstr "%q に重複するピンがあります"
|
||||
|
||||
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
||||
msgid "%q failure: %d"
|
||||
|
|
@ -106,7 +113,7 @@ msgstr "%q 失敗: %d"
|
|||
|
||||
#: py/argcheck.c
|
||||
msgid "%q in %q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
msgstr "%q 内の %q は %q 型である必要があり、 %q 型は使用できません"
|
||||
|
||||
#: ports/espressif/common-hal/espulp/ULP.c
|
||||
#: ports/mimxrt10xx/common-hal/audiobusio/__init__.c
|
||||
|
|
@ -125,7 +132,7 @@ msgstr "%q インデックスは範囲外"
|
|||
|
||||
#: py/obj.c
|
||||
msgid "%q indices must be integers, not %s"
|
||||
msgstr ""
|
||||
msgstr "%q インデックスは %s ではなく整数でなければなりません"
|
||||
|
||||
#: shared-module/bitbangio/SPI.c
|
||||
msgid "%q init failed"
|
||||
|
|
@ -141,27 +148,27 @@ msgstr "このボードでは%qが読み取り専用"
|
|||
|
||||
#: py/argcheck.c shared-bindings/usb_hid/Device.c
|
||||
msgid "%q length must be %d"
|
||||
msgstr ""
|
||||
msgstr "%q の長さは %d である必要があります"
|
||||
|
||||
#: py/argcheck.c
|
||||
msgid "%q length must be %d-%d"
|
||||
msgstr ""
|
||||
msgstr "%q の長さは %d-%d である必要があります"
|
||||
|
||||
#: py/argcheck.c
|
||||
msgid "%q length must be <= %d"
|
||||
msgstr ""
|
||||
msgstr "%q の長さは <= %d である必要があります"
|
||||
|
||||
#: py/argcheck.c
|
||||
msgid "%q length must be >= %d"
|
||||
msgstr ""
|
||||
msgstr "%q の長さは >= %d である必要があります"
|
||||
|
||||
#: py/objmodule.c py/runtime.c
|
||||
msgid "%q moved from %q to %q"
|
||||
msgstr ""
|
||||
msgstr "%q は %q から %q へ移動しました"
|
||||
|
||||
#: py/argcheck.c
|
||||
msgid "%q must be %d"
|
||||
msgstr ""
|
||||
msgstr "%q は %d である必要があります"
|
||||
|
||||
#: py/argcheck.c shared-bindings/busdisplay/BusDisplay.c
|
||||
#: shared-bindings/displayio/Bitmap.c
|
||||
|
|
@ -169,91 +176,95 @@ msgstr ""
|
|||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
msgid "%q must be %d-%d"
|
||||
msgstr ""
|
||||
msgstr "%q は %d-%d である必要があります"
|
||||
|
||||
#: shared-bindings/busdisplay/BusDisplay.c
|
||||
msgid "%q must be 1 when %q is True"
|
||||
msgstr ""
|
||||
msgstr "%q は %q が True のとき 1 である必要があります"
|
||||
|
||||
#: py/argcheck.c shared-bindings/gifio/GifWriter.c
|
||||
#: shared-module/gifio/OnDiskGif.c
|
||||
msgid "%q must be <= %d"
|
||||
msgstr ""
|
||||
msgstr "%q は <= %d である必要があります"
|
||||
|
||||
#: ports/espressif/common-hal/watchdog/WatchDogTimer.c
|
||||
msgid "%q must be <= %u"
|
||||
msgstr ""
|
||||
msgstr "%q は <= %u である必要があります"
|
||||
|
||||
#: py/argcheck.c
|
||||
msgid "%q must be >= %d"
|
||||
msgstr ""
|
||||
msgstr "%q は >= %d である必要があります"
|
||||
|
||||
#: shared-bindings/analogbufio/BufferedIn.c
|
||||
msgid "%q must be a bytearray or array of type 'H' or 'B'"
|
||||
msgstr ""
|
||||
msgstr "%q は bytearray か、 'H' または 'B' 型の array である必要があります"
|
||||
|
||||
#: shared-bindings/audiocore/RawSample.c
|
||||
msgid "%q must be a bytearray or array of type 'h', 'H', 'b', or 'B'"
|
||||
msgstr ""
|
||||
"%q は bytearray か、 'h', 'H', 'b', 'B' 型の array である必要があります"
|
||||
|
||||
#: shared-bindings/warnings/__init__.c
|
||||
msgid "%q must be a subclass of %q"
|
||||
msgstr ""
|
||||
msgstr "%q は %q のサブクラスである必要があります"
|
||||
|
||||
#: ports/espressif/common-hal/analogbufio/BufferedIn.c
|
||||
msgid "%q must be array of type 'H'"
|
||||
msgstr ""
|
||||
msgstr "%q は 'H' 型の array である必要があります"
|
||||
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be array of type 'h'"
|
||||
msgstr ""
|
||||
msgstr "%q は 'h' 型の array である必要があります"
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "%q must be multiple of 8."
|
||||
msgstr ""
|
||||
msgstr "%q は 8 の倍数である必要があります"
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
msgstr "%q は %q 型か %q 型である必要があります、 %q 型は使用できません"
|
||||
|
||||
#: shared-bindings/jpegio/JpegDecoder.c
|
||||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
"%q は %q 型や %q 型または %q 型である必要があります、 %q 型は使用できません"
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
msgstr "%q は %q 型である必要があります、 %q 型は使用できません"
|
||||
|
||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||
msgid "%q must be power of 2"
|
||||
msgstr ""
|
||||
msgstr "%q は 2 のべき乗である必要があります"
|
||||
|
||||
#: shared-bindings/wifi/Monitor.c
|
||||
msgid "%q out of bounds"
|
||||
msgstr ""
|
||||
msgstr "%q が境界外"
|
||||
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q が範囲外"
|
||||
|
||||
#: py/objmodule.c py/runtime.c
|
||||
msgid "%q renamed %q"
|
||||
msgstr ""
|
||||
msgstr "%q は %q に名前を変更されました"
|
||||
|
||||
#: py/objrange.c py/objslice.c shared-bindings/random/__init__.c
|
||||
msgid "%q step cannot be zero"
|
||||
msgstr ""
|
||||
msgstr "%q ステップを 0 にすることはできません"
|
||||
|
||||
#: shared-module/bitbangio/I2C.c
|
||||
msgid "%q too long"
|
||||
msgstr ""
|
||||
msgstr "%q が長すぎます"
|
||||
|
||||
#: py/bc.c py/objnamedtuple.c
|
||||
msgid "%q() takes %d positional arguments but %d were given"
|
||||
|
|
@ -261,36 +272,36 @@ msgstr "%q() は %d 個の位置引数を取りますが、%d 個与えられま
|
|||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "%q() without %q()"
|
||||
msgstr ""
|
||||
msgstr "%q() に %q() がありません"
|
||||
|
||||
#: shared-bindings/usb_hid/Device.c
|
||||
msgid "%q, %q, and %q must all be the same length"
|
||||
msgstr ""
|
||||
msgstr "%q と %q および %q はすべて同じ長さである必要があります"
|
||||
|
||||
#: py/objint.c shared-bindings/storage/__init__.c
|
||||
msgid "%q=%q"
|
||||
msgstr ""
|
||||
msgstr "%q=%q"
|
||||
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
msgid "%q[%u] shifts in more bits than pin count"
|
||||
msgstr ""
|
||||
msgstr "%q[%u] はピン数よりも多くのビットをシフトインします"
|
||||
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
msgid "%q[%u] shifts out more bits than pin count"
|
||||
msgstr ""
|
||||
msgstr "%q[%u] はピン数よりも多くのビットをシフトアウトします"
|
||||
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
msgid "%q[%u] uses extra pin"
|
||||
msgstr ""
|
||||
msgstr "%q[%u] は指定外のピンを使用しています"
|
||||
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
msgid "%q[%u] waits on input outside of count"
|
||||
msgstr ""
|
||||
msgstr "%q[%u] はカウント外の入力を待機します"
|
||||
|
||||
#: ports/espressif/common-hal/espidf/__init__.c
|
||||
#, c-format
|
||||
msgid "%s error 0x%x"
|
||||
msgstr ""
|
||||
msgstr "%s エラー 0x%x"
|
||||
|
||||
#: py/argcheck.c
|
||||
msgid "'%q' argument required"
|
||||
|
|
@ -335,7 +346,7 @@ msgstr "'%s'にはFPUレジスタが必要"
|
|||
#: py/emitinlinethumb.c
|
||||
#, c-format
|
||||
msgid "'%s' expects an address of the form [a, b]"
|
||||
msgstr ""
|
||||
msgstr "'%s' には [a, b] 形式のアドレスが必要です"
|
||||
|
||||
#: py/emitinlinethumb.c py/emitinlinextensa.c
|
||||
#, c-format
|
||||
|
|
@ -345,7 +356,7 @@ msgstr "'%s' には整数が必要"
|
|||
#: py/emitinlinethumb.c
|
||||
#, c-format
|
||||
msgid "'%s' expects at most r%d"
|
||||
msgstr ""
|
||||
msgstr "'%s' は最大でも r%d 必要です"
|
||||
|
||||
#: py/emitinlinethumb.c
|
||||
#, c-format
|
||||
|
|
@ -355,35 +366,35 @@ msgstr "'%s'には{r0, r1, ...}が必要"
|
|||
#: py/emitinlinextensa.c
|
||||
#, c-format
|
||||
msgid "'%s' integer %d isn't within range %d..%d"
|
||||
msgstr ""
|
||||
msgstr "'%s' 整数 %d は範囲 %d..%d 内にありません"
|
||||
|
||||
#: py/emitinlinethumb.c
|
||||
#, c-format
|
||||
msgid "'%s' integer 0x%x doesn't fit in mask 0x%x"
|
||||
msgstr ""
|
||||
msgstr "'%s' 整数 0x%x はマスク 0x%x に適合しません"
|
||||
|
||||
#: py/obj.c
|
||||
#, c-format
|
||||
msgid "'%s' object doesn't support item assignment"
|
||||
msgstr ""
|
||||
msgstr "'%s' オブジェクトは要素の代入をサポートしていません"
|
||||
|
||||
#: py/obj.c
|
||||
#, c-format
|
||||
msgid "'%s' object doesn't support item deletion"
|
||||
msgstr ""
|
||||
msgstr "'%s' オブジェクトは要素の削除をサポートしていません"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "'%s' object has no attribute '%q'"
|
||||
msgstr ""
|
||||
msgstr "'%s' オブジェクトに '%q' という属性はありません"
|
||||
|
||||
#: py/obj.c
|
||||
#, c-format
|
||||
msgid "'%s' object isn't subscriptable"
|
||||
msgstr ""
|
||||
msgstr "'%s' オブジェクトは添え字を使えません"
|
||||
|
||||
#: py/objstr.c
|
||||
msgid "'=' alignment not allowed in string format specifier"
|
||||
msgstr ""
|
||||
msgstr "'=' は書式指定子での使用が認められていません"
|
||||
|
||||
#: shared-module/struct/__init__.c
|
||||
msgid "'S' and 'O' are not supported format types"
|
||||
|
|
@ -399,7 +410,7 @@ msgstr "関数外でのawait"
|
|||
|
||||
#: py/compile.c
|
||||
msgid "'break'/'continue' outside loop"
|
||||
msgstr ""
|
||||
msgstr "ループ外の 'break'/'continue'"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "'data' requires at least 2 arguments"
|
||||
|
|
@ -419,7 +430,7 @@ msgstr "関数外でのreturn"
|
|||
|
||||
#: py/compile.c
|
||||
msgid "'yield from' inside async function"
|
||||
msgstr ""
|
||||
msgstr "'yield from' が非同期関数内にあります"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "'yield' outside function"
|
||||
|
|
@ -435,7 +446,7 @@ msgstr "*xは代入先でなければなりません"
|
|||
|
||||
#: py/obj.c
|
||||
msgid ", in %q\n"
|
||||
msgstr ""
|
||||
msgstr "%q 内の\n"
|
||||
|
||||
#: shared-bindings/busdisplay/BusDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
|
|
@ -480,12 +491,6 @@ msgstr "全てのCAN周辺機器が使用中"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "全てのI2C周辺機器が使用中"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -503,7 +508,6 @@ msgstr "全てのUART周辺機器が使用中"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -526,24 +530,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "全ての同期イベントチャネルが使用中"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "このピン用の全てのタイマが使用中"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "全てのタイマーが使用中"
|
||||
|
||||
|
|
@ -746,6 +744,7 @@ msgstr "ローカルのCharacteristicにはCCCDを設定できません"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -786,12 +785,6 @@ msgstr "ファイルへ記録できません"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -809,10 +802,6 @@ msgstr "RS485モードにRTSまたはCTSを指定できません"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "sliceをサブクラス化することはできません"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "使用中のタイマー上では周波数を変えられません"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -847,18 +836,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "アドレスをセットできません"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "PWMをスタートできません"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "割り込みをスタートできません。RXビジー"
|
||||
|
|
@ -906,10 +887,6 @@ msgstr "データが、アドバタイズメントパケットには大きすぎ
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "宛先バッファがdestination_lengthより小さい"
|
||||
|
|
@ -954,16 +931,6 @@ msgstr "ECBは一度に16バイトの演算のみを行います"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINTチャネルはすでに使用されています"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "正規表現にエラーがあります"
|
||||
|
|
@ -1096,10 +1063,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "このタイマーを使う既存のPWMOutと周波数を一致させる必要があります"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1134,11 +1097,6 @@ msgstr "ハードウェア使用中。代わりのピンを試してください
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "閉じられたファイルへのI/O操作"
|
||||
|
|
@ -1181,7 +1139,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "入力/出力エラー"
|
||||
|
||||
|
|
@ -1214,7 +1172,7 @@ msgid "Internal define error"
|
|||
msgstr "内部定義エラー"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1223,6 +1181,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr "内部エラー #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1240,7 +1208,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "不正な %q"
|
||||
|
||||
|
|
@ -1388,6 +1356,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "%q のサブクラスでなければなりません"
|
||||
|
|
@ -1472,9 +1444,11 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "利用できるクロックがありません"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1492,15 +1466,12 @@ msgstr "接続なし: 長さが決定できません"
|
|||
msgid "No default %q bus"
|
||||
msgstr "デフォルトの %q バスがありません"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "使われていないGCLKがありません"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "利用可能なハードウェア乱数なし"
|
||||
|
|
@ -1701,11 +1672,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr "PWM周波数は生成時のvariable_frequencyがFalseのとき書き換え不可"
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1751,11 +1717,6 @@ msgstr "ピンは入力専用"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "ピンはハードウェア割り込みに対応していなければなりません"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1804,6 +1765,8 @@ msgstr ""
|
|||
#: main.c
|
||||
msgid "Pretending to deep sleep until alarm, CTRL-C or file write.\n"
|
||||
msgstr ""
|
||||
"アラームや CTRL-C 、またはファイルの書き込みが発生するまで、仮のディープス"
|
||||
"リープ状態になります。\n"
|
||||
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
msgid "Program does IN without loading ISR"
|
||||
|
|
@ -1987,12 +1950,8 @@ msgstr "バッファ (元/先) は同じ長さでなければなりません"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2101,10 +2060,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "トレースバック(最新の呼び出しが末尾):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2459,10 +2414,6 @@ msgstr "argsortの引数はndarrayでなければなりません"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2472,10 +2423,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "引数には '%q' が必要('%q' ではなく)"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "引数はndarrayでなければなりません"
|
||||
|
|
@ -2553,6 +2500,10 @@ msgstr "不正なtypecode"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2656,7 +2607,7 @@ msgstr ""
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2665,18 +2616,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "オブジェクト '%q' を %q に暗黙に変換できません"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3168,10 +3111,6 @@ msgstr ""
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "関数はちょうど9個の引数をとります"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3898,10 +3837,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4027,10 +3962,6 @@ msgstr "整数フォーマット指定子'c'で符号は使えません"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "sleepの長さは非負数でなければなりません"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4296,6 +4227,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4342,6 +4277,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4413,6 +4358,38 @@ msgstr "ziはfloat値でなければなりません"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "使用中のタイマー上では周波数を変えられません"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "PWMをスタートできません"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINTチャネルはすでに使用されています"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "このタイマーを使う既存のPWMOutと周波数を一致させる必要があります"
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "利用できるクロックがありません"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr "PWM周波数は生成時のvariable_frequencyがFalseのとき書き換え不可"
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "ピンはハードウェア割り込みに対応していなければなりません"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "引数には '%q' が必要('%q' ではなく)"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "関数はちょうど9個の引数をとります"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "sleepの長さは非負数でなければなりません"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "ハードウェア割り込みチャネルは使用中"
|
||||
|
||||
|
|
|
|||
211
locale/ko.po
211
locale/ko.po
|
|
@ -226,7 +226,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q는 %q가 아닌 %q 또는 %q 유형이어야 합니다"
|
||||
|
|
@ -235,7 +236,8 @@ msgstr "%q는 %q가 아닌 %q 또는 %q 유형이어야 합니다"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q는 %q가 아니라 %q 유형이어야 합니다"
|
||||
|
||||
|
|
@ -253,7 +255,7 @@ msgstr "%q가 경계를 벗어남"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
#, fuzzy
|
||||
msgid "%q out of range"
|
||||
msgstr "%q가 범위를 벗어남"
|
||||
|
|
@ -507,13 +509,6 @@ msgstr "모든 CAN 주변 기기가 사용 중입니다"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "사용 중인 모든 I2C주변 기기"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#, fuzzy
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "모든 PCNT 장치가 사용 중입니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -532,7 +527,6 @@ msgstr "사용중인 모든 UART주변 기기"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "모든 채널이 사용중입니다"
|
||||
|
||||
|
|
@ -558,24 +552,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "모든 동기화 이벤트 채널이 사용 중입니다"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "핀의 모든 타이머가 사용 중입니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "모든 타이머가 사용 중입니다"
|
||||
|
||||
|
|
@ -782,6 +770,7 @@ msgstr "로컬 특성에 CCCD를 설정할 수 없습니다"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "현재 USB 디바이스를 변경할 수 없습니다"
|
||||
|
||||
|
|
@ -822,12 +811,6 @@ msgstr "파일에 녹음 할 수 없습니다"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "USB를 통해 표시될 때 '/'은 다시 마운트할 수 없습니다."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "부트로더가 없기 때문에 부트로더로 재시작할 수 없습니다"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "소켓 옵션을 설정할 수 없습니다"
|
||||
|
|
@ -845,10 +828,6 @@ msgstr "RS485 모드에서는 RTS 또는 CTS를 지정할 수 없습니다"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "이미 사용 중인 타이머의 주파수를 변경할 수 없습니다"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
#, fuzzy
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
|
|
@ -885,18 +864,10 @@ msgstr "좌표 배열의 길이가 다릅니다"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "좌표 배열 유형은 크기가 다릅니다"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "시계를 불러올 수 없습니다"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "주소를 설정할 수 없습니다"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "PWM을 시작할 수 없습니다"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "인터럽트를 시작할 수 없습니다, RX가 사용 중입니다"
|
||||
|
|
@ -945,10 +916,6 @@ msgstr "광고 (브로드 캐스트) 패킷에 대한 데이터가 너무 큽니
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr "딥 슬립 핀은 풀다운이 있는 상승 에지를 사용해야 합니다"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr "대상 비트맵이 이미지를 포함하기에는 너무 작습니다"
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "대상 용량이 destination_length보다 작습니다."
|
||||
|
|
@ -993,16 +960,6 @@ msgstr "ECB는 한 번에 16 바이트에서만 작동합니다"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF 메모리 할당에 실패하였습니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT 채널은 이미 사용 중입니다"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Regex에 오류가 있습니다."
|
||||
|
|
@ -1141,10 +1098,6 @@ msgstr ""
|
|||
"주파수는 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 또는 1008 Mhz 여야 "
|
||||
"합니다"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "이 타이머를 사용하는 기존 PWMOut와 주파수를 일치시켜야 한다"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1179,11 +1132,6 @@ msgstr "하드웨어가 사용 중입니다, 대체 핀을 사용해보십시오
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "VM이 작동하지 않을 때 힙이 할당됩니다."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr "스택이 너무 작아서 힙이 손상되었습니다. 스택 크기를 증가시켜 주십시오."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "닫힌 파일에서 I/O 작업"
|
||||
|
|
@ -1226,7 +1174,7 @@ msgstr "입력 버퍼 길이 (%d) 는 스트랜드 수 (%d)의 배수여야 한
|
|||
msgid "Input taking too long"
|
||||
msgstr "입력이 너무 오래 걸린다"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "입력/출력 오류"
|
||||
|
||||
|
|
@ -1259,7 +1207,7 @@ msgid "Internal define error"
|
|||
msgstr "내부 정의 오류"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "내부 오류"
|
||||
|
||||
|
|
@ -1268,6 +1216,16 @@ msgstr "내부 오류"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "내부 오류 #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "내부 감시 타이머가 만료되었습니다."
|
||||
|
|
@ -1285,7 +1243,7 @@ msgstr "출력 함수로 인해 종료되었다"
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "잘못된 %q"
|
||||
|
||||
|
|
@ -1436,6 +1394,10 @@ msgstr "first_set_pin이 누락되었습니다. %q[%u]는 pin(s)을 설정합니
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "jmp_pin이 누락되었습니다. %q[%u] 핀으로 점프합니다"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "%q의 하위클래스여야 합니다."
|
||||
|
|
@ -1521,9 +1483,11 @@ msgstr "주소에 I2C 장치가 없습니다: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "IP가 없습니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "사용 가능한 시계가 없습니다"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1542,15 +1506,12 @@ msgstr "연결이 없습니다: 길이를 결정할 수 없습니다"
|
|||
msgid "No default %q bus"
|
||||
msgstr "기본 버스 %q가 없습니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "무료 GCLKs가 없습니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "임의의 하드웨어를 사용할 수 없습니다"
|
||||
|
|
@ -1761,11 +1722,6 @@ msgstr "소켓 부족"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "출력 버퍼 요소의 길이는 <= 4 바이트 여야 합니다"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr "생성 시 variable_frequency가 false인 경우 PWM 주파수는 쓸 수 없습니다."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
#, fuzzy
|
||||
msgid "PWM restart"
|
||||
|
|
@ -1817,11 +1773,6 @@ msgstr "핀은 입력 전용입니다"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "핀은 PWM 채널 B에 있어야 합니다"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "핀은 하드웨어 인터럽트를 지원해야 합니다"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2054,12 +2005,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2168,10 +2115,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2526,10 +2469,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2539,10 +2478,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2620,6 +2555,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2723,7 +2662,7 @@ msgstr "%s 를 복합어로 변환할 수 없습니다"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2732,18 +2671,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3231,10 +3162,6 @@ msgstr ""
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3960,10 +3887,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4089,10 +4012,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4358,6 +4277,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4404,6 +4327,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4475,6 +4408,48 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "모든 PCNT 장치가 사용 중입니다"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "시계를 불러올 수 없습니다"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr "부트로더가 없기 때문에 부트로더로 재시작할 수 없습니다"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "이미 사용 중인 타이머의 주파수를 변경할 수 없습니다"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "PWM을 시작할 수 없습니다"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT 채널은 이미 사용 중입니다"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "이 타이머를 사용하는 기존 PWMOut와 주파수를 일치시켜야 한다"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "스택이 너무 작아서 힙이 손상되었습니다. 스택 크기를 증가시켜 주십시오."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "사용 가능한 시계가 없습니다"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "생성 시 variable_frequency가 false인 경우 PWM 주파수는 쓸 수 없습니다."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "핀은 하드웨어 인터럽트를 지원해야 합니다"
|
||||
|
||||
#~ msgid "Destination bitmap too small to contain image"
|
||||
#~ msgstr "대상 비트맵이 이미지를 포함하기에는 너무 작습니다"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "하드웨어 인터럽트 채널이 이미 사용 중입니다"
|
||||
|
||||
|
|
|
|||
228
locale/nl.po
228
locale/nl.po
|
|
@ -207,7 +207,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -216,7 +217,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -233,7 +235,7 @@ msgstr ""
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q buiten bereik"
|
||||
|
||||
|
|
@ -474,12 +476,6 @@ msgstr "Alle CAN-peripherals zijn in gebruik"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Alle I2C peripherals zijn in gebruik"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Alle PCNT-eenheden zijn in gebruik"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -497,7 +493,6 @@ msgstr "Alle UART peripherals zijn in gebruik"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -520,24 +515,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Alle sync event kanalen zijn in gebruik"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Alle timers voor deze pin zijn in gebruik"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Alle timers zijn in gebruik"
|
||||
|
||||
|
|
@ -738,6 +727,7 @@ msgstr "Kan CCCD niet toewijzen aan lokaal Characteristic"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -779,12 +769,6 @@ msgstr "Kan niet opnemen naar een bestand"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -802,10 +786,6 @@ msgstr "Kan RTS of CTS niet specificeren in RS485 modus"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Kan slice niet subclasseren"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Kan de frequentie van een timer die al in gebruik is niet variëren"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -842,18 +822,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Kon klok niet ophalen"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Kan adres niet zetten"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Kan PWM niet starten"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Kan interrupt niet starten, RX is bezig"
|
||||
|
|
@ -901,10 +873,6 @@ msgstr "Data te groot voor advertisement pakket"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Bestemming grootte is kleiner dan destination_length."
|
||||
|
|
@ -949,16 +917,6 @@ msgstr "ECB werkt alleen met 16 bytes tegelijkertijd"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF geheugen toewijzing mislukt"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT kanaal al in gebruik"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Fout in regex"
|
||||
|
|
@ -1091,11 +1049,6 @@ msgid ""
|
|||
"Frequency must be 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 or 1008 Mhz"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"Frequentie moet overeenkomen met bestaande PWMOut bij gebruik van deze timer"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1130,11 +1083,6 @@ msgstr "Hardware in gebruik, probeer alternatieve pinnen"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "I/O actie op gesloten bestand"
|
||||
|
|
@ -1177,7 +1125,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr "Invoer duurt te lang"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Input/Output fout"
|
||||
|
||||
|
|
@ -1210,7 +1158,7 @@ msgid "Internal define error"
|
|||
msgstr "Interne define fout"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1219,6 +1167,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Interne fout #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1236,7 +1194,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Ongeldige %q"
|
||||
|
||||
|
|
@ -1384,6 +1342,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "%q moet een subklasse zijn."
|
||||
|
|
@ -1468,9 +1430,11 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Geen klokken beschikbaar"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1488,15 +1452,12 @@ msgstr "Geen verbinding: lengte kan niet worden bepaald"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Geen standaard %q bus"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Geen vrije GCLKs"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Geen hardware random beschikbaar"
|
||||
|
|
@ -1701,13 +1662,6 @@ msgstr "Geen sockets meer beschikbaar"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"PWM frequentie is niet schrijfbaar wanneer de variable_frequency False is "
|
||||
"tijdens constructie."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1753,11 +1707,6 @@ msgstr "Pin kan alleen voor invoer gebruikt worden"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Pin moet hardware interrupts ondersteunen"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1993,12 +1942,8 @@ msgstr "Bron en bestemming buffers moeten dezelfde lengte hebben"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2107,10 +2052,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (meest recente call laatst):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Tuple of struct_time argument vereist"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2468,10 +2409,6 @@ msgstr "argsort argument moet een ndarray zijn"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort wordt niet geïmplementeerd voor vlakke arrays"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "argument heeft onjuist type"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2481,10 +2418,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "argument num/typen komen niet overeen"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argument moet een '%q' zijn en niet een '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "argumenten moeten ndarrays zijn"
|
||||
|
|
@ -2562,6 +2495,10 @@ msgstr "verkeerde typecode"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "binaire op %q niet geïmplementeerd"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2666,7 +2603,7 @@ msgstr "kan %s niet converteren naar een complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "kan %s niet omzetten naar een float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "kan %s niet omzetten naar een int"
|
||||
|
|
@ -2675,18 +2612,10 @@ msgstr "kan %s niet omzetten naar een int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "kan '%q' object niet omzetten naar %q impliciet"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "kan NaN niet omzetten naar int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "kan inf niet omzetten naar int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "kan niet omzetten naar complex"
|
||||
|
|
@ -3177,10 +3106,6 @@ msgid "function takes %d positional arguments but %d were given"
|
|||
msgstr ""
|
||||
"functie vraagt %d argumenten zonder keyword maar %d argumenten werden gegeven"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "functie vraagt precies 9 argumenten"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "generator wordt al uitgevoerd"
|
||||
|
|
@ -3908,10 +3833,6 @@ msgstr "parameters moeten registers zijn in de volgorde a2 tot a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "parameters moeten registers zijn in de volgorde r0 tot r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "pixel coördinaten buiten bereik"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4037,10 +3958,6 @@ msgstr "teken niet toegestaan bij integer formaatspecificatie 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "omvang is alleen voor ndarrays gedefinieerd"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "de slaapduur mag niet negatief zijn"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4306,6 +4223,10 @@ msgstr "niet ondersteunde Thumb instructie '%s' met %d argumenten"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "niet ondersteunde Xtensa instructie '%s' met %d argumenten"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4352,6 +4273,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "breedte moet groter dan nul zijn"
|
||||
|
|
@ -4423,6 +4354,63 @@ msgstr "zi moet van type float zijn"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi moet vorm (n_section, 2) hebben"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Alle PCNT-eenheden zijn in gebruik"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Kon klok niet ophalen"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Kan de frequentie van een timer die al in gebruik is niet variëren"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Kan PWM niet starten"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT kanaal al in gebruik"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "Frequentie moet overeenkomen met bestaande PWMOut bij gebruik van deze "
|
||||
#~ "timer"
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Geen klokken beschikbaar"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "PWM frequentie is niet schrijfbaar wanneer de variable_frequency False is "
|
||||
#~ "tijdens constructie."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Pin moet hardware interrupts ondersteunen"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Tuple of struct_time argument vereist"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "argument heeft onjuist type"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argument moet een '%q' zijn en niet een '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "kan NaN niet omzetten naar int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "kan inf niet omzetten naar int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "functie vraagt precies 9 argumenten"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "de slaapduur mag niet negatief zijn"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "pixel coördinaten buiten bereik"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Een hardware interrupt kanaal is al in gebruik"
|
||||
|
||||
|
|
|
|||
220
locale/pl.po
220
locale/pl.po
|
|
@ -215,7 +215,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -224,7 +225,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q musi być typu %q, a nie %q"
|
||||
|
||||
|
|
@ -241,7 +243,7 @@ msgstr "%q poza dopuszczalnym zakresem"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q poza zakresem"
|
||||
|
||||
|
|
@ -482,12 +484,6 @@ msgstr ""
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Wszystkie peryferia I2C w użyciu"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -505,7 +501,6 @@ msgstr "Wszystkie peryferia UART w użyciu"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -528,24 +523,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Wszystkie kanały zdarzeń synchronizacji w użyciu"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Wszystkie timery tej nóżki w użyciu"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Wszystkie timery w użyciu"
|
||||
|
||||
|
|
@ -748,6 +737,7 @@ msgstr "Nie można ustawić CCCD na charakterystykę lokalną"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Zmiana urządzenia USB nie jest w tym momencie możliwa"
|
||||
|
||||
|
|
@ -790,12 +780,6 @@ msgstr "Nie można nagrać do pliku"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr ""
|
||||
|
|
@ -813,10 +797,6 @@ msgstr "Nie można określić RTS ani CTS w trybie RS485"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Nie można dziedziczyć ze slice"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Nie można zmieniać częstotliwości timera, który jest już używany"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -853,18 +833,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Odczytanie zegara nie powiodło się"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Nie można ustawić adresu"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Nie można uruchomić PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Nie można rozpocząć przerwania, RX jest zajęty"
|
||||
|
|
@ -912,10 +884,6 @@ msgstr "Zbyt dużo danych pakietu rozgłoszeniowego"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Pojemność celu mniejsza od destination_length."
|
||||
|
|
@ -960,16 +928,6 @@ msgstr "ECB działa tylko na 16 bajtach naraz"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "Alokacja pamięci ESP-IDF nie powiodła się"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Kanał EXTINT w użyciu"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Błąd w regex"
|
||||
|
|
@ -1110,11 +1068,6 @@ msgstr ""
|
|||
"Częstotliwość musi wynosić: 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 "
|
||||
"lub 1008 Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"Częstotliwość musi odpowiadać istniejącemu PWMOut przy użyciu tego timera"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1149,11 +1102,6 @@ msgstr "Sprzęt w użyciu, wypróbuj alternatywne piny"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Operacja I/O na zamkniętym pliku"
|
||||
|
|
@ -1196,7 +1144,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Błąd I/O"
|
||||
|
||||
|
|
@ -1229,7 +1177,7 @@ msgid "Internal define error"
|
|||
msgstr "Błąd definiowania wewnętrznego"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1238,6 +1186,16 @@ msgstr ""
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Błąd wewnętrzny #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr ""
|
||||
|
|
@ -1255,7 +1213,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Nieprawidłowe %q"
|
||||
|
||||
|
|
@ -1403,6 +1361,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Musi być podklasą %q."
|
||||
|
|
@ -1487,9 +1449,11 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Brak wolnych zegarów"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1507,15 +1471,12 @@ msgstr "Brak połączenia: nie można ustalić długości"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Nie ma domyślnej magistrali %q"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Brak wolnych GLCK"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Brak generatora liczb losowych"
|
||||
|
|
@ -1716,11 +1677,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr "Nie można zmienić częstotliwości PWM gdy variable_frequency=False."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1766,11 +1722,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Pin musi obsługiwać przerwania sprzętowe"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2005,12 +1956,8 @@ msgstr "Bufory źródłowy i docelowy muszą mieć taką samą długość"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2119,10 +2066,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Ślad wyjątku (najnowsze wywołanie na końcu):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Wymagana krotka lub struct_time"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2478,10 +2421,6 @@ msgstr "Argument argsort musi być typu ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "argument ma zły typ"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2491,10 +2430,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "zła liczba lub typ argumentów"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argument powinien być '%q' a nie '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "argumenty muszą być typu ndarray"
|
||||
|
|
@ -2572,6 +2507,10 @@ msgstr "zły typecode"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "brak dwu-argumentowego operatora %q"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2675,7 +2614,7 @@ msgstr "nie można skonwertować %s do complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "nie można skonwertować %s do float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "nie można skonwertować %s do int"
|
||||
|
|
@ -2684,18 +2623,10 @@ msgstr "nie można skonwertować %s do int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "nie można automatycznie skonwertować '%q' do '%q'"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "nie można skonwertować NaN do int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "nie można skonwertować inf do int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "nie można skonwertować do complex"
|
||||
|
|
@ -3184,10 +3115,6 @@ msgstr "brak wymaganego argumentu pozycyjnego #%d funkcji"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "funkcja wymaga %d argumentów pozycyjnych, ale jest %d"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "funkcja wymaga dokładnie 9 argumentów"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "generator już się wykonuje"
|
||||
|
|
@ -3914,10 +3841,6 @@ msgstr "parametry muszą być rejestrami w kolejności a2 do a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "parametry muszą być rejestrami w kolejności r0 do r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "współrzędne piksela poza zakresem"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4043,10 +3966,6 @@ msgstr "znak jest niedopuszczalny w specyfikacji 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "rozmiar jest zdefiniowany tylko dla ndarrays"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "okres snu musi być nieujemny"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4312,6 +4231,10 @@ msgstr "zła instrukcja Thumb '%s' z %d argumentami"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "zła instrukcja Xtensa '%s' z %d argumentami"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4358,6 +4281,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "szerokość musi być większa niż zero"
|
||||
|
|
@ -4429,6 +4362,57 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Odczytanie zegara nie powiodło się"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Nie można zmieniać częstotliwości timera, który jest już używany"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Nie można uruchomić PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Kanał EXTINT w użyciu"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "Częstotliwość musi odpowiadać istniejącemu PWMOut przy użyciu tego timera"
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Brak wolnych zegarów"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr "Nie można zmienić częstotliwości PWM gdy variable_frequency=False."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Pin musi obsługiwać przerwania sprzętowe"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Wymagana krotka lub struct_time"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "argument ma zły typ"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argument powinien być '%q' a nie '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "nie można skonwertować NaN do int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "nie można skonwertować inf do int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "funkcja wymaga dokładnie 9 argumentów"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "okres snu musi być nieujemny"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "współrzędne piksela poza zakresem"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Kanał przerwań sprzętowych w użyciu"
|
||||
|
||||
|
|
|
|||
260
locale/pt_BR.po
260
locale/pt_BR.po
|
|
@ -6,7 +6,7 @@ msgstr ""
|
|||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-04 12:55-0600\n"
|
||||
"PO-Revision-Date: 2023-12-27 22:19+0000\n"
|
||||
"PO-Revision-Date: 2024-02-03 11:01+0000\n"
|
||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt_BR\n"
|
||||
|
|
@ -220,7 +220,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr "%q deve ser um múltiplo de 8."
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q deve ser do tipo %q ou %q e não %q"
|
||||
|
|
@ -229,7 +230,8 @@ msgstr "%q deve ser do tipo %q ou %q e não %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr "%q deve ser do tipo %q, %q ou %q e não %q"
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q deve ser do tipo %q e não %q"
|
||||
|
||||
|
|
@ -246,7 +248,7 @@ msgstr "%q fora dos limites"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q fora do alcance"
|
||||
|
||||
|
|
@ -489,12 +491,6 @@ msgstr "Todos os periféricos CAN estão em uso"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Todos os periféricos I2C estão em uso"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Todas as unidades PCNT estão em uso"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -512,7 +508,6 @@ msgstr "Todos os periféricos UART estão em uso"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Todos os canais estão em uso"
|
||||
|
||||
|
|
@ -535,24 +530,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Todos os canais dos eventos de sincronização em uso"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Todos os temporizadores para este pino estão em uso"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Todos os temporizadores em uso"
|
||||
|
||||
|
|
@ -756,6 +745,7 @@ msgstr "Não é possível definir o CCCD com a característica local"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Agora não é possível alternar os dispositivos USB"
|
||||
|
||||
|
|
@ -798,13 +788,6 @@ msgstr "Não é possível gravar em um arquivo"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Não é possível montar '/' quando estiver visível pelo USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr ""
|
||||
"Não é possível redefinir no bootloader pois nenhum bootloader está presente"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Não foi possível definir as opções do socket"
|
||||
|
|
@ -822,10 +805,6 @@ msgstr "Não é possível definir o RTS ou CTS no modo RS485"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Não é possível subclassificar a fatia"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Não é possível variar a frequência em um timer que já esteja em uso"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "Não é possível acordar na borda do pino, nível apenas"
|
||||
|
|
@ -861,18 +840,10 @@ msgstr "As coordenadas das matrizes possuem comprimentos diferentes"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Os tipos das coordenadas das matrizes possuem tamanhos diferentes"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Não foi possível recuperar o clock"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Não foi possível definir o endereço"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Não foi possível iniciar o PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Não foi possível iniciar a interrupção, RX ocupado"
|
||||
|
|
@ -920,10 +891,6 @@ msgstr "Os dados são grandes demais para o pacote de publicidade"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr "Os pinos deep sleep devem usar uma borda ascendente com pulldown"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr "Bitmap de destino muito pequeno para conter a imagem"
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "A capacidade do destino é menor que destination_length."
|
||||
|
|
@ -969,16 +936,6 @@ msgstr "O BCE opera apenas com 16 bytes por vez"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "Houve uma falha na alocação da memória ESP-IDF"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Canal EXTINT em uso"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Erro no regex"
|
||||
|
|
@ -1116,11 +1073,6 @@ msgstr ""
|
|||
"A frequência deve ser 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 ou "
|
||||
"1008 Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"A frequência deve coincidir com o PWMOut existente usando este temporizador"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1155,13 +1107,6 @@ msgstr "O hardware está em uso, tente os pinos alternativos"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Alocação dinâmica de variáveis quando a VM não estiver funcionando."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
"A área de alocação dinâmica de variáveis foi corrompida porque a pilha de "
|
||||
"funções era muito pequena. Aumente o tamanho da pilha."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Operação I/O no arquivo fechado"
|
||||
|
|
@ -1210,7 +1155,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr "A entrada está demorando demais"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Erro de entrada/saída"
|
||||
|
||||
|
|
@ -1243,7 +1188,7 @@ msgid "Internal define error"
|
|||
msgstr "Erro interno de definição"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Erro interno"
|
||||
|
||||
|
|
@ -1252,6 +1197,16 @@ msgstr "Erro interno"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Erro interno #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr "Recurso(s) interno(s) em uso"
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "O temporizador do watchdog interno expirou."
|
||||
|
|
@ -1269,7 +1224,7 @@ msgstr "Interrompido pela função de saída"
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "%q Inválido"
|
||||
|
||||
|
|
@ -1417,6 +1372,10 @@ msgstr "Faltando first_set_pin. %q[%u] define pino(s)"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "Falta jmp_pin. %q[%u] jumper no pino"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr "Falta o diretório do ponto de montagem"
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Deve ser uma subclasse %q."
|
||||
|
|
@ -1501,9 +1460,11 @@ msgstr "Não há nenhum dispositivo I2C no endereço: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "Sem IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Nenhum clock disponível"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr "Nenhum bootloader presente"
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1521,15 +1482,12 @@ msgstr "Sem conexão: o comprimento não pode ser determinado"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Nenhum barramento %q padrão"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Não há GCLKs livre"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr "Nenhum GLCK livre"
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Nenhum hardware aleatório está disponível"
|
||||
|
|
@ -1736,13 +1694,6 @@ msgstr "Sem soquetes"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Os elementos Out-buffer devem ter um comprimento de <= 4 bytes"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"A frequência do PWM não pode ser gravada quando variable_frequency for False "
|
||||
"na construção."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "Reinício do PWM"
|
||||
|
|
@ -1788,11 +1739,6 @@ msgstr "Apenas o pino de entrada"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "O pino deve estar no canal B do PWM"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "O pino deve ser compatível com as interrupções do hardware"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2032,13 +1978,9 @@ msgstr "Os buffers da origem e do destino devem ter o mesmo comprimento"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Especifique exatamente um do data0 ou do data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "O estéreo à esquerda deve estar no canal PWM A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "O estéreo à direita deve estar no canal PWM B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr "Estouro de pilha. Aumente o tamanho da pilha."
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2153,10 +2095,6 @@ msgstr "Alarmes de toque não estão disponíveis"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (a última chamada mais recente):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "O argumento de tupla ou struct_time é necessário"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "descontinuar o início UART"
|
||||
|
|
@ -2520,10 +2458,6 @@ msgstr "O argumento argsort deve ser um ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort não é implementado para matrizes achatadas"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "argumento tem tipo errado"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "nome do argumento reutilizado"
|
||||
|
|
@ -2533,10 +2467,6 @@ msgstr "nome do argumento reutilizado"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "o argumento num/tipos não combinam"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "o argumento deve ser um '%q' e não um '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "os argumentos devem ser ndarrays"
|
||||
|
|
@ -2614,6 +2544,10 @@ msgstr "typecode incorreto"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "a operação binário %q não foi implementada"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr "o tamanho e a profundidade do bitmap devem corresponder"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "os tamanhos do bitmap devem coincidir"
|
||||
|
|
@ -2717,7 +2651,7 @@ msgstr "Não é possível converter %s para complex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "Não é possível converter %s para float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "Não é possível converter %s para int"
|
||||
|
|
@ -2726,18 +2660,10 @@ msgstr "Não é possível converter %s para int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "não é possível converter implicitamente o objeto '%q' para %q"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "Não é possível converter NaN para int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "não foi possível converter complexo em flutuante"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "não é possível converter inf para int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "não é possível converter para complex"
|
||||
|
|
@ -3234,10 +3160,6 @@ msgstr "falta o argumento #%d da posição necessária da função"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "função leva %d argumentos posicionais, mas apenas %d foram passadas"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "função leva exatamente 9 argumentos"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "o gerador já está em execução"
|
||||
|
|
@ -3974,10 +3896,6 @@ msgstr "os parâmetros devem ser registradores na sequência a2 até a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "os parâmetros devem ser registradores na sequência r0 até r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "as coordenadas do pixel estão fora dos limites"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "a sondagem no arquivo não está disponível no win32"
|
||||
|
|
@ -4103,10 +4021,6 @@ msgstr "sinal não permitido com o especificador no formato inteiro 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "o tamanho é definido apenas para os ndarrays"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "a duração do sleep não deve ser negativo"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "fatia não suportada"
|
||||
|
|
@ -4372,6 +4286,10 @@ msgstr "instrução Thumb '%s' não compatível com argumentos %d"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "instrução Xtensa '%s' não compatível com argumentos %d"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr "profundidade de bitmap não suportada"
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "espaço de cores não compatível com GifWriter"
|
||||
|
|
@ -4418,6 +4336,18 @@ msgstr "valor fora do alcance do alvo"
|
|||
msgid "wbits"
|
||||
msgstr "wbits"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
"os pesos devem ser uma sequência com um número quadrado ímpar de elementos "
|
||||
"(geralmente 9 ou 25)"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr "os pesos devem ser um objeto do tipo %q, %q, %q ou %q, e não %q "
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "a largura deve ser maior que zero"
|
||||
|
|
@ -4489,6 +4419,86 @@ msgstr "zi deve ser de um tipo float"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi deve estar na forma (n_section, 2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Todas as unidades PCNT estão em uso"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Não foi possível recuperar o clock"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr ""
|
||||
#~ "Não é possível redefinir no bootloader pois nenhum bootloader está "
|
||||
#~ "presente"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Não é possível variar a frequência em um timer que já esteja em uso"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Não foi possível iniciar o PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Canal EXTINT em uso"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "A frequência deve coincidir com o PWMOut existente usando este "
|
||||
#~ "temporizador"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "A área de alocação dinâmica de variáveis foi corrompida porque a pilha de "
|
||||
#~ "funções era muito pequena. Aumente o tamanho da pilha."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Nenhum clock disponível"
|
||||
|
||||
#~ msgid "No free GLCKs"
|
||||
#~ msgstr "Nenhum GLCK livre"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "A frequência do PWM não pode ser gravada quando variable_frequency for "
|
||||
#~ "False na construção."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "O pino deve ser compatível com as interrupções do hardware"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "O estéreo à esquerda deve estar no canal PWM A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "O estéreo à direita deve estar no canal PWM B"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "O argumento de tupla ou struct_time é necessário"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "argumento tem tipo errado"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "o argumento deve ser um '%q' e não um '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "Não é possível converter NaN para int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "não é possível converter inf para int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "função leva exatamente 9 argumentos"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "a duração do sleep não deve ser negativo"
|
||||
|
||||
#~ msgid "Destination bitmap too small to contain image"
|
||||
#~ msgstr "Bitmap de destino muito pequeno para conter a imagem"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "as coordenadas do pixel estão fora dos limites"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Um canal de interrupção de hardware já está em uso"
|
||||
|
||||
|
|
|
|||
252
locale/ru.po
252
locale/ru.po
|
|
@ -224,7 +224,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q должно быть типа%q или%q, а не%q"
|
||||
|
|
@ -233,7 +234,8 @@ msgstr "%q должно быть типа%q или%q, а не%q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q должно быть типа %q, а не %q"
|
||||
|
||||
|
|
@ -250,7 +252,7 @@ msgstr "%q за пределом"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q вне диапазона"
|
||||
|
||||
|
|
@ -493,12 +495,6 @@ msgstr "Все периферийные устройства CAN уже испо
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Все периферийные устройства I2C уже используются"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Все блоки PCNT уже используются"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -516,7 +512,6 @@ msgstr "Все периферийные устройства UART уже исп
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Все каналы уже используются"
|
||||
|
||||
|
|
@ -539,24 +534,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Все каналы событий синхронизации уже используются"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Все таймеры для этого пина уже используются"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Все таймеры уже используются"
|
||||
|
||||
|
|
@ -761,6 +750,7 @@ msgstr "Невозможно установить CCCD для локальной
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Невозможно изменить USB устройство сейчас"
|
||||
|
||||
|
|
@ -803,12 +793,6 @@ msgstr "Невозможно записать в файл"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Невозможно перемонтировать '/' пока он виден через USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "Не удалось перезагрузится в загрузчик так как загрузчик отсутствует"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Невозможно установить параметры сокета"
|
||||
|
|
@ -826,10 +810,6 @@ msgstr "Невозможно указать RTS или CTS в режиме RS485
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Невозможно создать подкласс среза"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Невозможно изменить частоту на таймере который уже используется"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -867,18 +847,10 @@ msgstr "Координатные массивы имеют разные длин
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Типы массивов координат имеют разные размеры"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Не удалось извлечь тактирование"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Не удалось задать адрес"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Не удалось запустить PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Не удалось запустить прерывание, RX занят"
|
||||
|
|
@ -928,10 +900,6 @@ msgstr ""
|
|||
"Выводы глубокого сна должны использовать сигнал по возрастанию с подтяжкой к "
|
||||
"земле"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Емкость места назначения меньше длины места назначения."
|
||||
|
|
@ -977,16 +945,6 @@ msgstr "ECB работает только с 16 байтами за раз"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "Ошибка выделения памяти ESP-IDF"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "Канал EXTINT уже используется"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Ошибка в регулярном выражении"
|
||||
|
|
@ -1128,12 +1086,6 @@ msgstr ""
|
|||
"Частота должна быть 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 или 1008 "
|
||||
"МГц"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr ""
|
||||
"Частота должна соответствовать существующему выходу PWM с использованием "
|
||||
"этого таймера"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1168,13 +1120,6 @@ msgstr "Оборудование используется, попробуйте
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Выделение кучи, когда виртуальная машина не запущена."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
"Куча была повреждена, потому что стек был слишком маленьким. Увеличьте "
|
||||
"размер стека."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Операция ввода-вывода на закрытом файле"
|
||||
|
|
@ -1221,7 +1166,7 @@ msgstr "Длина входного буфера (%d) должна быть кр
|
|||
msgid "Input taking too long"
|
||||
msgstr "Ввод занимает слишком много времени"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Ошибка ввода/вывода"
|
||||
|
||||
|
|
@ -1254,7 +1199,7 @@ msgid "Internal define error"
|
|||
msgstr "Внутренняя ошибка определения"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Внутренняя ошибка"
|
||||
|
||||
|
|
@ -1263,6 +1208,16 @@ msgstr "Внутренняя ошибка"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Внутренняя ошибка #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Внутренний сторожевой таймер истек."
|
||||
|
|
@ -1280,7 +1235,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Недопустимый %q"
|
||||
|
||||
|
|
@ -1428,6 +1383,10 @@ msgstr "Отсутствует first_set_pin. %q[%u] устанавливает
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "Не хватает jmp_pin.%q [%u] прыгает на пин"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Должен быть субклассом %q."
|
||||
|
|
@ -1514,9 +1473,11 @@ msgstr "Нет устройства I2C по адресу: %x"
|
|||
msgid "No IP"
|
||||
msgstr "Нет IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Нет доступных часов"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1534,15 +1495,12 @@ msgstr "Нет соединения: длина не может быть опр
|
|||
msgid "No default %q bus"
|
||||
msgstr "Нет шины %q по умолчанию"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Свободные GCLK отсутствуют"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Отсутствует аппаратный генератор случайных чисел"
|
||||
|
|
@ -1747,13 +1705,6 @@ msgstr "Вне розеток"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Элементы вне буфера должны иметь длину <= 4 байта"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"Частота PWM не записывается, если variable_frequency имеет значение False "
|
||||
"при построении."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "PWM перезагрузка"
|
||||
|
|
@ -1799,11 +1750,6 @@ msgstr "Пин является только входом"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "Пин должен быть на канале ШИМ B"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Пин должен поддерживать аппаратные прерывания"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2040,13 +1986,9 @@ msgstr "Исходный и конечный буферы должны имет
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Укажите точно один из data0 или data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Стерео слева должно быть на PWM-канале A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Стерео справа должно быть на PWM-канале B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2159,10 +2101,6 @@ msgstr "Сенсорные сигналы недоступны"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Трассировка (последний вызов):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Требуется кортеж или struct_time аргумент"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "Деинициализация UART"
|
||||
|
|
@ -2527,10 +2465,6 @@ msgstr "аргумент сортировки должен быть аргуме
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "сортировка arg не реализована для сглаженных массивов"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "аргумент имеет неправильный тип"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "Повторное использование имени аргумента"
|
||||
|
|
@ -2540,10 +2474,6 @@ msgstr "Повторное использование имени аргумен
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "Аргумент Несоответствие числа/типов"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "аргумент должен быть '%q', а не '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "Аргументы должны быть массивами ndarrays"
|
||||
|
|
@ -2627,6 +2557,10 @@ msgstr "Неверный шрифт"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "двоичная операция %q не реализована"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "Размеры растровых изображений должны совпадать"
|
||||
|
|
@ -2731,7 +2665,7 @@ msgstr "не может преобразовать %s в сложный"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "не могу преобразовать %s в число с плавающей запятой"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, fuzzy, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "не может конвертировать %s в int"
|
||||
|
|
@ -2740,20 +2674,10 @@ msgstr "не может конвертировать %s в int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "не может конвертировать «%q» в% q косвенно"
|
||||
|
||||
#: py/objint.c
|
||||
#, fuzzy
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "не может превратить NaN в int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "Не может преобразовать сложный в плавающий"
|
||||
|
||||
#: py/objint.c
|
||||
#, fuzzy
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "не может конвертировать inf в int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "не может быть преобразован в сложный"
|
||||
|
|
@ -3257,10 +3181,6 @@ msgstr "В функции отсутствует обязательный поз
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "функция принимает %d позиционные аргументы, но %d были заданы"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "функция принимает ровно 9 аргументов"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "генератор уже работает"
|
||||
|
|
@ -4000,10 +3920,6 @@ msgstr "Параметры должны быть регистрами в пос
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "Параметры должны быть регистрами в последовательности от r0 до r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "пиксельные координаты за пределами границ"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "Опрос в файле недоступен в Win32"
|
||||
|
|
@ -4129,10 +4045,6 @@ msgstr "Знак не разрешен со спецификатором цел
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "размер определен только для массива ndarrays"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "Продолжительность сна должна быть неотрицательной"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "Фрагмент не поддерживается"
|
||||
|
|
@ -4404,6 +4316,10 @@ msgstr "неподдерживаемая инструкция Thumb '%s' с ар
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "неподдерживаемая инструкция Xtensa '%s' с аргументами %d"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "неподдерживаемое цветовое пространство для GifWriter"
|
||||
|
|
@ -4452,6 +4368,16 @@ msgstr "Величина выходящая за пределы диапазон
|
|||
msgid "wbits"
|
||||
msgstr "wbits"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "ширина должна быть больше нуля"
|
||||
|
|
@ -4523,6 +4449,80 @@ msgstr "zi должно быть типа float"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi должен иметь форму (n_section, 2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Все блоки PCNT уже используются"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Не удалось извлечь тактирование"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr "Не удалось перезагрузится в загрузчик так как загрузчик отсутствует"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Невозможно изменить частоту на таймере который уже используется"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Не удалось запустить PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "Канал EXTINT уже используется"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr ""
|
||||
#~ "Частота должна соответствовать существующему выходу PWM с использованием "
|
||||
#~ "этого таймера"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "Куча была повреждена, потому что стек был слишком маленьким. Увеличьте "
|
||||
#~ "размер стека."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Нет доступных часов"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "Частота PWM не записывается, если variable_frequency имеет значение False "
|
||||
#~ "при построении."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Пин должен поддерживать аппаратные прерывания"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Стерео слева должно быть на PWM-канале A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Стерео справа должно быть на PWM-канале B"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Требуется кортеж или struct_time аргумент"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "аргумент имеет неправильный тип"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "аргумент должен быть '%q', а не '%q'"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "не может превратить NaN в int"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "не может конвертировать inf в int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "функция принимает ровно 9 аргументов"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "Продолжительность сна должна быть неотрицательной"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "пиксельные координаты за пределами границ"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Канал аппаратного прерывания уже используется"
|
||||
|
||||
|
|
|
|||
246
locale/sv.po
246
locale/sv.po
|
|
@ -221,7 +221,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr "%q måste vara en multipel av 8."
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q måste vara av typen %q eller %q, inte %q"
|
||||
|
|
@ -230,7 +231,8 @@ msgstr "%q måste vara av typen %q eller %q, inte %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr "%q måste vara av typen %q, %q, eller %q, inte %q"
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q måste vara av typen %q, inte %q"
|
||||
|
||||
|
|
@ -247,7 +249,7 @@ msgstr "%q är utanför gränserna"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q utanför intervallet"
|
||||
|
||||
|
|
@ -488,12 +490,6 @@ msgstr "All CAN-kringutrustning används"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "All I2C-kringutrustning används"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Alla PCNT-enheter används"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -511,7 +507,6 @@ msgstr "Alla UART-kringutrustning används"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Alla kanaler används"
|
||||
|
||||
|
|
@ -534,24 +529,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Alla synkroniseringskanaler används"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Alla timers för denna pinne är i bruk"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Alla timers används"
|
||||
|
||||
|
|
@ -753,6 +742,7 @@ msgstr "Kan inte ställa in CCCD på lokal karaktäristik"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "Kan inte ändra USB-enheter nu"
|
||||
|
||||
|
|
@ -794,12 +784,6 @@ msgstr "Det går inte att spela in till en fil"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "Det går inte att montera om '/' när den är synlig via USB."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "Kan inte återställa till bootloader eftersom ingen bootloader finns"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Det går inte att ange socketalternativ"
|
||||
|
|
@ -817,10 +801,6 @@ msgstr "Det går inte att specificera RTS eller CTS i RS485-läget"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "Det går inte att subklassa slice"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Det går inte att ändra frekvensen på en timer som redan används"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "Kan inte vakna på pin edge, bara nivå"
|
||||
|
|
@ -857,18 +837,10 @@ msgstr "Arrayer för koordinater har olika längd"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "Arrayer för koordinater har olika storlek"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "Kunde inte hämta klocka"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Kan inte ange adress"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Det gick inte att starta PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Det gick inte att starta avbrott, RX upptagen"
|
||||
|
|
@ -916,10 +888,6 @@ msgstr "Data för stor för annonseringspaket"
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr "Deep sleep-pinnar måste använda en stigande flank med pulldown"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr "Distinationsbitmap för liten för att få plats med bild"
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Målkapaciteten är mindre än destination_length."
|
||||
|
|
@ -965,16 +933,6 @@ msgstr "ECB arbetar endast på 16 byte åt gången"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF-minnetilldelning misslyckades"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT-kanalen används redan"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Fel i regex"
|
||||
|
|
@ -1111,10 +1069,6 @@ msgstr ""
|
|||
"Frekvens måste vara en av 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 "
|
||||
"eller 1008 Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "Frekvensen måste matcha befintlig PWMOut med den här timern"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1149,11 +1103,6 @@ msgstr "Hårdvaran används redan, prova alternativa pinnar"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "Heap-allokering när VM inte körs."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr "Heap skadades eftersom stacken var för liten. Öka stackstorlek."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "I/O-operation på stängd fil"
|
||||
|
|
@ -1198,7 +1147,7 @@ msgstr "indatabuffertlängd (%d) måste vara en multipel av antal strand (%d)"
|
|||
msgid "Input taking too long"
|
||||
msgstr "Indata tar för lång tid"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Indata-/utdatafel"
|
||||
|
||||
|
|
@ -1231,7 +1180,7 @@ msgid "Internal define error"
|
|||
msgstr "Internt define-fel"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Internt fel"
|
||||
|
||||
|
|
@ -1240,6 +1189,16 @@ msgstr "Internt fel"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Internt fel #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Intern watchdog-timer har löpt ut."
|
||||
|
|
@ -1257,7 +1216,7 @@ msgstr "Avbruten av utgångsfunktion"
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Ogiltig %q"
|
||||
|
||||
|
|
@ -1405,6 +1364,10 @@ msgstr "Saknad first_set_pin. %q[%u] sätter pin(s)"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "Saknad jmp_pin. %q[%u] hoppar på pin"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Måste vara en %q-subklass."
|
||||
|
|
@ -1489,9 +1452,11 @@ msgstr "Ingen I2C-enhet på adress: 0x%x"
|
|||
msgid "No IP"
|
||||
msgstr "Ingen IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Inga tillgängliga klockor"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1509,15 +1474,12 @@ msgstr "Ingen anslutning: längden kan inte bestämmas"
|
|||
msgid "No default %q bus"
|
||||
msgstr "Ingen standard %q-buss"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Inga fria GCLK: er"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr "Inga tillgängliga GLCK"
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Ingen hårdvaru-random tillgänglig"
|
||||
|
|
@ -1721,13 +1683,6 @@ msgstr "Slut på sockets"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "Element i utbuffer måste vara <= 4 byte långa"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
"PWM-frekvensen är inte skrivbar när variable_frequency är falsk vid "
|
||||
"skapandet."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "PWM omstart"
|
||||
|
|
@ -1773,11 +1728,6 @@ msgstr "Pinnen är enbart ingång"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "Pinne måste vara på PWM-kanal B"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Pinnen måste stödja hårdvaruavbrott"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2013,13 +1963,9 @@ msgstr "Käll- och målbuffertar måste ha samma längd"
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "Ange en av data0 eller data_pins"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "Vänster stereokanal måste använda PWM kanal A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "Höger stereokanal måste använda PWM kanal B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2129,10 +2075,6 @@ msgstr "Touchalarm är inte tillgängligt"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (senaste anrop):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Tuple- eller struct_time-argument krävs"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "UART omstart"
|
||||
|
|
@ -2493,10 +2435,6 @@ msgstr "argumentet argsort måste vara en ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "argsort är inte implementerad för tillplattade matriser"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "argumentet har fel typ"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "argumentnamn återanvänt"
|
||||
|
|
@ -2506,10 +2444,6 @@ msgstr "argumentnamn återanvänt"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "argument antal/typ matchar inte"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "argumentet skall vara en '%q', inte en '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "argumenten måste vara ndarray"
|
||||
|
|
@ -2587,6 +2521,10 @@ msgstr "Ogiltig typkod"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "binär op %q är inte implementerad"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "bitmappsstorlekar måste matcha"
|
||||
|
|
@ -2690,7 +2628,7 @@ msgstr "kan inte konvertera %s till komplex"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "kan inte konvertera %s till float"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "kan inte konvertera %s till int"
|
||||
|
|
@ -2699,18 +2637,10 @@ msgstr "kan inte konvertera %s till int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "kan inte konvertera '%q' objekt implicit till %q"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "kan inte konvertera NaN till int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "kan inte konvertera complex till float"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "kan inte konvertera inf till int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "kan inte konvertera till komplex"
|
||||
|
|
@ -3203,10 +3133,6 @@ msgstr "funktionen saknar det obligatoriska positionsargumentet #%d"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "funktionen kräver %d positionsargument men %d angavs"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "funktionen kräver exakt 9 argument"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "generatorn kör redan"
|
||||
|
|
@ -3934,10 +3860,6 @@ msgstr "parametrarna måste registreras i följd a2-a5"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "parametrarna måste registreras i följd r0-r3"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "pixelkoordinater utanför gränserna"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "filbevakning är inte tillgänglig på win32"
|
||||
|
|
@ -4063,10 +3985,6 @@ msgstr "tecken tillåts inte med heltalsformatspecificeraren 'c'"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "storlek är enbart definierad ndarrays"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "värdet för sleep måste vara positivt"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "slice stöds inte"
|
||||
|
|
@ -4332,6 +4250,10 @@ msgstr "Thumb-instruktion '%s' med %d argument stöd inte"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "Xtensa-instruktion '%s' med %d argument stöds inte"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "färgrymd stöds inte för GifWriter"
|
||||
|
|
@ -4378,6 +4300,16 @@ msgstr "värde utanför målintervall"
|
|||
msgid "wbits"
|
||||
msgstr "wbits"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "width måste vara större än noll"
|
||||
|
|
@ -4449,6 +4381,80 @@ msgstr "zi måste vara av typ float"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi måste vara i formen (n_section, 2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Alla PCNT-enheter används"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "Kunde inte hämta klocka"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr "Kan inte återställa till bootloader eftersom ingen bootloader finns"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Det går inte att ändra frekvensen på en timer som redan används"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Det gick inte att starta PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT-kanalen används redan"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "Frekvensen måste matcha befintlig PWMOut med den här timern"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr "Heap skadades eftersom stacken var för liten. Öka stackstorlek."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Inga tillgängliga klockor"
|
||||
|
||||
#~ msgid "No free GLCKs"
|
||||
#~ msgstr "Inga tillgängliga GLCK"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr ""
|
||||
#~ "PWM-frekvensen är inte skrivbar när variable_frequency är falsk vid "
|
||||
#~ "skapandet."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Pinnen måste stödja hårdvaruavbrott"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "Vänster stereokanal måste använda PWM kanal A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "Höger stereokanal måste använda PWM kanal B"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Tuple- eller struct_time-argument krävs"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "argumentet har fel typ"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "argumentet skall vara en '%q', inte en '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "kan inte konvertera NaN till int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "kan inte konvertera inf till int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "funktionen kräver exakt 9 argument"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "värdet för sleep måste vara positivt"
|
||||
|
||||
#~ msgid "Destination bitmap too small to contain image"
|
||||
#~ msgstr "Distinationsbitmap för liten för att få plats med bild"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "pixelkoordinater utanför gränserna"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "En kanal för hårdvaruavbrott används redan"
|
||||
|
||||
|
|
|
|||
189
locale/tr.po
189
locale/tr.po
|
|
@ -215,7 +215,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr ""
|
||||
|
|
@ -224,7 +225,8 @@ msgstr ""
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -241,7 +243,7 @@ msgstr "%q sınırların dışında"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q aralık dışında"
|
||||
|
||||
|
|
@ -482,12 +484,6 @@ msgstr "Tüm CAN çevre birimleri kullanımda"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "Tüm I2C çevre birimleri kullanımda"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "Tüm PCNT birimleri kullanımda"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -505,7 +501,6 @@ msgstr "Tüm UART çevre birimleri kullanımda"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "Tüm kanallar kullanımda"
|
||||
|
||||
|
|
@ -528,24 +523,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "Tüm asenkron olay kanalları kullanımda"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "Bu pin için tüm zamanlayıcılar kullanımda"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "Tüm zamanlayıcılar kullanımda"
|
||||
|
||||
|
|
@ -746,6 +735,7 @@ msgstr ""
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "USB aygıtları şu an değiştirilemez"
|
||||
|
||||
|
|
@ -787,12 +777,6 @@ msgstr "Dosyaya kayıt yapılamıyor"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "'/' USB ile görünür olduğunda, yeniden bağlanamaz."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "Hiçbir bootloader bulunmadığından bootloader sıfırlanamıyor"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "Soket seçenekleri ayarlanamıyor"
|
||||
|
|
@ -810,10 +794,6 @@ msgstr "RS485 modunda RTS veya CTS belirtilemez"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Kullanımda olan bir zamanlayıcının frekansı değiştirilemez"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr ""
|
||||
|
|
@ -848,18 +828,10 @@ msgstr ""
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "Adres ayarlanamadı"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "PWM başlatılamadı"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Kesinti başlatılamadı, RX kullanımda"
|
||||
|
|
@ -907,10 +879,6 @@ msgstr ""
|
|||
msgid "Deep sleep pins must use a rising edge with pulldown"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Hedef kapasitesi, hedef_uzunluğundan daha küçük."
|
||||
|
|
@ -955,16 +923,6 @@ msgstr "ECB aynı anda yalnızca 16 baytla çalışır"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT kanalı zaten kullanımda"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "regex'te hata"
|
||||
|
|
@ -1101,10 +1059,6 @@ msgstr ""
|
|||
"Frekans 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 ya da 1008 Mhz "
|
||||
"olmalıdır"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "Frekans, bu zamanlayıcıyı kullanan mevcut PWMOut ile eşleşmelidir"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1139,11 +1093,6 @@ msgstr "Donanım kullanımda, alternatif pinleri deneyin"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Kapalı dosyada I/O işlemi"
|
||||
|
|
@ -1186,7 +1135,7 @@ msgstr "Giriş buffer uzunluğu (%d) strand sayımının (%d) katı olmalıdır"
|
|||
msgid "Input taking too long"
|
||||
msgstr "Giriş çok uzun sürüyor"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Giriş/çıkış hatası"
|
||||
|
||||
|
|
@ -1219,7 +1168,7 @@ msgid "Internal define error"
|
|||
msgstr "Dahili tanımlama hatası"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "Dahili hata"
|
||||
|
||||
|
|
@ -1228,6 +1177,16 @@ msgstr "Dahili hata"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "Dahili hata #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Dahili bekçi zamanlayıcısının süresi doldu."
|
||||
|
|
@ -1245,7 +1204,7 @@ msgstr ""
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "Geçersiz %q"
|
||||
|
||||
|
|
@ -1394,6 +1353,10 @@ msgstr ""
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr ""
|
||||
|
|
@ -1478,9 +1441,11 @@ msgstr ""
|
|||
msgid "No IP"
|
||||
msgstr "IP yok"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Kullanılabilir saat yok"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1498,15 +1463,12 @@ msgstr ""
|
|||
msgid "No default %q bus"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr ""
|
||||
|
|
@ -1705,11 +1667,6 @@ msgstr ""
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr ""
|
||||
|
|
@ -1755,11 +1712,6 @@ msgstr ""
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr ""
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -1993,12 +1945,8 @@ msgstr ""
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr ""
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
|
|
@ -2107,10 +2055,6 @@ msgstr ""
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr ""
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr ""
|
||||
|
|
@ -2464,10 +2408,6 @@ msgstr ""
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr ""
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr ""
|
||||
|
|
@ -2477,10 +2417,6 @@ msgstr ""
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr ""
|
||||
|
|
@ -2558,6 +2494,10 @@ msgstr ""
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr ""
|
||||
|
|
@ -2661,7 +2601,7 @@ msgstr ""
|
|||
msgid "can't convert %s to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr ""
|
||||
|
|
@ -2670,18 +2610,10 @@ msgstr ""
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr ""
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr ""
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr ""
|
||||
|
|
@ -3169,10 +3101,6 @@ msgstr ""
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr ""
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr ""
|
||||
|
|
@ -3898,10 +3826,6 @@ msgstr ""
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr ""
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr ""
|
||||
|
|
@ -4027,10 +3951,6 @@ msgstr ""
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr ""
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr ""
|
||||
|
|
@ -4296,6 +4216,10 @@ msgstr ""
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr ""
|
||||
|
|
@ -4342,6 +4266,16 @@ msgstr ""
|
|||
msgid "wbits"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr ""
|
||||
|
|
@ -4413,6 +4347,27 @@ msgstr ""
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "Tüm PCNT birimleri kullanımda"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr "Hiçbir bootloader bulunmadığından bootloader sıfırlanamıyor"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Kullanımda olan bir zamanlayıcının frekansı değiştirilemez"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "PWM başlatılamadı"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT kanalı zaten kullanımda"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "Frekans, bu zamanlayıcıyı kullanan mevcut PWMOut ile eşleşmelidir"
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Kullanılabilir saat yok"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Bir donanım kesme kanalı halihazırda kullanılmaktadır"
|
||||
|
||||
|
|
|
|||
|
|
@ -222,7 +222,8 @@ msgid "%q must be multiple of 8."
|
|||
msgstr "%q bìxū shì 8 debèishù."
|
||||
|
||||
#: ports/raspberrypi/bindings/cyw43/__init__.c py/argcheck.c py/objexcept.c
|
||||
#: shared-bindings/canio/CAN.c shared-bindings/digitalio/Pull.c
|
||||
#: shared-bindings/bitmapfilter/__init__.c shared-bindings/canio/CAN.c
|
||||
#: shared-bindings/digitalio/Pull.c shared-bindings/supervisor/__init__.c
|
||||
#: shared-module/synthio/Synthesizer.c
|
||||
msgid "%q must be of type %q or %q, not %q"
|
||||
msgstr "%q de lèi xíng bì xū shì %q huò %q, ér bù shì %q"
|
||||
|
|
@ -231,7 +232,8 @@ msgstr "%q de lèi xíng bì xū shì %q huò %q, ér bù shì %q"
|
|||
msgid "%q must be of type %q, %q, or %q, not %q"
|
||||
msgstr "%q bìxūshì %q, %q huò %q lèixíng, érbùshì %q"
|
||||
|
||||
#: py/argcheck.c shared-module/synthio/__init__.c
|
||||
#: py/argcheck.c py/runtime.c shared-bindings/bitmapfilter/__init__.c
|
||||
#: shared-module/synthio/__init__.c
|
||||
msgid "%q must be of type %q, not %q"
|
||||
msgstr "%q de lèi xíng bì xū shì %q, ér bù shì %q"
|
||||
|
||||
|
|
@ -248,7 +250,7 @@ msgstr "%q chāo chū jiè xiàn"
|
|||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||
#: ports/stm/common-hal/pulseio/PulseIn.c py/argcheck.c
|
||||
#: shared-bindings/canio/Match.c
|
||||
#: shared-bindings/canio/Match.c shared-bindings/time/__init__.c
|
||||
msgid "%q out of range"
|
||||
msgstr "%q chāochū fànwéi"
|
||||
|
||||
|
|
@ -489,12 +491,6 @@ msgstr "suǒyǒu CAN wàishè dōu zài shǐyòng zhōng"
|
|||
msgid "All I2C peripherals are in use"
|
||||
msgstr "suǒyǒu I2C wàishè dōu zài shǐyòng zhōng"
|
||||
|
||||
#: ports/espressif/common-hal/countio/Counter.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "All PCNT units in use"
|
||||
msgstr "suǒyǒu PCNT dānyuán dōu zài shǐyòng zhōng"
|
||||
|
||||
#: ports/atmel-samd/common-hal/canio/Listener.c
|
||||
#: ports/espressif/common-hal/canio/Listener.c
|
||||
#: ports/stm/common-hal/canio/Listener.c
|
||||
|
|
@ -512,7 +508,6 @@ msgstr "suǒyǒu UART wàishè dōu zài shǐyòng zhōng"
|
|||
#: ports/nrf/common-hal/countio/Counter.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c
|
||||
#: ports/nrf/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All channels in use"
|
||||
msgstr "suǒyǒu píndào dōu zài shǐyòng zhōng"
|
||||
|
||||
|
|
@ -535,24 +530,18 @@ msgid "All sync event channels in use"
|
|||
msgstr "suǒyǒu tóngbù shìjiàn píndào dōu zài shǐyòng zhōng"
|
||||
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "All timers for this pin are in use"
|
||||
msgstr "cǐ yǐnjiǎo de suǒyǒu jìshíqì dōu zài shǐyòng zhōng"
|
||||
|
||||
#: ports/atmel-samd/common-hal/_pew/PewPew.c
|
||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseOut.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseOut.c
|
||||
#: ports/espressif/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseIn.c
|
||||
#: ports/espressif/common-hal/pulseio/PulseOut.c
|
||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||
#: ports/stm/peripherals/timers.c
|
||||
msgid "All timers in use"
|
||||
msgstr "suǒyǒu jìshí qì dōu zài shǐyòng zhōng"
|
||||
|
||||
|
|
@ -756,6 +745,7 @@ msgstr "Wúfǎ jiāng CCCD shèzhì wéi běndì tèzhēng"
|
|||
|
||||
#: shared-bindings/storage/__init__.c shared-bindings/usb_cdc/__init__.c
|
||||
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
|
||||
#: shared-bindings/usb_video/__init__.c
|
||||
msgid "Cannot change USB devices now"
|
||||
msgstr "xiànzài wúfǎ gēnggǎi USB shèbèi"
|
||||
|
||||
|
|
@ -796,12 +786,6 @@ msgstr "Wúfǎ jìlù dào wénjiàn"
|
|||
msgid "Cannot remount '/' when visible via USB."
|
||||
msgstr "tōngguò USB kějiàn shí wúfǎ chóngxīn ānzhuāng '/'."
|
||||
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
msgstr "wúfǎ chóngxīn qǐdòng dào yǐdǎo chéngxù, yīnwéi yǐdǎo chéngxù bù cúnzài"
|
||||
|
||||
#: ports/espressif/common-hal/socketpool/Socket.c
|
||||
msgid "Cannot set socket options"
|
||||
msgstr "wúfǎ shèzhì tàojiēzì xuǎnxiàng"
|
||||
|
|
@ -819,10 +803,6 @@ msgstr "wúfǎ zài RS485 móshì xià zhǐdìng RTS huò CTS"
|
|||
msgid "Cannot subclass slice"
|
||||
msgstr "bùnéng zǐlèihuà qiēpiàn"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Cannot vary frequency on a timer that is already in use"
|
||||
msgstr "Wúfǎ zài shǐyòng zhōng de jìshí qì shàng gēnggǎi pínlǜ"
|
||||
|
||||
#: ports/nrf/common-hal/alarm/pin/PinAlarm.c
|
||||
msgid "Cannot wake on pin edge, only level"
|
||||
msgstr "wúfǎ shǐyòng biānyuán huànxǐng, zhǐnéng shǐyòng diànpíng"
|
||||
|
|
@ -857,18 +837,10 @@ msgstr "zuòbiāo shùzǔ jùyǒu bùtóng de chángdù"
|
|||
msgid "Coordinate arrays types have different sizes"
|
||||
msgstr "zuòbiāo shùzǔ lèixíng jùyǒu bùtóng de dàxiǎo"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c
|
||||
msgid "Could not retrieve clock"
|
||||
msgstr "wúfǎ jiǎnsuǒ shízhōng"
|
||||
|
||||
#: shared-bindings/_bleio/Adapter.c
|
||||
msgid "Could not set address"
|
||||
msgstr "wúfǎ shèzhì dìzhǐ"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Could not start PWM"
|
||||
msgstr "Wúfǎ qǐdòng PWM"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "Could not start interrupt, RX busy"
|
||||
msgstr "Wúfǎ qǐdòng zhōngduàn,RX máng"
|
||||
|
|
@ -917,10 +889,6 @@ msgid "Deep sleep pins must use a rising edge with pulldown"
|
|||
msgstr ""
|
||||
"shēn dù shuì mián bié zhēn bì xū shǐ yòng xià lā shàng shēng de biān yuán"
|
||||
|
||||
#: shared-module/jpegio/JpegDecoder.c
|
||||
msgid "Destination bitmap too small to contain image"
|
||||
msgstr "mùbiāo wèitú tàixiǎo, wúfǎ bāohán túxiàng"
|
||||
|
||||
#: shared-bindings/audiobusio/PDMIn.c
|
||||
msgid "Destination capacity is smaller than destination_length."
|
||||
msgstr "Mùbiāo róngliàng xiǎoyú mùdì de_chángdù."
|
||||
|
|
@ -966,16 +934,6 @@ msgstr "ECB yí cì zhǐ shǐ yòng 16 gè zì jié"
|
|||
msgid "ESP-IDF memory allocation failed"
|
||||
msgstr "ESP-IDF nèicún fēnpèi shībài"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c
|
||||
msgid "EXTINT channel already in use"
|
||||
msgstr "EXTINT píndào yǐjīng shǐyòng"
|
||||
|
||||
#: extmod/modre.c
|
||||
msgid "Error in regex"
|
||||
msgstr "Zhèngzé biǎodá shì cuòwù"
|
||||
|
|
@ -1114,10 +1072,6 @@ msgid ""
|
|||
msgstr ""
|
||||
"pín lǜ bì xū wéi 24, 150, 396, 450, 528, 600, 720, 816, 912, 960 huò 1008 Mhz"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Frequency must match existing PWMOut using this timer"
|
||||
msgstr "Pínlǜ bìxū yǔ shǐyòng cǐ jìshí qì de xiàn yǒu PWMOut xiāng pǐpèi"
|
||||
|
||||
#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c
|
||||
#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c
|
||||
msgid "Function requires lock"
|
||||
|
|
@ -1152,11 +1106,6 @@ msgstr "Shǐyòng de yìngjiàn, qǐng chángshì qítā yǐn jiǎo"
|
|||
msgid "Heap allocation when VM not running."
|
||||
msgstr "VM wèi yùn xíng shí de duī fēn pèi."
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid ""
|
||||
"Heap was corrupted because the stack was too small. Increase stack size."
|
||||
msgstr "duī yǐ sǔn huài, yīn wéi duī zhàn tài xiǎo. zēng jiā duī zhàn dà xiǎo."
|
||||
|
||||
#: extmod/vfs_posix_file.c py/objstringio.c
|
||||
msgid "I/O operation on closed file"
|
||||
msgstr "Wénjiàn shàng de I/ O cāozuò"
|
||||
|
|
@ -1204,7 +1153,7 @@ msgstr ""
|
|||
msgid "Input taking too long"
|
||||
msgstr "Shūrù shíjiānguò zhǎng"
|
||||
|
||||
#: ports/espressif/common-hal/neopixel_write/__init__.c py/moderrno.c
|
||||
#: py/moderrno.c
|
||||
msgid "Input/output error"
|
||||
msgstr "Shūrù/shūchū cuòwù"
|
||||
|
||||
|
|
@ -1237,7 +1186,7 @@ msgid "Internal define error"
|
|||
msgstr "Nèibù dìngyì cuòwù"
|
||||
|
||||
#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
|
||||
#: shared-module/os/getenv.c
|
||||
#: shared-bindings/pwmio/PWMOut.c shared-module/os/getenv.c
|
||||
msgid "Internal error"
|
||||
msgstr "nèi bù cuò wù"
|
||||
|
||||
|
|
@ -1246,6 +1195,16 @@ msgstr "nèi bù cuò wù"
|
|||
msgid "Internal error #%d"
|
||||
msgstr "nèi bù cuò wù #%d"
|
||||
|
||||
#: ports/atmel-samd/common-hal/alarm/pin/PinAlarm.c
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
#: ports/atmel-samd/common-hal/ps2io/Ps2.c
|
||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
#: ports/cxd56/common-hal/pulseio/PulseIn.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Internal resource(s) in use"
|
||||
msgstr ""
|
||||
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Internal watchdog timer expired."
|
||||
msgstr "Nèibù kān mén gǒu dìngshí qì chāoshí."
|
||||
|
|
@ -1263,7 +1222,7 @@ msgstr "bèi shūchū gōngnéng zhōngduàn"
|
|||
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c
|
||||
#: ports/raspberrypi/common-hal/picodvi/Framebuffer.c py/argcheck.c
|
||||
#: shared-bindings/digitalio/DigitalInOut.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c
|
||||
#: shared-bindings/epaperdisplay/EPaperDisplay.c shared-bindings/pwmio/PWMOut.c
|
||||
msgid "Invalid %q"
|
||||
msgstr "wú xiào %q"
|
||||
|
||||
|
|
@ -1411,6 +1370,10 @@ msgstr "quēshǎo first_set_pin. %q[%u] shèzhì yǐnjiǎo"
|
|||
msgid "Missing jmp_pin. %q[%u] jumps on pin"
|
||||
msgstr "quēshǎo jmp_pin. %q[%u] tiàodào yǐn jiǎoshàng"
|
||||
|
||||
#: shared-module/storage/__init__.c
|
||||
msgid "Mount point directory missing"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/busio/UART.c shared-bindings/displayio/Group.c
|
||||
msgid "Must be a %q subclass."
|
||||
msgstr "Bìxū shì %q zi lèi."
|
||||
|
|
@ -1495,9 +1458,11 @@ msgstr "dì zhǐ: 0x%x shí méi yǒu I2C qì jiàn"
|
|||
msgid "No IP"
|
||||
msgstr "wú IP"
|
||||
|
||||
#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c
|
||||
msgid "No available clocks"
|
||||
msgstr "Méiyǒu kěyòng de shízhōng"
|
||||
#: ports/atmel-samd/common-hal/microcontroller/__init__.c
|
||||
#: ports/cxd56/common-hal/microcontroller/__init__.c
|
||||
#: ports/mimxrt10xx/common-hal/microcontroller/__init__.c
|
||||
msgid "No bootloader present"
|
||||
msgstr ""
|
||||
|
||||
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
|
||||
msgid "No capture in progress"
|
||||
|
|
@ -1515,15 +1480,12 @@ msgstr "Wú liánjiē: Wúfǎ quèdìng chángdù"
|
|||
msgid "No default %q bus"
|
||||
msgstr "wú mòrèn %q zǒngxiàn"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||
#: ports/atmel-samd/common-hal/touchio/TouchIn.c
|
||||
msgid "No free GCLKs"
|
||||
msgstr "Méiyǒu miǎnfèi de GCLKs"
|
||||
|
||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||
msgid "No free GLCKs"
|
||||
msgstr "méiyǒu miǎnfèide GLCK"
|
||||
|
||||
#: shared-bindings/os/__init__.c
|
||||
msgid "No hardware random available"
|
||||
msgstr "Méiyǒu kěyòng de yìngjiàn suíjī"
|
||||
|
|
@ -1727,11 +1689,6 @@ msgstr "tào jiē zì wài"
|
|||
msgid "Out-buffer elements must be <= 4 bytes long"
|
||||
msgstr "huǎn chōng wài yuán sù bì xū <= 4 zì jié cháng"
|
||||
|
||||
#: shared-bindings/pwmio/PWMOut.c
|
||||
msgid ""
|
||||
"PWM frequency not writable when variable_frequency is False on construction."
|
||||
msgstr "Dāng biànliàng_pínlǜ shì False zài jiànzhú shí PWM pínlǜ bùkě xiě."
|
||||
|
||||
#: ports/stm/common-hal/pwmio/PWMOut.c
|
||||
msgid "PWM restart"
|
||||
msgstr "PWM chóngqǐ"
|
||||
|
|
@ -1777,11 +1734,6 @@ msgstr "Yǐn jiǎo jǐn shūrù"
|
|||
msgid "Pin must be on PWM Channel B"
|
||||
msgstr "yǐn jiǎo bì xū zài Pwm pín dào B shàng"
|
||||
|
||||
#: ports/atmel-samd/common-hal/countio/Counter.c
|
||||
#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c
|
||||
msgid "Pin must support hardware interrupts"
|
||||
msgstr "Yǐn jiǎo bìxū zhīchí yìngjiàn zhōngduàn"
|
||||
|
||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
|
@ -2017,13 +1969,9 @@ msgstr "Yuán huǎnchōng qū hé mùbiāo huǎnchōng qū de chángdù bìxū x
|
|||
msgid "Specify exactly one of data0 or data_pins"
|
||||
msgstr "zhǐ dìng data0 huò data_pins zhōng de yí gè"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo left must be on PWM channel A"
|
||||
msgstr "lì tǐ shēng zuǒ bì xū shì zài PWM tōng dào A"
|
||||
|
||||
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||
msgid "Stereo right must be on PWM channel B"
|
||||
msgstr "lì tǐ shēng yòu cè bì xū zài PWM tōng dào B shàng"
|
||||
#: supervisor/shared/safe_mode.c
|
||||
msgid "Stack overflow. Increase stack size."
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/alarm/time/TimeAlarm.c
|
||||
msgid "Supply one of monotonic_time or epoch_time"
|
||||
|
|
@ -2133,10 +2081,6 @@ msgstr "bù kě yòng chù mō bào jǐng qì"
|
|||
msgid "Traceback (most recent call last):\n"
|
||||
msgstr "Traceback (Zuìjìn yīcì diàoyòng zhǐlìng):\n"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "Tuple or struct_time argument required"
|
||||
msgstr "Xūyào Tuple huò struct_time cānshù"
|
||||
|
||||
#: ports/stm/common-hal/busio/UART.c
|
||||
msgid "UART de-init"
|
||||
msgstr "UART qù chūshǐhuà"
|
||||
|
|
@ -2497,10 +2441,6 @@ msgstr "argsort cānshù bìxū shì ndarray"
|
|||
msgid "argsort is not implemented for flattened arrays"
|
||||
msgstr "wèi wéi pīn hé shù zǔ shí xiàn argsort"
|
||||
|
||||
#: py/runtime.c shared-bindings/supervisor/__init__.c
|
||||
msgid "argument has wrong type"
|
||||
msgstr "cānshù lèixíng cuòwù"
|
||||
|
||||
#: py/compile.c
|
||||
msgid "argument name reused"
|
||||
msgstr "chóng fù shǐ yòng de cān shù míng chēng"
|
||||
|
|
@ -2510,10 +2450,6 @@ msgstr "chóng fù shǐ yòng de cān shù míng chēng"
|
|||
msgid "argument num/types mismatch"
|
||||
msgstr "cānshù biānhào/lèixíng bù pǐpèi"
|
||||
|
||||
#: py/runtime.c
|
||||
msgid "argument should be a '%q' not a '%q'"
|
||||
msgstr "cānshù yīnggāi shì '%q', 'bùshì '%q'"
|
||||
|
||||
#: extmod/ulab/code/numpy/numerical.c extmod/ulab/code/numpy/transform.c
|
||||
msgid "arguments must be ndarrays"
|
||||
msgstr "cānshù bìxū shì ndarrays"
|
||||
|
|
@ -2591,6 +2527,10 @@ msgstr "cuòwù de dàimǎ lèixíng"
|
|||
msgid "binary op %q not implemented"
|
||||
msgstr "èrjìnzhì bǎn qián bǎn %q wèi zhíxíng"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "bitmap size and depth must match"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "bitmap sizes must match"
|
||||
msgstr "wèi tú dà xiǎo bì xū pǐ pèi"
|
||||
|
|
@ -2694,7 +2634,7 @@ msgstr "wúfǎ zhuǎnhuàn%s dào fùzá"
|
|||
msgid "can't convert %s to float"
|
||||
msgstr "wúfǎ zhuǎnhuàn %s dào fú diǎn xíng biànliàng"
|
||||
|
||||
#: py/runtime.c
|
||||
#: py/objint.c py/runtime.c
|
||||
#, c-format
|
||||
msgid "can't convert %s to int"
|
||||
msgstr "wúfǎ zhuǎnhuàn%s dào int"
|
||||
|
|
@ -2703,18 +2643,10 @@ msgstr "wúfǎ zhuǎnhuàn%s dào int"
|
|||
msgid "can't convert '%q' object to %q implicitly"
|
||||
msgstr "wúfǎ jiāng '%q' duìxiàng zhuǎnhuàn wèi %q yǐn hán"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert NaN to int"
|
||||
msgstr "wúfǎ jiāng dǎoháng zhuǎnhuàn wèi int"
|
||||
|
||||
#: extmod/ulab/code/numpy/vector.c
|
||||
msgid "can't convert complex to float"
|
||||
msgstr "wú fǎ jiāng fù zá zhuǎn huàn wéi fú dòng"
|
||||
|
||||
#: py/objint.c
|
||||
msgid "can't convert inf to int"
|
||||
msgstr "bùnéng jiāng inf zhuǎnhuàn wèi int"
|
||||
|
||||
#: py/obj.c
|
||||
msgid "can't convert to complex"
|
||||
msgstr "bùnéng zhuǎnhuàn wèi fùzá"
|
||||
|
|
@ -3208,10 +3140,6 @@ msgstr "hánshù quēshǎo suǒ xū de wèizhì cānshù #%d"
|
|||
msgid "function takes %d positional arguments but %d were given"
|
||||
msgstr "hánshù xūyào %d gè wèizhì cānshù, dàn %d bèi gěi chū"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "function takes exactly 9 arguments"
|
||||
msgstr "hánshù xūyào wánquán 9 zhǒng cānshù"
|
||||
|
||||
#: py/objgenerator.c
|
||||
msgid "generator already executing"
|
||||
msgstr "shēngchéng qì yǐjīng zhíxíng"
|
||||
|
|
@ -3938,10 +3866,6 @@ msgstr "cānshù bìxū shì xùliè a2 zhì a5 de dēngjì shù"
|
|||
msgid "parameters must be registers in sequence r0 to r3"
|
||||
msgstr "cānshù bìxū shì xùliè r0 zhì r3 de dēngjì qì"
|
||||
|
||||
#: shared-bindings/bitmaptools/__init__.c
|
||||
msgid "pixel coordinates out of bounds"
|
||||
msgstr "xiàngsù zuòbiāo chāochū biānjiè"
|
||||
|
||||
#: extmod/vfs_posix_file.c
|
||||
msgid "poll on file not available on win32"
|
||||
msgstr "zài win32 shàng bù tí gōng wén jiàn tóu piào"
|
||||
|
|
@ -4067,10 +3991,6 @@ msgstr "zhěngshù géshì shuōmíng fú 'c' bù yǔnxǔ shǐyòng fúhào"
|
|||
msgid "size is defined for ndarrays only"
|
||||
msgstr "dàxiǎo jǐn wèi ndarrays dìngyì"
|
||||
|
||||
#: shared-bindings/time/__init__.c
|
||||
msgid "sleep length must be non-negative"
|
||||
msgstr "shuìmián chángdù bìxū shìfēi fùshù"
|
||||
|
||||
#: py/nativeglue.c
|
||||
msgid "slice unsupported"
|
||||
msgstr "qiē piàn bù shòu zhī chí"
|
||||
|
|
@ -4339,6 +4259,10 @@ msgstr "bù zhīchí de Thumb zhǐshì '%s', shǐyòng %d cānshù"
|
|||
msgid "unsupported Xtensa instruction '%s' with %d arguments"
|
||||
msgstr "bù zhīchí de Xtensa zhǐlìng '%s', shǐyòng %d cānshù"
|
||||
|
||||
#: shared-module/bitmapfilter/__init__.c
|
||||
msgid "unsupported bitmap depth"
|
||||
msgstr ""
|
||||
|
||||
#: shared-module/gifio/GifWriter.c
|
||||
msgid "unsupported colorspace for GifWriter"
|
||||
msgstr "GifWriter bú zhī chí cǐ sè cǎi kōng jiān"
|
||||
|
|
@ -4385,6 +4309,16 @@ msgstr "zhí fàn wéi wài de mù biāo"
|
|||
msgid "wbits"
|
||||
msgstr "fànwéi"
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid ""
|
||||
"weights must be a sequence with an odd square number of elements (usually 9 "
|
||||
"or 25)"
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/bitmapfilter/__init__.c
|
||||
msgid "weights must be an object of type %q, %q, %q, or %q, not %q "
|
||||
msgstr ""
|
||||
|
||||
#: shared-bindings/is31fl3741/FrameBuffer.c
|
||||
msgid "width must be greater than zero"
|
||||
msgstr "kuāndù bìxū dàyú líng"
|
||||
|
|
@ -4456,6 +4390,80 @@ msgstr "zi bìxū wèi fú diǎn xíng"
|
|||
msgid "zi must be of shape (n_section, 2)"
|
||||
msgstr "zi bìxū jùyǒu xíngzhuàng (n_section,2)"
|
||||
|
||||
#~ msgid "All PCNT units in use"
|
||||
#~ msgstr "suǒyǒu PCNT dānyuán dōu zài shǐyòng zhōng"
|
||||
|
||||
#~ msgid "Could not retrieve clock"
|
||||
#~ msgstr "wúfǎ jiǎnsuǒ shízhōng"
|
||||
|
||||
#~ msgid "Cannot reset into bootloader because no bootloader is present"
|
||||
#~ msgstr ""
|
||||
#~ "wúfǎ chóngxīn qǐdòng dào yǐdǎo chéngxù, yīnwéi yǐdǎo chéngxù bù cúnzài"
|
||||
|
||||
#~ msgid "Cannot vary frequency on a timer that is already in use"
|
||||
#~ msgstr "Wúfǎ zài shǐyòng zhōng de jìshí qì shàng gēnggǎi pínlǜ"
|
||||
|
||||
#~ msgid "Could not start PWM"
|
||||
#~ msgstr "Wúfǎ qǐdòng PWM"
|
||||
|
||||
#~ msgid "EXTINT channel already in use"
|
||||
#~ msgstr "EXTINT píndào yǐjīng shǐyòng"
|
||||
|
||||
#~ msgid "Frequency must match existing PWMOut using this timer"
|
||||
#~ msgstr "Pínlǜ bìxū yǔ shǐyòng cǐ jìshí qì de xiàn yǒu PWMOut xiāng pǐpèi"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Heap was corrupted because the stack was too small. Increase stack size."
|
||||
#~ msgstr ""
|
||||
#~ "duī yǐ sǔn huài, yīn wéi duī zhàn tài xiǎo. zēng jiā duī zhàn dà xiǎo."
|
||||
|
||||
#~ msgid "No available clocks"
|
||||
#~ msgstr "Méiyǒu kěyòng de shízhōng"
|
||||
|
||||
#~ msgid "No free GLCKs"
|
||||
#~ msgstr "méiyǒu miǎnfèide GLCK"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "PWM frequency not writable when variable_frequency is False on "
|
||||
#~ "construction."
|
||||
#~ msgstr "Dāng biànliàng_pínlǜ shì False zài jiànzhú shí PWM pínlǜ bùkě xiě."
|
||||
|
||||
#~ msgid "Pin must support hardware interrupts"
|
||||
#~ msgstr "Yǐn jiǎo bìxū zhīchí yìngjiàn zhōngduàn"
|
||||
|
||||
#~ msgid "Stereo left must be on PWM channel A"
|
||||
#~ msgstr "lì tǐ shēng zuǒ bì xū shì zài PWM tōng dào A"
|
||||
|
||||
#~ msgid "Stereo right must be on PWM channel B"
|
||||
#~ msgstr "lì tǐ shēng yòu cè bì xū zài PWM tōng dào B shàng"
|
||||
|
||||
#~ msgid "Tuple or struct_time argument required"
|
||||
#~ msgstr "Xūyào Tuple huò struct_time cānshù"
|
||||
|
||||
#~ msgid "argument has wrong type"
|
||||
#~ msgstr "cānshù lèixíng cuòwù"
|
||||
|
||||
#~ msgid "argument should be a '%q' not a '%q'"
|
||||
#~ msgstr "cānshù yīnggāi shì '%q', 'bùshì '%q'"
|
||||
|
||||
#~ msgid "can't convert NaN to int"
|
||||
#~ msgstr "wúfǎ jiāng dǎoháng zhuǎnhuàn wèi int"
|
||||
|
||||
#~ msgid "can't convert inf to int"
|
||||
#~ msgstr "bùnéng jiāng inf zhuǎnhuàn wèi int"
|
||||
|
||||
#~ msgid "function takes exactly 9 arguments"
|
||||
#~ msgstr "hánshù xūyào wánquán 9 zhǒng cānshù"
|
||||
|
||||
#~ msgid "sleep length must be non-negative"
|
||||
#~ msgstr "shuìmián chángdù bìxū shìfēi fùshù"
|
||||
|
||||
#~ msgid "Destination bitmap too small to contain image"
|
||||
#~ msgstr "mùbiāo wèitú tàixiǎo, wúfǎ bāohán túxiàng"
|
||||
|
||||
#~ msgid "pixel coordinates out of bounds"
|
||||
#~ msgstr "xiàngsù zuòbiāo chāochū biānjiè"
|
||||
|
||||
#~ msgid "A hardware interrupt channel is already in use"
|
||||
#~ msgstr "Yìngjiàn zhōngduàn tōngdào yǐ zài shǐyòng zhōng"
|
||||
|
||||
|
|
|
|||
3
main.c
3
main.c
|
|
@ -92,6 +92,7 @@
|
|||
|
||||
#if CIRCUITPY_DISPLAYIO
|
||||
#include "shared-module/displayio/__init__.h"
|
||||
#include "shared-bindings/displayio/__init__.h"
|
||||
#endif
|
||||
|
||||
#if CIRCUITPY_EPAPERDISPLAY
|
||||
|
|
@ -1099,7 +1100,7 @@ int __attribute__((used)) main(void) {
|
|||
exit_code = run_repl(get_safe_mode());
|
||||
supervisor_set_run_reason(RUN_REASON_REPL_RELOAD);
|
||||
}
|
||||
if (exit_code == PYEXEC_FORCED_EXIT) {
|
||||
if (exit_code & (PYEXEC_FORCED_EXIT | PYEXEC_RELOAD)) {
|
||||
if (!simulate_reset) {
|
||||
serial_write_compressed(MP_ERROR_TEXT("soft reboot\n"));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ CIRCUITPY_USB_MIDI = 0
|
|||
# So not all of displayio, sorry!
|
||||
CIRCUITPY_VECTORIO = 0
|
||||
CIRCUITPY_BITMAPTOOLS = 0
|
||||
CIRCUITPY_PARALLELDISPLAY = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
||||
# Include these Python libraries in firmware.
|
||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_CircuitPlayground/frozen_cpx
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ CIRCUITPY_LTO_PARTITION = one
|
|||
|
||||
CIRCUITPY_AESIO = 0
|
||||
CIRCUITPY_FLOPPYIO = 0
|
||||
CIRCUITPY_PARALLELDISPLAY = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
CIRCUITPY_SHARPDISPLAY = 0
|
||||
CIRCUITPY_ULAB = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ CIRCUITPY_FREQUENCYIO = 0
|
|||
CIRCUITPY_I2CTARGET = 0
|
||||
CIRCUITPY_NEOPIXEL_WRITE = 0
|
||||
CIRCUITPY_ONEWIREIO = 0
|
||||
CIRCUITPY_PARALLELDISPLAY = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
CIRCUITPY_PIXELBUF = 0
|
||||
CIRCUITPY_PS2IO = 0
|
||||
CIRCUITPY_PULSEIO = 0
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ CIRCUITPY_BITMAPTOOLS = 0
|
|||
CIRCUITPY_FREQUENCYIO = 0
|
||||
CIRCUITPY_I2CTARGET = 0
|
||||
CIRCUITPY_NEOPIXEL_WRITE = 0
|
||||
CIRCUITPY_PARALLELDISPLAY = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
CIRCUITPY_PIXELBUF = 0
|
||||
CIRCUITPY_RTC = 0
|
||||
CIRCUITPY_TOUCHIO = 0
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ static void pinalarm_set_alarms_light(size_t n_alarms, const mp_obj_t *alarms) {
|
|||
case PINALARM_ERR_NOEXTINT:
|
||||
raise_ValueError_invalid_pin();
|
||||
case PINALARM_ERR_NOCHANNEL:
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
default:
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Unknown reason."));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -243,7 +243,7 @@ void common_hal_audiobusio_i2sout_play(audiobusio_i2sout_obj_t *self,
|
|||
// Find a free GCLK to generate the MCLK signal.
|
||||
uint8_t gclk = find_free_gclk(divisor);
|
||||
if (gclk > GCLK_GEN_NUM) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("No free GLCKs"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("No free GCLKs"));
|
||||
}
|
||||
self->gclk = gclk;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
#include "common-hal/countio/Counter.h"
|
||||
#include "shared-bindings/countio/Counter.h"
|
||||
#include "shared-bindings/microcontroller/Pin.h"
|
||||
|
||||
#include "atmel_start_pins.h"
|
||||
|
||||
|
|
@ -11,13 +12,13 @@
|
|||
void common_hal_countio_counter_construct(countio_counter_obj_t *self,
|
||||
const mcu_pin_obj_t *pin, countio_edge_t edge, digitalio_pull_t pull) {
|
||||
if (!pin->has_extint) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Pin must support hardware interrupts"));
|
||||
raise_ValueError_invalid_pin();
|
||||
}
|
||||
|
||||
|
||||
if (eic_get_enable()) {
|
||||
if (!eic_channel_free(pin->extint_channel)) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
} else {
|
||||
turn_on_external_interrupt_controller();
|
||||
|
|
|
|||
|
|
@ -295,12 +295,12 @@ void common_hal_frequencyio_frequencyin_construct(frequencyio_frequencyin_obj_t*
|
|||
#ifdef SAM_D5X_E5X
|
||||
((EIC->INTENSET.bit.EXTINT & mask) != 0 || (EIC->EVCTRL.bit.EXTINTEO & mask) != 0)) {
|
||||
#endif
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
|
||||
uint8_t timer_index = find_free_timer();
|
||||
if (timer_index == 0xff) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("All timers in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
Tc *tc = tc_insts[timer_index];
|
||||
|
||||
|
|
@ -329,7 +329,7 @@ void common_hal_frequencyio_frequencyin_construct(frequencyio_frequencyin_obj_t*
|
|||
frequencyin_samd51_start_dpll();
|
||||
if (dpll_gclk == 0xff && !clock_get_enabled(0, GCLK_SOURCE_DPLL1)) {
|
||||
common_hal_frequencyio_frequencyin_deinit(self);
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("No available clocks"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
set_timer_handler(timer_index, dpll_gclk, TC_HANDLER_NO_INTERRUPT);
|
||||
turn_on_clocks(true, timer_index, dpll_gclk);
|
||||
|
|
@ -399,7 +399,7 @@ void common_hal_frequencyio_frequencyin_construct(frequencyio_frequencyin_obj_t*
|
|||
reference_tc = find_free_timer();
|
||||
if (reference_tc == 0xff) {
|
||||
common_hal_frequencyio_frequencyin_deinit(self);
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("All timers in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
frequencyin_reference_tc_init();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ void common_hal_mcu_enable_interrupts(void) {
|
|||
void common_hal_mcu_on_next_reset(mcu_runmode_t runmode) {
|
||||
if ((runmode == RUNMODE_BOOTLOADER) || (runmode == RUNMODE_UF2)) {
|
||||
if (!bootloader_available()) {
|
||||
mp_raise_ValueError(MP_ERROR_TEXT("Cannot reset into bootloader because no bootloader is present"));
|
||||
mp_raise_ValueError(MP_ERROR_TEXT("No bootloader present"));
|
||||
}
|
||||
// Pretend to be the first of the two reset presses needed to enter the
|
||||
// bootloader. That way one reset will end in the bootloader.
|
||||
|
|
|
|||
|
|
@ -248,7 +248,7 @@ void common_hal_ps2io_ps2_construct(ps2io_ps2_obj_t *self,
|
|||
mp_arg_error_invalid(MP_QSTR_clock_pin);
|
||||
}
|
||||
if (eic_get_enable() && !eic_channel_free(clock_pin->extint_channel)) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
|
||||
clk_hi(self);
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ void common_hal_pulseio_pulsein_construct(pulseio_pulsein_obj_t *self,
|
|||
raise_ValueError_invalid_pin();
|
||||
}
|
||||
if (eic_get_enable() && !eic_channel_free(pin->extint_channel)) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
|
||||
self->buffer = (uint16_t *)m_malloc(maxlen * sizeof(uint16_t));
|
||||
|
|
|
|||
|
|
@ -150,7 +150,6 @@ pwmout_result_t common_hal_pwmio_pwmout_construct(pwmio_pwmout_obj_t *self,
|
|||
// one output so we start with the TCs to see if they work.
|
||||
int8_t direction = -1;
|
||||
uint8_t start = NUM_TIMERS_PER_PIN - 1;
|
||||
bool found = false;
|
||||
if (variable_frequency) {
|
||||
direction = 1;
|
||||
start = 0;
|
||||
|
|
@ -162,7 +161,6 @@ pwmout_result_t common_hal_pwmio_pwmout_construct(pwmio_pwmout_obj_t *self,
|
|||
continue;
|
||||
}
|
||||
if (t->is_tc) {
|
||||
found = true;
|
||||
Tc *tc = tc_insts[t->index];
|
||||
if (tc->COUNT16.CTRLA.bit.ENABLE == 0 && t->wave_output == 1) {
|
||||
timer = t;
|
||||
|
|
@ -178,10 +176,7 @@ pwmout_result_t common_hal_pwmio_pwmout_construct(pwmio_pwmout_obj_t *self,
|
|||
}
|
||||
|
||||
if (timer == NULL) {
|
||||
if (found) {
|
||||
return PWMOUT_ALL_TIMERS_ON_PIN_IN_USE;
|
||||
}
|
||||
return PWMOUT_ALL_TIMERS_IN_USE;
|
||||
return PWMOUT_INTERNAL_RESOURCES_IN_USE;
|
||||
}
|
||||
|
||||
uint8_t resolution = 0;
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
*/
|
||||
|
||||
#include "common-hal/rotaryio/IncrementalEncoder.h"
|
||||
#include "shared-bindings/microcontroller/Pin.h"
|
||||
#include "shared-bindings/rotaryio/IncrementalEncoder.h"
|
||||
#include "shared-module/rotaryio/IncrementalEncoder.h"
|
||||
|
||||
|
|
@ -36,8 +37,11 @@
|
|||
|
||||
void common_hal_rotaryio_incrementalencoder_construct(rotaryio_incrementalencoder_obj_t *self,
|
||||
const mcu_pin_obj_t *pin_a, const mcu_pin_obj_t *pin_b) {
|
||||
if (!pin_a->has_extint || !pin_b->has_extint) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Pin must support hardware interrupts"));
|
||||
if (!pin_a->has_extint) {
|
||||
raise_ValueError_invalid_pin_name(MP_QSTR_pin_a);
|
||||
}
|
||||
if (!pin_b->has_extint) {
|
||||
raise_ValueError_invalid_pin_name(MP_QSTR_pin_b);
|
||||
}
|
||||
|
||||
// TODO: The SAMD51 has a peripheral dedicated to quadrature encoder debugging. Use it instead
|
||||
|
|
@ -45,7 +49,7 @@ void common_hal_rotaryio_incrementalencoder_construct(rotaryio_incrementalencode
|
|||
|
||||
if (eic_get_enable()) {
|
||||
if (!eic_channel_free(pin_a->extint_channel) || !eic_channel_free(pin_b->extint_channel)) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
}
|
||||
} else {
|
||||
turn_on_external_interrupt_controller();
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ CFLAGS += $(OPTIMIZATION_FLAGS)
|
|||
|
||||
# TinyUSB defines
|
||||
CFLAGS += -DCFG_TUSB_MCU=OPT_MCU_BCM2711 -DCFG_TUD_MIDI_RX_BUFSIZE=512 \
|
||||
-DCFG_TUD_CDC_RX_BUFSIZE=512 -DCFG_TUD_MIDI_TX_BUFSIZE=512 \
|
||||
-DCFG_TUD_CDC_RX_BUFSIZE=640 -DCFG_TUD_MIDI_TX_BUFSIZE=512 \
|
||||
-DCFG_TUD_CDC_TX_BUFSIZE=512 -DCFG_TUD_MSC_BUFSIZE=1024
|
||||
|
||||
#Debugging/Optimization
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ void common_hal_mcu_enable_interrupts(void) {
|
|||
|
||||
void common_hal_mcu_on_next_reset(mcu_runmode_t runmode) {
|
||||
if (runmode == RUNMODE_BOOTLOADER) {
|
||||
mp_raise_ValueError(MP_ERROR_TEXT("Cannot reset into bootloader because no bootloader is present"));
|
||||
mp_raise_ValueError(MP_ERROR_TEXT("No bootloader present"));
|
||||
} else if (runmode == RUNMODE_SAFE_MODE) {
|
||||
safe_mode_on_next_reset(SAFE_MODE_PROGRAMMATIC);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ void common_hal_pulseio_pulsein_construct(pulseio_pulsein_obj_t *self,
|
|||
|
||||
int irq = pulsein_set_config(self, true);
|
||||
if (irq < 0) {
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("EXTINT channel already in use"));
|
||||
mp_raise_RuntimeError(MP_ERROR_TEXT("Internal resource(s) in use"));
|
||||
} else {
|
||||
pulsein_objects[irq - CXD56_IRQ_EXDEVICE_0] = self;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -79,10 +79,13 @@ INC += \
|
|||
-isystem esp-idf/components/driver/deprecated \
|
||||
-isystem esp-idf/components/driver/dac/include \
|
||||
-isystem esp-idf/components/driver/gpio/include \
|
||||
-isystem esp-idf/components/driver/gptimer/include \
|
||||
-isystem esp-idf/components/driver/i2c/include \
|
||||
-isystem esp-idf/components/driver/i2s/include \
|
||||
-isystem esp-idf/components/driver/$(IDF_TARGET)/include \
|
||||
-isystem esp-idf/components/driver/ledc/include \
|
||||
-isystem esp-idf/components/driver/pcnt/include \
|
||||
-isystem esp-idf/components/driver/rmt/include \
|
||||
-isystem esp-idf/components/driver/spi/include \
|
||||
-isystem esp-idf/components/driver/temperature_sensor/include \
|
||||
-isystem esp-idf/components/driver/touch_sensor/include \
|
||||
|
|
@ -143,6 +146,7 @@ CFLAGS += \
|
|||
-DHAVE_CONFIG_H \
|
||||
-DESP_PLATFORM=1 \
|
||||
-DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" \
|
||||
-DMBEDTLS_PADLOCK_FILE=\"ports/espressif/esp-idf/components/mbedtls/mbedtls/library/padlock.h\" \
|
||||
-DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX
|
||||
|
||||
# Make our canary value match FreeRTOS's
|
||||
|
|
@ -280,20 +284,16 @@ SRC_C += \
|
|||
boards/$(BOARD)/pins.c \
|
||||
shared/netutils/netutils.c \
|
||||
peripherals/i2c.c \
|
||||
peripherals/rmt.c \
|
||||
peripherals/timer.c \
|
||||
peripherals/$(IDF_TARGET)/pins.c
|
||||
|
||||
SRC_C += lib/mbedtls_config/crt_bundle.c
|
||||
|
||||
SRC_C += $(wildcard common-hal/espidf/*.c)
|
||||
|
||||
ifneq ($(CIRCUITPY_ESP_USB_SERIAL_JTAG),0)
|
||||
SRC_C += supervisor/usb_serial_jtag.c
|
||||
endif
|
||||
|
||||
ifneq ($(CIRCUITPY_COUNTIO),0)
|
||||
SRC_C += peripherals/pcnt.c
|
||||
endif
|
||||
|
||||
ifneq ($(CIRCUITPY_TOUCHIO_USE_NATIVE),0)
|
||||
SRC_C += peripherals/touch.c
|
||||
endif
|
||||
|
|
@ -490,6 +490,9 @@ endif
|
|||
ifneq ($(CIRCUITPY_DOTCLOCKFRAMEBUFFER),0)
|
||||
ESP_IDF_COMPONENTS_LINK += esp_lcd
|
||||
endif
|
||||
ifneq ($(CIRCUITPY_PARALLELDISPLAYBUS),0)
|
||||
ESP_IDF_COMPONENTS_LINK += esp_lcd
|
||||
endif
|
||||
|
||||
ESP_IDF_COMPONENTS_EXPANDED = $(foreach component, $(ESP_IDF_COMPONENTS_LINK), $(BUILD)/esp-idf/esp-idf/$(component)/lib$(component).a)
|
||||
|
||||
|
|
|
|||
|
|
@ -32,20 +32,9 @@
|
|||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/task.h"
|
||||
|
||||
#if CIRCUITPY_DISPLAYIO
|
||||
#include "shared-module/displayio/__init__.h"
|
||||
#endif
|
||||
|
||||
#if CIRCUITPY_PULSEIO
|
||||
#include "common-hal/pulseio/PulseIn.h"
|
||||
#endif
|
||||
|
||||
void port_background_tick(void) {
|
||||
// Zero delay in case FreeRTOS wants to switch to something else.
|
||||
vTaskDelay(0);
|
||||
#if CIRCUITPY_PULSEIO
|
||||
pulsein_background();
|
||||
#endif
|
||||
}
|
||||
|
||||
void port_background_task(void) {
|
||||
|
|
|
|||
|
|
@ -340,6 +340,7 @@ STATIC const mp_stream_p_t espnow_stream_p = {
|
|||
//| This is an easy way to check if the buffer is empty.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
//| def __len__(self) -> int:
|
||||
//| """Return the number of `bytes` available to read. Used to implement ``len()``."""
|
||||
//| ...
|
||||
|
|
|
|||
|
|
@ -3,10 +3,8 @@ CIRCUITPY_CREATION_ID = 0x00C30042
|
|||
|
||||
IDF_TARGET = esp32c3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_USB_SERIAL_JTAG = 1
|
||||
|
||||
CIRCUITPY_BLEIO = 0
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ USB_MANUFACTURER = "Adafruit"
|
|||
IDF_TARGET = esp32s3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
|
|
@ -20,7 +20,7 @@ CIRCUITPY_ESPCAMERA = 1
|
|||
CIRCUITPY_FRAMEBUFFERIO = 0
|
||||
CIRCUITPY_KEYPAD = 0
|
||||
CIRCUITPY_ONEWIREIO = 0
|
||||
CIRCUITPY_PARALLELDISPLAY = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
CIRCUITPY_RGBMATRIX = 0
|
||||
CIRCUITPY_ROTARYIO = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ CIRCUITPY_CREATION_ID = 0x00320001
|
|||
|
||||
IDF_TARGET = esp32
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 8MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -15,3 +15,4 @@ CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
|||
|
||||
OPTIMIZATION_FLAGS = -Os
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
|
|
@ -15,5 +15,6 @@ CIRCUITPY_ESP_PSRAM_MODE = qio
|
|||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
||||
OPTIMIZATION_FLAGS = -Os
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
|||
|
||||
OPTIMIZATION_FLAGS = -Os
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ CIRCUITPY_CREATION_ID = 0x00320002
|
|||
|
||||
IDF_TARGET = esp32
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
|
|
@ -16,4 +16,4 @@ FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
|||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ CIRCUITPY_CREATION_ID = 0x00320004
|
|||
|
||||
IDF_TARGET = esp32
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
|
|
@ -21,4 +21,4 @@ FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
|||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 8MB
|
||||
|
||||
|
|
@ -14,3 +14,6 @@ CIRCUITPY_ESP_PSRAM_MODE = qio
|
|||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
||||
CIRCUITPY_ESP32_CAMERA = 0
|
||||
|
||||
# Not enough pins.
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ USB_MANUFACTURER = "Adafruit"
|
|||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -10,3 +10,6 @@ CIRCUITPY_ESP_FLASH_FREQ = 80m
|
|||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
||||
# Not enough pins.
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -3,10 +3,11 @@ CIRCUITPY_CREATION_ID = 0x00c30001
|
|||
|
||||
IDF_TARGET = esp32c3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_USB_SERIAL_JTAG = 1
|
||||
|
||||
CIRCUITPY_BLEIO = 0
|
||||
# Not enough pins.
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -6,10 +6,13 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
||||
# Not enough pins.
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -15,3 +15,5 @@ CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
|||
|
||||
OPTIMIZATION_FLAGS = -Os
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
# Not enough pins.
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -6,8 +6,11 @@ USB_MANUFACTURER = "Adafruit"
|
|||
|
||||
IDF_TARGET = esp32s3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 8MB
|
||||
|
||||
CIRCUITPY_ESPCAMERA = 0
|
||||
|
||||
# Not enough pins.
|
||||
CIRCUITPY_PARALLELDISPLAYBUS = 0
|
||||
|
|
|
|||
|
|
@ -3,12 +3,10 @@ CIRCUITPY_CREATION_ID = 0x00C30001
|
|||
|
||||
IDF_TARGET = esp32c3
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 2MB
|
||||
|
||||
CIRCUITPY_DUALBANK = 0
|
||||
|
||||
CIRCUITPY_ESP_USB_SERIAL_JTAG = 0
|
||||
|
||||
CIRCUITPY_BLEIO = 0
|
||||
|
|
|
|||
|
|
@ -8,5 +8,3 @@ CIRCUITPY_ESP_FLASH_FREQ = 80m
|
|||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_USB_SERIAL_JTAG = 0
|
||||
|
||||
CIRCUITPY_BLEIO = 0
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ USB_MANUFACTURER = "Ai-Thinker"
|
|||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 8MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ IDF_TARGET = esp32s3
|
|||
# This has a u-blox® NORA-W106-10B module.
|
||||
|
||||
# This flash lives outside the module.
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 16MB
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ IDF_TARGET = esp32s3
|
|||
# This has a u-blox® NORA-W106-10B module.
|
||||
|
||||
# This flash lives outside the module.
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 16MB
|
||||
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@ USB_MANUFACTURER = "Artisense"
|
|||
|
||||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ USB_MANUFACTURER = "ATMegaZero"
|
|||
IDF_TARGET = esp32s2
|
||||
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 16MB
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 8MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -9,5 +9,3 @@ CIRCUITPY_ESP_FLASH_FREQ=80m
|
|||
CIRCUITPY_ESP_FLASH_SIZE=4MB
|
||||
|
||||
CIRCUITPY_ESP_USB_SERIAL_JTAG = 1
|
||||
|
||||
CIRCUITPY_BLEIO = 0
|
||||
|
|
|
|||
|
|
@ -14,4 +14,4 @@ FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
|||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
CIRCUITPY_ESP_PSRAM_MODE = qio
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 40m
|
||||
CIRCUITPY_ESP_PSRAM_FREQ = 80m
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ LONGINT_IMPL = MPZ
|
|||
CFLAGS += -DCFG_TUD_TASK_QUEUE_SZ=32
|
||||
|
||||
CIRCUITPY_ESP_FLASH_SIZE = 8MB
|
||||
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||
CIRCUITPY_ESP_FLASH_MODE = qio
|
||||
CIRCUITPY_ESP_FLASH_FREQ = 80m
|
||||
|
||||
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue