Merge branch 'adafruit:main' into main

This commit is contained in:
Wai Weng 2022-02-28 17:11:35 +08:00 committed by GitHub
commit e69397468d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
880 changed files with 25451 additions and 5603 deletions

View File

@ -12,6 +12,10 @@ on:
check_suite: check_suite:
types: [rerequested] types: [rerequested]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: jobs:
test: test:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
@ -30,16 +34,16 @@ jobs:
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py test ${{ github.ref }} run: python tools/ci_fetch_deps.py test ${{ github.sha }}
- name: CircuitPython version - name: CircuitPython version
run: | run: |
git describe --dirty --tags || git log --parents HEAD~4.. tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags) echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get update sudo apt-get update
@ -68,10 +72,23 @@ jobs:
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py -j1 --emit native run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py -j1 --emit native
working-directory: tests working-directory: tests
- name: mpy Tests - name: mpy Tests
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py -j1 --mpy-cross-flags='-mcache-lookup-bc' --via-mpy -d basics float micropython run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py -j1 --via-mpy -d basics float micropython
working-directory: tests working-directory: tests
- name: Native mpy Tests - name: Native mpy Tests
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py -j1 --mpy-cross-flags='-mcache-lookup-bc' --via-mpy --emit native -d basics float micropython run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py -j1 --via-mpy --emit native -d basics float micropython
working-directory: tests
- name: Build native modules
run: |
make -C examples/natmod/features1
make -C examples/natmod/features2
make -C examples/natmod/btree
make -C examples/natmod/framebuf
make -C examples/natmod/uheapq
make -C examples/natmod/urandom
make -C examples/natmod/ure
make -C examples/natmod/uzlib
- name: Test native modules
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-natmodtests.py extmod/{btree*,framebuf*,uheapq*,ure*,uzlib*}.py
working-directory: tests working-directory: tests
- name: Build mpy-cross.static-aarch64 - name: Build mpy-cross.static-aarch64
run: make -C mpy-cross -j2 -f Makefile.static-aarch64 run: make -C mpy-cross -j2 -f Makefile.static-aarch64
@ -136,16 +153,16 @@ jobs:
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py mpy-cross-mac ${{ github.ref }} run: python tools/ci_fetch_deps.py mpy-cross-mac ${{ github.sha }}
- name: CircuitPython version - name: CircuitPython version
run: | run: |
git describe --dirty --tags tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags) echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Install dependencies - name: Install dependencies
run: | run: |
brew install gettext brew install gettext
@ -197,15 +214,15 @@ jobs:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py docs ${{ github.ref }} run: python tools/ci_fetch_deps.py docs ${{ github.sha }}
- name: CircuitPython version - name: CircuitPython version
run: | run: |
git describe --dirty --tags tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags) echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get update sudo apt-get update
@ -241,7 +258,7 @@ jobs:
zip -9r circuitpython-stubs.zip circuitpython-stubs zip -9r circuitpython-stubs.zip circuitpython-stubs
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp circuitpython-stubs/dist/*.tar.gz s3://adafruit-circuit-python/bin/stubs/circuitpython-stubs-${{ env.CP_VERSION }}.zip --no-progress --region us-east-1 [ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp circuitpython-stubs/dist/*.tar.gz s3://adafruit-circuit-python/bin/stubs/circuitpython-stubs-${{ env.CP_VERSION }}.zip --no-progress --region us-east-1
- name: Upload stubs to PyPi - name: Upload stubs to PyPi
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')) if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')
env: env:
TWINE_USERNAME: ${{ secrets.pypi_username }} TWINE_USERNAME: ${{ secrets.pypi_username }}
TWINE_PASSWORD: ${{ secrets.pypi_password }} TWINE_PASSWORD: ${{ secrets.pypi_password }}
@ -260,16 +277,16 @@ jobs:
board: ${{ fromJSON(needs.test.outputs.boards-arm) }} board: ${{ fromJSON(needs.test.outputs.boards-arm) }}
if: ${{ needs.test.outputs.boards-arm != '[]' }} if: ${{ needs.test.outputs.boards-arm != '[]' }}
steps: steps:
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- uses: actions/checkout@v2.2.0 - uses: actions/checkout@v2.2.0
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.ref }} run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get install -y gettext sudo apt-get install -y gettext
@ -312,16 +329,16 @@ jobs:
board: ${{ fromJSON(needs.test.outputs.boards-riscv) }} board: ${{ fromJSON(needs.test.outputs.boards-riscv) }}
if: ${{ needs.test.outputs.boards-riscv != '[]' }} if: ${{ needs.test.outputs.boards-riscv != '[]' }}
steps: steps:
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- uses: actions/checkout@v2.2.0 - uses: actions/checkout@v2.2.0
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.ref }} run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get install -y gettext sudo apt-get install -y gettext
@ -364,18 +381,20 @@ jobs:
board: ${{ fromJSON(needs.test.outputs.boards-espressif) }} board: ${{ fromJSON(needs.test.outputs.boards-espressif) }}
if: ${{ needs.test.outputs.boards-espressif != '[]' }} if: ${{ needs.test.outputs.boards-espressif != '[]' }}
steps: steps:
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- uses: actions/checkout@v2.2.0 - uses: actions/checkout@v2.2.0
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.ref }} run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
- name: CircuitPython version - name: CircuitPython version
run: git describe --dirty --tags run: |
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- uses: actions/cache@v2 - uses: actions/cache@v2
name: Fetch IDF tool cache name: Fetch IDF tool cache
id: idf-cache id: idf-cache
@ -451,16 +470,16 @@ jobs:
board: ${{ fromJSON(needs.test.outputs.boards-aarch) }} board: ${{ fromJSON(needs.test.outputs.boards-aarch) }}
if: ${{ needs.test.outputs.boards-aarch != '[]' }} if: ${{ needs.test.outputs.boards-aarch != '[]' }}
steps: steps:
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- uses: actions/checkout@v2.2.0 - uses: actions/checkout@v2.2.0
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.ref }} run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get install -y gettext mtools sudo apt-get install -y gettext mtools

View File

@ -20,12 +20,12 @@ jobs:
with: with:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Set up Python 3.8 - name: Set up Python 3
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: "3.x"
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py website ${{ github.ref }} run: python tools/ci_fetch_deps.py website ${{ github.sha }}
- name: Install deps - name: Install deps
run: | run: |
pip install -r requirements-dev.txt pip install -r requirements-dev.txt
@ -34,7 +34,9 @@ jobs:
gcc --version gcc --version
python3 --version python3 --version
- name: CircuitPython version - name: CircuitPython version
run: git describe --dirty --tags run: |
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Website - name: Website
run: python3 build_board_info.py run: python3 build_board_info.py
working-directory: tools working-directory: tools

14
.github/workflows/notify.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: Notify users based on issue labels
on:
issues:
types: [labeled]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- uses: jenschelkopf/issue-label-notification-action@1.3
with:
recipients: |
ulab=@v923z

View File

@ -12,6 +12,10 @@ on:
- 'ports/unix/**' - 'ports/unix/**'
- 'ports/windows/**' - 'ports/windows/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: jobs:
build: build:
runs-on: windows-2019 runs-on: windows-2019
@ -70,11 +74,11 @@ jobs:
submodules: false submodules: false
fetch-depth: 1 fetch-depth: 1
- name: Get CP deps - name: Get CP deps
run: python tools/ci_fetch_deps.py windows ${{ github.ref }} run: python tools/ci_fetch_deps.py windows ${{ github.sha }}
- name: CircuitPython version - name: CircuitPython version
run: | run: |
git describe --dirty --tags tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags) echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: build mpy-cross - name: build mpy-cross
run: make -j2 -C mpy-cross run: make -j2 -C mpy-cross

View File

@ -8,12 +8,19 @@ on:
pull_request: pull_request:
push: push:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: jobs:
pre-commit: pre-commit:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v2.2.0 - uses: actions/checkout@v2.2.0
- uses: actions/setup-python@v1 - name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install deps - name: Install deps
run: | run: |
sudo apt-add-repository -y -u ppa:pybricks/ppa sudo apt-add-repository -y -u ppa:pybricks/ppa

94
.gitmodules vendored
View File

@ -116,9 +116,6 @@
[submodule "frozen/Adafruit_CircuitPython_Requests"] [submodule "frozen/Adafruit_CircuitPython_Requests"]
path = frozen/Adafruit_CircuitPython_Requests path = frozen/Adafruit_CircuitPython_Requests
url = https://github.com/adafruit/Adafruit_CircuitPython_Requests url = https://github.com/adafruit/Adafruit_CircuitPython_Requests
[submodule "ports/stm/st_driver"]
path = ports/stm/st_driver
url = https://github.com/hathach/st_driver.git
[submodule "lib/protomatter"] [submodule "lib/protomatter"]
path = lib/protomatter path = lib/protomatter
url = https://github.com/adafruit/Adafruit_Protomatter url = https://github.com/adafruit/Adafruit_Protomatter
@ -148,8 +145,8 @@
url = https://github.com/adafruit/Adafruit_CircuitPython_RFM69.git url = https://github.com/adafruit/Adafruit_CircuitPython_RFM69.git
[submodule "ports/espressif/esp-idf"] [submodule "ports/espressif/esp-idf"]
path = ports/espressif/esp-idf path = ports/espressif/esp-idf
url = https://github.com/espressif/esp-idf.git url = https://github.com/adafruit/esp-idf.git
branch = release/v4.4 branch = circuitpython-v4.4
[submodule "ports/espressif/certificates/nina-fw"] [submodule "ports/espressif/certificates/nina-fw"]
path = ports/espressif/certificates/nina-fw path = ports/espressif/certificates/nina-fw
url = https://github.com/adafruit/nina-fw.git url = https://github.com/adafruit/nina-fw.git
@ -199,3 +196,90 @@
url = https://github.com/raspberrypi/rpi-firmware.git url = https://github.com/raspberrypi/rpi-firmware.git
branch = master branch = master
shallow = true shallow = true
[submodule "ports/stm/st_driver/cmsis_device_f4"]
path = ports/stm/st_driver/cmsis_device_f4
url = https://github.com/STMicroelectronics/cmsis_device_f4.git
[submodule "ports/stm/st_driver/cmsis_device_f0"]
path = ports/stm/st_driver/cmsis_device_f0
url = https://github.com/STMicroelectronics/cmsis_device_f0.git
[submodule "ports/stm/st_driver/stm32f0xx_hal_driver"]
path = ports/stm/st_driver/stm32f0xx_hal_driver
url = https://github.com/STMicroelectronics/stm32f0xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_f1"]
path = ports/stm/st_driver/cmsis_device_f1
url = https://github.com/STMicroelectronics/cmsis_device_f1.git
[submodule "ports/stm/st_driver/stm32f1xx_hal_driver"]
path = ports/stm/st_driver/stm32f1xx_hal_driver
url = https://github.com/STMicroelectronics/stm32f1xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_f2"]
path = ports/stm/st_driver/cmsis_device_f2
url = https://github.com/STMicroelectronics/cmsis_device_f2.git
[submodule "ports/stm/st_driver/stm32f2xx_hal_driver"]
path = ports/stm/st_driver/stm32f2xx_hal_driver
url = https://github.com/STMicroelectronics/stm32f2xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_f3"]
path = ports/stm/st_driver/cmsis_device_f3
url = https://github.com/STMicroelectronics/cmsis_device_f3.git
[submodule "ports/stm/st_driver/stm32f3xx_hal_driver"]
path = ports/stm/st_driver/stm32f3xx_hal_driver
url = https://github.com/STMicroelectronics/stm32f3xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_f7"]
path = ports/stm/st_driver/cmsis_device_f7
url = https://github.com/STMicroelectronics/cmsis_device_f7.git
[submodule "ports/stm/st_driver/stm32f7xx_hal_driver"]
path = ports/stm/st_driver/stm32f7xx_hal_driver
url = https://github.com/STMicroelectronics/stm32f7xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_h7"]
path = ports/stm/st_driver/cmsis_device_h7
url = https://github.com/STMicroelectronics/cmsis_device_h7.git
[submodule "ports/stm/st_driver/stm32h7xx_hal_driver"]
path = ports/stm/st_driver/stm32h7xx_hal_driver
url = https://github.com/STMicroelectronics/stm32h7xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_l0"]
path = ports/stm/st_driver/cmsis_device_l0
url = https://github.com/STMicroelectronics/cmsis_device_l0.git
[submodule "ports/stm/st_driver/stm32l0xx_hal_driver"]
path = ports/stm/st_driver/stm32l0xx_hal_driver
url = https://github.com/STMicroelectronics/stm32l0xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_l1"]
path = ports/stm/st_driver/cmsis_device_l1
url = https://github.com/STMicroelectronics/cmsis_device_l1.git
[submodule "ports/stm/st_driver/stm32l1xx_hal_driver"]
path = ports/stm/st_driver/stm32l1xx_hal_driver
url = https://github.com/STMicroelectronics/stm32l1xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_l4"]
path = ports/stm/st_driver/cmsis_device_l4
url = https://github.com/STMicroelectronics/cmsis_device_l4.git
[submodule "ports/stm/st_driver/stm32l4xx_hal_driver"]
path = ports/stm/st_driver/stm32l4xx_hal_driver
url = https://github.com/STMicroelectronics/stm32l4xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_g0"]
path = ports/stm/st_driver/cmsis_device_g0
url = https://github.com/STMicroelectronics/cmsis_device_g0.git
[submodule "ports/stm/st_driver/stm32g0xx_hal_driver"]
path = ports/stm/st_driver/stm32g0xx_hal_driver
url = https://github.com/STMicroelectronics/stm32g0xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_g4"]
path = ports/stm/st_driver/cmsis_device_g4
url = https://github.com/STMicroelectronics/cmsis_device_g4.git
[submodule "ports/stm/st_driver/stm32g4xx_hal_driver"]
path = ports/stm/st_driver/stm32g4xx_hal_driver
url = https://github.com/STMicroelectronics/stm32g4xx_hal_driver.git
[submodule "ports/stm/st_driver/cmsis_device_l5"]
path = ports/stm/st_driver/cmsis_device_l5
url = https://github.com/STMicroelectronics/cmsis_device_l5.git
[submodule "ports/stm/st_driver/stm32l5xx_hal_driver"]
path = ports/stm/st_driver/stm32l5xx_hal_driver
url = https://github.com/STMicroelectronics/stm32l5xx_hal_driver.git
[submodule "ports/stm/st_driver/CMSIS_5"]
path = ports/stm/st_driver/CMSIS_5
url = https://github.com/ARM-software/CMSIS_5.git
[submodule "ports/stm/st_driver/stm32f4xx_hal_driver"]
path = ports/stm/st_driver/stm32f4xx_hal_driver
url = https://github.com/adafruit/stm32f4xx_hal_driver.git
[submodule "frozen/Adafruit_CircuitPython_PortalBase"]
path = frozen/Adafruit_CircuitPython_PortalBase
url = https://github.com/adafruit/Adafruit_CircuitPython_PortalBase.git
[submodule "frozen/Adafruit_CircuitPython_FakeRequests"]
path = frozen/Adafruit_CircuitPython_FakeRequests
url = https://github.com/adafruit/Adafruit_CircuitPython_FakeRequests.git

View File

@ -4,7 +4,7 @@
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0 rev: v4.0.1
hooks: hooks:
- id: check-yaml - id: check-yaml
- id: end-of-file-fixer - id: end-of-file-fixer

View File

@ -11,7 +11,7 @@ version: 2
build: build:
os: ubuntu-20.04 os: ubuntu-20.04
tools: tools:
python: "3.9" python: "3"
submodules: submodules:
include: include:
@ -22,4 +22,4 @@ formats:
python: python:
install: install:
- requirements: docs/requirements.txt - requirements: requirements-doc.txt

View File

@ -15,7 +15,7 @@ https://learn.adafruit.com/building-circuitpython/
## Setup ## Setup
Please ensure you setup your build environment appropriately, as per the guide. You will need: Please ensure you set up your build environment appropriately, as per the guide. You will need:
* Linux: https://learn.adafruit.com/building-circuitpython/linux * Linux: https://learn.adafruit.com/building-circuitpython/linux
* MacOS: https://learn.adafruit.com/building-circuitpython/macos * MacOS: https://learn.adafruit.com/building-circuitpython/macos
@ -25,8 +25,9 @@ Please ensure you setup your build environment appropriately, as per the guide.
This project has a bunch of git submodules. You will need to update them regularly. This project has a bunch of git submodules. You will need to update them regularly.
git submodule sync In the root folder of the CircuitPython repository, execute the following:
git submodule update --init
make fetch-submodules
### Required Python Packages ### Required Python Packages
@ -100,7 +101,7 @@ We apply code quality checks using pre-commit. Install pre-commit once per syst
Activate it once per git clone with Activate it once per git clone with
pre-commit --install pre-commit install
Pre-commit also requires some additional programs to be installed through your package manager: Pre-commit also requires some additional programs to be installed through your package manager:

View File

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2013-2021 Damien P. George Copyright (c) 2013-2022 Damien P. George
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -24,12 +24,15 @@ import subprocess
import sys import sys
import urllib.parse import urllib.parse
import time import time
import pathlib
from collections import defaultdict from collections import defaultdict
from sphinx.transforms import SphinxTransform from sphinx.transforms import SphinxTransform
from docutils import nodes from docutils import nodes
from sphinx import addnodes from sphinx import addnodes
tools_describe = str(pathlib.Path(__file__).parent / "tools/describe")
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here. # documentation root, use os.path.abspath to make it absolute, like shown here.
@ -129,7 +132,7 @@ copyright = f'2014-{current_date.tm_year}, MicroPython & CircuitPython contribut
final_version = "" final_version = ""
git_describe = subprocess.run( git_describe = subprocess.run(
["git", "describe", "--dirty", "--tags"], [tools_describe],
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, stderr=subprocess.STDOUT,
encoding="utf-8" encoding="utf-8"

@ -1 +1 @@
Subproject commit e5b149599d14a8841167fe552846ca36925b87a0 Subproject commit 266ea20ed80104c315dcb124b482fa5f9f48cdec

View File

@ -107,6 +107,6 @@ void common_hal_bleio_gc_collect(void) {
} }
void bleio_background(void) { void bleio_hci_background(void) {
bleio_adapter_background(&common_hal_bleio_adapter_obj); bleio_adapter_background(&common_hal_bleio_adapter_obj);
} }

View File

@ -34,8 +34,7 @@
#include "att.h" #include "att.h"
#include "hci.h" #include "hci.h"
void bleio_background(void); void bleio_hci_background(void);
void bleio_reset(void);
typedef struct { typedef struct {
// ble_gap_enc_key_t own_enc; // ble_gap_enc_key_t own_enc;

View File

@ -21,11 +21,11 @@ For example::
import framebuf import framebuf
# FrameBuffer needs 2 bytes for every RGB565 pixel # FrameBuffer needs 2 bytes for every RGB565 pixel
fbuf = framebuf.FrameBuffer(bytearray(10 * 100 * 2), 10, 100, framebuf.RGB565) fbuf = framebuf.FrameBuffer(bytearray(100 * 10 * 2), 100, 10, framebuf.RGB565)
fbuf.fill(0) fbuf.fill(0)
fbuf.text('MicroPython!', 0, 0, 0xffff) fbuf.text('MicroPython!', 0, 0, 0xffff)
fbuf.hline(0, 10, 96, 0xffff) fbuf.hline(0, 9, 96, 0xffff)
Constructors Constructors
------------ ------------

View File

@ -95,11 +95,11 @@ Supported operators and special sequences are:
Example:: Example::
import ure import re
# As ure doesn't support escapes itself, use of r"" strings is not # As re doesn't support escapes itself, use of r"" strings is not
# recommended. # recommended.
regex = ure.compile("[\r\n]") regex = re.compile("[\r\n]")
regex.split("line1\rline2\nline3\r\n") regex.split("line1\rline2\nline3\r\n")

View File

@ -80,6 +80,14 @@ Constants
A mutable list of directories to search for imported modules. A mutable list of directories to search for imported modules.
.. admonition:: Difference to CPython
:class: attention
On MicroPython, an entry with the value ``".frozen"`` will indicate that import
should search :term:`frozen modules <frozen module>` at that point in the search.
If no frozen module is found then search will *not* look for a directory called
``.frozen``, instead it will continue with the next entry in ``sys.path``.
.. data:: platform .. data:: platform
The platform that CircuitPython is running on. For OS/RTOS ports, this is The platform that CircuitPython is running on. For OS/RTOS ports, this is

View File

@ -1,8 +0,0 @@
sphinx<4
myst-parser==0.14.0
sphinxcontrib-svg2pdfconverter==0.1.0
astroid
sphinx-autoapi
isort
black
readthedocs-sphinx-search

4
docs/templates/breadcrumbs.html vendored Normal file
View File

@ -0,0 +1,4 @@
{%- extends "sphinx_rtd_theme/breadcrumbs.html" %}
{% block breadcrumbs_aside %}
{% endblock %}

View File

@ -18,7 +18,7 @@ void *memmove(void *dest, const void *src, size_t n) {
} }
void *malloc(size_t n) { void *malloc(size_t n) {
void *ptr = m_malloc(n); void *ptr = m_malloc(n, false);
return ptr; return ptr;
} }
void *realloc(void *ptr, size_t n) { void *realloc(void *ptr, size_t n) {
@ -26,7 +26,7 @@ void *realloc(void *ptr, size_t n) {
return NULL; return NULL;
} }
void *calloc(size_t n, size_t m) { void *calloc(size_t n, size_t m) {
void *ptr = m_malloc(n * m); void *ptr = m_malloc(n * m, false);
// memory already cleared by conservative GC // memory already cleared by conservative GC
return ptr; return ptr;
} }
@ -51,7 +51,7 @@ int *__errno (void)
ssize_t mp_stream_posix_write(void *stream, const void *buf, size_t len) { ssize_t mp_stream_posix_write(void *stream, const void *buf, size_t len) {
mp_obj_base_t* o = stream; mp_obj_base_t* o = stream;
const mp_stream_p_t *stream_p = o->type->protocol; const mp_stream_p_t *stream_p = o->type->ext[0].protocol;
mp_uint_t out_sz = stream_p->write(MP_OBJ_FROM_PTR(stream), buf, len, &native_errno); mp_uint_t out_sz = stream_p->write(MP_OBJ_FROM_PTR(stream), buf, len, &native_errno);
if (out_sz == MP_STREAM_ERROR) { if (out_sz == MP_STREAM_ERROR) {
return -1; return -1;
@ -62,7 +62,7 @@ ssize_t mp_stream_posix_write(void *stream, const void *buf, size_t len) {
ssize_t mp_stream_posix_read(void *stream, void *buf, size_t len) { ssize_t mp_stream_posix_read(void *stream, void *buf, size_t len) {
mp_obj_base_t* o = stream; mp_obj_base_t* o = stream;
const mp_stream_p_t *stream_p = o->type->protocol; const mp_stream_p_t *stream_p = o->type->ext[0].protocol;
mp_uint_t out_sz = stream_p->read(MP_OBJ_FROM_PTR(stream), buf, len, &native_errno); mp_uint_t out_sz = stream_p->read(MP_OBJ_FROM_PTR(stream), buf, len, &native_errno);
if (out_sz == MP_STREAM_ERROR) { if (out_sz == MP_STREAM_ERROR) {
return -1; return -1;
@ -73,7 +73,7 @@ ssize_t mp_stream_posix_read(void *stream, void *buf, size_t len) {
off_t mp_stream_posix_lseek(void *stream, off_t offset, int whence) { off_t mp_stream_posix_lseek(void *stream, off_t offset, int whence) {
const mp_obj_base_t* o = stream; const mp_obj_base_t* o = stream;
const mp_stream_p_t *stream_p = o->type->protocol; const mp_stream_p_t *stream_p = o->type->ext[0].protocol;
struct mp_stream_seek_t seek_s; struct mp_stream_seek_t seek_s;
seek_s.offset = offset; seek_s.offset = offset;
seek_s.whence = whence; seek_s.whence = whence;
@ -86,7 +86,7 @@ off_t mp_stream_posix_lseek(void *stream, off_t offset, int whence) {
int mp_stream_posix_fsync(void *stream) { int mp_stream_posix_fsync(void *stream) {
mp_obj_base_t* o = stream; mp_obj_base_t* o = stream;
const mp_stream_p_t *stream_p = o->type->protocol; const mp_stream_p_t *stream_p = o->type->ext[0].protocol;
mp_uint_t res = stream_p->ioctl(MP_OBJ_FROM_PTR(stream), MP_STREAM_FLUSH, 0, &native_errno); mp_uint_t res = stream_p->ioctl(MP_OBJ_FROM_PTR(stream), MP_STREAM_FLUSH, 0, &native_errno);
if (res == MP_STREAM_ERROR) { if (res == MP_STREAM_ERROR) {
return -1; return -1;
@ -94,7 +94,7 @@ int mp_stream_posix_fsync(void *stream) {
return res; return res;
} }
mp_obj_type_t btree_type; mp_obj_full_type_t btree_type;
#include "extmod/modbtree.c" #include "extmod/modbtree.c"
@ -123,12 +123,13 @@ mp_obj_t mpy_init(mp_obj_fun_bc_t *self, size_t n_args, size_t n_kw, mp_obj_t *a
MP_DYNRUNTIME_INIT_ENTRY MP_DYNRUNTIME_INIT_ENTRY
btree_type.base.type = (void*)&mp_fun_table.type_type; btree_type.base.type = (void*)&mp_fun_table.type_type;
btree_type.flags = MP_TYPE_FLAG_EXTENDED;
btree_type.name = MP_QSTR_btree; btree_type.name = MP_QSTR_btree;
btree_type.print = btree_print; btree_type.print = btree_print;
btree_type.getiter = btree_getiter; btree_type.ext[0].getiter = btree_getiter;
btree_type.iternext = btree_iternext; btree_type.ext[0].iternext = btree_iternext;
btree_type.binary_op = btree_binary_op; btree_type.ext[0].binary_op = btree_binary_op;
btree_type.subscr = btree_subscr; btree_type.ext[0].subscr = btree_subscr;
btree_locals_dict_table[0] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_close), MP_OBJ_FROM_PTR(&btree_close_obj) }; btree_locals_dict_table[0] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_close), MP_OBJ_FROM_PTR(&btree_close_obj) };
btree_locals_dict_table[1] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_flush), MP_OBJ_FROM_PTR(&btree_flush_obj) }; btree_locals_dict_table[1] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_flush), MP_OBJ_FROM_PTR(&btree_flush_obj) };
btree_locals_dict_table[2] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_get), MP_OBJ_FROM_PTR(&btree_get_obj) }; btree_locals_dict_table[2] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_get), MP_OBJ_FROM_PTR(&btree_get_obj) };

View File

@ -8,7 +8,7 @@ void *memset(void *s, int c, size_t n) {
} }
#endif #endif
mp_obj_type_t mp_type_framebuf; mp_obj_full_type_t mp_type_framebuf;
#include "extmod/modframebuf.c" #include "extmod/modframebuf.c"
@ -19,9 +19,10 @@ mp_obj_t mpy_init(mp_obj_fun_bc_t *self, size_t n_args, size_t n_kw, mp_obj_t *a
MP_DYNRUNTIME_INIT_ENTRY MP_DYNRUNTIME_INIT_ENTRY
mp_type_framebuf.base.type = (void*)&mp_type_type; mp_type_framebuf.base.type = (void*)&mp_type_type;
mp_type_framebuf.flags = MP_TYPE_FLAG_EXTENDED;
mp_type_framebuf.name = MP_QSTR_FrameBuffer; mp_type_framebuf.name = MP_QSTR_FrameBuffer;
mp_type_framebuf.make_new = framebuf_make_new; mp_type_framebuf.make_new = framebuf_make_new;
mp_type_framebuf.buffer_p.get_buffer = framebuf_get_buffer; mp_type_framebuf.ext[0].buffer_p.get_buffer = framebuf_get_buffer;
framebuf_locals_dict_table[0] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_fill), MP_OBJ_FROM_PTR(&framebuf_fill_obj) }; framebuf_locals_dict_table[0] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_fill), MP_OBJ_FROM_PTR(&framebuf_fill_obj) };
framebuf_locals_dict_table[1] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_fill_rect), MP_OBJ_FROM_PTR(&framebuf_fill_rect_obj) }; framebuf_locals_dict_table[1] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_fill_rect), MP_OBJ_FROM_PTR(&framebuf_fill_rect_obj) };
framebuf_locals_dict_table[2] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_pixel), MP_OBJ_FROM_PTR(&framebuf_pixel_obj) }; framebuf_locals_dict_table[2] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_pixel), MP_OBJ_FROM_PTR(&framebuf_pixel_obj) };

View File

@ -8,7 +8,8 @@ void *memset(void *s, int c, size_t n) {
} }
#endif #endif
mp_obj_type_t decompio_type; mp_obj_full_type_t decompio_type;
mp_stream_p_t decompio_stream_p;
#include "extmod/moduzlib.c" #include "extmod/moduzlib.c"
@ -18,10 +19,14 @@ STATIC MP_DEFINE_CONST_DICT(decompio_locals_dict, decompio_locals_dict_table);
mp_obj_t mpy_init(mp_obj_fun_bc_t *self, size_t n_args, size_t n_kw, mp_obj_t *args) { mp_obj_t mpy_init(mp_obj_fun_bc_t *self, size_t n_args, size_t n_kw, mp_obj_t *args) {
MP_DYNRUNTIME_INIT_ENTRY MP_DYNRUNTIME_INIT_ENTRY
decompio_stream_p.name = MP_QSTR_protocol_stream;
decompio_stream_p.read = decompio_read;
decompio_type.base.type = mp_fun_table.type_type; decompio_type.base.type = mp_fun_table.type_type;
decompio_type.flags = MP_TYPE_FLAG_EXTENDED;
decompio_type.name = MP_QSTR_DecompIO; decompio_type.name = MP_QSTR_DecompIO;
decompio_type.make_new = decompio_make_new; decompio_type.make_new = decompio_make_new;
decompio_type.protocol = &decompio_stream_p; decompio_type.ext[0].protocol = &decompio_stream_p;
decompio_locals_dict_table[0] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_read), MP_OBJ_FROM_PTR(&mp_stream_read_obj) }; decompio_locals_dict_table[0] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_read), MP_OBJ_FROM_PTR(&mp_stream_read_obj) };
decompio_locals_dict_table[1] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_readinto), MP_OBJ_FROM_PTR(&mp_stream_readinto_obj) }; decompio_locals_dict_table[1] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_readinto), MP_OBJ_FROM_PTR(&mp_stream_readinto_obj) };
decompio_locals_dict_table[2] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_readline), MP_OBJ_FROM_PTR(&mp_stream_unbuffered_readline_obj) }; decompio_locals_dict_table[2] = (mp_map_elem_t){ MP_OBJ_NEW_QSTR(MP_QSTR_readline), MP_OBJ_FROM_PTR(&mp_stream_unbuffered_readline_obj) };

View File

@ -10,11 +10,13 @@ set(MICROPY_SOURCE_EXTMOD
${MICROPY_EXTMOD_DIR}/machine_i2c.c ${MICROPY_EXTMOD_DIR}/machine_i2c.c
${MICROPY_EXTMOD_DIR}/machine_mem.c ${MICROPY_EXTMOD_DIR}/machine_mem.c
${MICROPY_EXTMOD_DIR}/machine_pulse.c ${MICROPY_EXTMOD_DIR}/machine_pulse.c
${MICROPY_EXTMOD_DIR}/machine_pwm.c
${MICROPY_EXTMOD_DIR}/machine_signal.c ${MICROPY_EXTMOD_DIR}/machine_signal.c
${MICROPY_EXTMOD_DIR}/machine_spi.c ${MICROPY_EXTMOD_DIR}/machine_spi.c
${MICROPY_EXTMOD_DIR}/modbluetooth.c ${MICROPY_EXTMOD_DIR}/modbluetooth.c
${MICROPY_EXTMOD_DIR}/modbtree.c ${MICROPY_EXTMOD_DIR}/modbtree.c
${MICROPY_EXTMOD_DIR}/modframebuf.c ${MICROPY_EXTMOD_DIR}/modframebuf.c
${MICROPY_EXTMOD_DIR}/modnetwork.c
${MICROPY_EXTMOD_DIR}/modonewire.c ${MICROPY_EXTMOD_DIR}/modonewire.c
${MICROPY_EXTMOD_DIR}/moduasyncio.c ${MICROPY_EXTMOD_DIR}/moduasyncio.c
${MICROPY_EXTMOD_DIR}/modubinascii.c ${MICROPY_EXTMOD_DIR}/modubinascii.c
@ -23,9 +25,11 @@ set(MICROPY_SOURCE_EXTMOD
${MICROPY_EXTMOD_DIR}/moduhashlib.c ${MICROPY_EXTMOD_DIR}/moduhashlib.c
${MICROPY_EXTMOD_DIR}/moduheapq.c ${MICROPY_EXTMOD_DIR}/moduheapq.c
${MICROPY_EXTMOD_DIR}/modujson.c ${MICROPY_EXTMOD_DIR}/modujson.c
${MICROPY_EXTMOD_DIR}/moduplatform.c
${MICROPY_EXTMOD_DIR}/modurandom.c ${MICROPY_EXTMOD_DIR}/modurandom.c
${MICROPY_EXTMOD_DIR}/modure.c ${MICROPY_EXTMOD_DIR}/modure.c
${MICROPY_EXTMOD_DIR}/moduselect.c ${MICROPY_EXTMOD_DIR}/moduselect.c
${MICROPY_EXTMOD_DIR}/modusocket.c
${MICROPY_EXTMOD_DIR}/modussl_axtls.c ${MICROPY_EXTMOD_DIR}/modussl_axtls.c
${MICROPY_EXTMOD_DIR}/modussl_mbedtls.c ${MICROPY_EXTMOD_DIR}/modussl_mbedtls.c
${MICROPY_EXTMOD_DIR}/modutimeq.c ${MICROPY_EXTMOD_DIR}/modutimeq.c

View File

@ -47,7 +47,7 @@ void __dbpanic(DB *db) {
STATIC mp_obj_btree_t *btree_new(DB *db, mp_obj_t stream) { STATIC mp_obj_btree_t *btree_new(DB *db, mp_obj_t stream) {
mp_obj_btree_t *o = m_new_obj(mp_obj_btree_t); mp_obj_btree_t *o = m_new_obj(mp_obj_btree_t);
o->base.type = &btree_type; o->base.type = (mp_obj_type_t *)&btree_type;
o->stream = stream; o->stream = stream;
o->db = db; o->db = db;
o->start_key = mp_const_none; o->start_key = mp_const_none;

View File

@ -622,7 +622,7 @@ STATIC const mp_obj_type_t mp_type_framebuf = {
// this factory function is provided for backwards compatibility with old FrameBuffer1 class // this factory function is provided for backwards compatibility with old FrameBuffer1 class
STATIC mp_obj_t legacy_framebuffer1(size_t n_args, const mp_obj_t *args) { STATIC mp_obj_t legacy_framebuffer1(size_t n_args, const mp_obj_t *args) {
mp_obj_framebuf_t *o = m_new_obj(mp_obj_framebuf_t); mp_obj_framebuf_t *o = m_new_obj(mp_obj_framebuf_t);
o->base.type = &mp_type_framebuf; o->base.type = (mp_obj_type_t *)&mp_type_framebuf;
mp_buffer_info_t bufinfo; mp_buffer_info_t bufinfo;
mp_get_buffer_raise(args[0], &bufinfo, MP_BUFFER_WRITE); mp_get_buffer_raise(args[0], &bufinfo, MP_BUFFER_WRITE);

View File

@ -9,6 +9,8 @@
#include "py/obj.h" #include "py/obj.h"
#include "py/mphal.h" #include "py/mphal.h"
#if MICROPY_PY_ONEWIRE
/******************************************************************************/ /******************************************************************************/
// Low-level 1-Wire routines // Low-level 1-Wire routines
@ -139,3 +141,5 @@ const mp_obj_module_t mp_module_onewire = {
.base = { &mp_type_module }, .base = { &mp_type_module },
.globals = (mp_obj_dict_t *)&onewire_module_globals, .globals = (mp_obj_dict_t *)&onewire_module_globals,
}; };
#endif // MICROPY_PY_ONEWIRE

View File

@ -29,6 +29,10 @@
#include "py/pairheap.h" #include "py/pairheap.h"
#include "py/mphal.h" #include "py/mphal.h"
#if CIRCUITPY && !(defined(__unix__) || defined(__APPLE__))
#include "shared-bindings/supervisor/__init__.h"
#endif
#if MICROPY_PY_UASYNCIO #if MICROPY_PY_UASYNCIO
// Used when task cannot be guaranteed to be non-NULL. // Used when task cannot be guaranteed to be non-NULL.
@ -59,10 +63,12 @@ STATIC const mp_obj_type_t task_queue_type;
STATIC const mp_obj_type_t task_type; STATIC const mp_obj_type_t task_type;
STATIC mp_obj_t task_queue_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args); STATIC mp_obj_t task_queue_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args);
STATIC mp_obj_t task_getiter(mp_obj_t self_in, mp_obj_iter_buf_t *iter_buf);
/******************************************************************************/ /******************************************************************************/
// Ticks for task ordering in pairing heap // Ticks for task ordering in pairing heap
#if !CIRCUITPY || (defined(__unix__) || defined(__APPLE__))
STATIC mp_obj_t ticks(void) { STATIC mp_obj_t ticks(void) {
return MP_OBJ_NEW_SMALL_INT(mp_hal_ticks_ms() & (MICROPY_PY_UTIME_TICKS_PERIOD - 1)); return MP_OBJ_NEW_SMALL_INT(mp_hal_ticks_ms() & (MICROPY_PY_UTIME_TICKS_PERIOD - 1));
} }
@ -74,6 +80,20 @@ STATIC mp_int_t ticks_diff(mp_obj_t t1_in, mp_obj_t t0_in) {
- MICROPY_PY_UTIME_TICKS_PERIOD / 2; - MICROPY_PY_UTIME_TICKS_PERIOD / 2;
return diff; return diff;
} }
#else
#define _TICKS_PERIOD (1lu << 29)
#define _TICKS_MAX (_TICKS_PERIOD - 1)
#define _TICKS_HALFPERIOD (_TICKS_PERIOD >> 1)
#define ticks() supervisor_ticks_ms()
STATIC mp_int_t ticks_diff(mp_obj_t t1_in, mp_obj_t t0_in) {
mp_uint_t t0 = MP_OBJ_SMALL_INT_VALUE(t0_in);
mp_uint_t t1 = MP_OBJ_SMALL_INT_VALUE(t1_in);
mp_int_t diff = ((t1 - t0 + _TICKS_HALFPERIOD) & _TICKS_MAX) - _TICKS_HALFPERIOD;
return diff;
}
#endif
STATIC int task_lt(mp_pairheap_t *n1, mp_pairheap_t *n2) { STATIC int task_lt(mp_pairheap_t *n1, mp_pairheap_t *n2) {
mp_obj_task_t *t1 = (mp_obj_task_t *)n1; mp_obj_task_t *t1 = (mp_obj_task_t *)n1;
@ -225,6 +245,11 @@ STATIC mp_obj_t task_cancel(mp_obj_t self_in) {
} }
STATIC MP_DEFINE_CONST_FUN_OBJ_1(task_cancel_obj, task_cancel); STATIC MP_DEFINE_CONST_FUN_OBJ_1(task_cancel_obj, task_cancel);
STATIC mp_obj_t task_await(mp_obj_t self_in) {
return task_getiter(self_in, NULL);
}
STATIC MP_DEFINE_CONST_FUN_OBJ_1(task_await_obj, task_await);
STATIC void task_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) { STATIC void task_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
mp_obj_task_t *self = MP_OBJ_TO_PTR(self_in); mp_obj_task_t *self = MP_OBJ_TO_PTR(self_in);
if (dest[0] == MP_OBJ_NULL) { if (dest[0] == MP_OBJ_NULL) {
@ -243,6 +268,9 @@ STATIC void task_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
dest[1] = self_in; dest[1] = self_in;
} else if (attr == MP_QSTR_ph_key) { } else if (attr == MP_QSTR_ph_key) {
dest[0] = self->ph_key; dest[0] = self->ph_key;
} else if (attr == MP_QSTR___await__) {
dest[0] = MP_OBJ_FROM_PTR(&task_await_obj);
dest[1] = self_in;
} }
} else if (dest[1] != MP_OBJ_NULL) { } else if (dest[1] != MP_OBJ_NULL) {
// Store // Store
@ -301,7 +329,11 @@ STATIC const mp_obj_type_t task_type = {
// C-level uasyncio module // C-level uasyncio module
STATIC const mp_rom_map_elem_t mp_module_uasyncio_globals_table[] = { STATIC const mp_rom_map_elem_t mp_module_uasyncio_globals_table[] = {
#if CIRCUITPY
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR__asyncio) },
#else
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR__uasyncio) }, { MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR__uasyncio) },
#endif
{ MP_ROM_QSTR(MP_QSTR_TaskQueue), MP_ROM_PTR(&task_queue_type) }, { MP_ROM_QSTR(MP_QSTR_TaskQueue), MP_ROM_PTR(&task_queue_type) },
{ MP_ROM_QSTR(MP_QSTR_Task), MP_ROM_PTR(&task_type) }, { MP_ROM_QSTR(MP_QSTR_Task), MP_ROM_PTR(&task_type) },
}; };
@ -312,4 +344,6 @@ const mp_obj_module_t mp_module_uasyncio = {
.globals = (mp_obj_dict_t *)&mp_module_uasyncio_globals, .globals = (mp_obj_dict_t *)&mp_module_uasyncio_globals,
}; };
MP_REGISTER_MODULE(MP_QSTR__asyncio, mp_module_uasyncio, MICROPY_PY_UASYNCIO);
#endif // MICROPY_PY_UASYNCIO #endif // MICROPY_PY_UASYNCIO

View File

@ -1,5 +1,6 @@
// Copyright (c) 2014 Paul Sokolovsky // Copyright (c) 2014 Paul Sokolovsky
// SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors) // SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
// SPDX-FileCopyrightText: 2022 Beat Ludin for Adafruit Industries
// //
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
@ -204,19 +205,78 @@ STATIC mp_obj_t mod_binascii_b2a_base64(mp_obj_t data) {
} }
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_binascii_b2a_base64_obj, mod_binascii_b2a_base64); STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_binascii_b2a_base64_obj, mod_binascii_b2a_base64);
#if MICROPY_PY_UBINASCII_CRC32 /*
#include "lib/uzlib/tinf.h" * CRC32 checksum
*
* Copyright (c) 1998-2003 by Joergen Ibsen / Jibz
* All Rights Reserved
*
* http://www.ibsensoftware.com/
*
* This software is provided 'as-is', without any express
* or implied warranty. In no event will the authors be
* held liable for any damages arising from the use of
* this software.
*
* Permission is granted to anyone to use this software
* for any purpose, including commercial applications,
* and to alter it and redistribute it freely, subject to
* the following restrictions:
*
* 1. The origin of this software must not be
* misrepresented; you must not claim that you
* wrote the original software. If you use this
* software in a product, an acknowledgment in
* the product documentation would be appreciated
* but is not required.
*
* 2. Altered source versions must be plainly marked
* as such, and must not be misrepresented as
* being the original software.
*
* 3. This notice may not be removed or altered from
* any source distribution.
*/
/*
* CRC32 algorithm taken from the zlib source, which is
* Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
*/
static const unsigned int tinf_crc32tab[16] = {
0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 0x76dc4190,
0x6b6b51f4, 0x4db26158, 0x5005713c, 0xedb88320, 0xf00f9344,
0xd6d6a3e8, 0xcb61b38c, 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278,
0xbdbdf21c
};
/* crc is previous value for incremental computation, 0xffffffff initially */
static uint32_t from_uzlib_crc32(const void *data, unsigned int length, uint32_t crc) {
const unsigned char *buf = (const unsigned char *)data;
unsigned int i;
for (i = 0; i < length; ++i)
{
crc ^= buf[i];
crc = tinf_crc32tab[crc & 0x0f] ^ (crc >> 4);
crc = tinf_crc32tab[crc & 0x0f] ^ (crc >> 4);
}
// return value suitable for passing in next time, for final value invert it
return crc /* ^ 0xffffffff*/;
}
STATIC mp_obj_t mod_binascii_crc32(size_t n_args, const mp_obj_t *args) { STATIC mp_obj_t mod_binascii_crc32(size_t n_args, const mp_obj_t *args) {
mp_buffer_info_t bufinfo; mp_buffer_info_t bufinfo;
check_not_unicode(args[0]); check_not_unicode(args[0]);
mp_get_buffer_raise(args[0], &bufinfo, MP_BUFFER_READ); mp_get_buffer_raise(args[0], &bufinfo, MP_BUFFER_READ);
uint32_t crc = (n_args > 1) ? mp_obj_get_int_truncated(args[1]) : 0; uint32_t crc = (n_args > 1) ? mp_obj_get_int_truncated(args[1]) : 0;
crc = uzlib_crc32(bufinfo.buf, bufinfo.len, crc ^ 0xffffffff); crc = from_uzlib_crc32(bufinfo.buf, bufinfo.len, crc ^ 0xffffffff);
return mp_obj_new_int_from_uint(crc ^ 0xffffffff); return mp_obj_new_int_from_uint(crc ^ 0xffffffff);
} }
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mod_binascii_crc32_obj, 1, 2, mod_binascii_crc32); STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mod_binascii_crc32_obj, 1, 2, mod_binascii_crc32);
#endif
STATIC const mp_rom_map_elem_t mp_module_binascii_globals_table[] = { STATIC const mp_rom_map_elem_t mp_module_binascii_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_binascii) }, { MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_binascii) },
@ -224,9 +284,7 @@ STATIC const mp_rom_map_elem_t mp_module_binascii_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR_unhexlify), MP_ROM_PTR(&mod_binascii_unhexlify_obj) }, { MP_ROM_QSTR(MP_QSTR_unhexlify), MP_ROM_PTR(&mod_binascii_unhexlify_obj) },
{ MP_ROM_QSTR(MP_QSTR_a2b_base64), MP_ROM_PTR(&mod_binascii_a2b_base64_obj) }, { MP_ROM_QSTR(MP_QSTR_a2b_base64), MP_ROM_PTR(&mod_binascii_a2b_base64_obj) },
{ MP_ROM_QSTR(MP_QSTR_b2a_base64), MP_ROM_PTR(&mod_binascii_b2a_base64_obj) }, { MP_ROM_QSTR(MP_QSTR_b2a_base64), MP_ROM_PTR(&mod_binascii_b2a_base64_obj) },
#if MICROPY_PY_UBINASCII_CRC32
{ MP_ROM_QSTR(MP_QSTR_crc32), MP_ROM_PTR(&mod_binascii_crc32_obj) }, { MP_ROM_QSTR(MP_QSTR_crc32), MP_ROM_PTR(&mod_binascii_crc32_obj) },
#endif
}; };
STATIC MP_DEFINE_CONST_DICT(mp_module_binascii_globals, mp_module_binascii_globals_table); STATIC MP_DEFINE_CONST_DICT(mp_module_binascii_globals, mp_module_binascii_globals_table);

146
extmod/moduplatform.c Normal file
View File

@ -0,0 +1,146 @@
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2013-2021 Ibrahim Abdelkader <iabdalkader@openmv.io>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
#include "py/runtime.h"
#include "py/objtuple.h"
#include "py/objstr.h"
#include "py/mphal.h"
#include "genhdr/mpversion.h"
#if MICROPY_PY_UPLATFORM
// platform - Access to underlying platform's identifying data
// TODO: Add more architectures, compilers and libraries.
// See: https://sourceforge.net/p/predef/wiki/Home/
#if defined(__ARM_ARCH)
#define PLATFORM_ARCH "arm"
#elif defined(__x86_64__) || defined(_WIN64)
#define PLATFORM_ARCH "x86_64"
#elif defined(__i386__) || defined(_M_IX86)
#define PLATFORM_ARCH "x86"
#elif defined(__xtensa__) || defined(_M_IX86)
#define PLATFORM_ARCH "xtensa"
#else
#define PLATFORM_ARCH ""
#endif
#if defined(__GNUC__)
#define PLATFORM_COMPILER \
"GCC " \
MP_STRINGIFY(__GNUC__) "." \
MP_STRINGIFY(__GNUC_MINOR__) "." \
MP_STRINGIFY(__GNUC_PATCHLEVEL__)
#elif defined(__ARMCC_VERSION)
#define PLATFORM_COMPILER \
"ARMCC " \
MP_STRINGIFY((__ARMCC_VERSION / 1000000)) "." \
MP_STRINGIFY((__ARMCC_VERSION / 10000 % 100)) "." \
MP_STRINGIFY((__ARMCC_VERSION % 10000))
#elif defined(_MSC_VER)
#if defined(_WIN64)
#define COMPILER_BITS "64 bit"
#elif defined(_M_IX86)
#define COMPILER_BITS "32 bit"
#else
#define COMPILER_BITS ""
#endif
#define PLATFORM_COMPILER \
"MSC v." MP_STRINGIFY(_MSC_VER) " " COMPILER_BITS
#else
#define PLATFORM_COMPILER ""
#endif
#if defined(__GLIBC__)
#define PLATFORM_LIBC_LIB "glibc"
#define PLATFORM_LIBC_VER \
MP_STRINGIFY(__GLIBC__) "." \
MP_STRINGIFY(__GLIBC_MINOR__)
#elif defined(__NEWLIB__)
#define PLATFORM_LIBC_LIB "newlib"
#define PLATFORM_LIBC_VER _NEWLIB_VERSION
#else
#define PLATFORM_LIBC_LIB ""
#define PLATFORM_LIBC_VER ""
#endif
#if defined(__linux)
#define PLATFORM_SYSTEM "Linux"
#elif defined(__unix__)
#define PLATFORM_SYSTEM "Unix"
#elif defined(__CYGWIN__)
#define PLATFORM_SYSTEM "Cygwin"
#elif defined(_WIN32)
#define PLATFORM_SYSTEM "Windows"
#else
#define PLATFORM_SYSTEM "MicroPython"
#endif
#ifndef MICROPY_PLATFORM_VERSION
#define MICROPY_PLATFORM_VERSION ""
#endif
STATIC const MP_DEFINE_STR_OBJ(info_platform_obj, PLATFORM_SYSTEM "-" MICROPY_VERSION_STRING "-" \
PLATFORM_ARCH "-" MICROPY_PLATFORM_VERSION "-with-" PLATFORM_LIBC_LIB "" PLATFORM_LIBC_VER);
STATIC const MP_DEFINE_STR_OBJ(info_python_compiler_obj, PLATFORM_COMPILER);
STATIC const MP_DEFINE_STR_OBJ(info_libc_lib_obj, PLATFORM_LIBC_LIB);
STATIC const MP_DEFINE_STR_OBJ(info_libc_ver_obj, PLATFORM_LIBC_VER);
STATIC const mp_rom_obj_tuple_t info_libc_tuple_obj = {
{&mp_type_tuple}, 2, {MP_ROM_PTR(&info_libc_lib_obj), MP_ROM_PTR(&info_libc_ver_obj)}
};
STATIC mp_obj_t platform_platform(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
return MP_OBJ_FROM_PTR(&info_platform_obj);
}
STATIC MP_DEFINE_CONST_FUN_OBJ_KW(platform_platform_obj, 0, platform_platform);
STATIC mp_obj_t platform_python_compiler(void) {
return MP_OBJ_FROM_PTR(&info_python_compiler_obj);
}
STATIC MP_DEFINE_CONST_FUN_OBJ_0(platform_python_compiler_obj, platform_python_compiler);
STATIC mp_obj_t platform_libc_ver(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
return MP_OBJ_FROM_PTR(&info_libc_tuple_obj);
}
STATIC MP_DEFINE_CONST_FUN_OBJ_KW(platform_libc_ver_obj, 0, platform_libc_ver);
STATIC const mp_rom_map_elem_t modplatform_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_uplatform) },
{ MP_ROM_QSTR(MP_QSTR_platform), MP_ROM_PTR(&platform_platform_obj) },
{ MP_ROM_QSTR(MP_QSTR_python_compiler), MP_ROM_PTR(&platform_python_compiler_obj) },
{ MP_ROM_QSTR(MP_QSTR_libc_ver), MP_ROM_PTR(&platform_libc_ver_obj) },
};
STATIC MP_DEFINE_CONST_DICT(modplatform_globals, modplatform_globals_table);
const mp_obj_module_t mp_module_uplatform = {
.base = { &mp_type_module },
.globals = (mp_obj_dict_t *)&modplatform_globals,
};
#endif // MICROPY_PY_UPLATFORM

View File

@ -477,11 +477,16 @@ MP_REGISTER_MODULE(MP_QSTR_re, mp_module_ure, MICROPY_PY_URE);
// only if module is enabled by config setting. // only if module is enabled by config setting.
#define re1_5_fatal(x) assert(!x) #define re1_5_fatal(x) assert(!x)
#include "lib/re1.5/compilecode.c" #include "lib/re1.5/compilecode.c"
#if MICROPY_PY_URE_DEBUG
#include "lib/re1.5/dumpcode.c"
#endif
#include "lib/re1.5/recursiveloop.c" #include "lib/re1.5/recursiveloop.c"
#include "lib/re1.5/charclass.c" #include "lib/re1.5/charclass.c"
#if MICROPY_PY_URE_DEBUG
// Make sure the output print statements go to the same output as other Python output.
#define printf(...) mp_printf(&mp_plat_print, __VA_ARGS__)
#include "lib/re1.5/dumpcode.c"
#undef printf
#endif
#endif // MICROPY_PY_URE #endif // MICROPY_PY_URE

View File

@ -114,12 +114,12 @@ STATIC const mp_rom_map_elem_t decompio_locals_dict_table[] = {
STATIC MP_DEFINE_CONST_DICT(decompio_locals_dict, decompio_locals_dict_table); STATIC MP_DEFINE_CONST_DICT(decompio_locals_dict, decompio_locals_dict_table);
#endif #endif
#if !MICROPY_ENABLE_DYNRUNTIME
STATIC const mp_stream_p_t decompio_stream_p = { STATIC const mp_stream_p_t decompio_stream_p = {
MP_PROTO_IMPLEMENT(MP_QSTR_protocol_stream) MP_PROTO_IMPLEMENT(MP_QSTR_protocol_stream)
.read = decompio_read, .read = decompio_read,
}; };
#if !MICROPY_ENABLE_DYNRUNTIME
STATIC const mp_obj_type_t decompio_type = { STATIC const mp_obj_type_t decompio_type = {
{ &mp_type_type }, { &mp_type_type },
.flags = MP_TYPE_FLAG_EXTENDED, .flags = MP_TYPE_FLAG_EXTENDED,

View File

@ -36,7 +36,7 @@ class SingletonGenerator:
self.state = None self.state = None
self.exc = StopIteration() self.exc = StopIteration()
def __iter__(self): def __await__(self):
return self return self
def __next__(self): def __next__(self):

View File

@ -66,7 +66,7 @@ async def gather(*aws, return_exceptions=False):
# # cancel all waiting tasks # # cancel all waiting tasks
# raise er # raise er
ts[i] = await ts[i] ts[i] = await ts[i]
except Exception as er: except (core.CancelledError, Exception) as er:
if return_exceptions: if return_exceptions:
ts[i] = er ts[i] = er
else: else:

View File

@ -130,7 +130,7 @@ class Task:
self.ph_next = None # Paring heap self.ph_next = None # Paring heap
self.ph_rightmost_parent = None # Paring heap self.ph_rightmost_parent = None # Paring heap
def __iter__(self): def __await__(self):
if not self.state: if not self.state:
# Task finished, signal that is has been await'ed on. # Task finished, signal that is has been await'ed on.
self.state = False self.state = False

@ -1 +1 @@
Subproject commit c03990cc56283417e752246c2738199f65d1b7ef Subproject commit 5d01882c41dbc4115bc94f0b61c093d5a6b812b6

View File

@ -139,39 +139,58 @@ STATIC const mp_arg_t file_open_args[] = {
STATIC mp_obj_t file_open(fs_user_mount_t *vfs, const mp_obj_type_t *type, mp_arg_val_t *args) { STATIC mp_obj_t file_open(fs_user_mount_t *vfs, const mp_obj_type_t *type, mp_arg_val_t *args) {
int mode = 0; int mode = 0;
const char *mode_s = mp_obj_str_get_str(args[1].u_obj); const char *mode_s = mp_obj_str_get_str(args[1].u_obj);
// TODO make sure only one of r, w, x, a, and b, t are specified uint32_t rwxa_count = 0;
uint32_t bt_count = 0;
uint32_t plus_count = 0;
bool bad_mode = false;
while (*mode_s) { while (*mode_s) {
switch (*mode_s++) { switch (*mode_s++) {
case 'r': case 'r':
mode |= FA_READ; mode |= FA_READ;
rwxa_count++;
break; break;
case 'w': case 'w':
mode |= FA_WRITE | FA_CREATE_ALWAYS; mode |= FA_WRITE | FA_CREATE_ALWAYS;
rwxa_count++;
break; break;
case 'x': case 'x':
mode |= FA_WRITE | FA_CREATE_NEW; mode |= FA_WRITE | FA_CREATE_NEW;
rwxa_count++;
break; break;
case 'a': case 'a':
mode |= FA_WRITE | FA_OPEN_ALWAYS; mode |= FA_WRITE | FA_OPEN_ALWAYS;
rwxa_count++;
break; break;
case '+': case '+':
mode |= FA_READ | FA_WRITE; mode |= FA_READ | FA_WRITE;
plus_count++;
break; break;
#if MICROPY_PY_IO_FILEIO #if MICROPY_PY_IO_FILEIO
case 'b': case 'b':
bt_count++;
type = &mp_type_vfs_fat_fileio; type = &mp_type_vfs_fat_fileio;
break; break;
#endif #endif
case 't': case 't':
bt_count++;
type = &mp_type_vfs_fat_textio; type = &mp_type_vfs_fat_textio;
break; break;
default:
bad_mode = true;
break;
} }
} }
if (rwxa_count != 1 || plus_count > 1 || bt_count > 1 || bad_mode) {
mp_raise_ValueError(translate("Invalid mode"));
}
assert(vfs != NULL); assert(vfs != NULL);
if ((mode & FA_WRITE) != 0 && !filesystem_is_writable_by_python(vfs)) { if ((mode & FA_WRITE) != 0 && !filesystem_is_writable_by_python(vfs)) {
mp_raise_OSError(MP_EROFS); mp_raise_OSError(MP_EROFS);
} }
pyb_file_obj_t *o = m_new_obj_with_finaliser(pyb_file_obj_t); pyb_file_obj_t *o = m_new_obj_with_finaliser(pyb_file_obj_t);
o->base.type = type; o->base.type = type;

View File

@ -17,6 +17,8 @@
#ifdef _WIN32 #ifdef _WIN32
#define fsync _commit #define fsync _commit
#else
#include <poll.h>
#endif #endif
typedef struct _mp_obj_vfs_posix_file_t { typedef struct _mp_obj_vfs_posix_file_t {
@ -180,6 +182,32 @@ STATIC mp_uint_t vfs_posix_file_ioctl(mp_obj_t o_in, mp_uint_t request, uintptr_
return 0; return 0;
case MP_STREAM_GET_FILENO: case MP_STREAM_GET_FILENO:
return o->fd; return o->fd;
#if MICROPY_PY_USELECT
case MP_STREAM_POLL: {
#ifdef _WIN32
mp_raise_NotImplementedError(MP_ERROR_TEXT("poll on file not available on win32"));
#else
mp_uint_t ret = 0;
uint8_t pollevents = 0;
if (arg & MP_STREAM_POLL_RD) {
pollevents |= POLLIN;
}
if (arg & MP_STREAM_POLL_WR) {
pollevents |= POLLOUT;
}
struct pollfd pfd = { .fd = o->fd, .events = pollevents };
if (poll(&pfd, 1, 0) > 0) {
if (pfd.revents & POLLIN) {
ret |= MP_STREAM_POLL_RD;
}
if (pfd.revents & POLLOUT) {
ret |= MP_STREAM_POLL_WR;
}
}
return ret;
#endif
}
#endif
default: default:
*errcode = EINVAL; *errcode = EINVAL;
return MP_STREAM_ERROR; return MP_STREAM_ERROR;

@ -1 +1 @@
Subproject commit c55da0dee66302d2fa8ed31623d047c307f409b2 Subproject commit baab505fd4dcc54d8e9d45e6463c68bdc6d100eb

@ -1 +1 @@
Subproject commit 781f46b73f71817b709d2e279fc188a7c1e69423 Subproject commit beec03065712cd62f79e839d5cf8f7c9847fc3b1

@ -1 +1 @@
Subproject commit c24a5310bc259cd9d93b1f42468e07f41d4b0e56 Subproject commit 859a7d403e4e79ec1c8915c81ba581dbaab8a4ac

@ -1 +1 @@
Subproject commit 169715b3444c614e55827ccf79b35b2b5e11f1d2 Subproject commit a8abc3aa8dece6c4d0152b001dfca7d2c279f899

@ -1 +1 @@
Subproject commit 2017afdfb43d3d9c5a73f8e85e951a583b18206a Subproject commit b04042addd47c2645e139032b02a3b9ddeeb3425

@ -1 +1 @@
Subproject commit 8d09b29a1a92499dbbd10dd832f27db71057af5f Subproject commit 938f6bb335ba5e4c56a8062c591ff9f3c18c4297

@ -1 +1 @@
Subproject commit 8a6ab89b7d19f45a20b3f794cf900e23c9a8453b Subproject commit 8e7e111a9ff39d3f4311caa7babeb451422c759f

@ -1 +1 @@
Subproject commit 92a6ce1da70c0c4f69ef34fc0d7ec7155cc2441f Subproject commit df2449815433e05ea0f89c19518ccde7a10a2faa

@ -1 +1 @@
Subproject commit 313c17cbb590ef8d505845369eb3b78c25c97fae Subproject commit 708bb0c82c7b075bd6912c97231aea880b1a1cb8

@ -1 +1 @@
Subproject commit ca141954c0b39cc0343c63bedb64c02f307159b9 Subproject commit 0bd04a235556979bd13a373821a6602445fe132b

@ -1 +1 @@
Subproject commit e07090117766d4a9ea2de07cd6f5418990cc598b Subproject commit eb6124fdff59b98d7d49dd86072df99c0e97167b

@ -1 +1 @@
Subproject commit e25c1801c5428598f543873bb846851b78efb329 Subproject commit 13775b058422085762874fde8e587f2e9f066855

@ -0,0 +1 @@
Subproject commit f6cdec74b64112016c459abe4a5d31a3b34caeb3

@ -1 +1 @@
Subproject commit 68744ede79c992a3df8322c21a1468c5ccaef2ee Subproject commit bccbe3da75f42b540b3faebb9d5a2d1ccf5e7147

@ -1 +1 @@
Subproject commit d79dd180cf6062e97d6a12cbc8dc7fdbedcc752b Subproject commit 2fddabcaf0df1763111ed9dbf9e2d4cdb5b0434e

@ -1 +1 @@
Subproject commit 2ca37f927b3ee3aad379c2991f36b3ef1be0203d Subproject commit 9771c9369c7e251f514eb26abcfcea1e891e6f27

@ -1 +1 @@
Subproject commit ed41dd44605110f1d1411ed694ec2b5676dd8d9c Subproject commit 29816fbe98c012ea0a1b5cae7f07aeae7ebf8b52

@ -1 +1 @@
Subproject commit daff8cdca78637915bea2f3a120cc84578516195 Subproject commit acc4bdd73fdceb74d75cd5a1f261ae157ee32613

@ -1 +1 @@
Subproject commit 9873446ebde5779c03c2bd4e3e544a801fb27bd5 Subproject commit 75e9ec62e4fe47a7212a69fb84aa1cfa7848e2b3

@ -1 +1 @@
Subproject commit 1127e3f7bcefa9fddb5b7f30533ecc6c58b420ea Subproject commit 6641509ef43b672a82addf41f02b6466d6c67f01

@ -1 +1 @@
Subproject commit 88e5ae51427aa690de129c157223e93bf936ac41 Subproject commit fd478fda7adbd254282b8cad5000f06a96760c91

@ -1 +1 @@
Subproject commit 9ca3bf00c6a2dd1de2d315a3b952a381d720aa7d Subproject commit a115fc30df1c230c09c8a533ca77f3a4afd9f6c3

@ -0,0 +1 @@
Subproject commit 77ba8eedf89b96c85a6194e5da2061c9d5c20242

@ -1 +1 @@
Subproject commit e4f7cd083dea8eb103954e7703bbb487491b433f Subproject commit 011acd627fc24342c397fc640b204a798f7b69dd

@ -1 +1 @@
Subproject commit 70ef86dc1a42138efcab01945d5a421e45f2408e Subproject commit c58defd70947531c5a9c37ddcb569f240567a78b

@ -1 +1 @@
Subproject commit 379209dd7e4374c262b84256778d7895693e7fb6 Subproject commit 742ac7c8fb52bb85d9fd367b60a7f80475d7ed14

@ -1 +1 @@
Subproject commit 79678c6adb2252de8fed6273604bc6ac676132a5 Subproject commit 49ab415d6b601c99979262f9e91c21dcb3a927a7

@ -1 +1 @@
Subproject commit 900b28cbae008e3253c4c40496e49faea9fb7034 Subproject commit 270565665ada26fe8d7a99a3cb5941b452444471

@ -1 +1 @@
Subproject commit b7a76420d1dec119f8744aa7c0ea500e235561d1 Subproject commit 9dd51fecfcbb15cb2a00eeadbd66b36ce0c09ee2

@ -1 +1 @@
Subproject commit c5b480434de8fa56d8ba978a57cd3919fdc9da2a Subproject commit 79c70a49285be8b6548de3f5ca20aa5ac1fafa22

@ -1 +1 @@
Subproject commit ca56187fe7af315130808191b004432fdfdc1b09 Subproject commit 272d225365eed46916390cf1f393dd08bc00b7d4

@ -1 +1 @@
Subproject commit 5b699a609197fb42aa059788c7c824c346d57c4e Subproject commit fad0f89e760829a76f553ef8459f61001597a846

@ -1 +1 @@
Subproject commit d4ac6ce3eea2c87781fa2df4e431d9440c610fad Subproject commit e86f258e43591ce4a04661277e77e9fdf6fec27e

@ -1 +1 @@
Subproject commit 0450119e163df782930a887022e197d6d25ca666 Subproject commit c89c8689161e5b35bfe4fa8355615696e03f0648

@ -1 +1 @@
Subproject commit 7fe6406affb1376193102cf76ded06e61316d7e6 Subproject commit d0a07e14adcd71a7c22bcceb16c55aadb5e0d104

View File

@ -420,7 +420,10 @@ static sdmmc_err_t cis_tuple_func_manfid(const void* p, uint8_t* data, FILE* fp)
int size = *(data++); int size = *(data++);
fprintf(fp, "TUPLE: %s, size: %d\n", tuple->name, size); fprintf(fp, "TUPLE: %s, size: %d\n", tuple->name, size);
CIS_CHECK_SIZE(size, 4); CIS_CHECK_SIZE(size, 4);
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wcast-align"
fprintf(fp, " MANF: %04X, CARD: %04X\n", *(uint16_t*)(data), *(uint16_t*)(data+2)); fprintf(fp, " MANF: %04X, CARD: %04X\n", *(uint16_t*)(data), *(uint16_t*)(data+2));
#pragma GCC diagnostic pop
return SDMMC_OK; return SDMMC_OK;
} }
@ -480,7 +483,10 @@ static sdmmc_err_t cis_tuple_func_cftable_entry(const void* p, uint8_t* data, FI
CIS_CHECK_SIZE(size, 2); CIS_CHECK_SIZE(size, 2);
size-=2; size-=2;
CIS_CHECK_UNSUPPORTED(mem_space==1); //other cases not handled yet CIS_CHECK_UNSUPPORTED(mem_space==1); //other cases not handled yet
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wcast-align"
int len = *(uint16_t*)data; int len = *(uint16_t*)data;
#pragma GCC diagnostic pop
fprintf(fp, " LEN: %04X\n", len); fprintf(fp, " LEN: %04X\n", len);
data+=2; data+=2;
} }

@ -1 +1 @@
Subproject commit ae73873b5cba0eb11c89165f4559964940430d44 Subproject commit 3b09b82123a50bef6b18cf90c2734ae7581da4a3

View File

@ -107,7 +107,7 @@ msgstr "indeks %q harus bilangan bulat, bukan %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "%q panjang harus %d-%d" msgstr "%q panjang harus %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "%q panjang harus >= 1" msgstr "%q panjang harus >= 1"
@ -152,6 +152,10 @@ msgstr "%q harus antara %d dan %d"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "%q harus bertipe %q" msgstr "%q harus bertipe %q"
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "%q harus pangkat 2" msgstr "%q harus pangkat 2"
@ -450,6 +454,7 @@ msgstr "Semua timer untuk pin ini sedang digunakan"
msgid "All timers in use" msgid "All timers in use"
msgstr "Semua timer sedang digunakan" msgstr "Semua timer sedang digunakan"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Sudah disebarkan." msgstr "Sudah disebarkan."
@ -584,7 +589,7 @@ msgstr "Kedua pin harus mendukung hardware interrut"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Kecerahan harus di antara 0-1.0" msgstr "Kecerahan harus di antara 0-1.0"
@ -636,7 +641,7 @@ msgstr "Panjang buffer harus kelipatan 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Penyangga harus memiliki panjang setidaknya 1" msgstr "Penyangga harus memiliki panjang setidaknya 1"
@ -669,6 +674,10 @@ msgstr "Bytes harus di antara 0 dan 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "Blok CBC harus merupakan kelipatan 16 byte" msgstr "Blok CBC harus merupakan kelipatan 16 byte"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -919,10 +928,12 @@ msgstr "Data 0 pin harus byte disejajarkan"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Potongan data harus mengikuti fmt chunk" msgstr "Potongan data harus mengikuti fmt chunk"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Data terlalu besar untuk paket advertisment" msgstr "Data terlalu besar untuk paket advertisment"
@ -1003,6 +1014,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Diharapkan tuple dengan panjang %d, didapatkan %d" msgstr "Diharapkan tuple dengan panjang %d, didapatkan %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "Penyebaran yang diperluas dengan respon pindai tidak didukung." msgstr "Penyebaran yang diperluas dengan respon pindai tidak didukung."
@ -1056,6 +1068,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Gagal terhubung: kesalahan internal" msgstr "Gagal terhubung: kesalahan internal"
@ -1135,6 +1148,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "Grup sudah digunakan" msgstr "Grup sudah digunakan"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1289,6 +1309,7 @@ msgstr "Nilai Unit ADC tidak valid"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1383,6 +1404,10 @@ msgstr "Ukuran potongan format tidak valid"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Akses memori tidak valid." msgstr "Akses memori tidak valid."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1483,7 +1508,7 @@ msgstr "Panjang kata/bit tidak valid"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Panjang kunci harus 16, 24, atau 32 byte" msgstr "Panjang kunci harus 16, 24, atau 32 byte"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1511,6 +1536,10 @@ msgstr "Pin MISO gagal inisialisasi."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "Pin MOSI gagal inisialisasi." msgstr "Pin MOSI gagal inisialisasi."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1593,6 +1622,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "Nama terlalu panjang" msgstr "Nama terlalu panjang"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Tidak ada CCCD untuk Karakteristik ini" msgstr "Tidak ada CCCD untuk Karakteristik ini"
@ -1613,9 +1646,9 @@ msgstr "tidak ada channel DMA ditemukan"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1740,6 +1773,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1920,7 +1954,7 @@ msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -2007,6 +2041,10 @@ msgstr "Pull tidak digunakan saat arah output."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "Kesalahan DeInit RNG" msgstr "Kesalahan DeInit RNG"
@ -2125,10 +2163,11 @@ msgstr "Tingkat sampel harus positif"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Nilai sampel terlalu tinggi. Nilai harus kurang dari %d" msgstr "Nilai sampel terlalu tinggi. Nilai harus kurang dari %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Pindai sudah dalam proses. Hentikan dengan stop_scan." msgstr "Pindai sudah dalam proses. Hentikan dengan stop_scan."
@ -2287,6 +2326,7 @@ msgstr "Lebar ubin harus persis membagi lebar bitmap"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2309,6 +2349,7 @@ msgstr "Terlalu banyak tampilan bus"
msgid "Too many displays" msgid "Too many displays"
msgstr "Terlalu banyak tampilan" msgstr "Terlalu banyak tampilan"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2386,7 +2427,7 @@ msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Tidak dapat menemukan Tampilan I2C di %x" msgstr "Tidak dapat menemukan Tampilan I2C di %x"
@ -2421,6 +2462,16 @@ msgstr "Tipe urf nrfx tak sesuai"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2440,11 +2491,21 @@ msgstr "Alasan yang tidak diketahui."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Kesalahan keamanan tidak dikenal: 0x%04x" msgstr "Kesalahan keamanan tidak dikenal: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2480,19 +2541,19 @@ msgstr "Format tidak didukung"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Operasi yang tidak didukung" msgstr "Operasi yang tidak didukung"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Nilai tarikan yang tidak didukung."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Panjang nilai != Panjang tetap yang dibutuhkan" msgstr "Panjang nilai != Panjang tetap yang dibutuhkan"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2550,6 +2611,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Menulis tidak didukung pada Karakteristik" msgstr "Menulis tidak didukung pada Karakteristik"
@ -2653,7 +2715,7 @@ msgstr "berusaha mendapatkan argmin/argmax dari urutan kosong"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "atribut belum didukung" msgstr "atribut belum didukung"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2709,11 +2771,11 @@ msgstr ""
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2763,6 +2825,10 @@ msgstr "kalibrasi adalah read only"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "nilai kalibrasi keluar dari jangkauan +/-127" msgstr "nilai kalibrasi keluar dari jangkauan +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "hanya mampu memiliki hingga 4 parameter untuk Thumb assembly" msgstr "hanya mampu memiliki hingga 4 parameter untuk Thumb assembly"
@ -2801,6 +2867,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2853,6 +2923,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2895,6 +2969,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2907,10 +2989,6 @@ msgstr ""
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "tidak dapat melakukan relative import"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3086,6 +3164,10 @@ msgstr ""
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3189,7 +3271,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3254,6 +3336,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3367,7 +3453,7 @@ msgstr "inline assembler harus sebuah fungsi"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3375,7 +3461,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3383,6 +3469,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3392,18 +3482,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3581,6 +3679,11 @@ msgstr ""
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3734,6 +3837,7 @@ msgstr ""
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3774,7 +3878,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3832,7 +3940,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "panjang data string memiliki keganjilan (odd-length)" msgstr "panjang data string memiliki keganjilan (odd-length)"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3840,7 +3948,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3953,6 +4061,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3982,18 +4094,27 @@ msgstr ""
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "" msgstr ""
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4019,7 +4140,10 @@ msgstr ""
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4316,7 +4440,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4500,7 +4624,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4517,7 +4641,7 @@ msgstr "jendela harus <= interval"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "indeks sumbu salah" msgstr "indeks sumbu salah"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "sumbu yang ditentukan salah" msgstr "sumbu yang ditentukan salah"
@ -4525,7 +4649,11 @@ msgstr "sumbu yang ditentukan salah"
msgid "wrong input type" msgid "wrong input type"
msgstr "tipe input salah" msgstr "tipe input salah"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "jumlah argumen salah" msgstr "jumlah argumen salah"
@ -4569,6 +4697,12 @@ msgstr "zi harus berjenis float"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "Zi harus berbentuk (n_section, 2)" msgstr "Zi harus berbentuk (n_section, 2)"
#~ msgid "cannot perform relative import"
#~ msgstr "tidak dapat melakukan relative import"
#~ msgid "Unsupported pull value."
#~ msgstr "Nilai tarikan yang tidak didukung."
#, c-format #, c-format
#~ msgid "" #~ msgid ""
#~ "Welcome to Adafruit CircuitPython %s!\n" #~ "Welcome to Adafruit CircuitPython %s!\n"

View File

@ -99,7 +99,7 @@ msgstr ""
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -144,6 +144,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -442,6 +446,7 @@ msgstr ""
msgid "All timers in use" msgid "All timers in use"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -574,7 +579,7 @@ msgstr ""
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "" msgstr ""
@ -626,7 +631,7 @@ msgstr ""
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "" msgstr ""
@ -659,6 +664,10 @@ msgstr ""
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "" msgstr ""
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -900,10 +909,12 @@ msgstr ""
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "" msgstr ""
@ -984,6 +995,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1037,6 +1049,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1116,6 +1129,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1268,6 +1288,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1362,6 +1383,10 @@ msgstr ""
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1462,7 +1487,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1490,6 +1515,10 @@ msgstr ""
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1572,6 +1601,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1592,9 +1625,9 @@ msgstr ""
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1719,6 +1752,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1892,7 +1926,7 @@ msgstr ""
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1974,6 +2008,10 @@ msgstr ""
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2090,10 +2128,11 @@ msgstr ""
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2252,6 +2291,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2274,6 +2314,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2351,7 +2392,7 @@ msgstr ""
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2386,6 +2427,16 @@ msgstr ""
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2405,11 +2456,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2443,19 +2504,19 @@ msgstr ""
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "" msgstr ""
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr ""
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2513,6 +2574,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2616,7 +2678,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2672,11 +2734,11 @@ msgstr ""
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2726,6 +2788,10 @@ msgstr ""
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "" msgstr ""
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "" msgstr ""
@ -2764,6 +2830,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2816,6 +2886,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2858,6 +2932,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2870,10 +2952,6 @@ msgstr ""
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr ""
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3049,6 +3127,10 @@ msgstr ""
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3152,7 +3234,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3217,6 +3299,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3330,7 +3416,7 @@ msgstr ""
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3338,7 +3424,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3346,6 +3432,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3355,18 +3445,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3544,6 +3642,11 @@ msgstr ""
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3697,6 +3800,7 @@ msgstr ""
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3737,7 +3841,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3795,7 +3903,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3803,7 +3911,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3915,6 +4023,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3944,18 +4056,27 @@ msgstr ""
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "" msgstr ""
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -3981,7 +4102,10 @@ msgstr ""
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4278,7 +4402,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4462,7 +4586,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4479,7 +4603,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4487,7 +4611,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "" msgstr ""

View File

@ -6,27 +6,31 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2020-12-04 18:33+0000\n" "PO-Revision-Date: 2021-12-23 01:53+0000\n"
"Last-Translator: vkuthan <vit.kuthan@seznam.cz>\n" "Last-Translator: dronecz <mzuzelka@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n" "Language: cs\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.10.1\n"
#: main.c #: main.c
msgid "" msgid ""
"\n" "\n"
"Code done running.\n" "Code done running.\n"
msgstr "" msgstr ""
"\n"
"Program byl dokončen.\n"
#: main.c #: main.c
msgid "" msgid ""
"\n" "\n"
"Code stopped by auto-reload.\n" "Code stopped by auto-reload.\n"
msgstr "" msgstr ""
"\n"
"Program byl zastaven automatickým načtením.\n"
#: supervisor/shared/safe_mode.c #: supervisor/shared/safe_mode.c
msgid "" msgid ""
@ -35,7 +39,7 @@ msgid ""
"https://github.com/adafruit/circuitpython/issues\n" "https://github.com/adafruit/circuitpython/issues\n"
msgstr "" msgstr ""
"\n" "\n"
"Založte prosím problém s obsahem vaší jednotky CIRCUITPY na adrese\n" "Prosím vytvořte tiket s obsahem vaší jednotky CIRCUITPY na adrese\n"
"https://github.com/adafruit/circuitpython/issues\n" "https://github.com/adafruit/circuitpython/issues\n"
#: py/obj.c #: py/obj.c
@ -48,11 +52,11 @@ msgstr " Soubor \"%q\", řádek %d"
#: py/builtinhelp.c #: py/builtinhelp.c
msgid " is of type %q\n" msgid " is of type %q\n"
msgstr "" msgstr " je typu %q\n"
#: main.c #: main.c
msgid " not found.\n" msgid " not found.\n"
msgstr "" msgstr " nenalezen\n"
#: main.c #: main.c
msgid " output:\n" msgid " output:\n"
@ -67,23 +71,23 @@ msgstr "%%c vyžaduje int nebo char"
#, c-format #, c-format
msgid "" msgid ""
"%d address pins, %d rgb pins and %d tiles indicate a height of %d, not %d" "%d address pins, %d rgb pins and %d tiles indicate a height of %d, not %d"
msgstr "" msgstr "%d adresní pin, %d rgb pin a %d dlaždice indikuje výšku %d, ne %d"
#: shared-bindings/microcontroller/Pin.c #: shared-bindings/microcontroller/Pin.c
msgid "%q and %q contain duplicate pins" msgid "%q and %q contain duplicate pins"
msgstr "" msgstr "%q a %q obsahují duplicitní piny"
#: shared-bindings/microcontroller/Pin.c #: shared-bindings/microcontroller/Pin.c
msgid "%q contains duplicate pins" msgid "%q contains duplicate pins"
msgstr "" msgstr "%q obsahuje duplicitní piny"
#: ports/atmel-samd/common-hal/sdioio/SDCard.c #: ports/atmel-samd/common-hal/sdioio/SDCard.c
msgid "%q failure: %d" msgid "%q failure: %d"
msgstr "Selhání %q: %d" msgstr "%q: selhání %d"
#: shared-bindings/microcontroller/Pin.c #: shared-bindings/microcontroller/Pin.c
msgid "%q in use" msgid "%q in use"
msgstr "Používá se %q" msgstr "%q se právě používá"
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c
#: ports/cxd56/common-hal/pulseio/PulseIn.c #: ports/cxd56/common-hal/pulseio/PulseIn.c
@ -100,23 +104,23 @@ msgstr "Indexy %q musí být celá čísla, nikoli %s"
#: py/argcheck.c #: py/argcheck.c
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr "%q délka musí být %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr "%q délka musí být >= 1"
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be %d-%d" msgid "%q must be %d-%d"
msgstr "" msgstr "%q musí být %d-%d"
#: py/argcheck.c shared-bindings/gifio/GifWriter.c #: py/argcheck.c shared-bindings/gifio/GifWriter.c
msgid "%q must be <= %d" msgid "%q must be <= %d"
msgstr "" msgstr "%q musí být <= %d"
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be >= %d" msgid "%q must be >= %d"
msgstr "" msgstr "%q musí být >= %d"
#: py/argcheck.c shared-bindings/memorymonitor/AllocationAlarm.c #: py/argcheck.c shared-bindings/memorymonitor/AllocationAlarm.c
msgid "%q must be >= 0" msgid "%q must be >= 0"
@ -132,7 +136,7 @@ msgstr "%q musí být > = 1"
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be a string" msgid "%q must be a string"
msgstr "" msgstr "%q musí být string"
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "%q must be a tuple of length 2" msgid "%q must be a tuple of length 2"
@ -141,19 +145,23 @@ msgstr "%q musí být n-tice délky 2"
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c #: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
#: shared-module/vectorio/VectorShape.c #: shared-module/vectorio/VectorShape.c
msgid "%q must be between %d and %d" msgid "%q must be between %d and %d"
msgstr "" msgstr "%q musí být mezi %d a %d"
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "%q musí být typu %q"
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr "%q musí být mocnina 2"
#: shared-bindings/wifi/Monitor.c #: shared-bindings/wifi/Monitor.c
msgid "%q out of bounds" msgid "%q out of bounds"
msgstr "" msgstr "%q je mimo hranice"
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c #: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
#: shared-bindings/canio/Match.c #: shared-bindings/canio/Match.c
@ -162,7 +170,7 @@ msgstr "%q je mimo rozsah"
#: ports/atmel-samd/common-hal/microcontroller/Pin.c #: ports/atmel-samd/common-hal/microcontroller/Pin.c
msgid "%q pin invalid" msgid "%q pin invalid"
msgstr "Pin %q není platný" msgstr "pin %q není platný"
#: shared-bindings/fontio/BuiltinFont.c #: shared-bindings/fontio/BuiltinFont.c
msgid "%q should be an int" msgid "%q should be an int"
@ -170,7 +178,7 @@ msgstr "%q by měl být int"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/usb_hid/Device.c
msgid "%q with a report ID of 0 must be of length 1" msgid "%q with a report ID of 0 must be of length 1"
msgstr "" msgstr "%q s ID 0 musím být délky 1"
#: py/bc.c py/objnamedtuple.c #: py/bc.c py/objnamedtuple.c
msgid "%q() takes %d positional arguments but %d were given" msgid "%q() takes %d positional arguments but %d were given"
@ -178,12 +186,12 @@ msgstr "%q() vyžaduje %d pozičních argumentů, ale %d jich bylo zadáno"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/usb_hid/Device.c
msgid "%q, %q, and %q must all be the same length" msgid "%q, %q, and %q must all be the same length"
msgstr "" msgstr "%q, %q, a %q musí mít všechny shodnou délku"
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
#, c-format #, c-format
msgid "%s error 0x%x" msgid "%s error 0x%x"
msgstr "" msgstr "%s chyba 0x%x"
#: py/argcheck.c #: py/argcheck.c
msgid "'%q' argument required" msgid "'%q' argument required"
@ -199,7 +207,7 @@ msgstr "Objekt '%q' není iterátor"
#: py/objtype.c py/runtime.c shared-module/atexit/__init__.c #: py/objtype.c py/runtime.c shared-module/atexit/__init__.c
msgid "'%q' object is not callable" msgid "'%q' object is not callable"
msgstr "Objekt '%q' nelze volat" msgstr "Objekt '%q' nelze zavolat"
#: py/runtime.c #: py/runtime.c
msgid "'%q' object is not iterable" msgid "'%q' object is not iterable"
@ -208,17 +216,17 @@ msgstr "Objekt '%q' není iterovatelný"
#: py/emitinlinethumb.c py/emitinlinextensa.c #: py/emitinlinethumb.c py/emitinlinextensa.c
#, c-format #, c-format
msgid "'%s' expects a label" msgid "'%s' expects a label"
msgstr "" msgstr "'%s' očekává popisek"
#: py/emitinlinethumb.c py/emitinlinextensa.c #: py/emitinlinethumb.c py/emitinlinextensa.c
#, c-format #, c-format
msgid "'%s' expects a register" msgid "'%s' expects a register"
msgstr "" msgstr "'%s' očekává register"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
#, c-format #, c-format
msgid "'%s' expects a special register" msgid "'%s' expects a special register"
msgstr "" msgstr "'%s' očekává speciální register"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
#, c-format #, c-format
@ -238,7 +246,7 @@ msgstr "'%s' očekává integer (celé číslo)"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
#, c-format #, c-format
msgid "'%s' expects at most r%d" msgid "'%s' expects at most r%d"
msgstr "" msgstr "'%s' očekává nejvíce r%d"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
#, c-format #, c-format
@ -248,31 +256,31 @@ msgstr "'%s' očekává {r0, r1, ...}"
#: py/emitinlinextensa.c #: py/emitinlinextensa.c
#, c-format #, c-format
msgid "'%s' integer %d isn't within range %d..%d" msgid "'%s' integer %d isn't within range %d..%d"
msgstr "" msgstr "'%s' integer %d není v rozsahu %d..%d"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
#, c-format #, c-format
msgid "'%s' integer 0x%x doesn't fit in mask 0x%x" msgid "'%s' integer 0x%x doesn't fit in mask 0x%x"
msgstr "" msgstr "'%s' integer 0x%x nepatří do masky 0x%x"
#: py/obj.c #: py/obj.c
#, c-format #, c-format
msgid "'%s' object doesn't support item assignment" msgid "'%s' object doesn't support item assignment"
msgstr "" msgstr "'%s' objekt nepodporuje přiřazení položky"
#: py/obj.c #: py/obj.c
#, c-format #, c-format
msgid "'%s' object doesn't support item deletion" msgid "'%s' object doesn't support item deletion"
msgstr "" msgstr "'%s' objekt nepodporuje smazání položky"
#: py/runtime.c #: py/runtime.c
msgid "'%s' object has no attribute '%q'" msgid "'%s' object has no attribute '%q'"
msgstr "" msgstr "'%s' objekt nemá žádný atribut '%q'"
#: py/obj.c #: py/obj.c
#, c-format #, c-format
msgid "'%s' object isn't subscriptable" msgid "'%s' object isn't subscriptable"
msgstr "" msgstr "'%s' objekt není vložitelný"
#: py/objstr.c #: py/objstr.c
msgid "'=' alignment not allowed in string format specifier" msgid "'=' alignment not allowed in string format specifier"
@ -340,7 +348,7 @@ msgstr ""
#: py/obj.c #: py/obj.c
msgid ", in %q\n" msgid ", in %q\n"
msgstr "" msgstr ", v %q\n"
#: py/objcomplex.c #: py/objcomplex.c
msgid "0.0 to a complex power" msgid "0.0 to a complex power"
@ -445,6 +453,7 @@ msgstr ""
msgid "All timers in use" msgid "All timers in use"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -525,13 +534,15 @@ msgstr ""
#: main.c #: main.c
msgid "Auto-reload is off.\n" msgid "Auto-reload is off.\n"
msgstr "" msgstr "Automatické načtení je vypnuté.\n"
#: main.c #: main.c
msgid "" msgid ""
"Auto-reload is on. Simply save files over USB to run them or enter REPL to " "Auto-reload is on. Simply save files over USB to run them or enter REPL to "
"disable.\n" "disable.\n"
msgstr "" msgstr ""
"Automatické načtení je zapnuté. Stačí uložit soubory na USB nebo vstoupit "
"do REPLu pro jeho zakázání.\n"
#: ports/espressif/common-hal/canio/CAN.c #: ports/espressif/common-hal/canio/CAN.c
msgid "Baudrate not supported by peripheral" msgid "Baudrate not supported by peripheral"
@ -577,7 +588,7 @@ msgstr ""
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "" msgstr ""
@ -629,7 +640,7 @@ msgstr ""
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "" msgstr ""
@ -662,6 +673,10 @@ msgstr ""
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "" msgstr ""
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -903,10 +918,12 @@ msgstr ""
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "" msgstr ""
@ -987,6 +1004,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1040,6 +1058,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1119,6 +1138,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1271,6 +1297,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1365,6 +1392,10 @@ msgstr ""
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1465,7 +1496,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1493,6 +1524,10 @@ msgstr ""
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1575,6 +1610,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1595,9 +1634,9 @@ msgstr ""
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1722,6 +1761,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1895,7 +1935,7 @@ msgstr ""
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1943,10 +1983,12 @@ msgstr ""
#: main.c #: main.c
msgid "Press any key to enter the REPL. Use CTRL-D to reload.\n" msgid "Press any key to enter the REPL. Use CTRL-D to reload.\n"
msgstr "" msgstr ""
"Zmáčkněte jakoukoli klávesu pro spuštění REPLu. Použijte CTRL-D pro opětovné "
"načtení.\n"
#: main.c #: main.c
msgid "Pretending to deep sleep until alarm, CTRL-C or file write.\n" msgid "Pretending to deep sleep until alarm, CTRL-C or file write.\n"
msgstr "" msgstr "Předstírám hluboký spánek do alarmu, CTRL-C nebo zápisu souboru.\n"
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c #: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
msgid "Program does IN without loading ISR" msgid "Program does IN without loading ISR"
@ -1977,6 +2019,10 @@ msgstr ""
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2093,10 +2139,11 @@ msgstr ""
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2255,6 +2302,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2277,6 +2325,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2354,7 +2403,7 @@ msgstr ""
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2389,6 +2438,16 @@ msgstr ""
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2408,11 +2467,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2446,19 +2515,19 @@ msgstr ""
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "" msgstr ""
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr ""
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2516,6 +2585,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2619,7 +2689,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2675,11 +2745,11 @@ msgstr ""
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2729,6 +2799,10 @@ msgstr ""
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "" msgstr ""
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "" msgstr ""
@ -2767,6 +2841,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2819,6 +2897,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2861,6 +2943,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2873,10 +2963,6 @@ msgstr ""
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr ""
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3052,6 +3138,10 @@ msgstr ""
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3155,7 +3245,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3220,6 +3310,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3333,7 +3427,7 @@ msgstr ""
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3341,7 +3435,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3349,6 +3443,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3358,18 +3456,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3547,6 +3653,11 @@ msgstr ""
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3700,6 +3811,7 @@ msgstr ""
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3740,7 +3852,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3798,7 +3914,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3806,7 +3922,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3918,6 +4034,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3947,18 +4067,27 @@ msgstr ""
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "" msgstr ""
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -3984,7 +4113,10 @@ msgstr ""
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4281,7 +4413,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4465,7 +4597,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4482,7 +4614,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4490,7 +4622,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "" msgstr ""

View File

@ -6,14 +6,14 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2021-08-23 14:19+0000\n" "PO-Revision-Date: 2022-02-23 09:55+0000\n"
"Last-Translator: Jeff Epler <jepler@gmail.com>\n" "Last-Translator: Fabian Affolter <mail@fabian-affolter.ch>\n"
"Language: de_DE\n" "Language: de_DE\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.11-dev\n"
#: main.c #: main.c
msgid "" msgid ""
@ -55,7 +55,7 @@ msgstr " ist vom Type %q\n"
#: main.c #: main.c
msgid " not found.\n" msgid " not found.\n"
msgstr "" msgstr " nicht gefunden.\n"
#: main.c #: main.c
msgid " output:\n" msgid " output:\n"
@ -107,21 +107,21 @@ msgstr "%q Indizes müssen Integer sein, nicht %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be %d-%d" msgid "%q must be %d-%d"
msgstr "" msgstr "%q muss %d-%d sein"
#: py/argcheck.c shared-bindings/gifio/GifWriter.c #: py/argcheck.c shared-bindings/gifio/GifWriter.c
msgid "%q must be <= %d" msgid "%q must be <= %d"
msgstr "" msgstr "%q muss <= %d sein"
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be >= %d" msgid "%q must be >= %d"
msgstr "" msgstr "%q muss >= %d sein"
#: py/argcheck.c shared-bindings/memorymonitor/AllocationAlarm.c #: py/argcheck.c shared-bindings/memorymonitor/AllocationAlarm.c
msgid "%q must be >= 0" msgid "%q must be >= 0"
@ -137,7 +137,7 @@ msgstr "%q muss >= 1 sein"
#: py/argcheck.c #: py/argcheck.c
msgid "%q must be a string" msgid "%q must be a string"
msgstr "" msgstr "%q muss ein String sein"
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "%q must be a tuple of length 2" msgid "%q must be a tuple of length 2"
@ -152,6 +152,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -451,6 +455,7 @@ msgstr "Alle timer für diesen Pin werden bereits benutzt"
msgid "All timers in use" msgid "All timers in use"
msgstr "Alle timer werden benutzt" msgstr "Alle timer werden benutzt"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Bereits am anbieten (advertising)." msgstr "Bereits am anbieten (advertising)."
@ -585,7 +590,7 @@ msgstr "Beide pins müssen Hardware Interrupts unterstützen"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Die Helligkeit muss zwischen 0 und 1.0 liegen" msgstr "Die Helligkeit muss zwischen 0 und 1.0 liegen"
@ -637,7 +642,7 @@ msgstr "Die Pufferlänge muss ein vielfaches von 512 sein"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Der Puffer muss ein vielfaches von 512 bytes sein" msgstr "Der Puffer muss ein vielfaches von 512 bytes sein"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Der Puffer muss eine Mindestenslänge von 1 haben" msgstr "Der Puffer muss eine Mindestenslänge von 1 haben"
@ -670,6 +675,10 @@ msgstr "Ein Bytes kann nur Werte zwischen 0 und 255 annehmen."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "CBC-Blöcke müssen ein Vielfaches von 16 Bytes sein" msgstr "CBC-Blöcke müssen ein Vielfaches von 16 Bytes sein"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC oder Checksumme ungültig" msgstr "CRC oder Checksumme ungültig"
@ -915,10 +924,12 @@ msgstr "Data 0 pin muss am Byte ausgerichtet sein"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Dem fmt Block muss ein Datenblock folgen" msgstr "Dem fmt Block muss ein Datenblock folgen"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Zu vielen Daten für das advertisement packet" msgstr "Zu vielen Daten für das advertisement packet"
@ -999,6 +1010,7 @@ msgstr "Alarm erwartet"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Habe ein Tupel der Länge %d erwartet aber %d erhalten" msgstr "Habe ein Tupel der Länge %d erwartet aber %d erhalten"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1053,6 +1065,7 @@ msgstr "Zuweisung des Wifi Scan Speichers ist fehlgeschlagen"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Verbindung fehlgeschlagen: interner Fehler" msgstr "Verbindung fehlgeschlagen: interner Fehler"
@ -1134,6 +1147,13 @@ msgstr "Generischer Fehler"
msgid "Group already used" msgid "Group already used"
msgstr "Gruppe schon benutzt" msgstr "Gruppe schon benutzt"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1288,6 +1308,7 @@ msgstr "Ungültiger ADC-Einheitenwert"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "Ungültiges AuthMode" msgstr "Ungültiges AuthMode"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "Ungültiges BLE Parameter" msgstr "Ungültiges BLE Parameter"
@ -1382,6 +1403,10 @@ msgstr "Ungültige format chunk size"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Ungültiger Speicherzugriff." msgstr "Ungültiger Speicherzugriff."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1482,7 +1507,7 @@ msgstr "Ungültige Wort- / Bitlänge"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Der Schlüssel muss 16, 24 oder 32 Byte lang sein" msgstr "Der Schlüssel muss 16, 24 oder 32 Byte lang sein"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1510,6 +1535,10 @@ msgstr "MISO pin Initialisierung fehlgeschlagen."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "MOSI pin Initialisierung fehlgeschlagen." msgstr "MOSI pin Initialisierung fehlgeschlagen."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1593,6 +1622,10 @@ msgstr "NVS Fehler"
msgid "Name too long" msgid "Name too long"
msgstr "Name zu lang" msgstr "Name zu lang"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Kein CCCD für diese Charakteristik" msgstr "Kein CCCD für diese Charakteristik"
@ -1613,9 +1646,9 @@ msgstr "Kein DMA Kanal gefunden"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1740,6 +1773,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1902,7 +1936,7 @@ msgstr ""
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c #: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
msgid "Pin count too large" msgid "Pin count too large"
msgstr "" msgstr "Pin-Anzahl zu gross"
#: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/atmel-samd/common-hal/analogio/AnalogIn.c
#: ports/cxd56/common-hal/analogio/AnalogIn.c #: ports/cxd56/common-hal/analogio/AnalogIn.c
@ -1912,14 +1946,14 @@ msgstr ""
#: ports/raspberrypi/common-hal/analogio/AnalogIn.c #: ports/raspberrypi/common-hal/analogio/AnalogIn.c
#: ports/stm/common-hal/analogio/AnalogIn.c #: ports/stm/common-hal/analogio/AnalogIn.c
msgid "Pin does not have ADC capabilities" msgid "Pin does not have ADC capabilities"
msgstr "Pin hat keine ADC Funktionalität" msgstr "Pin hat keine ADC-Funktionalität"
#: ports/stm/common-hal/alarm/pin/PinAlarm.c #: ports/stm/common-hal/alarm/pin/PinAlarm.c
#: ports/stm/common-hal/pulseio/PulseIn.c #: ports/stm/common-hal/pulseio/PulseIn.c
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "Pin kann nur als Eingang verwendet werden" msgstr "Pin kann nur als Eingang verwendet werden"
@ -1991,7 +2025,7 @@ msgstr ""
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c #: ports/raspberrypi/bindings/rp2pio/StateMachine.c
msgid "Program size invalid" msgid "Program size invalid"
msgstr "" msgstr "Programm-Größe ist ungültig"
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c #: ports/raspberrypi/bindings/rp2pio/StateMachine.c
msgid "Program too large" msgid "Program too large"
@ -2006,6 +2040,10 @@ msgstr "Pull wird nicht verwendet, wenn die Richtung output ist."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "RNG DeInit-Fehler" msgstr "RNG DeInit-Fehler"
@ -2122,10 +2160,11 @@ msgstr "Abtastrate muss positiv sein"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Abtastrate zu hoch. Wert muss unter %d liegen" msgstr "Abtastrate zu hoch. Wert muss unter %d liegen"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Scannen Sie bereits in Bearbeitung. Stoppen Sie mit stop_scan." msgstr "Scannen Sie bereits in Bearbeitung. Stoppen Sie mit stop_scan."
@ -2286,6 +2325,7 @@ msgstr "Die Kachelbreite muss die Bitmap-Breite genau teilen"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "Zeit liegt in der Vergangenheit" msgstr "Zeit liegt in der Vergangenheit"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2309,6 +2349,7 @@ msgstr "Zu viele Display Busse"
msgid "Too many displays" msgid "Too many displays"
msgstr "Zu viele displays" msgstr "Zu viele displays"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "Gesamte zu schreibende Datenmenge ist größer als %q" msgstr "Gesamte zu schreibende Datenmenge ist größer als %q"
@ -2386,7 +2427,7 @@ msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Konnte kein I2C Display finden an %x" msgstr "Konnte kein I2C Display finden an %x"
@ -2421,6 +2462,16 @@ msgstr "Unerwarteter nrfx uuid-Typ"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2440,11 +2491,21 @@ msgstr "Unbekannter Grund."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Unbekannter Sicherheitsfehler: 0x%04x" msgstr "Unbekannter Sicherheitsfehler: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "Unbekannter Systemfirmware Fehler: %04x" msgstr "Unbekannter Systemfirmware Fehler: %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2482,19 +2543,19 @@ msgstr "Nicht unterstütztes Format"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Nicht unterstützte Operation" msgstr "Nicht unterstützte Operation"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Nicht unterstützter Pull-Wert."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "Update fehlgeschlagen" msgstr "Update fehlgeschlagen"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Wert Länge != Erforderliche feste Länge" msgstr "Wert Länge != Erforderliche feste Länge"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2555,6 +2616,7 @@ msgstr "WiFi Passwort muss zwischen 8 und 63 Zeichen lang sein"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Aufgeweckt durch Alarm.\n" msgstr "Aufgeweckt durch Alarm.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Schreiben nicht unterstüzt für diese Charakteristik" msgstr "Schreiben nicht unterstüzt für diese Charakteristik"
@ -2658,7 +2720,7 @@ msgstr "Sie haben versucht argmin/argmax einer leeren Sequenz zu erhalten"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "Attribute werden noch nicht unterstützt" msgstr "Attribute werden noch nicht unterstützt"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "Achse außerhalb des Wertebereichs" msgstr "Achse außerhalb des Wertebereichs"
@ -2714,11 +2776,11 @@ msgstr "Es müssen 8 oder 16 bits_per_sample sein"
msgid "branch not in range" msgid "branch not in range"
msgstr "Zweig ist außerhalb der Reichweite" msgstr "Zweig ist außerhalb der Reichweite"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "Der Puffer ist kleiner als die angefragte Größe" msgstr "Der Puffer ist kleiner als die angefragte Größe"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "Die Puffergröße muss ein vielfaches der Elementgröße sein" msgstr "Die Puffergröße muss ein vielfaches der Elementgröße sein"
@ -2768,6 +2830,10 @@ msgstr "Kalibrierung ist Schreibgeschützt"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "Kalibrierwert nicht im Bereich von +/-127" msgstr "Kalibrierwert nicht im Bereich von +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "kann nur bis zu 4 Parameter für die Thumb assembly haben" msgstr "kann nur bis zu 4 Parameter für die Thumb assembly haben"
@ -2808,6 +2874,10 @@ msgstr "kann %s nicht nach complex konvertieren"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren" msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "kann nicht zu %q konvertieren" msgstr "kann nicht zu %q konvertieren"
@ -2860,6 +2930,10 @@ msgstr "Laden von '%q' nicht möglich"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "Laden mit '%q' index nicht möglich" msgstr "Laden mit '%q' index nicht möglich"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2908,6 +2982,14 @@ msgstr "Kann neue shape nicht zuweisen"
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "Kann '%q' Instanzen nicht erstellen" msgstr "Kann '%q' Instanzen nicht erstellen"
@ -2920,10 +3002,6 @@ msgstr "Kann Instanz nicht erstellen"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "Name %q kann nicht importiert werden" msgstr "Name %q kann nicht importiert werden"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "kann keinen relativen Import durchführen"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "Kann nicht eindeutig die Größe (sizeof) des Skalars ermitteln" msgstr "Kann nicht eindeutig die Größe (sizeof) des Skalars ermitteln"
@ -3103,6 +3181,10 @@ msgstr "Division durch Null"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "leer" msgstr "leer"
@ -3206,7 +3288,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3271,6 +3353,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3386,7 +3472,7 @@ msgstr "inline assembler muss eine function sein"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "das Eingabeargument muss ein Integer, Tupel oder eine Liste sein" msgstr "das Eingabeargument muss ein Integer, Tupel oder eine Liste sein"
@ -3394,7 +3480,7 @@ msgstr "das Eingabeargument muss ein Integer, Tupel oder eine Liste sein"
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "Die Länge des Eingabearrays muss eine Potenz von 2 sein" msgstr "Die Länge des Eingabearrays muss eine Potenz von 2 sein"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "Eingabe-Arrays sind nicht kompatibel" msgstr "Eingabe-Arrays sind nicht kompatibel"
@ -3402,6 +3488,10 @@ msgstr "Eingabe-Arrays sind nicht kompatibel"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "Eingabedaten müssen iterierbar sein" msgstr "Eingabedaten müssen iterierbar sein"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "Eingabematrix ist asymmetrisch" msgstr "Eingabematrix ist asymmetrisch"
@ -3411,18 +3501,26 @@ msgstr "Eingabematrix ist asymmetrisch"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "Eingabematrix ist singulär" msgstr "Eingabematrix ist singulär"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "die Eingabe muss ein-Dimensional sein" msgstr "die Eingabe muss ein-Dimensional sein"
@ -3606,6 +3704,11 @@ msgstr "Mathe-Domain-Fehler"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "Matrix ist nicht positiv definitiv" msgstr "Matrix ist nicht positiv definitiv"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3759,6 +3862,7 @@ msgstr "kein solches Attribut"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "non-UUID gefunden in service_uuids_whitelist" msgstr "non-UUID gefunden in service_uuids_whitelist"
@ -3800,7 +3904,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "Nicht genügend Argumente für den Formatierungs-String" msgstr "Nicht genügend Argumente für den Formatierungs-String"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "Die Anzahl der Punkte muss mindestens 2 betragen" msgstr "Die Anzahl der Punkte muss mindestens 2 betragen"
@ -3858,7 +3966,7 @@ msgstr "Objekt mit Pufferprotokoll (buffer protocol) erforderlich"
msgid "odd-length string" msgid "odd-length string"
msgstr "String mit ungerader Länge" msgstr "String mit ungerader Länge"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3866,7 +3974,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3981,6 +4089,10 @@ msgstr "Der Pixelwert erfordert zu viele Bits"
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein" msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "Polygon kann nur in einem übergeordneten Element registriert werden" msgstr "Polygon kann nur in einem übergeordneten Element registriert werden"
@ -4010,18 +4122,27 @@ msgstr "pow() drittes Argument darf nicht 0 sein"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() mit 3 Argumenten erfordert Integer" msgstr "pow() mit 3 Argumenten erfordert Integer"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4047,7 +4168,10 @@ msgstr "pow() mit 3 Argumenten erfordert Integer"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4347,7 +4471,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "zu viele Argumente mit dem angegebenen Format" msgstr "zu viele Argumente mit dem angegebenen Format"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "zu viele Dimensionen" msgstr "zu viele Dimensionen"
@ -4484,11 +4608,11 @@ msgstr "nicht unterstützte Xtensa-Anweisung '%s' mit %d Argumenten"
#: shared-module/gifio/GifWriter.c #: shared-module/gifio/GifWriter.c
msgid "unsupported colorspace for GifWriter" msgid "unsupported colorspace for GifWriter"
msgstr "" msgstr "Farbraum wird nicht unterstützt für GifWriter"
#: shared-bindings/bitmaptools/__init__.c #: shared-bindings/bitmaptools/__init__.c
msgid "unsupported colorspace for dither" msgid "unsupported colorspace for dither"
msgstr "" msgstr "Farbraum wird nicht unterstützt für dither"
#: py/objstr.c #: py/objstr.c
#, c-format #, c-format
@ -4533,10 +4657,10 @@ msgstr "watchdog Zeitlimit muss größer als 0 sein"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "breite muss zwischen (inklusive) 2 und 8 liegen, nicht %d" msgstr "breite muss zwischen (inklusive) 2 und 8 liegen, nicht %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "breite muss größer als 0 sein" msgstr "Breite muss größer als 0 sein"
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "wifi is not enabled" msgid "wifi is not enabled"
@ -4550,7 +4674,7 @@ msgstr "Fenster muss <= Intervall sein"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "falscher Achsenindex" msgstr "falscher Achsenindex"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "falsche Achse gewählt" msgstr "falsche Achse gewählt"
@ -4558,7 +4682,11 @@ msgstr "falsche Achse gewählt"
msgid "wrong input type" msgid "wrong input type"
msgstr "falscher Eingabetyp" msgstr "falscher Eingabetyp"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr "falsche Länge des Array von Bedingungen"
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "falsche Anzahl an Argumenten" msgstr "falsche Anzahl an Argumenten"
@ -4602,6 +4730,12 @@ msgstr "zi muss eine Gleitkommazahl sein"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "" msgstr ""
#~ msgid "cannot perform relative import"
#~ msgstr "kann keinen relativen Import durchführen"
#~ msgid "Unsupported pull value."
#~ msgstr "Nicht unterstützter Pull-Wert."
#, c-format #, c-format
#~ msgid "" #~ msgid ""
#~ "Welcome to Adafruit CircuitPython %s!\n" #~ "Welcome to Adafruit CircuitPython %s!\n"

View File

@ -99,7 +99,7 @@ msgstr ""
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -144,6 +144,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -442,6 +446,7 @@ msgstr ""
msgid "All timers in use" msgid "All timers in use"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -574,7 +579,7 @@ msgstr ""
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "" msgstr ""
@ -626,7 +631,7 @@ msgstr ""
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "" msgstr ""
@ -659,6 +664,10 @@ msgstr ""
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "" msgstr ""
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -900,10 +909,12 @@ msgstr ""
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "" msgstr ""
@ -984,6 +995,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1037,6 +1049,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1116,6 +1129,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1268,6 +1288,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1362,6 +1383,10 @@ msgstr ""
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1462,7 +1487,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1490,6 +1515,10 @@ msgstr ""
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1572,6 +1601,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1592,9 +1625,9 @@ msgstr ""
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1719,6 +1752,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1892,7 +1926,7 @@ msgstr ""
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1974,6 +2008,10 @@ msgstr ""
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2090,10 +2128,11 @@ msgstr ""
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2252,6 +2291,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2274,6 +2314,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2351,7 +2392,7 @@ msgstr ""
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2386,6 +2427,16 @@ msgstr ""
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2405,11 +2456,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2443,19 +2504,19 @@ msgstr ""
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "" msgstr ""
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr ""
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2513,6 +2574,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2616,7 +2678,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2672,11 +2734,11 @@ msgstr ""
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2726,6 +2788,10 @@ msgstr ""
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "" msgstr ""
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "" msgstr ""
@ -2764,6 +2830,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2816,6 +2886,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2858,6 +2932,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2870,10 +2952,6 @@ msgstr ""
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr ""
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3049,6 +3127,10 @@ msgstr ""
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3152,7 +3234,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3217,6 +3299,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3330,7 +3416,7 @@ msgstr ""
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3338,7 +3424,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3346,6 +3432,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3355,18 +3445,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3544,6 +3642,11 @@ msgstr ""
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3697,6 +3800,7 @@ msgstr ""
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3737,7 +3841,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3795,7 +3903,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3803,7 +3911,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3915,6 +4023,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3944,18 +4056,27 @@ msgstr ""
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "" msgstr ""
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -3981,7 +4102,10 @@ msgstr ""
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4278,7 +4402,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4462,7 +4586,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4479,7 +4603,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4487,7 +4611,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "" msgstr ""

View File

@ -108,7 +108,7 @@ msgstr "%q indices must be integers, not %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "%q length must be %d-%d" msgstr "%q length must be %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "%q length must be >= 1" msgstr "%q length must be >= 1"
@ -153,6 +153,10 @@ msgstr "%q must be between %d and %d"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "%q must be power of 2" msgstr "%q must be power of 2"
@ -451,6 +455,7 @@ msgstr "All timers for this pin are in use"
msgid "All timers in use" msgid "All timers in use"
msgstr "All timers in use" msgstr "All timers in use"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Already advertising." msgstr "Already advertising."
@ -585,7 +590,7 @@ msgstr "Both pins must support hardware interrupts"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Brightness must be 0-1.0" msgstr "Brightness must be 0-1.0"
@ -637,7 +642,7 @@ msgstr "Buffer length must be a multiple of 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Buffer must be a multiple of 512 bytes" msgstr "Buffer must be a multiple of 512 bytes"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Buffer must be at least length 1" msgstr "Buffer must be at least length 1"
@ -670,6 +675,10 @@ msgstr "Bytes must be between 0 and 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "CBC blocks must be multiples of 16 bytes" msgstr "CBC blocks must be multiples of 16 bytes"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC or checksum was invalid" msgstr "CRC or checksum was invalid"
@ -913,10 +922,12 @@ msgstr "Data 0 pin must be byte aligned"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Data chunk must follow fmt chunk" msgstr "Data chunk must follow fmt chunk"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "Data not supported with directed advertising" msgstr "Data not supported with directed advertising"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Data too large for advertisement packet" msgstr "Data too large for advertisement packet"
@ -997,6 +1008,7 @@ msgstr "Expected an alarm"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Expected tuple of length %d, got %d" msgstr "Expected tuple of length %d, got %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "Extended advertisements with scan response not supported." msgstr "Extended advertisements with scan response not supported."
@ -1050,6 +1062,7 @@ msgstr "Failed to allocate WiFi scan memory"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "Failed to buffer the sample" msgstr "Failed to buffer the sample"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Failed to connect: internal error" msgstr "Failed to connect: internal error"
@ -1129,6 +1142,13 @@ msgstr "Generic Failure"
msgid "Group already used" msgid "Group already used"
msgstr "Group already used" msgstr "Group already used"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1283,6 +1303,7 @@ msgstr "Invalid ADC unit value"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "Invalid AuthMode" msgstr "Invalid AuthMode"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "Invalid BLE parameter" msgstr "Invalid BLE parameter"
@ -1377,6 +1398,10 @@ msgstr "Invalid format chunk size"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Invalid memory access." msgstr "Invalid memory access."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1477,7 +1502,7 @@ msgstr "Invalid word/bit length"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Key must be 16, 24, or 32 bytes long" msgstr "Key must be 16, 24, or 32 bytes long"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1505,6 +1530,10 @@ msgstr "MISO pin init failed."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "MOSI pin init failed." msgstr "MOSI pin init failed."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1587,6 +1616,10 @@ msgstr "NVS Error"
msgid "Name too long" msgid "Name too long"
msgstr "Name too long" msgstr "Name too long"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "No CCCD for this Characteristic" msgstr "No CCCD for this Characteristic"
@ -1607,10 +1640,10 @@ msgstr "No DMA channel found"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "No DMA pacing timer found" msgstr "No DMA pacing timer found"
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "No I2C device at address: %x" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1734,6 +1767,7 @@ msgstr "Nordic system firmware out of memory"
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "Not a valid IP string" msgstr "Not a valid IP string"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1913,7 +1947,7 @@ msgstr "Pin does not have ADC capabilities"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "Pin interrupt already in use" msgstr "Pin interrupt already in use"
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "Pin is input only" msgstr "Pin is input only"
@ -1998,6 +2032,10 @@ msgstr "Pull not used when direction is output."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "RAISE mode is not implemented" msgstr "RAISE mode is not implemented"
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "RNG deinit Error" msgstr "RNG deinit Error"
@ -2114,10 +2152,11 @@ msgstr "Sample rate must be positive"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Sample rate too high. It must be less than %d" msgstr "Sample rate too high. It must be less than %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Scan already in progess. Stop with stop_scan." msgstr "Scan already in progess. Stop with stop_scan."
@ -2283,6 +2322,7 @@ msgstr "Tile width must exactly divide bitmap width"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "Time is in the past." msgstr "Time is in the past."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2305,6 +2345,7 @@ msgstr "Too many display busses"
msgid "Too many displays" msgid "Too many displays"
msgstr "Too many displays" msgstr "Too many displays"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "Total data to write is larger than %q" msgstr "Total data to write is larger than %q"
@ -2382,7 +2423,7 @@ msgstr "Unable to allocate buffers for signed conversion"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "Unable to create lock" msgstr "Unable to create lock"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Unable to find I2C display at %x" msgstr "Unable to find I2C display at %x"
@ -2417,6 +2458,16 @@ msgstr "Unexpected nrfx uuid type"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Unhandled ESP TLS error %d %d %x %d" msgstr "Unhandled ESP TLS error %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2436,11 +2487,21 @@ msgstr "Unknown reason."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Unknown security error: 0x%04x" msgstr "Unknown security error: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "Unknown system firmware error: %04x" msgstr "Unknown system firmware error: %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2476,19 +2537,19 @@ msgstr "Unsupported format"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Unsupported operation" msgstr "Unsupported operation"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Unsupported pull value."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "Update failed" msgstr "Update failed"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Value length != required fixed length" msgstr "Value length != required fixed length"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2546,6 +2607,7 @@ msgstr "WiFi password must be between 8 and 63 characters"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Woken up by alarm.\n" msgstr "Woken up by alarm.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Writes not supported on Characteristic" msgstr "Writes not supported on Characteristic"
@ -2650,7 +2712,7 @@ msgstr "attempt to get argmin/argmax of an empty sequence"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "attributes not supported yet" msgstr "attributes not supported yet"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "axis is out of bounds" msgstr "axis is out of bounds"
@ -2706,11 +2768,11 @@ msgstr "bits_per_sample must be 8 or 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "Branch not in range" msgstr "Branch not in range"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "Buffer is smaller than requested size" msgstr "Buffer is smaller than requested size"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "Buffer size must be a multiple of element size" msgstr "Buffer size must be a multiple of element size"
@ -2760,6 +2822,10 @@ msgstr "Calibration is read only"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "Calibration value out of range +/-127" msgstr "Calibration value out of range +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "Can only have up to 4 parameters to thumb assembly" msgstr "Can only have up to 4 parameters to thumb assembly"
@ -2798,6 +2864,10 @@ msgstr "can't convert %s to complex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "Can't convert '%q' object to %q implicitly" msgstr "Can't convert '%q' object to %q implicitly"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "Can't convert to %q" msgstr "Can't convert to %q"
@ -2850,6 +2920,10 @@ msgstr "can't load from '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "can't load with '%q' index" msgstr "can't load with '%q' index"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "can't send non-None value to a just-started generator" msgstr "can't send non-None value to a just-started generator"
@ -2894,6 +2968,14 @@ msgstr "cannot assign new shape"
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "can't cast output with casting rule" msgstr "can't cast output with casting rule"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "can't create '%q' instances" msgstr "can't create '%q' instances"
@ -2906,10 +2988,6 @@ msgstr "can't create instance"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "can't import name %q" msgstr "can't import name %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "can't perform relative import"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "cannot unambiguously get sizeof scalar" msgstr "cannot unambiguously get sizeof scalar"
@ -3086,6 +3164,10 @@ msgstr "division by zero"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "empty" msgstr "empty"
@ -3189,7 +3271,7 @@ msgstr "first argument must be a callable"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "first argument must be a function" msgstr "first argument must be a function"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "first argument must be a tuple of ndarrays" msgstr "first argument must be a tuple of ndarrays"
@ -3254,6 +3336,10 @@ msgstr "function has the same sign at the ends of interval"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "function is defined for ndarrays only" msgstr "function is defined for ndarrays only"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3367,7 +3453,7 @@ msgstr "inline assembler must be a function"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "input and output shapes are not compatible" msgstr "input and output shapes are not compatible"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "input argument must be an integer, a tuple, or a list" msgstr "input argument must be an integer, a tuple, or a list"
@ -3375,7 +3461,7 @@ msgstr "input argument must be an integer, a tuple, or a list"
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "input array length must be power of 2" msgstr "input array length must be power of 2"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "input arrays are not compatible" msgstr "input arrays are not compatible"
@ -3383,6 +3469,10 @@ msgstr "input arrays are not compatible"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "input data must be an iterable" msgstr "input data must be an iterable"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "input matrix is asymmetric" msgstr "input matrix is asymmetric"
@ -3392,18 +3482,26 @@ msgstr "input matrix is asymmetric"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "input matrix is singular" msgstr "input matrix is singular"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "input must be a dense ndarray" msgstr "input must be a dense ndarray"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "input must be a tensor of rank 2" msgstr "input must be a tensor of rank 2"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "input must be an ndarray" msgstr "input must be an ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "input must be one-dimensional" msgstr "input must be one-dimensional"
@ -3581,6 +3679,11 @@ msgstr "math domain error"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "matrix is not positive definite" msgstr "matrix is not positive definite"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3734,6 +3837,7 @@ msgstr "no such attribute"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "non-Device in %q" msgstr "non-Device in %q"
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "non-UUID found in service_uuids_whitelist" msgstr "non-UUID found in service_uuids_whitelist"
@ -3774,7 +3878,11 @@ msgstr "not all arguments converted during string formatting"
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "not enough arguments for format string" msgstr "not enough arguments for format string"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "number of points must be at least 2" msgstr "number of points must be at least 2"
@ -3832,7 +3940,7 @@ msgstr "object with buffer protocol required"
msgid "odd-length string" msgid "odd-length string"
msgstr "odd-length string" msgstr "odd-length string"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "offset is too large" msgstr "offset is too large"
@ -3840,7 +3948,7 @@ msgstr "offset is too large"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "offset must be >= 0" msgstr "offset must be >= 0"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "offset must be non-negative and not greater than buffer length" msgstr "offset must be non-negative and not greater than buffer length"
@ -3952,6 +4060,10 @@ msgstr "pixel value requires too many bits"
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "pixel_shader must be displayio.Palette or displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "polygon can only be registered in one parent" msgstr "polygon can only be registered in one parent"
@ -3981,18 +4093,27 @@ msgstr "pow() 3rd argument cannot be 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() with 3 arguments requires integers" msgstr "pow() with 3 arguments requires integers"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4018,7 +4139,10 @@ msgstr "pow() with 3 arguments requires integers"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "pressing boot button at start up.\n" msgstr "pressing boot button at start up.\n"
@ -4317,7 +4441,7 @@ msgstr "tobytes can be invoked for dense arrays only"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "too many arguments provided with the given format" msgstr "too many arguments provided with the given format"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "too many dimensions" msgstr "too many dimensions"
@ -4501,7 +4625,7 @@ msgstr "WatchDog timeout must be greater than 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "width must be from 2 to 8 (inclusive), not %d" msgstr "width must be from 2 to 8 (inclusive), not %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "width must be greater than zero" msgstr "width must be greater than zero"
@ -4518,7 +4642,7 @@ msgstr "window must be <= interval"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "wrong axis index" msgstr "wrong axis index"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "wrong axis specified" msgstr "wrong axis specified"
@ -4526,7 +4650,11 @@ msgstr "wrong axis specified"
msgid "wrong input type" msgid "wrong input type"
msgstr "wrong input type" msgstr "wrong input type"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "wrong number of arguments" msgstr "wrong number of arguments"
@ -4570,6 +4698,16 @@ msgstr "zi must be of float type"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi must be of shape (n_section, 2)" msgstr "zi must be of shape (n_section, 2)"
#~ msgid "cannot perform relative import"
#~ msgstr "can't perform relative import"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "No I2C device at address: %x"
#~ msgid "Unsupported pull value."
#~ msgstr "Unsupported pull value."
#~ msgid "%q must <= %d" #~ msgid "%q must <= %d"
#~ msgstr "%q must <= %d" #~ msgstr "%q must <= %d"

View File

@ -110,7 +110,7 @@ msgstr "%q indices deben ser enteros, no %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -155,6 +155,10 @@ msgstr "%q debe estar entre %d y %d"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -455,6 +459,7 @@ msgstr "Todos los timers para este pin están siendo utilizados"
msgid "All timers in use" msgid "All timers in use"
msgstr "Todos los timers en uso" msgstr "Todos los timers en uso"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Ya se encuentra publicando." msgstr "Ya se encuentra publicando."
@ -589,7 +594,7 @@ msgstr "Ambos pines deben soportar interrupciones por hardware"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "El brillo debe ser 0-1.0" msgstr "El brillo debe ser 0-1.0"
@ -642,7 +647,7 @@ msgstr "El tamaño del búfer debe ser múltiplo de 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Búfer deber ser un múltiplo de 512 bytes" msgstr "Búfer deber ser un múltiplo de 512 bytes"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Buffer debe ser de longitud 1 como minimo" msgstr "Buffer debe ser de longitud 1 como minimo"
@ -675,6 +680,10 @@ msgstr "Bytes debe estar entre 0 y 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "Los bloques CBC deben ser múltiplos de 16 bytes" msgstr "Los bloques CBC deben ser múltiplos de 16 bytes"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC o suma de comprobación inválida" msgstr "CRC o suma de comprobación inválida"
@ -922,10 +931,12 @@ msgstr "El pin Data 0 debe estar alineado a bytes"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Trozo de datos debe seguir fmt chunk" msgstr "Trozo de datos debe seguir fmt chunk"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "Datos sin capacidad de anuncio dirigido" msgstr "Datos sin capacidad de anuncio dirigido"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Data es muy grande para el paquete de anuncio" msgstr "Data es muy grande para el paquete de anuncio"
@ -1007,6 +1018,7 @@ msgstr "Un objecto alarm era esperado"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Se esperaba un tuple de %d, se obtuvo %d" msgstr "Se esperaba un tuple de %d, se obtuvo %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "No se admiten anuncios extendidos con respuesta de escaneo." msgstr "No se admiten anuncios extendidos con respuesta de escaneo."
@ -1060,6 +1072,7 @@ msgstr "Fallo al tomar memoria para búsqueda wifi"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "Fallo al hacer el búfer de la muestra" msgstr "Fallo al hacer el búfer de la muestra"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Error al conectar: error interno" msgstr "Error al conectar: error interno"
@ -1140,6 +1153,13 @@ msgstr "Fallo Genérico"
msgid "Group already used" msgid "Group already used"
msgstr "Grupo ya está siendo utilizado" msgstr "Grupo ya está siendo utilizado"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1301,6 +1321,7 @@ msgstr "Valor de unidad de ADC no válido"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "AuthMode invalido" msgstr "AuthMode invalido"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "Parámetro BLE invalido" msgstr "Parámetro BLE invalido"
@ -1395,6 +1416,10 @@ msgstr "Formato de fragmento de formato no válido"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Acceso a memoria no válido." msgstr "Acceso a memoria no válido."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1495,7 +1520,7 @@ msgstr "Tamaño no válido de palabra/bit"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "La llave debe tener 16, 24 o 32 bytes de longitud" msgstr "La llave debe tener 16, 24 o 32 bytes de longitud"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1523,6 +1548,10 @@ msgstr "MISO pin init fallido."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "MOSI pin init fallido." msgstr "MOSI pin init fallido."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1609,6 +1638,10 @@ msgstr "Error NVS"
msgid "Name too long" msgid "Name too long"
msgstr "Nombre muy largo" msgstr "Nombre muy largo"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "No hay CCCD para esta característica" msgstr "No hay CCCD para esta característica"
@ -1629,10 +1662,10 @@ msgstr "No se encontró el canal DMA"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "timer por establecedor de paso DMA no encontrado" msgstr "timer por establecedor de paso DMA no encontrado"
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "No hay dispositivo I2C en la dirección: %x" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1756,6 +1789,7 @@ msgstr "El firmware del sistema Nordic no tiene memoria"
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "No es una cadena de IP válida" msgstr "No es una cadena de IP válida"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1937,7 +1971,7 @@ msgstr "Pin no tiene capacidad ADC"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "Interrupción de Pin ya está en uso" msgstr "Interrupción de Pin ya está en uso"
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "El pin es solo de entrada" msgstr "El pin es solo de entrada"
@ -2025,6 +2059,10 @@ msgstr "Pull no se usa cuando la dirección es output."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "El modo RAISE no esta implementado" msgstr "El modo RAISE no esta implementado"
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "Error de desinicialización de RNG" msgstr "Error de desinicialización de RNG"
@ -2142,10 +2180,11 @@ msgstr "Sample rate debe ser positivo"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Frecuencia de muestreo demasiado alta. Debe ser menor a %d" msgstr "Frecuencia de muestreo demasiado alta. Debe ser menor a %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Escaneo en progreso. Usa stop_scan para detener." msgstr "Escaneo en progreso. Usa stop_scan para detener."
@ -2312,6 +2351,7 @@ msgstr "Ancho del Tile debe dividir exactamente el ancho de mapa de bits"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "Tiempo suministrado esta en el pasado." msgstr "Tiempo suministrado esta en el pasado."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2336,6 +2376,7 @@ msgstr "Demasiados buses de pantalla"
msgid "Too many displays" msgid "Too many displays"
msgstr "Muchos displays" msgstr "Muchos displays"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "La cantidad total de datos es mas grande que %q" msgstr "La cantidad total de datos es mas grande que %q"
@ -2413,7 +2454,7 @@ msgstr "No se pudieron asignar buffers para la conversión con signo"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "No se puede crear bloqueo" msgstr "No se puede crear bloqueo"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "No se puede encontrar la pantalla I2C en %x" msgstr "No se puede encontrar la pantalla I2C en %x"
@ -2448,6 +2489,16 @@ msgstr "Tipo de uuid nrfx inesperado"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Error no manejado de ESP TLS %d %d %x %d" msgstr "Error no manejado de ESP TLS %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2467,11 +2518,21 @@ msgstr "Razón desconocida."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Error de seguridad desconocido: 0x%04x" msgstr "Error de seguridad desconocido: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "Error desconocido en el firmware sistema: %04x" msgstr "Error desconocido en el firmware sistema: %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2507,19 +2568,19 @@ msgstr "Formato no soportado"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Operación no soportada" msgstr "Operación no soportada"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "valor pull no soportado."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "La actualización fallo" msgstr "La actualización fallo"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Tamaño del valor != del tamaño fijo requerido" msgstr "Tamaño del valor != del tamaño fijo requerido"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2580,6 +2641,7 @@ msgstr "La clave de WiFi debe ser entre 8 y 63 caracteres"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Despertado por la alarma.\n" msgstr "Despertado por la alarma.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Escrituras no admitidas en Characteristic" msgstr "Escrituras no admitidas en Characteristic"
@ -2685,7 +2747,7 @@ msgstr "intento de obtener argmin/argmax de una secuencia vacía"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "atributos aún no soportados" msgstr "atributos aún no soportados"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "Eje está fuera de sus límites" msgstr "Eje está fuera de sus límites"
@ -2741,11 +2803,11 @@ msgstr "bits_per_sample debe ser 8 ó 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "la rama no está dentro del rango" msgstr "la rama no está dentro del rango"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "El buffer es mas pequeño que el requerido" msgstr "El buffer es mas pequeño que el requerido"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "El tamaño del buffer debe ser un múltiplo del tamaño del elemento" msgstr "El tamaño del buffer debe ser un múltiplo del tamaño del elemento"
@ -2795,6 +2857,10 @@ msgstr "calibration es de solo lectura"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "Valor de calibración fuera del rango +/-127" msgstr "Valor de calibración fuera del rango +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "solo puede tener hasta 4 parámetros para ensamblar Thumb" msgstr "solo puede tener hasta 4 parámetros para ensamblar Thumb"
@ -2833,6 +2899,10 @@ msgstr "no se puede convertir %s a complejo"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "no se puede convertir el objeto '%q' a %q implícitamente" msgstr "no se puede convertir el objeto '%q' a %q implícitamente"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "no puede convertir a %q" msgstr "no puede convertir a %q"
@ -2885,6 +2955,10 @@ msgstr "no se puede cargar desde '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "no se puede cargar con el índice '%q'" msgstr "no se puede cargar con el índice '%q'"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2932,6 +3006,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "No se puede realizar cast de la salida sin una regla de cast" msgstr "No se puede realizar cast de la salida sin una regla de cast"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "no se pueden crear '%q' instancias" msgstr "no se pueden crear '%q' instancias"
@ -2944,10 +3026,6 @@ msgstr "no se puede crear instancia"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "no se puede importar name '%q'" msgstr "no se puede importar name '%q'"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "no se puedo realizar importación relativa"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "no se puede sin ambiguedades traer el sizeof del escalar" msgstr "no se puede sin ambiguedades traer el sizeof del escalar"
@ -3125,6 +3203,10 @@ msgstr "división por cero"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "vacío" msgstr "vacío"
@ -3228,7 +3310,7 @@ msgstr "se debe poder llamar al primer argumento"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "el primer argumento debe ser una función" msgstr "el primer argumento debe ser una función"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "Primer argumento tiene que ser una tupla de ndarrays" msgstr "Primer argumento tiene que ser una tupla de ndarrays"
@ -3293,6 +3375,10 @@ msgstr "la función tiene el mismo signo a extremos del intervalo"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "Función solo definida para ndarrays" msgstr "Función solo definida para ndarrays"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3406,7 +3492,7 @@ msgstr "ensamblador en línea debe ser una función"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "Formas de entrada y salida no son compatibles" msgstr "Formas de entrada y salida no son compatibles"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "argumento de entrada debe ser un entero, una tupla o una lista" msgstr "argumento de entrada debe ser un entero, una tupla o una lista"
@ -3414,7 +3500,7 @@ msgstr "argumento de entrada debe ser un entero, una tupla o una lista"
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "el tamaño del arreglo de entrada debe ser potencia de 2" msgstr "el tamaño del arreglo de entrada debe ser potencia de 2"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "Arrays de entrada no son compactibles" msgstr "Arrays de entrada no son compactibles"
@ -3422,6 +3508,10 @@ msgstr "Arrays de entrada no son compactibles"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "los datos de entrada deben ser iterables" msgstr "los datos de entrada deben ser iterables"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "la matriz de entrada es asimétrica" msgstr "la matriz de entrada es asimétrica"
@ -3431,18 +3521,26 @@ msgstr "la matriz de entrada es asimétrica"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "la matriz de entrada es singular" msgstr "la matriz de entrada es singular"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "Entrada tiene que ser un ndarray denso" msgstr "Entrada tiene que ser un ndarray denso"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "Entrada tiene que ser un tensor de rango 2" msgstr "Entrada tiene que ser un tensor de rango 2"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "Entrada tiene que ser un ndarray" msgstr "Entrada tiene que ser un ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "Entrada tiene que ser unidimensional" msgstr "Entrada tiene que ser unidimensional"
@ -3623,6 +3721,11 @@ msgstr "error de dominio matemático"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "matrix no es definida positiva" msgstr "matrix no es definida positiva"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3777,6 +3880,7 @@ msgstr "no hay tal atributo"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "hay un no-Device en %q" msgstr "hay un no-Device en %q"
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "no UUID encontrado en service_uuids_whitelist" msgstr "no UUID encontrado en service_uuids_whitelist"
@ -3820,7 +3924,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "no suficientes argumentos para format string" msgstr "no suficientes argumentos para format string"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "el número de puntos debe ser al menos 2" msgstr "el número de puntos debe ser al menos 2"
@ -3878,7 +3986,7 @@ msgstr "objeto con protocolo de buffer requerido"
msgid "odd-length string" msgid "odd-length string"
msgstr "string de longitud impar" msgstr "string de longitud impar"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "offset es demasiado grande" msgstr "offset es demasiado grande"
@ -3886,7 +3994,7 @@ msgstr "offset es demasiado grande"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "offset debe ser >= 0" msgstr "offset debe ser >= 0"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "offset debe ser non-negative y no mayo que la longitud del buffer" msgstr "offset debe ser non-negative y no mayo que la longitud del buffer"
@ -3998,6 +4106,10 @@ msgstr "valor del pixel require demasiado bits"
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter" msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "el polígono solo se puede registrar en uno de los padres" msgstr "el polígono solo se puede registrar en uno de los padres"
@ -4027,18 +4139,27 @@ msgstr "el 3er argumento de pow() no puede ser 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() con 3 argumentos requiere enteros" msgstr "pow() con 3 argumentos requiere enteros"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4064,7 +4185,10 @@ msgstr "pow() con 3 argumentos requiere enteros"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "presionando botón de arranque al inicio.\n" msgstr "presionando botón de arranque al inicio.\n"
@ -4364,7 +4488,7 @@ msgstr "tobytes solo pueden ser invocados por arrays densos"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "demasiados argumentos provistos con el formato dado" msgstr "demasiados argumentos provistos con el formato dado"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "demasiadas dimensiones" msgstr "demasiadas dimensiones"
@ -4548,7 +4672,7 @@ msgstr "el tiempo de espera del perro guardián debe ser mayor a 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "ancho debe estar entre 2 y 8 (inclusivamente), no %d" msgstr "ancho debe estar entre 2 y 8 (inclusivamente), no %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "el ancho debe ser mayor que cero" msgstr "el ancho debe ser mayor que cero"
@ -4565,7 +4689,7 @@ msgstr "la ventana debe ser <= intervalo"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "indice de eje erróneo" msgstr "indice de eje erróneo"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "eje especificado erróneo" msgstr "eje especificado erróneo"
@ -4573,7 +4697,11 @@ msgstr "eje especificado erróneo"
msgid "wrong input type" msgid "wrong input type"
msgstr "tipo de entrada incorrecta" msgstr "tipo de entrada incorrecta"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "numero erroneo de argumentos" msgstr "numero erroneo de argumentos"
@ -4617,6 +4745,16 @@ msgstr "zi debe ser de tipo flotante"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi debe ser una forma (n_section,2)" msgstr "zi debe ser una forma (n_section,2)"
#~ msgid "cannot perform relative import"
#~ msgstr "no se puedo realizar importación relativa"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "No hay dispositivo I2C en la dirección: %x"
#~ msgid "Unsupported pull value."
#~ msgstr "valor pull no soportado."
#~ msgid "%q must <= %d" #~ msgid "%q must <= %d"
#~ msgstr "%q debe ser <= %d" #~ msgstr "%q debe ser <= %d"

View File

@ -100,7 +100,7 @@ msgstr "%q indeks ay dapat integers, hindi %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -146,6 +146,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -447,6 +451,7 @@ msgstr "Lahat ng timers para sa pin na ito ay ginagamit"
msgid "All timers in use" msgid "All timers in use"
msgstr "Lahat ng timer ginagamit" msgstr "Lahat ng timer ginagamit"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -581,7 +586,7 @@ msgstr "Ang parehong mga pin ay dapat na sumusuporta sa hardware interrupts"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "" msgstr ""
@ -633,7 +638,7 @@ msgstr ""
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Buffer dapat ay hindi baba sa 1 na haba" msgstr "Buffer dapat ay hindi baba sa 1 na haba"
@ -667,6 +672,10 @@ msgstr "Sa gitna ng 0 o 255 dapat ang bytes."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "" msgstr ""
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -911,10 +920,12 @@ msgstr "graphic ay dapat 2048 bytes ang haba"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Dapat sunurin ng Data chunk ang fmt chunk" msgstr "Dapat sunurin ng Data chunk ang fmt chunk"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, fuzzy #, fuzzy
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
@ -997,6 +1008,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1050,6 +1062,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1129,6 +1142,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1283,6 +1303,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1377,6 +1398,10 @@ msgstr "Mali ang format ng chunk size"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1477,7 +1502,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1505,6 +1530,10 @@ msgstr "Hindi ma-initialize ang MISO pin."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "Hindi ma-initialize ang MOSI pin." msgstr "Hindi ma-initialize ang MOSI pin."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1587,6 +1616,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1607,9 +1640,9 @@ msgstr "Walang DMA channel na mahanap"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1734,6 +1767,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
#, fuzzy #, fuzzy
@ -1911,7 +1945,7 @@ msgstr "Ang pin ay walang kakayahan sa ADC"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1993,6 +2027,10 @@ msgstr "Pull hindi ginagamit kapag ang direksyon ay output."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2110,10 +2148,11 @@ msgstr "Sample rate ay dapat positibo"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Sample rate ay masyadong mataas. Ito ay dapat hindi hiigit sa %d" msgstr "Sample rate ay masyadong mataas. Ito ay dapat hindi hiigit sa %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2272,6 +2311,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2294,6 +2334,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2371,7 +2412,7 @@ msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2407,6 +2448,16 @@ msgstr "hindi inaasahang indent"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2426,11 +2477,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2465,19 +2526,19 @@ msgstr "Hindi supportadong format"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Hindi sinusuportahang operasyon" msgstr "Hindi sinusuportahang operasyon"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Hindi suportado ang pull value."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2535,6 +2596,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2638,7 +2700,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "attributes hindi sinusuportahan" msgstr "attributes hindi sinusuportahan"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2694,11 +2756,11 @@ msgstr "bits_per_sample ay dapat 8 o 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "branch wala sa range" msgstr "branch wala sa range"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2749,6 +2811,10 @@ msgstr "pagkakalibrate ay basahin lamang"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "ang halaga ng pagkakalibrate ay wala sa sakop +/-127" msgstr "ang halaga ng pagkakalibrate ay wala sa sakop +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Thumb assembly" msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Thumb assembly"
@ -2788,6 +2854,10 @@ msgstr "hindi ma-convert %s sa complex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig" msgstr "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2841,6 +2911,10 @@ msgstr "hidi ma i-load galing sa '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "hindi ma i-load gamit ng '%q' na index" msgstr "hindi ma i-load gamit ng '%q' na index"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator" msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator"
@ -2887,6 +2961,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "hindi magawa '%q' instances" msgstr "hindi magawa '%q' instances"
@ -2899,10 +2981,6 @@ msgstr "hindi magawa ang instance"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "hindi ma-import ang name %q" msgstr "hindi ma-import ang name %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "hindi maaring isagawa ang relative import"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3082,6 +3160,10 @@ msgstr "dibisyon ng zero"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "walang laman" msgstr "walang laman"
@ -3186,7 +3268,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3251,6 +3333,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3365,7 +3451,7 @@ msgstr "inline assembler ay dapat na function"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3373,7 +3459,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3381,6 +3467,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3390,18 +3480,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3583,6 +3681,11 @@ msgstr "may pagkakamali sa math domain"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3736,6 +3839,7 @@ msgstr "walang ganoon na attribute"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3776,7 +3880,11 @@ msgstr "hindi lahat ng arguments na i-convert habang string formatting"
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "kulang sa arguments para sa format string" msgstr "kulang sa arguments para sa format string"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3834,7 +3942,7 @@ msgstr "object na may buffer protocol kinakailangan"
msgid "odd-length string" msgid "odd-length string"
msgstr "odd-length string" msgstr "odd-length string"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3842,7 +3950,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3956,6 +4064,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter" msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3985,18 +4097,27 @@ msgstr "pow() 3rd argument ay hindi maaring 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() na may 3 argumento kailangan ng integers" msgstr "pow() na may 3 argumento kailangan ng integers"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4022,7 +4143,10 @@ msgstr "pow() na may 3 argumento kailangan ng integers"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4323,7 +4447,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "masyadong maraming mga argumento na ibinigay sa ibinigay na format" msgstr "masyadong maraming mga argumento na ibinigay sa ibinigay na format"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4507,7 +4631,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4524,7 +4648,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4532,7 +4656,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "mali ang bilang ng argumento" msgstr "mali ang bilang ng argumento"
@ -4578,6 +4706,12 @@ msgstr ""
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "" msgstr ""
#~ msgid "cannot perform relative import"
#~ msgstr "hindi maaring isagawa ang relative import"
#~ msgid "Unsupported pull value."
#~ msgstr "Hindi suportado ang pull value."
#, c-format #, c-format
#~ msgid "" #~ msgid ""
#~ "Welcome to Adafruit CircuitPython %s!\n" #~ "Welcome to Adafruit CircuitPython %s!\n"

View File

@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: 0.1\n" "Project-Id-Version: 0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2021-11-26 13:46+0000\n" "PO-Revision-Date: 2021-12-13 05:53+0000\n"
"Last-Translator: Maxime Leroy <lisacintosh@gmail.com>\n" "Last-Translator: Jeff Epler <jepler@gmail.com>\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
@ -110,7 +110,7 @@ msgstr "les indices %q doivent être des entiers, pas %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "La longueur de %q doit être %d-%d" msgstr "La longueur de %q doit être %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "La longueur de %q doit être >= 1" msgstr "La longueur de %q doit être >= 1"
@ -155,6 +155,10 @@ msgstr "%q doit être entre %d et %d"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "%q doit être du type %q" msgstr "%q doit être du type %q"
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "%q doit être une puissance de 2" msgstr "%q doit être une puissance de 2"
@ -453,6 +457,7 @@ msgstr "Tous les minuteurs pour cette broche sont utilisés"
msgid "All timers in use" msgid "All timers in use"
msgstr "Tous les minuteurs sont utilisés" msgstr "Tous les minuteurs sont utilisés"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "S'annonce déjà." msgstr "S'annonce déjà."
@ -591,7 +596,7 @@ msgstr "Les deux broches doivent supporter les interruptions matérielles"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "La luminosité doit être de 0 à 1.0" msgstr "La luminosité doit être de 0 à 1.0"
@ -643,7 +648,7 @@ msgstr "La longueur de la mémoire tampon doit être un multiple de 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "La mémoire tampon doit être un multiple de 512" msgstr "La mémoire tampon doit être un multiple de 512"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Le tampon doit être de longueur au moins 1" msgstr "Le tampon doit être de longueur au moins 1"
@ -676,6 +681,10 @@ msgstr "Les octets 'bytes' doivent être entre 0 et 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "Les blocs CBC doivent être des multiples de 16 octets" msgstr "Les blocs CBC doivent être des multiples de 16 octets"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC ou somme de contrôle invalide" msgstr "CRC ou somme de contrôle invalide"
@ -928,10 +937,12 @@ msgstr "La broche 'Data 0' doit être aligné sur l'octet"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Un bloc de données doit suivre un bloc fmt" msgstr "Un bloc de données doit suivre un bloc fmt"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "Les données ne sont pas supportées avec les annonces directes" msgstr "Les données ne sont pas supportées avec les annonces directes"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Données trop volumineuses pour un paquet d'avertissement" msgstr "Données trop volumineuses pour un paquet d'avertissement"
@ -1014,6 +1025,7 @@ msgstr "Une alarme était prévue"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Tuple de longueur %d attendu, obtenu %d" msgstr "Tuple de longueur %d attendu, obtenu %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1068,6 +1080,7 @@ msgstr "Impossible d'allouer la mémoire pour le scan wifi"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "Échec du tamponage de l'échantillon" msgstr "Échec du tamponage de l'échantillon"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Impossible de se connecter : erreur interne" msgstr "Impossible de se connecter : erreur interne"
@ -1151,6 +1164,13 @@ msgstr "Échec génerique"
msgid "Group already used" msgid "Group already used"
msgstr "Groupe déjà utilisé" msgstr "Groupe déjà utilisé"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1314,6 +1334,7 @@ msgstr "Valeur d'unité ADC non valide"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "AuthMode invalide" msgstr "AuthMode invalide"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "Paramètre BLE invalide" msgstr "Paramètre BLE invalide"
@ -1408,6 +1429,10 @@ msgstr "Taille de bloc de formatage invalide"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Accès à la mémoire invalide." msgstr "Accès à la mémoire invalide."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "Adresse MAC multicast invalide" msgstr "Adresse MAC multicast invalide"
@ -1508,7 +1533,7 @@ msgstr "Longueur de mot / bit invalide"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "La clé doit comporter 16, 24 ou 32 octets" msgstr "La clé doit comporter 16, 24 ou 32 octets"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "La disposition des LED doit correspondre à la taille de l'écran" msgstr "La disposition des LED doit correspondre à la taille de l'écran"
@ -1536,6 +1561,10 @@ msgstr "Échec de l'initialization de la broche MISO."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "Échec de l'initialization de la broche MOSI." msgstr "Échec de l'initialization de la broche MOSI."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1620,6 +1649,10 @@ msgstr "Erreur NVS"
msgid "Name too long" msgid "Name too long"
msgstr "Nom trop long" msgstr "Nom trop long"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Pas de CCCD pour cette caractéristique" msgstr "Pas de CCCD pour cette caractéristique"
@ -1640,10 +1673,10 @@ msgstr "Aucun canal DMA trouvé"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "Aucun minuteur de rythme DMA trouvé" msgstr "Aucun minuteur de rythme DMA trouvé"
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "Pas de dispositif I2C à l'adresse : %x" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1767,6 +1800,7 @@ msgstr "Logiciel systême Nordic hors de mémoire"
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "Chaîne IP non valide" msgstr "Chaîne IP non valide"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1950,7 +1984,7 @@ msgstr "La broche 'pin' ne supporte pas les capacitées ADC"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "L'interruption de cette broche est déjà utilisée" msgstr "L'interruption de cette broche est déjà utilisée"
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "La broche est entrée uniquement" msgstr "La broche est entrée uniquement"
@ -2038,6 +2072,10 @@ msgstr "Le tirage 'pull' n'est pas utilisé quand la direction est 'output'."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "Mode RAISE n'est pas implémenté" msgstr "Mode RAISE n'est pas implémenté"
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "Erreur de désinitialisation du RNG" msgstr "Erreur de désinitialisation du RNG"
@ -2154,10 +2192,11 @@ msgstr "Le taux d'échantillonage doit être positif"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Taux d'échantillonage trop élevé. Doit être inférieur à %d" msgstr "Taux d'échantillonage trop élevé. Doit être inférieur à %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "La dimension d'échelle doit être un multiple de 3" msgstr "La dimension d'échelle doit être un multiple de 3"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Scan déjà en cours. Arrêtez avec stop_scan." msgstr "Scan déjà en cours. Arrêtez avec stop_scan."
@ -2327,6 +2366,7 @@ msgstr "La largeur de la tuile doit diviser exactement la largeur de l'image"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "L'heure est dans le passé." msgstr "L'heure est dans le passé."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2349,6 +2389,7 @@ msgstr "Trop de bus d'affichage"
msgid "Too many displays" msgid "Too many displays"
msgstr "Trop d'affichages" msgstr "Trop d'affichages"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "Quantité de données à écrire est plus que %q" msgstr "Quantité de données à écrire est plus que %q"
@ -2429,7 +2470,7 @@ msgstr "Impossible d'allouer des tampons pour une conversion signée"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "Impossible de créer un verrou ('lock')" msgstr "Impossible de créer un verrou ('lock')"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Impossible de trouver l'affichage I2C à %x" msgstr "Impossible de trouver l'affichage I2C à %x"
@ -2464,6 +2505,16 @@ msgstr "Type inattendu pour l'uuid nrfx"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Erreur ESP TLS non gérée %d %d %x %d" msgstr "Erreur ESP TLS non gérée %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2483,11 +2534,21 @@ msgstr "Raison inconnue."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Erreur de sécurité inconnue : 0x%04x" msgstr "Erreur de sécurité inconnue : 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "Faute inconnue du logiciel systême : %04x" msgstr "Faute inconnue du logiciel systême : %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2524,19 +2585,19 @@ msgstr "Format non supporté"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Opération non supportée" msgstr "Opération non supportée"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Valeur de tirage 'pull' non supportée."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "Mise-à-jour échouée" msgstr "Mise-à-jour échouée"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Longueur de valeur != Longueur fixe requise" msgstr "Longueur de valeur != Longueur fixe requise"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2603,6 +2664,7 @@ msgstr "Le mot de passe WiFi doit faire entre 8 et 63 caractères"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Réveil par alarme.\n" msgstr "Réveil par alarme.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Écritures non supporté vers les Characteristic" msgstr "Écritures non supporté vers les Characteristic"
@ -2708,7 +2770,7 @@ msgstr "tenter d'obtenir argmin / argmax d'une séquence vide"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "attribut pas encore supporté" msgstr "attribut pas encore supporté"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "axis est hors limites" msgstr "axis est hors limites"
@ -2764,11 +2826,11 @@ msgstr "'bits_per_sample' doivent être 8 ou 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "branche hors-bornes" msgstr "branche hors-bornes"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "tampon est plus petit que la taille demandée" msgstr "tampon est plus petit que la taille demandée"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "taille du tampon doit être un multiple de la taille de l'élement" msgstr "taille du tampon doit être un multiple de la taille de l'élement"
@ -2818,6 +2880,10 @@ msgstr "étalonnage en lecture seule"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "valeur de étalonnage hors bornes +/-127" msgstr "valeur de étalonnage hors bornes +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "il peut y avoir jusqu'à 4 paramètres pour l'assemblage Thumb" msgstr "il peut y avoir jusqu'à 4 paramètres pour l'assemblage Thumb"
@ -2857,6 +2923,10 @@ msgstr "ne peut convertir %s en nombre complexe"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "impossible de convertir l'objet '%q' en '%q' implicitement" msgstr "impossible de convertir l'objet '%q' en '%q' implicitement"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "impossible de convertir en %q" msgstr "impossible de convertir en %q"
@ -2909,6 +2979,10 @@ msgstr "impossible de charger depuis '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "impossible de charger avec l'indice '%q'" msgstr "impossible de charger avec l'indice '%q'"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2957,6 +3031,14 @@ msgstr "ne peut assigner une nouvelle forme"
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "output ne peut être projeté sans règle de projection" msgstr "output ne peut être projeté sans règle de projection"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "ne peut pas créer une instance de '%q'" msgstr "ne peut pas créer une instance de '%q'"
@ -2969,10 +3051,6 @@ msgstr "ne peut pas créer une instance"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "ne peut pas importer le nom %q" msgstr "ne peut pas importer le nom %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "ne peut pas réaliser un import relatif"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "ne peut récupérer sans ambigüité le sizeof d'un scalaire" msgstr "ne peut récupérer sans ambigüité le sizeof d'un scalaire"
@ -3152,6 +3230,10 @@ msgstr "division par zéro"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "le diviseur doit être 4" msgstr "le diviseur doit être 4"
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "vide" msgstr "vide"
@ -3255,7 +3337,7 @@ msgstr "le premier argument doit être un appelable"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "le premier argument doit être une fonction" msgstr "le premier argument doit être une fonction"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "le premier paramêtre doit être un tuple de ndarrays" msgstr "le premier paramêtre doit être un tuple de ndarrays"
@ -3320,6 +3402,10 @@ msgstr "la fonction a le même signe aux extrémités de lintervalle"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "fonction définie que pour les ndarrays" msgstr "fonction définie que pour les ndarrays"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3434,7 +3520,7 @@ msgstr "l'assembleur doit être une fonction"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "les formes d'entrée et de sortie ne sont pas compatibles" msgstr "les formes d'entrée et de sortie ne sont pas compatibles"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "Paramètre entrant doit être un chiffre entier, un tuple, ou une liste" msgstr "Paramètre entrant doit être un chiffre entier, un tuple, ou une liste"
@ -3442,7 +3528,7 @@ msgstr "Paramètre entrant doit être un chiffre entier, un tuple, ou une liste"
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "longueur de la matrice d'entrée doit être une puissance de 2" msgstr "longueur de la matrice d'entrée doit être une puissance de 2"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "les matrices d'entrée ne sont pas compatibles" msgstr "les matrices d'entrée ne sont pas compatibles"
@ -3450,6 +3536,10 @@ msgstr "les matrices d'entrée ne sont pas compatibles"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "les données d'entrée doivent être un itérable" msgstr "les données d'entrée doivent être un itérable"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "la matrice d'entrée est asymétrique" msgstr "la matrice d'entrée est asymétrique"
@ -3459,18 +3549,26 @@ msgstr "la matrice d'entrée est asymétrique"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "la matrice d'entrée est singulière" msgstr "la matrice d'entrée est singulière"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "l'entrée doit être un ndarray dense" msgstr "l'entrée doit être un ndarray dense"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "l'entrée doit être un tenseur de rang 2" msgstr "l'entrée doit être un tenseur de rang 2"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "l'entrée doit être un ndarray" msgstr "l'entrée doit être un ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "l'entrée doit être uni-dimensionelle" msgstr "l'entrée doit être uni-dimensionelle"
@ -3566,7 +3664,6 @@ msgid "invalid syntax for number"
msgstr "syntaxe invalide pour un nombre" msgstr "syntaxe invalide pour un nombre"
#: py/objexcept.c #: py/objexcept.c
#, fuzzy
msgid "invalid traceback" msgid "invalid traceback"
msgstr "traceback invalide" msgstr "traceback invalide"
@ -3654,6 +3751,11 @@ msgstr "erreur de domaine math"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "la matrice n'est pas définie positive" msgstr "la matrice n'est pas définie positive"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3807,6 +3909,7 @@ msgstr "pas de tel attribut"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "aucun appareil dans %q" msgstr "aucun appareil dans %q"
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "non UUID trouvé dans service_uuids_whitelist" msgstr "non UUID trouvé dans service_uuids_whitelist"
@ -3849,7 +3952,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "pas assez d'arguments pour la chaîne de format" msgstr "pas assez d'arguments pour la chaîne de format"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "le nombre de points doit être d'au moins 2" msgstr "le nombre de points doit être d'au moins 2"
@ -3907,7 +4014,7 @@ msgstr "un objet avec un protocole de tampon est nécessaire"
msgid "odd-length string" msgid "odd-length string"
msgstr "chaîne de longueur impaire" msgstr "chaîne de longueur impaire"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "offset est trop large" msgstr "offset est trop large"
@ -3915,7 +4022,7 @@ msgstr "offset est trop large"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "offset doit être >= 0" msgstr "offset doit être >= 0"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "offset doit être non-négatif, et au plus la taille du tampon" msgstr "offset doit être non-négatif, et au plus la taille du tampon"
@ -4030,6 +4137,10 @@ msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
"pixel_shader doit être un objet displayio.Palette ou displayio.ColorConverter" "pixel_shader doit être un objet displayio.Palette ou displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "le polygone ne peut être enregistré que dans un parent" msgstr "le polygone ne peut être enregistré que dans un parent"
@ -4059,18 +4170,27 @@ msgstr "le 3e argument de pow() ne peut être 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() avec 3 arguments nécessite des entiers" msgstr "pow() avec 3 arguments nécessite des entiers"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4096,7 +4216,10 @@ msgstr "pow() avec 3 arguments nécessite des entiers"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "bouton boot appuyé lors du démarrage.\n" msgstr "bouton boot appuyé lors du démarrage.\n"
@ -4396,7 +4519,7 @@ msgstr "tobytes ne peut être appelée que pour des matrices dense"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "trop d'arguments fournis avec ce format" msgstr "trop d'arguments fournis avec ce format"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "Trop de dimensions" msgstr "Trop de dimensions"
@ -4580,7 +4703,7 @@ msgstr "watchdog timeout doit être supérieur à 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "width doit être entre 2 et 8 (inclusivement), non %d" msgstr "width doit être entre 2 et 8 (inclusivement), non %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "width doit être plus que zero" msgstr "width doit être plus que zero"
@ -4597,7 +4720,7 @@ msgstr "la fenêtre (window) doit être <= intervalle (interval)"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "index d'axe incorrecte" msgstr "index d'axe incorrecte"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "axe incorrecte spécifiée" msgstr "axe incorrecte spécifiée"
@ -4605,7 +4728,11 @@ msgstr "axe incorrecte spécifiée"
msgid "wrong input type" msgid "wrong input type"
msgstr "type d'entrée incorrect" msgstr "type d'entrée incorrect"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "mauvais nombres d'arguments" msgstr "mauvais nombres d'arguments"
@ -4649,6 +4776,16 @@ msgstr "zi doit être de type float"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi doit être de forme (n_section, 2)" msgstr "zi doit être de forme (n_section, 2)"
#~ msgid "cannot perform relative import"
#~ msgstr "ne peut pas réaliser un import relatif"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "Pas de dispositif I2C à l'adresse : %x"
#~ msgid "Unsupported pull value."
#~ msgstr "Valeur de tirage 'pull' non supportée."
#, c-format #, c-format
#~ msgid "" #~ msgid ""
#~ "Welcome to Adafruit CircuitPython %s!\n" #~ "Welcome to Adafruit CircuitPython %s!\n"

View File

@ -99,7 +99,7 @@ msgstr ""
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -144,6 +144,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -442,6 +446,7 @@ msgstr ""
msgid "All timers in use" msgid "All timers in use"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -574,7 +579,7 @@ msgstr ""
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "" msgstr ""
@ -626,7 +631,7 @@ msgstr ""
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "" msgstr ""
@ -659,6 +664,10 @@ msgstr ""
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "" msgstr ""
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -900,10 +909,12 @@ msgstr ""
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "" msgstr ""
@ -984,6 +995,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1037,6 +1049,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1116,6 +1129,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1268,6 +1288,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1362,6 +1383,10 @@ msgstr ""
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1462,7 +1487,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1490,6 +1515,10 @@ msgstr ""
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1572,6 +1601,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1592,9 +1625,9 @@ msgstr ""
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1719,6 +1752,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1892,7 +1926,7 @@ msgstr ""
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1974,6 +2008,10 @@ msgstr ""
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2090,10 +2128,11 @@ msgstr ""
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2252,6 +2291,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2274,6 +2314,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2351,7 +2392,7 @@ msgstr ""
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2386,6 +2427,16 @@ msgstr ""
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2405,11 +2456,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2443,19 +2504,19 @@ msgstr ""
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "" msgstr ""
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr ""
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2513,6 +2574,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2616,7 +2678,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2672,11 +2734,11 @@ msgstr ""
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2726,6 +2788,10 @@ msgstr ""
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "" msgstr ""
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "" msgstr ""
@ -2764,6 +2830,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2816,6 +2886,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2858,6 +2932,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2870,10 +2952,6 @@ msgstr ""
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr ""
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3049,6 +3127,10 @@ msgstr ""
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3152,7 +3234,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3217,6 +3299,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3330,7 +3416,7 @@ msgstr ""
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3338,7 +3424,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3346,6 +3432,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3355,18 +3445,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3544,6 +3642,11 @@ msgstr ""
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3697,6 +3800,7 @@ msgstr ""
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3737,7 +3841,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3795,7 +3903,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3803,7 +3911,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3915,6 +4023,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3944,18 +4056,27 @@ msgstr ""
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "" msgstr ""
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -3981,7 +4102,10 @@ msgstr ""
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4278,7 +4402,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4462,7 +4586,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4479,7 +4603,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4487,7 +4611,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "" msgstr ""

View File

@ -108,7 +108,7 @@ msgstr "gli indici %q devono essere interi, non %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -154,6 +154,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -454,6 +458,7 @@ msgstr "Tutti i timer per questo pin sono in uso"
msgid "All timers in use" msgid "All timers in use"
msgstr "Tutti i timer utilizzati" msgstr "Tutti i timer utilizzati"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -589,7 +594,7 @@ msgstr "Entrambi i pin devono supportare gli interrupt hardware"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "La luminosità deve essere tra 0-1.0" msgstr "La luminosità deve essere tra 0-1.0"
@ -641,7 +646,7 @@ msgstr "La lunghezza del buffer deve essere un multiplo di 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Il buffer deve essere un multiplo di 512 bytes" msgstr "Il buffer deve essere un multiplo di 512 bytes"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Il buffer deve essere lungo almeno 1" msgstr "Il buffer deve essere lungo almeno 1"
@ -674,6 +679,10 @@ msgstr "I byte devono essere compresi tra 0 e 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "I blocchi CBC devono essere multipli di 16 bytes" msgstr "I blocchi CBC devono essere multipli di 16 bytes"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC o controllo totale è risultato non valido" msgstr "CRC o controllo totale è risultato non valido"
@ -919,10 +928,12 @@ msgstr "graphic deve essere lunga 2048 byte"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, fuzzy #, fuzzy
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
@ -1004,6 +1015,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1057,6 +1069,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1136,6 +1149,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1290,6 +1310,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1386,6 +1407,10 @@ msgstr ""
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1487,7 +1512,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1515,6 +1540,10 @@ msgstr "inizializzazione del pin MISO fallita."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "inizializzazione del pin MOSI fallita." msgstr "inizializzazione del pin MOSI fallita."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1598,6 +1627,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1618,9 +1651,9 @@ msgstr "Nessun canale DMA trovato"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1745,6 +1778,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
#, fuzzy #, fuzzy
@ -1927,7 +1961,7 @@ msgstr "Il pin non ha capacità di ADC"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -2010,6 +2044,10 @@ msgstr ""
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2129,10 +2167,11 @@ msgid "Sample rate too high. It must be less than %d"
msgstr "" msgstr ""
"Frequenza di campionamento troppo alta. Il valore deve essere inferiore a %d" "Frequenza di campionamento troppo alta. Il valore deve essere inferiore a %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2291,6 +2330,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2313,6 +2353,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "Troppi schermi" msgstr "Troppi schermi"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2390,7 +2431,7 @@ msgstr "Ipossibilitato ad allocare buffer per la conversione con segno"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2426,6 +2467,16 @@ msgstr "indentazione inaspettata"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2445,11 +2496,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2484,19 +2545,19 @@ msgstr "Formato non supportato"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Operazione non supportata" msgstr "Operazione non supportata"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Valore di pull non supportato."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2554,6 +2615,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2657,7 +2719,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "attributi non ancora supportati" msgstr "attributi non ancora supportati"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2715,11 +2777,11 @@ msgstr "i bit devono essere 7, 8 o 9"
msgid "branch not in range" msgid "branch not in range"
msgstr "argomento di chr() non è in range(256)" msgstr "argomento di chr() non è in range(256)"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2770,6 +2832,10 @@ msgstr "la calibrazione è in sola lettura"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "valore di calibrazione fuori intervallo +/-127" msgstr "valore di calibrazione fuori intervallo +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
#, fuzzy #, fuzzy
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
@ -2809,6 +2875,10 @@ msgstr "non è possibile convertire a complex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q" msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2861,6 +2931,10 @@ msgstr "impossibile caricare da '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "impossibile caricare con indice '%q'" msgstr "impossibile caricare con indice '%q'"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2903,6 +2977,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "creare '%q' istanze" msgstr "creare '%q' istanze"
@ -2915,10 +2997,6 @@ msgstr "impossibile creare un istanza"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "impossibile imporate il nome %q" msgstr "impossibile imporate il nome %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "impossibile effettuare l'importazione relativa"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3099,6 +3177,10 @@ msgstr "divisione per zero"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "vuoto" msgstr "vuoto"
@ -3203,7 +3285,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3268,6 +3350,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3382,7 +3468,7 @@ msgstr "inline assembler deve essere una funzione"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3390,7 +3476,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3398,6 +3484,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3407,18 +3497,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3601,6 +3699,11 @@ msgstr "errore di dominio matematico"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3754,6 +3857,7 @@ msgstr "attributo inesistente"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3796,7 +3900,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "argomenti non sufficienti per la stringa di formattazione" msgstr "argomenti non sufficienti per la stringa di formattazione"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3854,7 +3962,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "stringa di lunghezza dispari" msgstr "stringa di lunghezza dispari"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3862,7 +3970,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3978,6 +4086,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter" msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -4007,18 +4119,27 @@ msgstr "il terzo argomento di pow() non può essere 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() con 3 argomenti richiede interi" msgstr "pow() con 3 argomenti richiede interi"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4044,7 +4165,10 @@ msgstr "pow() con 3 argomenti richiede interi"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4345,7 +4469,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "troppi argomenti forniti con il formato specificato" msgstr "troppi argomenti forniti con il formato specificato"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4529,7 +4653,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4546,7 +4670,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4554,7 +4678,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "numero di argomenti errato" msgstr "numero di argomenti errato"
@ -4600,6 +4728,12 @@ msgstr ""
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "" msgstr ""
#~ msgid "cannot perform relative import"
#~ msgstr "impossibile effettuare l'importazione relativa"
#~ msgid "Unsupported pull value."
#~ msgstr "Valore di pull non supportato."
#~ msgid "integer required" #~ msgid "integer required"
#~ msgstr "intero richiesto" #~ msgstr "intero richiesto"

View File

@ -104,7 +104,7 @@ msgstr ""
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -149,6 +149,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -447,6 +451,7 @@ msgstr "このピン用の全てのタイマが使用中"
msgid "All timers in use" msgid "All timers in use"
msgstr "全てのタイマーが使用中" msgstr "全てのタイマーが使用中"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "すでにアドバータイズ中" msgstr "すでにアドバータイズ中"
@ -581,7 +586,7 @@ msgstr "両方のピンにハードウェア割り込み対応が必要"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "brightnessは0から1.0まででなければなりません" msgstr "brightnessは0から1.0まででなければなりません"
@ -633,7 +638,7 @@ msgstr "バッファ長は512の倍数でなければなりません"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "バッファは512の倍数でなければなりません" msgstr "バッファは512の倍数でなければなりません"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "バッファ長は少なくとも1以上でなければなりません" msgstr "バッファ長は少なくとも1以上でなければなりません"
@ -666,6 +671,10 @@ msgstr "バイト値は0から255の間でなければなりません"
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "CBCブロックは16バイトの整数倍でなければなりません" msgstr "CBCブロックは16バイトの整数倍でなければなりません"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -909,10 +918,12 @@ msgstr "Data 0 ピンは、バイト整列されていなければなりませ
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "fmtチャンクの後にdataチャンクが続かなければなりません" msgstr "fmtチャンクの後にdataチャンクが続かなければなりません"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "データが、アドバタイズメントパケットには大きすぎます" msgstr "データが、アドバタイズメントパケットには大きすぎます"
@ -993,6 +1004,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1046,6 +1058,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "接続失敗: 内部エラー" msgstr "接続失敗: 内部エラー"
@ -1125,6 +1138,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "グループはすでに使われています" msgstr "グループはすでに使われています"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1279,6 +1299,7 @@ msgstr "不正なADCユニット値"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1373,6 +1394,10 @@ msgstr "フォーマットチャンクのサイズが不正"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "不正なメモリアクセス" msgstr "不正なメモリアクセス"
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1473,7 +1498,7 @@ msgstr "不正なワード/ビット長"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Keyの長さは、16, 24, 32バイトのいずれかでなければなりません" msgstr "Keyの長さは、16, 24, 32バイトのいずれかでなければなりません"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1501,6 +1526,10 @@ msgstr "MISOピン初期化に失敗"
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "MOSIピン初期化に失敗" msgstr "MOSIピン初期化に失敗"
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1583,6 +1612,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "名前が長すぎます" msgstr "名前が長すぎます"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1603,9 +1636,9 @@ msgstr "DMAチャネルが見つかりません"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1730,6 +1763,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "不正なIP文字列です" msgstr "不正なIP文字列です"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1906,7 +1940,7 @@ msgstr "ピンにADCの能力がありません"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "ピンは入力専用" msgstr "ピンは入力専用"
@ -1988,6 +2022,10 @@ msgstr "方向がoutputのときpullは使われません"
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "RNG解体エラー" msgstr "RNG解体エラー"
@ -2104,10 +2142,11 @@ msgstr "サンプルレートは正数でなければなりません"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "サンプルレートは%d以下でなければなりません" msgstr "サンプルレートは%d以下でなければなりません"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "既にスキャン進行中。stop_scanで停止してください" msgstr "既にスキャン進行中。stop_scanで停止してください"
@ -2266,6 +2305,7 @@ msgstr "タイルの幅はビットマップの幅を割り切れる値でなけ
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2288,6 +2328,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2366,7 +2407,7 @@ msgstr ""
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "I2Cディスプレイを %x に見つけられません" msgstr "I2Cディスプレイを %x に見つけられません"
@ -2401,6 +2442,16 @@ msgstr "想定されていないnrfx UUID型"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2420,11 +2471,21 @@ msgstr "理由不明"
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "不明なセキュリティエラー: 0x%04x" msgstr "不明なセキュリティエラー: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2458,19 +2519,19 @@ msgstr "非対応の形式"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "非対応の操作" msgstr "非対応の操作"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "非対応のpull値"
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2528,6 +2589,7 @@ msgstr "WiFiパスワードは8〜63文字でなければなりません"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2631,7 +2693,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "属性は未対応です" msgstr "属性は未対応です"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2687,11 +2749,11 @@ msgstr "bits_per_sampleは8または16でなければなりません"
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2741,6 +2803,10 @@ msgstr "calibrationは読み込み専用"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "" msgstr ""
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "" msgstr ""
@ -2779,6 +2845,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "オブジェクト '%q' を %q に暗黙に変換できません" msgstr "オブジェクト '%q' を %q に暗黙に変換できません"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "%q に変換できません" msgstr "%q に変換できません"
@ -2831,6 +2901,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2873,6 +2947,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2885,10 +2967,6 @@ msgstr "インスタンスを作れません"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "相対インポートはできません"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3068,6 +3146,10 @@ msgstr "ゼロ除算 (division by zero)"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3171,7 +3253,7 @@ msgstr "1つ目の引数は呼び出し可能でなければなりません"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "1つ目の引数は関数でなければなりません" msgstr "1つ目の引数は関数でなければなりません"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3236,6 +3318,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3350,7 +3436,7 @@ msgstr "インラインアセンブラは関数でなければなりません"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3358,7 +3444,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "入力array長は2の累乗でなければなりません" msgstr "入力array長は2の累乗でなければなりません"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3366,6 +3452,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "入力行列が非対称" msgstr "入力行列が非対称"
@ -3375,18 +3465,26 @@ msgstr "入力行列が非対称"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "入力が非正則行列" msgstr "入力が非正則行列"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3564,6 +3662,11 @@ msgstr "定義域エラー"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "正定値行列ではありません" msgstr "正定値行列ではありません"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3717,6 +3820,7 @@ msgstr "指定の属性はありません"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3757,7 +3861,11 @@ msgstr "文字列書式化で全ての引数が使われていません"
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "書式化文字列への引数が足りません" msgstr "書式化文字列への引数が足りません"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3815,7 +3923,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "奇数長の文字列" msgstr "奇数長の文字列"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3823,7 +3931,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3937,6 +4045,10 @@ msgstr ""
"pixel_shaderはdisplayio.Paletteかdisplayio.ColorConverterのどちらかでなければ" "pixel_shaderはdisplayio.Paletteかdisplayio.ColorConverterのどちらかでなければ"
"なりません" "なりません"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3966,18 +4078,27 @@ msgstr "pow()の3つ目の引数は0にできません"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow()の第3引数には整数が必要" msgstr "pow()の第3引数には整数が必要"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4003,7 +4124,10 @@ msgstr "pow()の第3引数には整数が必要"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4301,7 +4425,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "指定された書式に対して引数が多すぎます" msgstr "指定された書式に対して引数が多すぎます"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4485,7 +4609,7 @@ msgstr "watchdogのtimeoutは0以上でなければなりません"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4502,7 +4626,7 @@ msgstr "windowはinterval以下でなければなりません"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4510,7 +4634,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "" msgstr ""
@ -4554,6 +4682,12 @@ msgstr "ziはfloat値でなければなりません"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "" msgstr ""
#~ msgid "cannot perform relative import"
#~ msgstr "相対インポートはできません"
#~ msgid "Unsupported pull value."
#~ msgstr "非対応のpull値"
#~ msgid "integer required" #~ msgid "integer required"
#~ msgstr "整数が必要" #~ msgstr "整数が必要"

View File

@ -100,7 +100,7 @@ msgstr "%q 인덱스는 %s 가 아닌 정수 여야합니다"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -145,6 +145,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -443,6 +447,7 @@ msgstr "핀의 모든 타이머가 사용 중입니다"
msgid "All timers in use" msgid "All timers in use"
msgstr "모든 타이머가 사용 중입니다" msgstr "모든 타이머가 사용 중입니다"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -577,7 +582,7 @@ msgstr ""
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "" msgstr ""
@ -629,7 +634,7 @@ msgstr ""
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "" msgstr ""
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "잘못된 크기의 버퍼. >1 여야합니다" msgstr "잘못된 크기의 버퍼. >1 여야합니다"
@ -662,6 +667,10 @@ msgstr "바이트는 0에서 255 사이 여야합니다."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "" msgstr ""
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -903,10 +912,12 @@ msgstr ""
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "광고 (브로드 캐스트) 패킷에 대한 데이터가 너무 큽니다" msgstr "광고 (브로드 캐스트) 패킷에 대한 데이터가 너무 큽니다"
@ -987,6 +998,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1040,6 +1052,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "" msgstr ""
@ -1119,6 +1132,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "" msgstr ""
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1271,6 +1291,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1365,6 +1386,10 @@ msgstr "형식 청크 크기가 잘못되었습니다"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "" msgstr ""
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1465,7 +1490,7 @@ msgstr ""
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "" msgstr ""
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1493,6 +1518,10 @@ msgstr ""
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1575,6 +1604,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1595,9 +1628,9 @@ msgstr ""
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1722,6 +1755,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1895,7 +1929,7 @@ msgstr ""
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1977,6 +2011,10 @@ msgstr ""
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2093,10 +2131,11 @@ msgstr ""
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "" msgstr ""
@ -2255,6 +2294,7 @@ msgstr ""
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2277,6 +2317,7 @@ msgstr ""
msgid "Too many displays" msgid "Too many displays"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2355,7 +2396,7 @@ msgstr ""
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2390,6 +2431,16 @@ msgstr ""
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2409,11 +2460,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2447,19 +2508,19 @@ msgstr ""
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "" msgstr ""
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr ""
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2517,6 +2578,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2620,7 +2682,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2676,11 +2738,11 @@ msgstr "bits_per_sample은 8 또는 16이어야합니다."
msgid "branch not in range" msgid "branch not in range"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2730,6 +2792,10 @@ msgstr ""
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "" msgstr ""
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "" msgstr ""
@ -2768,6 +2834,10 @@ msgstr ""
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2820,6 +2890,10 @@ msgstr ""
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2862,6 +2936,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "" msgstr ""
@ -2874,10 +2956,6 @@ msgstr ""
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "" msgstr ""
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr ""
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3053,6 +3131,10 @@ msgstr ""
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "" msgstr ""
@ -3156,7 +3238,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3221,6 +3303,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3334,7 +3420,7 @@ msgstr ""
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3342,7 +3428,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3350,6 +3436,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3359,18 +3449,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3548,6 +3646,11 @@ msgstr ""
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3701,6 +3804,7 @@ msgstr ""
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3741,7 +3845,11 @@ msgstr ""
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "" msgstr ""
@ -3799,7 +3907,7 @@ msgstr ""
msgid "odd-length string" msgid "odd-length string"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3807,7 +3915,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3919,6 +4027,10 @@ msgstr ""
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3948,18 +4060,27 @@ msgstr ""
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "" msgstr ""
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -3985,7 +4106,10 @@ msgstr ""
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4282,7 +4406,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4466,7 +4590,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "" msgstr ""
@ -4483,7 +4607,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4491,7 +4615,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "" msgstr ""

View File

@ -102,7 +102,7 @@ msgstr "%q indexen moeten integers zijn, niet %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -147,6 +147,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -445,6 +449,7 @@ msgstr "Alle timers voor deze pin zijn in gebruik"
msgid "All timers in use" msgid "All timers in use"
msgstr "Alle timers zijn in gebruik" msgstr "Alle timers zijn in gebruik"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Advertising is al bezig." msgstr "Advertising is al bezig."
@ -579,7 +584,7 @@ msgstr "Beide pinnen moeten hardware interrupts ondersteunen"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Helderheid moet tussen de 0 en 1.0 liggen" msgstr "Helderheid moet tussen de 0 en 1.0 liggen"
@ -631,7 +636,7 @@ msgstr "Buffer lengte moet een veelvoud van 512 zijn"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Buffer moet een veelvoud van 512 bytes zijn" msgstr "Buffer moet een veelvoud van 512 bytes zijn"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Buffer moet op zijn minst lengte 1 zijn" msgstr "Buffer moet op zijn minst lengte 1 zijn"
@ -664,6 +669,10 @@ msgstr "Bytes moeten tussen 0 en 255 liggen."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "CBC blocks moeten meervouden van 16 bytes zijn" msgstr "CBC blocks moeten meervouden van 16 bytes zijn"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -909,10 +918,12 @@ msgstr "Data 0 pin moet byte uitgelijnd zijn"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Data chunk moet gevolgd worden door fmt chunk" msgstr "Data chunk moet gevolgd worden door fmt chunk"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Data te groot voor advertisement pakket" msgstr "Data te groot voor advertisement pakket"
@ -993,6 +1004,7 @@ msgstr "Verwachtte een alarm"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Verwachtte een tuple met lengte %d, maar kreeg %d" msgstr "Verwachtte een tuple met lengte %d, maar kreeg %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "Extended advertisements met scan antwoord niet ondersteund." msgstr "Extended advertisements met scan antwoord niet ondersteund."
@ -1046,6 +1058,7 @@ msgstr "Kon WiFi scan geheugen niet toewijzen"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Verbinding mislukt: interne fout" msgstr "Verbinding mislukt: interne fout"
@ -1126,6 +1139,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "Groep al gebruikt" msgstr "Groep al gebruikt"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1280,6 +1300,7 @@ msgstr "Ongeldige ADC Unit waarde"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1374,6 +1395,10 @@ msgstr "Ongeldig formaat stuk grootte"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Ongeldig geheugen adres." msgstr "Ongeldig geheugen adres."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1474,7 +1499,7 @@ msgstr "Ongeldig woord/bit lengte"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Sleutel moet 16, 24, of 32 bytes lang zijn" msgstr "Sleutel moet 16, 24, of 32 bytes lang zijn"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1502,6 +1527,10 @@ msgstr "MISO pin init mislukt."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "MOSI pin init mislukt." msgstr "MOSI pin init mislukt."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1584,6 +1613,10 @@ msgstr "NVS-fout"
msgid "Name too long" msgid "Name too long"
msgstr "Naam te lang" msgstr "Naam te lang"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Geen CCCD voor deze Characteristic" msgstr "Geen CCCD voor deze Characteristic"
@ -1604,10 +1637,10 @@ msgstr "Geen DMA kanaal gevonden"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "Geen I2C-apparaat op adres: %x" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1731,6 +1764,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "Geen geldige IP string" msgstr "Geen geldige IP string"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1913,7 +1947,7 @@ msgstr "Pin heeft geen ADC mogelijkheden"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "Pin kan alleen voor invoer gebruikt worden" msgstr "Pin kan alleen voor invoer gebruikt worden"
@ -2000,6 +2034,10 @@ msgstr "Pull niet gebruikt wanneer de richting output is."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "RNG DeInit Fout" msgstr "RNG DeInit Fout"
@ -2116,10 +2154,11 @@ msgstr "Sample rate moet positief zijn"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Sample rate is te hoog. Moet minder dan %d zijn" msgstr "Sample rate is te hoog. Moet minder dan %d zijn"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Scan wordt al uitvoerd. Stop met stop_scan." msgstr "Scan wordt al uitvoerd. Stop met stop_scan."
@ -2278,6 +2317,7 @@ msgstr "Tile breedte moet exact de bitmap breedte verdelen"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "Tijdstip ligt in het verleden." msgstr "Tijdstip ligt in het verleden."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2300,6 +2340,7 @@ msgstr "Teveel beeldscherm bussen"
msgid "Too many displays" msgid "Too many displays"
msgstr "Teveel beeldschermen" msgstr "Teveel beeldschermen"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2377,7 +2418,7 @@ msgstr "Niet in staat buffers voor gesigneerde conversie te alloceren"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "Kan vergrendeling niet maken" msgstr "Kan vergrendeling niet maken"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Geen I2C beeldscherm gevonden bij %x" msgstr "Geen I2C beeldscherm gevonden bij %x"
@ -2412,6 +2453,16 @@ msgstr "Onverwacht mrfx uuid type"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Niet behandelde ESP TLS fout %d %d %x %d" msgstr "Niet behandelde ESP TLS fout %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2431,11 +2482,21 @@ msgstr "Onbekende reden."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Onbekende veiligheidsfout: 0x%04x" msgstr "Onbekende veiligheidsfout: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2471,19 +2532,19 @@ msgstr "Niet-ondersteunde format"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Niet-ondersteunde operatie" msgstr "Niet-ondersteunde operatie"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Niet-ondersteunde pull-waarde."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "Update Mislukt" msgstr "Update Mislukt"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Waarde lengte != vereist vaste lengte" msgstr "Waarde lengte != vereist vaste lengte"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2545,6 +2606,7 @@ msgstr "WiFi wachtwoord moet tussen 8 en 63 karakters bevatten"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Gewekt door alarm.\n" msgstr "Gewekt door alarm.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Schrijven niet ondersteund op Characteristic" msgstr "Schrijven niet ondersteund op Characteristic"
@ -2648,7 +2710,7 @@ msgstr "poging om argmin/argmax van een lege sequentie te krijgen"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "attributen nog niet ondersteund" msgstr "attributen nog niet ondersteund"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "as is buiten bereik" msgstr "as is buiten bereik"
@ -2704,11 +2766,11 @@ msgstr "bits_per_sample moet 8 of 16 zijn"
msgid "branch not in range" msgid "branch not in range"
msgstr "pad (branch) niet binnen bereik" msgstr "pad (branch) niet binnen bereik"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2758,6 +2820,10 @@ msgstr "calibration is alleen-lezen"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "calibration waarde buiten bereik +/-127" msgstr "calibration waarde buiten bereik +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "kan slechts 4 parameters aan Thumb assembly geven" msgstr "kan slechts 4 parameters aan Thumb assembly geven"
@ -2797,6 +2863,10 @@ msgstr "kan %s niet converteren naar een complex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "kan '%q' object niet omzetten naar %q impliciet" msgstr "kan '%q' object niet omzetten naar %q impliciet"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "kan niet naar %q converteren" msgstr "kan niet naar %q converteren"
@ -2849,6 +2919,10 @@ msgstr "kan niet laden van '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "kan niet met '%q' index laden" msgstr "kan niet met '%q' index laden"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "kan geen niet-'None' waarde naar een net gestartte generator sturen" msgstr "kan geen niet-'None' waarde naar een net gestartte generator sturen"
@ -2891,6 +2965,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "kan uitvoer niet converteren zonder conversieregel" msgstr "kan uitvoer niet converteren zonder conversieregel"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "kan geen instanties van '%q' creëren" msgstr "kan geen instanties van '%q' creëren"
@ -2903,10 +2985,6 @@ msgstr "kan geen instantie creëren"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "kan naam %q niet importeren" msgstr "kan naam %q niet importeren"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "kan geen relatieve import uitvoeren"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3085,6 +3163,10 @@ msgstr "deling door nul"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "leeg" msgstr "leeg"
@ -3188,7 +3270,7 @@ msgstr "eerste argument moet een aanroepbare (callable) zijn"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "eerste argument moet een functie zijn" msgstr "eerste argument moet een functie zijn"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "eerste argument moet een tupel van ndarrays zijn" msgstr "eerste argument moet een tupel van ndarrays zijn"
@ -3253,6 +3335,10 @@ msgstr "functie heeft hetzelfde teken aan beide uiteinden van het interval"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "functie is alleen gedefinieerd voor ndarrays" msgstr "functie is alleen gedefinieerd voor ndarrays"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3367,7 +3453,7 @@ msgstr "inline assembler moet een functie zijn"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "in- en uitvoervormen zijn niet compatibel" msgstr "in- en uitvoervormen zijn niet compatibel"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3375,7 +3461,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "invoer array lengte moet een macht van 2 zijn" msgstr "invoer array lengte moet een macht van 2 zijn"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "input arrays zijn niet compatibel" msgstr "input arrays zijn niet compatibel"
@ -3383,6 +3469,10 @@ msgstr "input arrays zijn niet compatibel"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "invoerdata moet itereerbaar zijn" msgstr "invoerdata moet itereerbaar zijn"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "invoermatrix is asymmetrisch" msgstr "invoermatrix is asymmetrisch"
@ -3392,18 +3482,26 @@ msgstr "invoermatrix is asymmetrisch"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "invoermatrix is singulier" msgstr "invoermatrix is singulier"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "invoer moet een gesloten ndarray zijn" msgstr "invoer moet een gesloten ndarray zijn"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "invoer moet een tensor van rang 2 zijn" msgstr "invoer moet een tensor van rang 2 zijn"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "invoer moet een ndarray zijn" msgstr "invoer moet een ndarray zijn"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "invoer moet eendimensionaal zijn" msgstr "invoer moet eendimensionaal zijn"
@ -3584,6 +3682,11 @@ msgstr "fout in het wiskundig domein (math domain error)"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "matrix is niet positief-definiet" msgstr "matrix is niet positief-definiet"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3737,6 +3840,7 @@ msgstr "niet zo'n attribuut"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "niet-UUID gevonden in service_uuids_whitelist" msgstr "niet-UUID gevonden in service_uuids_whitelist"
@ -3777,7 +3881,11 @@ msgstr "niet alle argumenten omgezet bij formattering van string"
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "niet genoeg argumenten om string te formatteren" msgstr "niet genoeg argumenten om string te formatteren"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "aantal punten moet minimaal 2 zijn" msgstr "aantal punten moet minimaal 2 zijn"
@ -3835,7 +3943,7 @@ msgstr "object met buffer protocol vereist"
msgid "odd-length string" msgid "odd-length string"
msgstr "string met oneven lengte" msgstr "string met oneven lengte"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "compensatie is te groot" msgstr "compensatie is te groot"
@ -3843,7 +3951,7 @@ msgstr "compensatie is te groot"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "compensatie moet groter of gelijk 0 zijn" msgstr "compensatie moet groter of gelijk 0 zijn"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3955,6 +4063,10 @@ msgstr "pixel waarde vereist te veel bits"
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader moet displayio.Palette of displayio.ColorConverter zijn" msgstr "pixel_shader moet displayio.Palette of displayio.ColorConverter zijn"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3985,18 +4097,27 @@ msgstr "derde argument van pow() mag geen 0 zijn"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() met 3 argumenten vereist integers" msgstr "pow() met 3 argumenten vereist integers"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4022,7 +4143,10 @@ msgstr "pow() met 3 argumenten vereist integers"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "druk bootknop in bij opstarten.\n" msgstr "druk bootknop in bij opstarten.\n"
@ -4321,7 +4445,7 @@ msgstr "tobytes kunnen alleen ingeroepen worden voor gesloten arrays"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "te veel argumenten opgegeven bij dit formaat" msgstr "te veel argumenten opgegeven bij dit formaat"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4505,7 +4629,7 @@ msgstr "watchdog time-out moet groter zijn dan 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "breedte moet groter dan nul zijn" msgstr "breedte moet groter dan nul zijn"
@ -4522,7 +4646,7 @@ msgstr "window moet <= interval zijn"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "foute index voor as" msgstr "foute index voor as"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "onjuiste as gespecificeerd" msgstr "onjuiste as gespecificeerd"
@ -4530,7 +4654,11 @@ msgstr "onjuiste as gespecificeerd"
msgid "wrong input type" msgid "wrong input type"
msgstr "onjuist invoertype" msgstr "onjuist invoertype"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "onjuist aantal argumenten" msgstr "onjuist aantal argumenten"
@ -4574,6 +4702,16 @@ msgstr "zi moet van type float zijn"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi moet vorm (n_section, 2) hebben" msgstr "zi moet vorm (n_section, 2) hebben"
#~ msgid "cannot perform relative import"
#~ msgstr "kan geen relatieve import uitvoeren"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "Geen I2C-apparaat op adres: %x"
#~ msgid "Unsupported pull value."
#~ msgstr "Niet-ondersteunde pull-waarde."
#, c-format #, c-format
#~ msgid "" #~ msgid ""
#~ "Welcome to Adafruit CircuitPython %s!\n" #~ "Welcome to Adafruit CircuitPython %s!\n"

View File

@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2021-02-10 21:50+0000\n" "PO-Revision-Date: 2022-02-09 18:11+0000\n"
"Last-Translator: Maciej Stankiewicz <tawezik@gmail.com>\n" "Last-Translator: Maciej Stankiewicz <tawezik@gmail.com>\n"
"Language-Team: pl\n" "Language-Team: pl\n"
"Language: pl\n" "Language: pl\n"
@ -16,7 +16,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.11-dev\n"
#: main.c #: main.c
msgid "" msgid ""
@ -104,7 +104,7 @@ msgstr "%q indeks musi być liczbą całkowitą, a nie %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "" msgstr ""
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "" msgstr ""
@ -149,6 +149,10 @@ msgstr ""
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "" msgstr ""
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr ""
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "" msgstr ""
@ -447,6 +451,7 @@ msgstr "Wszystkie timery tej nóżki w użyciu"
msgid "All timers in use" msgid "All timers in use"
msgstr "Wszystkie timery w użyciu" msgstr "Wszystkie timery w użyciu"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "" msgstr ""
@ -544,7 +549,7 @@ msgstr ""
#: shared-module/displayio/Display.c #: shared-module/displayio/Display.c
#: shared-module/framebufferio/FramebufferDisplay.c #: shared-module/framebufferio/FramebufferDisplay.c
msgid "Below minimum frame rate" msgid "Below minimum frame rate"
msgstr "" msgstr "Poniżej minimalnej liczby klatek na sekundę"
#: ports/raspberrypi/common-hal/audiobusio/I2SOut.c #: ports/raspberrypi/common-hal/audiobusio/I2SOut.c
msgid "Bit clock and word select must be sequential pins" msgid "Bit clock and word select must be sequential pins"
@ -581,7 +586,7 @@ msgstr "Obie nóżki muszą wspierać przerwania sprzętowe"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Jasność musi wynosić 0-1,0" msgstr "Jasność musi wynosić 0-1,0"
@ -633,7 +638,7 @@ msgstr "Długość bufora musi być wielokrotnością 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Bufor musi być wielokrotnością 512 bajtów" msgstr "Bufor musi być wielokrotnością 512 bajtów"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Bufor musi mieć długość 1 lub więcej" msgstr "Bufor musi mieć długość 1 lub więcej"
@ -666,6 +671,10 @@ msgstr "Bytes musi być między 0 a 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "Bloki CBC muszą być wielokrotnościami 16 bajtów" msgstr "Bloki CBC muszą być wielokrotnościami 16 bajtów"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr ""
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "" msgstr ""
@ -909,10 +918,12 @@ msgstr "Nóżka data 0 musi być wyrównana do bajtu"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Fragment danych musi następować po fragmencie fmt" msgstr "Fragment danych musi następować po fragmencie fmt"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Zbyt dużo danych pakietu rozgłoszeniowego" msgstr "Zbyt dużo danych pakietu rozgłoszeniowego"
@ -993,6 +1004,7 @@ msgstr ""
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Oczekiwano krotkę długości %d, otrzymano %d" msgstr "Oczekiwano krotkę długości %d, otrzymano %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "" msgstr ""
@ -1046,6 +1058,7 @@ msgstr ""
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Nie udało się połączyć: błąd wewnętrzny" msgstr "Nie udało się połączyć: błąd wewnętrzny"
@ -1125,6 +1138,13 @@ msgstr ""
msgid "Group already used" msgid "Group already used"
msgstr "Grupa już używana" msgstr "Grupa już używana"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr ""
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1279,6 +1299,7 @@ msgstr ""
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "" msgstr ""
@ -1373,6 +1394,10 @@ msgstr "Zła wielkość fragmentu formatu"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Nieprawidłowy dostęp do pamięci." msgstr "Nieprawidłowy dostęp do pamięci."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr ""
@ -1473,7 +1498,7 @@ msgstr "Niepoprawna długość słowa/bitu"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Klucz musi mieć długość 16, 24 lub 32 bajtów" msgstr "Klucz musi mieć długość 16, 24 lub 32 bajtów"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr ""
@ -1501,6 +1526,10 @@ msgstr "Nie powiodło się ustawienie pinu MISO."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "Nie powiodło się ustawienie pinu MOSI." msgstr "Nie powiodło się ustawienie pinu MOSI."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr ""
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1583,6 +1612,10 @@ msgstr ""
msgid "Name too long" msgid "Name too long"
msgstr "Za długa nazwa" msgstr "Za długa nazwa"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr ""
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "" msgstr ""
@ -1603,9 +1636,9 @@ msgstr "Nie znaleziono kanału DMA"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "" msgstr ""
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
@ -1730,6 +1763,7 @@ msgstr ""
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1903,7 +1937,7 @@ msgstr "Nóżka nie obsługuje ADC"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "" msgstr ""
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "" msgstr ""
@ -1985,6 +2019,10 @@ msgstr "Podciągnięcie nieużywane w trybie wyjścia."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "" msgstr ""
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr ""
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "" msgstr ""
@ -2101,10 +2139,11 @@ msgstr "Częstotliwość próbkowania musi być dodatnia"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Zbyt wysoka częstotliwość próbkowania. Musi być mniejsza niż %d" msgstr "Zbyt wysoka częstotliwość próbkowania. Musi być mniejsza niż %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Skanuj już w toku. Zatrzymaj za pomocą stop_scan." msgstr "Skanuj już w toku. Zatrzymaj za pomocą stop_scan."
@ -2263,6 +2302,7 @@ msgstr "Szerokość bitmapy musi być wielokrotnością szerokości kafelka"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2285,6 +2325,7 @@ msgstr "Zbyt wiele magistrali"
msgid "Too many displays" msgid "Too many displays"
msgstr "Zbyt wiele wyświetlaczy" msgstr "Zbyt wiele wyświetlaczy"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "" msgstr ""
@ -2362,7 +2403,7 @@ msgstr "Nie udała się alokacja buforów do konwersji ze znakiem"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "" msgstr ""
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "" msgstr ""
@ -2397,6 +2438,16 @@ msgstr "Nieoczekiwany typ nrfx uuid"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2416,11 +2467,21 @@ msgstr ""
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr ""
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr ""
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2454,19 +2515,19 @@ msgstr "Zły format"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Zła operacja" msgstr "Zła operacja"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Zła wartość podciągnięcia."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2524,6 +2585,7 @@ msgstr ""
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "" msgstr ""
@ -2627,7 +2689,7 @@ msgstr ""
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "atrybuty nie są jeszcze obsługiwane" msgstr "atrybuty nie są jeszcze obsługiwane"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "" msgstr ""
@ -2683,11 +2745,11 @@ msgstr "bits_per_sample musi być 8 lub 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "skok poza zakres" msgstr "skok poza zakres"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "" msgstr ""
@ -2737,6 +2799,10 @@ msgstr "kalibracja tylko do odczytu"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "wartość kalibracji poza zakresem +/-127" msgstr "wartość kalibracji poza zakresem +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr ""
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "asembler Thumb może przyjąć do 4 parameterów" msgstr "asembler Thumb może przyjąć do 4 parameterów"
@ -2775,6 +2841,10 @@ msgstr "nie można skonwertować %s do complex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "nie można automatycznie skonwertować '%q' do '%q'" msgstr "nie można automatycznie skonwertować '%q' do '%q'"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr ""
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "" msgstr ""
@ -2827,6 +2897,10 @@ msgstr "nie można ładować z '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "nie można ładować z indeksem '%q'" msgstr "nie można ładować z indeksem '%q'"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "świeżo stworzony generator może tylko przyjąć None" msgstr "świeżo stworzony generator może tylko przyjąć None"
@ -2869,6 +2943,14 @@ msgstr ""
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr ""
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr ""
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "nie można tworzyć instancji '%q'" msgstr "nie można tworzyć instancji '%q'"
@ -2881,10 +2963,6 @@ msgstr "nie można stworzyć instancji"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "nie można zaimportować nazwy %q" msgstr "nie można zaimportować nazwy %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "nie można wykonać relatywnego importu"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "" msgstr ""
@ -3061,6 +3139,10 @@ msgstr "dzielenie przez zero"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr ""
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "puste" msgstr "puste"
@ -3164,7 +3246,7 @@ msgstr ""
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "pierwszy argument musi być funkcją" msgstr "pierwszy argument musi być funkcją"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "" msgstr ""
@ -3229,6 +3311,10 @@ msgstr ""
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr ""
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3342,7 +3428,7 @@ msgstr "wtrącony asembler musi być funkcją"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
@ -3350,7 +3436,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "długość tablicy wejściowej musi być potęgą 2" msgstr "długość tablicy wejściowej musi być potęgą 2"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "" msgstr ""
@ -3358,6 +3444,10 @@ msgstr ""
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr ""
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "" msgstr ""
@ -3367,18 +3457,26 @@ msgstr ""
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr ""
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "" msgstr ""
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr ""
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "" msgstr ""
@ -3556,6 +3654,11 @@ msgstr "błąd domeny"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "" msgstr ""
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3709,6 +3812,7 @@ msgstr "nie ma takiego atrybutu"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "" msgstr ""
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "" msgstr ""
@ -3749,7 +3853,11 @@ msgstr "nie wszystkie argumenty wykorzystane w formatowaniu"
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "nie dość argumentów przy formatowaniu" msgstr "nie dość argumentów przy formatowaniu"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr ""
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "liczba punktów musi wynosić co najmniej 2" msgstr "liczba punktów musi wynosić co najmniej 2"
@ -3807,7 +3915,7 @@ msgstr "wymagany obiekt z protokołem buforu"
msgid "odd-length string" msgid "odd-length string"
msgstr "łańcuch o nieparzystej długości" msgstr "łańcuch o nieparzystej długości"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "" msgstr ""
@ -3815,7 +3923,7 @@ msgstr ""
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "" msgstr ""
@ -3928,6 +4036,10 @@ msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
"pixel_shader musi być typu displayio.Palette lub dispalyio.ColorConverter" "pixel_shader musi być typu displayio.Palette lub dispalyio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "" msgstr ""
@ -3957,18 +4069,27 @@ msgstr "trzeci argument pow() nie może być 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "trzyargumentowe pow() wymaga liczb całkowitych" msgstr "trzyargumentowe pow() wymaga liczb całkowitych"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -3994,7 +4115,10 @@ msgstr "trzyargumentowe pow() wymaga liczb całkowitych"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "" msgstr ""
@ -4292,7 +4416,7 @@ msgstr ""
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "zbyt wiele argumentów podanych dla tego formatu" msgstr "zbyt wiele argumentów podanych dla tego formatu"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "" msgstr ""
@ -4476,7 +4600,7 @@ msgstr ""
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "" msgstr ""
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "szerokość musi być większa niż zero" msgstr "szerokość musi być większa niż zero"
@ -4493,7 +4617,7 @@ msgstr ""
msgid "wrong axis index" msgid "wrong axis index"
msgstr "" msgstr ""
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "" msgstr ""
@ -4501,7 +4625,11 @@ msgstr ""
msgid "wrong input type" msgid "wrong input type"
msgstr "nieprawidłowy typ wejścia" msgstr "nieprawidłowy typ wejścia"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr ""
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "zła liczba argumentów" msgstr "zła liczba argumentów"
@ -4545,6 +4673,12 @@ msgstr ""
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "" msgstr ""
#~ msgid "cannot perform relative import"
#~ msgstr "nie można wykonać relatywnego importu"
#~ msgid "Unsupported pull value."
#~ msgstr "Zła wartość podciągnięcia."
#, c-format #, c-format
#~ msgid "" #~ msgid ""
#~ "Welcome to Adafruit CircuitPython %s!\n" #~ "Welcome to Adafruit CircuitPython %s!\n"

View File

@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2021-11-24 23:51+0000\n" "PO-Revision-Date: 2022-02-21 08:55+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: pt_BR\n" "Language: pt_BR\n"
@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.11-dev\n"
#: main.c #: main.c
msgid "" msgid ""
@ -108,7 +108,7 @@ msgstr "Os índices %q devem ser inteiros, e não %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "o comprimento %q deve ser %d-%d" msgstr "o comprimento %q deve ser %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "o comprimento %q deve ser >=1" msgstr "o comprimento %q deve ser >=1"
@ -153,6 +153,10 @@ msgstr "%q deve estar entre %d e %d"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "%q deve ser do tipo %q" msgstr "%q deve ser do tipo %q"
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr "%q deve ser do tipo %q ou nenhum"
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "%q deve ser a potência de 2" msgstr "%q deve ser a potência de 2"
@ -455,6 +459,7 @@ msgstr "Todos os temporizadores para este pino estão em uso"
msgid "All timers in use" msgid "All timers in use"
msgstr "Todos os temporizadores em uso" msgstr "Todos os temporizadores em uso"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Já está anunciando." msgstr "Já está anunciando."
@ -594,7 +599,7 @@ msgstr "Ambos os pinos devem suportar interrupções de hardware"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "O brilho deve ser 0-1,0" msgstr "O brilho deve ser 0-1,0"
@ -646,7 +651,7 @@ msgstr "O comprimento do Buffer deve ser um múltiplo de 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "O buffer deve ser um múltiplo de 512 bytes" msgstr "O buffer deve ser um múltiplo de 512 bytes"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "O comprimento do buffer deve ter pelo menos 1" msgstr "O comprimento do buffer deve ter pelo menos 1"
@ -679,6 +684,10 @@ msgstr "Os bytes devem estar entre 0 e 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "Os blocos CBC devem ter múltiplos de 16 bytes" msgstr "Os blocos CBC devem ter múltiplos de 16 bytes"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr "A unidade CIRCUITPY não pôde ser encontrada nem criada."
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC ou checksum inválido" msgstr "CRC ou checksum inválido"
@ -927,10 +936,12 @@ msgstr "O pino de dados 0 deve ser alinhado por bytes"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Pedaço de dados deve seguir o pedaço de cortes" msgstr "Pedaço de dados deve seguir o pedaço de cortes"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "Os dados não são compatíveis com publicidade direcionada" msgstr "Os dados não são compatíveis com publicidade direcionada"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Os dados são grandes demais para o pacote de publicidade" msgstr "Os dados são grandes demais para o pacote de publicidade"
@ -1011,6 +1022,7 @@ msgstr "Um alarme era esperado"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Tupla esperada com comprimento %d, obteve %d" msgstr "Tupla esperada com comprimento %d, obteve %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "Anúncios estendidos não compatíveis com a resposta da varredura." msgstr "Anúncios estendidos não compatíveis com a resposta da varredura."
@ -1064,6 +1076,7 @@ msgstr "Houve uma falha na alocação da memória para a varredura do Wifi"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "Houve uma falha ao fazer uma memória prévia (buffer) da amostra" msgstr "Houve uma falha ao fazer uma memória prévia (buffer) da amostra"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Falha ao conectar: erro interno" msgstr "Falha ao conectar: erro interno"
@ -1145,6 +1158,13 @@ msgstr "Falha Genérica"
msgid "Group already used" msgid "Group already used"
msgstr "O grupo já está em uso" msgstr "O grupo já está em uso"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr "O SPI half duplex ainda não está implementado"
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1305,6 +1325,7 @@ msgstr "Valor inválido da unidade ADC"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "AuthMode inválido" msgstr "AuthMode inválido"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "Parâmetro BLE inválido" msgstr "Parâmetro BLE inválido"
@ -1399,6 +1420,10 @@ msgstr "Tamanho do pedaço de formato inválido"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "O acesso da memória é inválido." msgstr "O acesso da memória é inválido."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr "Modo inválido"
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "Endereço MAC multicast inválido" msgstr "Endereço MAC multicast inválido"
@ -1499,7 +1524,7 @@ msgstr "O comprimento do bit/palavra são inválidos"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "A chave deve ter 16, 24 ou 32 bytes de comprimento" msgstr "A chave deve ter 16, 24 ou 32 bytes de comprimento"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "Os mapeamentos do led devem corresponder ao tamanho do display" msgstr "Os mapeamentos do led devem corresponder ao tamanho do display"
@ -1527,6 +1552,10 @@ msgstr "A inicialização do pino MISO falhou."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "Inicialização do pino MOSI falhou." msgstr "Inicialização do pino MOSI falhou."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr "O mapeamento deve ser uma tupla"
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1609,6 +1638,10 @@ msgstr "Erro NVS"
msgid "Name too long" msgid "Name too long"
msgstr "Nome muito longo" msgstr "Nome muito longo"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr "Ágil fora da memória"
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Não há nenhum CCCD para esta característica" msgstr "Não há nenhum CCCD para esta característica"
@ -1629,10 +1662,10 @@ msgstr "Nenhum canal DMA foi encontrado"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "Nenhum temporizador DMA foi encontrado" msgstr "Nenhum temporizador DMA foi encontrado"
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "Nenhum dispositivo I2C no endereço: %x" msgstr "Não há nenhum dispositivo I2C no endereço: 0x%x"
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1758,6 +1791,7 @@ msgstr "O firmware do sistema nórdico está sem memória"
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "Não é uma sequência válida de IP" msgstr "Não é uma sequência válida de IP"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1940,7 +1974,7 @@ msgstr "O pino não tem recursos de ADC"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "A interrupção do pino já está em uso" msgstr "A interrupção do pino já está em uso"
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "Apenas o pino de entrada" msgstr "Apenas o pino de entrada"
@ -2030,6 +2064,10 @@ msgstr "O Pull não foi usado quando a direção for gerada."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "O modo RAISE não foi implementado" msgstr "O modo RAISE não foi implementado"
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr "RISE_AND_FALL não está disponível neste chip"
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "Erro DeInit RNG" msgstr "Erro DeInit RNG"
@ -2146,10 +2184,11 @@ msgstr "A taxa de amostragem deve ser positiva"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Taxa de amostragem muito alta. Deve ser menor que %d" msgstr "Taxa de amostragem muito alta. Deve ser menor que %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "As dimensões da escala devem ser poder ser divididas por 3" msgstr "As dimensões da escala devem ser poder ser divididas por 3"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "O escaneamento já está em andamento. Interrompa com stop_scan." msgstr "O escaneamento já está em andamento. Interrompa com stop_scan."
@ -2320,6 +2359,7 @@ msgstr "A largura do bloco deve dividir exatamente com a largura do bitmap"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "O tempo está no passado." msgstr "O tempo está no passado."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2344,6 +2384,7 @@ msgstr "Muitos barramentos estão sendo exibidos"
msgid "Too many displays" msgid "Too many displays"
msgstr "Exibições demais" msgstr "Exibições demais"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "O total dos dados que serão escritos é maior do que %q" msgstr "O total dos dados que serão escritos é maior do que %q"
@ -2422,7 +2463,7 @@ msgstr "Não é possível alocar buffers para conversão assinada"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "Não é possível criar um lock" msgstr "Não é possível criar um lock"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Não foi possível encontrar a tela I2C no %x" msgstr "Não foi possível encontrar a tela I2C no %x"
@ -2457,6 +2498,16 @@ msgstr "Tipo uuid nrfx inesperado"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Erro não tratado do ESP TLS %d %d %x %d" msgstr "Erro não tratado do ESP TLS %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr "Houve um erro BLE desconhecido em %s:%d: %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr "Houve um erro BLE desconhecido: %d"
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2476,11 +2527,21 @@ msgstr "Motivo desconhecido."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Erro de segurança desconhecido: 0x%04x" msgstr "Erro de segurança desconhecido: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr "Ocorreu um erro desconhecido no firmware do sistema em %s:%d: %d"
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "Erro desconhecido do firmware: %04x" msgstr "Erro desconhecido do firmware: %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr "Ocorreu um erro desconhecido no firmware do sistema: %d"
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2516,19 +2577,19 @@ msgstr "Formato não suportado"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Operação não suportada" msgstr "Operação não suportada"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "O valor pull não é compatível."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "A atualização falou" msgstr "A atualização falou"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Comprimento do valor != comprimento fixo necessário" msgstr "Comprimento do valor != comprimento fixo necessário"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2595,6 +2656,7 @@ msgstr "A senha do Wi-Fi deve ter entre 8 e 63 caracteres"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Foi despertado através do alarme.\n" msgstr "Foi despertado através do alarme.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "A escrita não é compatível na Característica" msgstr "A escrita não é compatível na Característica"
@ -2700,7 +2762,7 @@ msgstr "tente obter argmin/argmax de uma sequência vazia"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "atributos ainda não suportados" msgstr "atributos ainda não suportados"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "o eixo está fora dos limites" msgstr "o eixo está fora dos limites"
@ -2756,11 +2818,11 @@ msgstr "bits_per_sample deve ser 8 ou 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "ramo fora do alcance" msgstr "ramo fora do alcance"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "o tamanho do buffer é menor do que o tamanho que foi solicitado" msgstr "o tamanho do buffer é menor do que o tamanho que foi solicitado"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "o tamanho do buffer deve ser um múltiplo do tamanho do elemento" msgstr "o tamanho do buffer deve ser um múltiplo do tamanho do elemento"
@ -2810,6 +2872,10 @@ msgstr "Calibração é somente leitura"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "Valor de calibração fora do intervalo +/- 127" msgstr "Valor de calibração fora do intervalo +/- 127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr "pode ser registrado apenas numa principal"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "só pode haver até 4 parâmetros para a montagem Thumb" msgstr "só pode haver até 4 parâmetros para a montagem Thumb"
@ -2848,6 +2914,10 @@ msgstr "Não é possível converter %s para complex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "não é possível converter implicitamente o objeto '%q' para %q" msgstr "não é possível converter implicitamente o objeto '%q' para %q"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr "não foi possível converter complexo em flutuante"
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "não é possível converter para %q" msgstr "não é possível converter para %q"
@ -2900,6 +2970,10 @@ msgstr "não é possível carregar a partir de '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "não é possível carregar com o índice '%q'" msgstr "não é possível carregar com o índice '%q'"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr "não é possível realizar a importação relativa"
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "" msgstr ""
@ -2946,6 +3020,14 @@ msgstr "não é possível atribuir uma nova forma"
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "não pode lançar a saída com a regra de fundição" msgstr "não pode lançar a saída com a regra de fundição"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr "não foi possível converter complexo em dtype"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr "não foi possível converter o tipo complexo"
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "não é possível criar instâncias '%q'" msgstr "não é possível criar instâncias '%q'"
@ -2958,10 +3040,6 @@ msgstr "não é possível criar instância"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "não pode importar nome %q" msgstr "não pode importar nome %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "não pode executar a importação relativa"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "Não é possível obter de forma inequívoca a escala do sizeof" msgstr "Não é possível obter de forma inequívoca a escala do sizeof"
@ -3142,6 +3220,10 @@ msgstr "divisão por zero"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "o divisor deve ser 4" msgstr "o divisor deve ser 4"
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr "dtype deve ser flutuante ou complexo"
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "vazio" msgstr "vazio"
@ -3245,7 +3327,7 @@ msgstr "o primeiro argumento deve ser chamável"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "o primeiro argumento deve ser uma função" msgstr "o primeiro argumento deve ser uma função"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "o primeiro argumento deve ser um tuple de ndarrays" msgstr "o primeiro argumento deve ser um tuple de ndarrays"
@ -3310,6 +3392,10 @@ msgstr "a função tem o mesmo sinal nas extremidades do intervalo"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "A função é definida apenas para ndarrays" msgstr "A função é definida apenas para ndarrays"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr "a função está implementada apenas para ndarrays"
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3423,7 +3509,7 @@ msgstr "o assembler em linha deve ser uma função"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "as formas de entrada e saída não são compatíveis" msgstr "as formas de entrada e saída não são compatíveis"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "" msgstr ""
"argumento da entrada deve ser um número inteiro, uma tupla ou uma lista" "argumento da entrada deve ser um número inteiro, uma tupla ou uma lista"
@ -3432,7 +3518,7 @@ msgstr ""
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "comprimento da matriz da entrada deve ter potência de 2" msgstr "comprimento da matriz da entrada deve ter potência de 2"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "as matrizes da entrada não são compatíveis" msgstr "as matrizes da entrada não são compatíveis"
@ -3440,6 +3526,10 @@ msgstr "as matrizes da entrada não são compatíveis"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "os dados da entrada devem ser iteráveis" msgstr "os dados da entrada devem ser iteráveis"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr "o tipo da entrada dtype deve ser flutuante ou complexo"
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "a matriz da entrada é assimétrica" msgstr "a matriz da entrada é assimétrica"
@ -3449,18 +3539,26 @@ msgstr "a matriz da entrada é assimétrica"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "a matriz da entrada é singular" msgstr "a matriz da entrada é singular"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr "a entrada deve ser um 1D ndarray"
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "a entrada deve ser um ndarray denso" msgstr "a entrada deve ser um ndarray denso"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "a entrada dos dados deve ser um tensor de nível 2" msgstr "a entrada dos dados deve ser um tensor de nível 2"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "a entrada deve ser um ndarray" msgstr "a entrada deve ser um ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr "a entrada deve ser um ndarray ou um escalar"
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "a entrada deve ser unidimensional" msgstr "a entrada deve ser unidimensional"
@ -3641,6 +3739,11 @@ msgstr "erro de domínio matemático"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "a matriz não é definitiva positiva" msgstr "a matriz não é definitiva positiva"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr "max_connections deve estar entre 0 e 10"
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3796,6 +3899,7 @@ msgstr "não há tal atributo"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "não dispositivo em %q" msgstr "não dispositivo em %q"
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "um não UUID foi encontrado na lista service_uuids_whitelist" msgstr "um não UUID foi encontrado na lista service_uuids_whitelist"
@ -3836,7 +3940,11 @@ msgstr "nem todos os argumentos são convertidos durante a formatação da strin
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "argumentos insuficientes para o formato da string" msgstr "argumentos insuficientes para o formato da string"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr "não foi implementado para dtype complexo"
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "a quantidade dos pontos deve ser pelo menos 2" msgstr "a quantidade dos pontos deve ser pelo menos 2"
@ -3894,7 +4002,7 @@ msgstr "é necessário objeto com protocolo do buffer"
msgid "odd-length string" msgid "odd-length string"
msgstr "sequência com comprimento ímpar" msgstr "sequência com comprimento ímpar"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "o offset é muito grande" msgstr "o offset é muito grande"
@ -3902,7 +4010,7 @@ msgstr "o offset é muito grande"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "o offset deve ser >= 0" msgstr "o offset deve ser >= 0"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "o offset deve ser positivo e não maior do que o comprimento do buffer" msgstr "o offset deve ser positivo e não maior do que o comprimento do buffer"
@ -4019,6 +4127,10 @@ msgstr "o valor do pixel requer bits demais"
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "o pixel_shader deve ser displayio.Palette ou displayio.ColorConverter" msgstr "o pixel_shader deve ser displayio.Palette ou displayio.ColorConverter"
#: 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"
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "o polígono só pode ser registrado em um pai" msgstr "o polígono só pode ser registrado em um pai"
@ -4048,18 +4160,27 @@ msgstr "O terceiro argumento pow() não pode ser 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "o pow() com 3 argumentos requer números inteiros" msgstr "o pow() com 3 argumentos requer números inteiros"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4085,7 +4206,10 @@ msgstr "o pow() com 3 argumentos requer números inteiros"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "pressionando o botão de boot na inicialização.\n" msgstr "pressionando o botão de boot na inicialização.\n"
@ -4384,7 +4508,7 @@ msgstr "os tobytes podem ser invocados apenas nas matrizes densas"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "Muitos argumentos fornecidos com o formato dado" msgstr "Muitos argumentos fornecidos com o formato dado"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "dimensões demais" msgstr "dimensões demais"
@ -4568,7 +4692,7 @@ msgstr "o tempo limite do watchdog deve ser maior que 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "a largura deve ser entre 2 a 8 (inclusive), não %d" msgstr "a largura deve ser entre 2 a 8 (inclusive), não %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "a largura deve ser maior que zero" msgstr "a largura deve ser maior que zero"
@ -4585,7 +4709,7 @@ msgstr "a janela deve ser <= intervalo"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "índice do eixo errado" msgstr "índice do eixo errado"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "um eixo errado foi definido" msgstr "um eixo errado foi definido"
@ -4593,7 +4717,11 @@ msgstr "um eixo errado foi definido"
msgid "wrong input type" msgid "wrong input type"
msgstr "tipo da entrada incorreta" msgstr "tipo da entrada incorreta"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr "comprimento errado na condição da matriz"
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "quantidade errada dos argumentos" msgstr "quantidade errada dos argumentos"
@ -4637,6 +4765,16 @@ msgstr "zi deve ser de um tipo float"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi deve estar na forma (n_section, 2)" msgstr "zi deve estar na forma (n_section, 2)"
#~ msgid "cannot perform relative import"
#~ msgstr "não pode executar a importação relativa"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "Nenhum dispositivo I2C no endereço: %x"
#~ msgid "Unsupported pull value."
#~ msgstr "O valor pull não é compatível."
#~ msgid "Station must be started" #~ msgid "Station must be started"
#~ msgstr "A estação deve ser iniciada" #~ msgstr "A estação deve ser iniciada"

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2021-11-25 00:02+0000\n" "PO-Revision-Date: 2022-02-19 20:22+0000\n"
"Last-Translator: Jonny Bergdahl <jonny@bergdahl.it>\n" "Last-Translator: Jonny Bergdahl <jonny@bergdahl.it>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sv\n" "Language: sv\n"
@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.11-dev\n"
#: main.c #: main.c
msgid "" msgid ""
@ -107,7 +107,7 @@ msgstr "Indexet %q måste vara ett heltal, inte %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "längden på %q måste vara %d-%d" msgstr "längden på %q måste vara %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "längden på %q måste vara >= 1" msgstr "längden på %q måste vara >= 1"
@ -152,6 +152,10 @@ msgstr "%q måste vara mellan %d och %d"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "%q måste vara av typen %q" msgstr "%q måste vara av typen %q"
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr "%q måste vara av typen %q eller None"
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "%q måste vara en potens av 2" msgstr "%q måste vara en potens av 2"
@ -450,6 +454,7 @@ msgstr "Alla timers för denna pinne är i bruk"
msgid "All timers in use" msgid "All timers in use"
msgstr "Alla timers används" msgstr "Alla timers används"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Annonserar redan." msgstr "Annonserar redan."
@ -584,7 +589,7 @@ msgstr "Båda pinnarna måste stödja maskinvaruavbrott"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Ljusstyrkan måste vara mellan 0 och 1,0" msgstr "Ljusstyrkan måste vara mellan 0 och 1,0"
@ -636,7 +641,7 @@ msgstr "Buffertlängd måste vara en multipel av 512"
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Bufferten måste vara en multipel av 512 byte" msgstr "Bufferten måste vara en multipel av 512 byte"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Bufferten måste ha minst längd 1" msgstr "Bufferten måste ha minst längd 1"
@ -669,6 +674,10 @@ msgstr "Bytes måste vara mellan 0 och 255."
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "CBC-block måste vara multiplar om 16 byte" msgstr "CBC-block måste vara multiplar om 16 byte"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr "CIRCUITPY-enheten kunde inte hittas eller skapas."
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC eller checksumma var ogiltig" msgstr "CRC eller checksumma var ogiltig"
@ -915,10 +924,12 @@ msgstr "Datapinne 0 måste vara bytejusterad"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Datasegmentet måste följa fmt-segmentet" msgstr "Datasegmentet måste följa fmt-segmentet"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "Data stöds inte med riktad annonsering" msgstr "Data stöds inte med riktad annonsering"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Data för stor för annonseringspaket" msgstr "Data för stor för annonseringspaket"
@ -999,6 +1010,7 @@ msgstr "Förväntade ett larm"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Förväntad tupel med längd %d, fick %d" msgstr "Förväntad tupel med längd %d, fick %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "Utökad annonsering i kombination med skanningssvar stöds inte." msgstr "Utökad annonsering i kombination med skanningssvar stöds inte."
@ -1052,6 +1064,7 @@ msgstr "Det gick inte att allokera minne för WiFi-scanning"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "Det gick inte att buffra samplingen" msgstr "Det gick inte att buffra samplingen"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Det gick inte att ansluta: internt fel" msgstr "Det gick inte att ansluta: internt fel"
@ -1131,6 +1144,13 @@ msgstr "Generiskt fel"
msgid "Group already used" msgid "Group already used"
msgstr "Grupp används redan" msgstr "Grupp används redan"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr "Halvduplex SPI är inte implementerat"
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1287,6 +1307,7 @@ msgstr "Ogiltigt ADC-enhetsvärde"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "Ogiltig AuthMode" msgstr "Ogiltig AuthMode"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "Ogiltig BLE-parameter" msgstr "Ogiltig BLE-parameter"
@ -1381,6 +1402,10 @@ msgstr "Ogiltig formatsegmentstorlek"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Ogiltig minnesåtkomst." msgstr "Ogiltig minnesåtkomst."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr "Ogiltigt läge"
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "Ogiltig MAC-adress för multicast" msgstr "Ogiltig MAC-adress för multicast"
@ -1481,7 +1506,7 @@ msgstr "Ogiltig word-/bitlängd"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "Nyckeln måste vara 16, 24 eller 32 byte lång" msgstr "Nyckeln måste vara 16, 24 eller 32 byte lång"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "LED-mappning måste matcha displaystorlek" msgstr "LED-mappning måste matcha displaystorlek"
@ -1509,6 +1534,10 @@ msgstr "init för MISO-pinne misslyckades."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "init för MOSI-pinne misslyckades." msgstr "init för MOSI-pinne misslyckades."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr "Mappning måste vara en tuple"
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1592,6 +1621,10 @@ msgstr "NVS-fel"
msgid "Name too long" msgid "Name too long"
msgstr "Name är för långt" msgstr "Name är för långt"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr "Nimble har inget minne kvar"
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Ingen CCCD för denna karaktäristik" msgstr "Ingen CCCD för denna karaktäristik"
@ -1612,10 +1645,10 @@ msgstr "Ingen DMA-kanal hittades"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "Ingen DMA pacing timer hittades" msgstr "Ingen DMA pacing timer hittades"
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "Ingen I2C-enhet på adress: %x" msgstr "Ingen I2C-enhet på adress: 0x%x"
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1739,6 +1772,7 @@ msgstr "Nordic systemfirmware fick slut på minne"
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "Inte en giltig IP-sträng" msgstr "Inte en giltig IP-sträng"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1919,7 +1953,7 @@ msgstr "Pinnen har inte ADC-funktionalitet"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "Pinnavbrott används redan" msgstr "Pinnavbrott används redan"
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "Pinnen är enbart ingång" msgstr "Pinnen är enbart ingång"
@ -2006,6 +2040,10 @@ msgstr "Pull används inte när riktningen är output."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "RAISE-läge är inte implementerat" msgstr "RAISE-läge är inte implementerat"
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr "RISE_AND_FALL är inte tillgängligt på detta chip"
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "RNG DeInit-fel" msgstr "RNG DeInit-fel"
@ -2122,10 +2160,11 @@ msgstr "Samplingsfrekvensen måste vara positiv"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Samplingsfrekvensen är för hög. Den måste vara mindre än %d" msgstr "Samplingsfrekvensen är för hög. Den måste vara mindre än %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "Skaldimension måste vara delbar med 3" msgstr "Skaldimension måste vara delbar med 3"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Skanning pågår redan. Avsluta med stop_scan." msgstr "Skanning pågår redan. Avsluta med stop_scan."
@ -2294,6 +2333,7 @@ msgstr "Tile-bredd måste vara jämnt delbar med bredd på bitmap"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "Tid har passerats." msgstr "Tid har passerats."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2316,6 +2356,7 @@ msgstr "För många display-bussar"
msgid "Too many displays" msgid "Too many displays"
msgstr "För många displayer" msgstr "För många displayer"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "Totala data att skriva är större än %q" msgstr "Totala data att skriva är större än %q"
@ -2393,7 +2434,7 @@ msgstr "Det går inte att allokera buffert för signerad konvertering"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "Kan inte skapa lås" msgstr "Kan inte skapa lås"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Det gick inte att hitta I2C-display på %x" msgstr "Det gick inte att hitta I2C-display på %x"
@ -2428,6 +2469,16 @@ msgstr "Oväntad nrfx uuid-typ"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Ej hanterat ESP TLS-fel %d %d %x %d" msgstr "Ej hanterat ESP TLS-fel %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr "Okänt BLE-fel vid %s:%d: %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr "Okänt BLE-fel: %d"
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2447,11 +2498,21 @@ msgstr "Okänd anledning."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Okänt säkerhetsfel: 0x%04x" msgstr "Okänt säkerhetsfel: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr "Okänt fel i systemets firmware vid %s:%d: %d"
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "Okänt systemfirmwarefel: %04x" msgstr "Okänt systemfirmwarefel: %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr "Okänt fel i systemets firmware: %d"
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2487,19 +2548,19 @@ msgstr "Formatet stöds inte"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Åtgärd som inte stöds" msgstr "Åtgärd som inte stöds"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Ogiltigt Pull-värde."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "Uppdateringen misslyckades" msgstr "Uppdateringen misslyckades"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Värdets längde ! = krävd fast längd" msgstr "Värdets längde ! = krävd fast längd"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2563,6 +2624,7 @@ msgstr "WiFi-lösenord måste vara mellan 8 och 63 tecken"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "Vaknade av larm.\n" msgstr "Vaknade av larm.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Skrivning stöds inte på karaktäristik" msgstr "Skrivning stöds inte på karaktäristik"
@ -2668,7 +2730,7 @@ msgstr "försök att få argmin/argmax för en tom sekvens"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "attribut stöds inte än" msgstr "attribut stöds inte än"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "axis är utanför gränsen" msgstr "axis är utanför gränsen"
@ -2724,11 +2786,11 @@ msgstr "bits_per_sample måste vara 8 eller 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "branch utanför räckvidd" msgstr "branch utanför räckvidd"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "bufferten är mindre än begärd storlek" msgstr "bufferten är mindre än begärd storlek"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "buffertstorlek måste vara en multipel av elementstorlek" msgstr "buffertstorlek måste vara en multipel av elementstorlek"
@ -2778,6 +2840,10 @@ msgstr "kalibrering är skrivskyddad"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "kalibreringsvärde utanför intervallet +/- 127" msgstr "kalibreringsvärde utanför intervallet +/- 127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr "kan endast registreras med en förälder"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "kan bara ha upp till 4 parametrar för Thumbs assembly" msgstr "kan bara ha upp till 4 parametrar för Thumbs assembly"
@ -2816,6 +2882,10 @@ msgstr "kan inte konvertera %s till komplex"
msgid "can't convert '%q' object to %q implicitly" msgid "can't convert '%q' object to %q implicitly"
msgstr "kan inte konvertera '%q' objekt implicit till %q" msgstr "kan inte konvertera '%q' objekt implicit till %q"
#: extmod/ulab/code/numpy/vector.c
msgid "can't convert complex to float"
msgstr "kan inte konvertera complex till float"
#: py/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "kan inte konvertera till %q" msgstr "kan inte konvertera till %q"
@ -2868,6 +2938,10 @@ msgstr "kan inte ladda från '%q'"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "kan inte ladda med '%q' index" msgstr "kan inte ladda med '%q' index"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr "kan inte utföra relativ import"
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "kan inte skicka icke-None värde till nystartad generator" msgstr "kan inte skicka icke-None värde till nystartad generator"
@ -2912,6 +2986,14 @@ msgstr "kan inte tilldela en ny form"
msgid "cannot cast output with casting rule" msgid "cannot cast output with casting rule"
msgstr "kan inte casta utdata med regel" msgstr "kan inte casta utdata med regel"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr "kan inte konvertera komplex till dtype"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr "kan inte konvertera complex typer"
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "kan inte skapa instanser av '%q'" msgstr "kan inte skapa instanser av '%q'"
@ -2924,10 +3006,6 @@ msgstr "kan inte skapa instans"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "kan inte importera namn %q" msgstr "kan inte importera namn %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "kan inte utföra relativ import"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "Kan inte entydigt få sizeof scalar" msgstr "Kan inte entydigt få sizeof scalar"
@ -3106,6 +3184,10 @@ msgstr "division med noll"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "divisor måste vara 4" msgstr "divisor måste vara 4"
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr "dtype måste vara float eller complex"
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "tom" msgstr "tom"
@ -3209,7 +3291,7 @@ msgstr "första argumentet måste vara en callable"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "första argumentet måste vara en funktion" msgstr "första argumentet måste vara en funktion"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "första argumentet måste vara en tupel av ndarray" msgstr "första argumentet måste vara en tupel av ndarray"
@ -3274,6 +3356,10 @@ msgstr "funktionen har samma teckenvärden vid slutet av intervall"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "funktionen är enbart definierad för ndarray" msgstr "funktionen är enbart definierad för ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr "funktionen är bara implementerad för ndarrays"
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3387,7 +3473,7 @@ msgstr "inline assembler måste vara en funktion"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "indata- och utdataformer är inte kompatibla" msgstr "indata- och utdataformer är inte kompatibla"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "indataargument måste vara integer, en tuple eller list" msgstr "indataargument måste vara integer, en tuple eller list"
@ -3395,7 +3481,7 @@ msgstr "indataargument måste vara integer, en tuple eller list"
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "indataarraylängden måste vara en multipel av 2" msgstr "indataarraylängden måste vara en multipel av 2"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "indatamatriser är inte kompatibla" msgstr "indatamatriser är inte kompatibla"
@ -3403,6 +3489,10 @@ msgstr "indatamatriser är inte kompatibla"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "indata måste vara en iterable" msgstr "indata måste vara en iterable"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr "indatatyp måste vara float eller complex"
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "indatamatrisen är asymmetrisk" msgstr "indatamatrisen är asymmetrisk"
@ -3412,18 +3502,26 @@ msgstr "indatamatrisen är asymmetrisk"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "indatamatrisen är singulär" msgstr "indatamatrisen är singulär"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr "indata måste vara en 1D ndarray"
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "indata måste vara en dense ndarray" msgstr "indata måste vara en dense ndarray"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "indata måste vara en tensor av rank 2" msgstr "indata måste vara en tensor av rank 2"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "indata måste vara en ndarray" msgstr "indata måste vara en ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr "indata måste vara en ndarray eller en scalar"
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "indata måste vara endimensionell" msgstr "indata måste vara endimensionell"
@ -3604,6 +3702,11 @@ msgstr "matematikdomänfel"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "matrisen är inte positiv bestämd" msgstr "matrisen är inte positiv bestämd"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr "max_connections måste vara mellan 0 och 10"
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3757,6 +3860,7 @@ msgstr "inget sådant attribut"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "icke-enhet i %q" msgstr "icke-enhet i %q"
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "icke-UUID hittades i service_uuids_whitelist" msgstr "icke-UUID hittades i service_uuids_whitelist"
@ -3797,7 +3901,11 @@ msgstr "inte alla argument omvandlade under strängformatering"
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "inte tillräckligt med argument för formatsträng" msgstr "inte tillräckligt med argument för formatsträng"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr "inte implementerat för complex dtype"
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "antal punkter måste vara minst 2" msgstr "antal punkter måste vara minst 2"
@ -3855,7 +3963,7 @@ msgstr "objekt med buffertprotokoll krävs"
msgid "odd-length string" msgid "odd-length string"
msgstr "sträng har udda längd" msgstr "sträng har udda längd"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "offset är för stor" msgstr "offset är för stor"
@ -3863,7 +3971,7 @@ msgstr "offset är för stor"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "offset måste vara >= 0" msgstr "offset måste vara >= 0"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "offset måste vara icke-negativt och inte längre än buffertlängd" msgstr "offset måste vara icke-negativt och inte längre än buffertlängd"
@ -3976,6 +4084,10 @@ msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "" msgstr ""
"pixel_shader måste vara displayio.Palette eller displayio.ColorConverter" "pixel_shader måste vara displayio.Palette eller displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr "filbevakning är inte tillgänglig på win32"
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "polygon kan endast registreras i en förälder" msgstr "polygon kan endast registreras i en förälder"
@ -4005,18 +4117,27 @@ msgstr "pow() 3: e argument kan inte vara 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() med 3 argument kräver heltal" msgstr "pow() med 3 argument kräver heltal"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4042,7 +4163,10 @@ msgstr "pow() med 3 argument kräver heltal"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "trycka på startknappen vid start.\n" msgstr "trycka på startknappen vid start.\n"
@ -4341,7 +4465,7 @@ msgstr "tobyte kan enbart anropas för täta matriser"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "för många argument för det givna formatet" msgstr "för många argument för det givna formatet"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "för många dimensioner" msgstr "för många dimensioner"
@ -4525,7 +4649,7 @@ msgstr "watchdog timeout måste vara större än 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "width måste vara mellan 2 och 8, inte %d" msgstr "width måste vara mellan 2 och 8, inte %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "width måste vara större än noll" msgstr "width måste vara större än noll"
@ -4542,7 +4666,7 @@ msgstr "window måste vara <= interval"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "fel axelindex" msgstr "fel axelindex"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "fel axel angiven" msgstr "fel axel angiven"
@ -4550,7 +4674,11 @@ msgstr "fel axel angiven"
msgid "wrong input type" msgid "wrong input type"
msgstr "fel indatatyp" msgstr "fel indatatyp"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr "fel längd på villkorsmatrisen"
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "fel antal argument" msgstr "fel antal argument"
@ -4594,6 +4722,16 @@ msgstr "zi måste vara av typ float"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi måste vara i formen (n_section, 2)" msgstr "zi måste vara i formen (n_section, 2)"
#~ msgid "cannot perform relative import"
#~ msgstr "kan inte utföra relativ import"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "Ingen I2C-enhet på adress: %x"
#~ msgid "Unsupported pull value."
#~ msgstr "Ogiltigt Pull-värde."
#~ msgid "Station must be started" #~ msgid "Station must be started"
#~ msgstr "Stationen måste startas" #~ msgstr "Stationen måste startas"

4678
locale/tr.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: circuitpython-cn\n" "Project-Id-Version: circuitpython-cn\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n" "POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2021-11-16 01:34+0000\n" "PO-Revision-Date: 2022-02-13 00:57+0000\n"
"Last-Translator: River Wang <urfdvw@gmail.com>\n" "Last-Translator: hexthat <hexthat@gmail.com>\n"
"Language-Team: Chinese Hanyu Pinyin\n" "Language-Team: Chinese Hanyu Pinyin\n"
"Language: zh_Latn_pinyin\n" "Language: zh_Latn_pinyin\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.9.1-dev\n" "X-Generator: Weblate 4.11-dev\n"
#: main.c #: main.c
msgid "" msgid ""
@ -69,12 +69,12 @@ msgid "%%c requires int or char"
msgstr "%%c xūyào zhěngshù huòzhě zìfú" msgstr "%%c xūyào zhěngshù huòzhě zìfú"
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
#, fuzzy, c-format #, c-format
msgid "" msgid ""
"%d address pins, %d rgb pins and %d tiles indicate a height of %d, not %d" "%d address pins, %d rgb pins and %d tiles indicate a height of %d, not %d"
msgstr "" msgstr ""
"%d de zhǐ yǐn jiǎo , %d rgb yǐn jiǎo hé %d qiē piàn biǎo shì %d de gāo dù, " "%d de zhǐ yǐn jiǎo, %d rgb yǐn jiǎo hé %d qiē piàn biǎo shì %d de gāo dù, ér "
"ér bù shì %d" "bù shì %d"
#: shared-bindings/microcontroller/Pin.c #: shared-bindings/microcontroller/Pin.c
msgid "%q and %q contain duplicate pins" msgid "%q and %q contain duplicate pins"
@ -109,7 +109,7 @@ msgstr "%q suǒyǐn bìxū shì zhěngshù, ér bùshì %s"
msgid "%q length must be %d-%d" msgid "%q length must be %d-%d"
msgstr "%q cháng dù bì xū wéi %d-%d" msgstr "%q cháng dù bì xū wéi %d-%d"
#: shared-bindings/usb_hid/Device.c #: shared-bindings/busio/I2C.c shared-bindings/usb_hid/Device.c
msgid "%q length must be >= 1" msgid "%q length must be >= 1"
msgstr "%q cháng dù bì xū >= 1" msgstr "%q cháng dù bì xū >= 1"
@ -154,6 +154,10 @@ msgstr "%q bì xū zài %d hé %d zhī jiān"
msgid "%q must be of type %q" msgid "%q must be of type %q"
msgstr "%q bì xū shì %q lèi xíng" msgstr "%q bì xū shì %q lèi xíng"
#: shared-bindings/digitalio/Pull.c
msgid "%q must be of type %q or None"
msgstr "%q lèi xíng bì xū wéi %q huò wú"
#: ports/atmel-samd/common-hal/busio/UART.c #: ports/atmel-samd/common-hal/busio/UART.c
msgid "%q must be power of 2" msgid "%q must be power of 2"
msgstr "%q bì xū shì 2 de zhěng shù cì fāng" msgstr "%q bì xū shì 2 de zhěng shù cì fāng"
@ -453,6 +457,7 @@ msgstr "cǐ yǐnjiǎo de suǒyǒu jìshíqì dōu zài shǐyòng zhōng"
msgid "All timers in use" msgid "All timers in use"
msgstr "suǒyǒu jìshí qì dōu zài shǐyòng zhōng" msgstr "suǒyǒu jìshí qì dōu zài shǐyòng zhōng"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Already advertising." msgid "Already advertising."
msgstr "Mùqián zhèngzài guǎngbō." msgstr "Mùqián zhèngzài guǎngbō."
@ -591,7 +596,7 @@ msgstr "liǎnggè yǐnjiǎo dōu bìxū zhīchí yìngjiàn zhōngduàn"
#: shared-bindings/displayio/Display.c #: shared-bindings/displayio/Display.c
#: shared-bindings/framebufferio/FramebufferDisplay.c #: shared-bindings/framebufferio/FramebufferDisplay.c
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "Brightness must be 0-1.0" msgid "Brightness must be 0-1.0"
msgstr "Liàngdù bìxū wèi 0-1.0" msgstr "Liàngdù bìxū wèi 0-1.0"
@ -641,20 +646,20 @@ msgstr "Huǎnchōngqū chángdù bìxū wéi 512 de bèishù"
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
msgid "Buffer must be a multiple of 512 bytes" msgid "Buffer must be a multiple of 512 bytes"
msgstr "Huǎn chōng qū bì xū shì 512 zì jié de bèi shù" msgstr "Huǎnchōngqū bìxū shì 512 zìjié de bèishù"
#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c #: shared-bindings/bitbangio/I2C.c
msgid "Buffer must be at least length 1" msgid "Buffer must be at least length 1"
msgstr "Huǎnchōng qū bìxū zhìshǎo chángdù 1" msgstr "Huǎnchōng qū bìxū zhìshǎo chángdù wéi 1"
#: shared-bindings/_bleio/PacketBuffer.c #: shared-bindings/_bleio/PacketBuffer.c
#, c-format #, fuzzy, c-format
msgid "Buffer too short by %d bytes" msgid "Buffer too short by %d bytes"
msgstr "Huǎn chōng qū tài duǎn , àn %d zì jié" msgstr "Huǎn chōng qū tài duǎn , àn %d zì jié"
#: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c #: ports/espressif/common-hal/imagecapture/ParallelImageCapture.c
msgid "Buffers must be same size" msgid "Buffers must be same size"
msgstr "huǎn chōng qì bì xū dà xiǎo xiāng tóng" msgstr "huǎnchōng qū bìxū dàxiǎo xiāngtóng"
#: ports/atmel-samd/common-hal/paralleldisplay/ParallelBus.c #: ports/atmel-samd/common-hal/paralleldisplay/ParallelBus.c
#: ports/espressif/common-hal/paralleldisplay/ParallelBus.c #: ports/espressif/common-hal/paralleldisplay/ParallelBus.c
@ -662,39 +667,46 @@ msgstr "huǎn chōng qì bì xū dà xiǎo xiāng tóng"
#: ports/raspberrypi/common-hal/paralleldisplay/ParallelBus.c #: ports/raspberrypi/common-hal/paralleldisplay/ParallelBus.c
#, c-format #, c-format
msgid "Bus pin %d is already in use" msgid "Bus pin %d is already in use"
msgstr "Zǒngxiàn yǐn jiǎo %d yǐ zài shǐyòng zhōng" msgstr "Zǒngxiàn yǐnjiǎo %d yǐjīng zài shǐyòng zhōng"
#: shared-bindings/_bleio/UUID.c #: shared-bindings/_bleio/UUID.c
msgid "Byte buffer must be 16 bytes." msgid "Byte buffer must be 16 bytes."
msgstr "Zì jié huǎnchōng qū bìxū shì 16 zì jié." msgstr "Zìjié huǎnchōng qū bìxū shì 16 zìjié."
#: shared-bindings/alarm/SleepMemory.c shared-bindings/nvm/ByteArray.c #: shared-bindings/alarm/SleepMemory.c shared-bindings/nvm/ByteArray.c
msgid "Bytes must be between 0 and 255." msgid "Bytes must be between 0 and 255."
msgstr "Zì jié bìxū jiè yú 0 dào 255 zhī jiān." msgstr "Zìjié bìxū jiè yú 0 dào 255 zhījiān."
#: shared-bindings/aesio/aes.c #: shared-bindings/aesio/aes.c
msgid "CBC blocks must be multiples of 16 bytes" msgid "CBC blocks must be multiples of 16 bytes"
msgstr "CBC kuài bì xū shì 16 zì jié de bèi shù" msgstr "CBC kuài bìxū shì 16 zìjié de bèishù"
#: supervisor/shared/safe_mode.c
msgid "CIRCUITPY drive could not be found or created."
msgstr "zhǎo bú dào huò chuàng jiàn CIRCUITPY qū dòng qì."
#: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c #: ports/espressif/bindings/espidf/__init__.c ports/espressif/esp_error.c
msgid "CRC or checksum was invalid" msgid "CRC or checksum was invalid"
msgstr "CRC huò jiào yàn hé wú xiào" msgstr "CRC huò jiàoyàn hé wúxiào"
#: py/objtype.c #: py/objtype.c
msgid "Call super().__init__() before accessing native object." msgid "Call super().__init__() before accessing native object."
msgstr "Zài fǎngwèn běn jī wùjiàn zhīqián diàoyòng super().__init__()." msgstr "Zài fǎngwèn yuánshēn dùixiàng zhīqián diàoyòng super().__init__()."
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c #: ports/espressif/common-hal/alarm/pin/PinAlarm.c
#, fuzzy
msgid "Can only alarm on RTC IO from deep sleep." msgid "Can only alarm on RTC IO from deep sleep."
msgstr "zhǐ néng zài RTC Io shàng cóng shēn dù shuì mián zhōng bào jǐng." msgstr "zhǐ néng zài RTC IO shàng cóng shēndù shuìmián zhōng bào jǐng."
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c #: ports/espressif/common-hal/alarm/pin/PinAlarm.c
#, fuzzy
msgid "Can only alarm on one low pin while others alarm high from deep sleep." msgid "Can only alarm on one low pin while others alarm high from deep sleep."
msgstr "" msgstr ""
"Zhǐ néng zài yīgè dī diàn píng yǐn jiǎo shàng fāchū jǐngbào, ér qítā yǐn " "Zhǐ néng zài yīgè dī diàn píng yǐn jiǎo shàng fāchū jǐngbào, ér qítā yǐn "
"jiǎo cóng shēndù shuìmián zhōng fāchū gāo diàn píng jǐngbào." "jiǎo cóng shēndù shuìmián zhōng fāchū gāo diàn píng jǐngbào."
#: ports/espressif/common-hal/alarm/pin/PinAlarm.c #: ports/espressif/common-hal/alarm/pin/PinAlarm.c
#, fuzzy
msgid "Can only alarm on two low pins from deep sleep." msgid "Can only alarm on two low pins from deep sleep."
msgstr "zhǐ néng cóng shēn dù shuì mián zhōng bào jǐng liǎng gè dī yǐn jiǎo." msgstr "zhǐ néng cóng shēn dù shuì mián zhōng bào jǐng liǎng gè dī yǐn jiǎo."
@ -705,7 +717,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/storage/__init__.c shared-bindings/usb_cdc/__init__.c
#: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c #: shared-bindings/usb_hid/__init__.c shared-bindings/usb_midi/__init__.c
msgid "Cannot change USB devices now" msgid "Cannot change USB devices now"
msgstr "xiàn zài wú fǎ gēng gǎi USB shè bèi" msgstr "xiànzài wúfǎ gēnggǎi USB shèbèi"
#: shared-bindings/_bleio/Adapter.c #: shared-bindings/_bleio/Adapter.c
msgid "Cannot create a new Adapter; use _bleio.adapter;" msgid "Cannot create a new Adapter; use _bleio.adapter;"
@ -715,14 +727,14 @@ msgstr "Wúfǎ chuàngjiàn xīn de shìpèiqì; shǐyòng_bleio.Adapter;"
#: shared-bindings/memorymonitor/AllocationSize.c #: shared-bindings/memorymonitor/AllocationSize.c
#: shared-bindings/pulseio/PulseIn.c #: shared-bindings/pulseio/PulseIn.c
msgid "Cannot delete values" msgid "Cannot delete values"
msgstr "Wúfǎ shānchú zhí" msgstr "Wúfǎ jiāng zhí shānchú"
#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c
#: ports/mimxrt10xx/common-hal/digitalio/DigitalInOut.c #: ports/mimxrt10xx/common-hal/digitalio/DigitalInOut.c
#: ports/nrf/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c
#: ports/raspberrypi/common-hal/digitalio/DigitalInOut.c #: ports/raspberrypi/common-hal/digitalio/DigitalInOut.c
msgid "Cannot get pull while in output mode" msgid "Cannot get pull while in output mode"
msgstr "Zài shūchū móshì xià wúfǎ huòqǔ lādòng" msgstr "Zài shūchū móshì xià wúfǎ huòqǔ shànglā huò xiàlā zhuàngtài"
#: ports/nrf/common-hal/microcontroller/Processor.c #: ports/nrf/common-hal/microcontroller/Processor.c
msgid "Cannot get temperature" msgid "Cannot get temperature"
@ -919,10 +931,12 @@ msgstr "Shùjù 0 de yǐn jiǎo bìxū shì zì jié duìqí"
msgid "Data chunk must follow fmt chunk" msgid "Data chunk must follow fmt chunk"
msgstr "Shùjù kuài bìxū zūnxún fmt qū kuài" msgstr "Shùjù kuài bìxū zūnxún fmt qū kuài"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data not supported with directed advertising" msgid "Data not supported with directed advertising"
msgstr "bù zhī chí dìng xiàng guǎng gào de shù jù" msgstr "bù zhī chí dìng xiàng guǎng gào de shù jù"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Data too large for advertisement packet" msgid "Data too large for advertisement packet"
msgstr "Guǎnggào bāo de shùjù tài dà" msgstr "Guǎnggào bāo de shùjù tài dà"
@ -1004,6 +1018,7 @@ msgstr "yù qī yǒu jǐng bào"
msgid "Expected tuple of length %d, got %d" msgid "Expected tuple of length %d, got %d"
msgstr "Qīwàng de chángdù wèi %d de yuán zǔ, dédào %d" msgstr "Qīwàng de chángdù wèi %d de yuán zǔ, dédào %d"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Extended advertisements with scan response not supported." msgid "Extended advertisements with scan response not supported."
msgstr "Bù zhīchí dài yǒu sǎomiáo xiǎngyìng de kuòzhǎn guǎngbò." msgstr "Bù zhīchí dài yǒu sǎomiáo xiǎngyìng de kuòzhǎn guǎngbò."
@ -1057,6 +1072,7 @@ msgstr "Wúfǎ fēnpèi wifi sǎomiáo nèicún"
msgid "Failed to buffer the sample" msgid "Failed to buffer the sample"
msgstr "wèi néng huǎn chōng yàng běn" msgstr "wèi néng huǎn chōng yàng běn"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Failed to connect: internal error" msgid "Failed to connect: internal error"
msgstr "Liánjiē shībài: Nèibù cuòwù" msgstr "Liánjiē shībài: Nèibù cuòwù"
@ -1139,6 +1155,13 @@ msgstr "tōng yòng gù zhàng"
msgid "Group already used" msgid "Group already used"
msgstr "Jítuán yǐjīng shǐyòngguò" msgstr "Jítuán yǐjīng shǐyòngguò"
#: ports/atmel-samd/common-hal/busio/SPI.c ports/cxd56/common-hal/busio/SPI.c
#: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
#: ports/raspberrypi/common-hal/busio/SPI.c
msgid "Half duplex SPI is not implemented"
msgstr "wèi shí xiàn bàn shuāng gōng SPI"
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
#: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c #: ports/stm/common-hal/busio/SPI.c ports/stm/common-hal/canio/CAN.c
#: ports/stm/common-hal/sdioio/SDCard.c #: ports/stm/common-hal/sdioio/SDCard.c
@ -1254,7 +1277,7 @@ msgstr "Jiāmì bùzú"
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Interface must be started" msgid "Interface must be started"
msgstr "" msgstr "jiē kǒu bì xū qǐ dòng"
#: ports/atmel-samd/audio_dma.c ports/raspberrypi/audio_dma.c #: ports/atmel-samd/audio_dma.c ports/raspberrypi/audio_dma.c
msgid "Internal audio buffer too small" msgid "Internal audio buffer too small"
@ -1298,6 +1321,7 @@ msgstr "Wúxiào de ADC dānwèi zhí"
msgid "Invalid AuthMode" msgid "Invalid AuthMode"
msgstr "wú xiào AuthMode" msgstr "wú xiào AuthMode"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
msgid "Invalid BLE parameter" msgid "Invalid BLE parameter"
msgstr "wú xiào BLE cān shù" msgstr "wú xiào BLE cān shù"
@ -1317,7 +1341,7 @@ msgstr "Tí gōng liǎo wúxiào de DAC yǐn jiǎo"
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
msgid "Invalid MAC address" msgid "Invalid MAC address"
msgstr "" msgstr "wú xiào de MAC dì zhǐ"
#: shared-bindings/synthio/__init__.c #: shared-bindings/synthio/__init__.c
msgid "Invalid MIDI file" msgid "Invalid MIDI file"
@ -1392,9 +1416,13 @@ msgstr "Géshì kuài dàxiǎo wúxiào"
msgid "Invalid memory access." msgid "Invalid memory access."
msgstr "Wúxiào de nèicún fǎngwèn." msgstr "Wúxiào de nèicún fǎngwèn."
#: extmod/vfs_fat_file.c
msgid "Invalid mode"
msgstr "wú xiào mó shì"
#: ports/espressif/common-hal/wifi/Radio.c #: ports/espressif/common-hal/wifi/Radio.c
msgid "Invalid multicast MAC address" msgid "Invalid multicast MAC address"
msgstr "" msgstr "wú xiào de duō bō MAC dì zhǐ"
#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c
msgid "Invalid number of bits" msgid "Invalid number of bits"
@ -1492,9 +1520,9 @@ msgstr "Wúxiào de zì/wèi chángdù"
msgid "Key must be 16, 24, or 32 bytes long" msgid "Key must be 16, 24, or 32 bytes long"
msgstr "mì yào bì xū wéi 16, 24 huò 32 zì jié cháng" msgstr "mì yào bì xū wéi 16, 24 huò 32 zì jié cháng"
#: shared-module/is31fl3741/is31fl3741.c #: shared-module/is31fl3741/FrameBuffer.c
msgid "LED mappings must match display size" msgid "LED mappings must match display size"
msgstr "" msgstr "LED yìng shè bì xū yǔ xiǎn shì píng chǐ cùn pǐ pèi"
#: py/compile.c #: py/compile.c
msgid "LHS of keyword arg must be an id" msgid "LHS of keyword arg must be an id"
@ -1520,6 +1548,10 @@ msgstr "MISO yǐn jiǎo chūshǐhuà shībài."
msgid "MOSI pin init failed." msgid "MOSI pin init failed."
msgstr "MOSI yǐn jiǎo shūrù shībài." msgstr "MOSI yǐn jiǎo shūrù shībài."
#: shared-bindings/is31fl3741/IS31FL3741.c
msgid "Mapping must be a tuple"
msgstr "yìng shè bì xū shì yuán zǔ"
#: shared-module/displayio/Shape.c #: shared-module/displayio/Shape.c
#, c-format #, c-format
msgid "Maximum x value when mirrored is %d" msgid "Maximum x value when mirrored is %d"
@ -1603,6 +1635,10 @@ msgstr "NVS cuò wù"
msgid "Name too long" msgid "Name too long"
msgstr "Míngchēng tài zhǎng" msgstr "Míngchēng tài zhǎng"
#: ports/espressif/common-hal/_bleio/__init__.c
msgid "Nimble out of memory"
msgstr "líng huó de bǎi tuō jì yì"
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
msgid "No CCCD for this Characteristic" msgid "No CCCD for this Characteristic"
msgstr "Zhège tèzhēng méiyǒu CCCD" msgstr "Zhège tèzhēng méiyǒu CCCD"
@ -1623,10 +1659,10 @@ msgstr "Wèi zhǎodào DMA píndào"
msgid "No DMA pacing timer found" msgid "No DMA pacing timer found"
msgstr "wèi zhǎo dào DMA qǐ bó qì" msgstr "wèi zhǎo dào DMA qǐ bó qì"
#: shared-module/adafruit_bus_device/I2CDevice.c #: shared-module/adafruit_bus_device/i2c_device/I2CDevice.c
#, c-format #, c-format
msgid "No I2C device at address: %x" msgid "No I2C device at address: 0x%x"
msgstr "dì zhǐ wú I2C shè bèi: %x" msgstr "dì zhǐ: 0x%x shí méi yǒu I2C qì jiàn"
#: ports/espressif/common-hal/busio/SPI.c #: ports/espressif/common-hal/busio/SPI.c
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c #: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
@ -1750,6 +1786,7 @@ msgstr "běi ōu xì tǒng gù jiàn chū nèi cún"
msgid "Not a valid IP string" msgid "Not a valid IP string"
msgstr "Wúxiào de IP zìfú chuàn" msgstr "Wúxiào de IP zìfú chuàn"
#: ports/espressif/common-hal/_bleio/__init__.c
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#: shared-bindings/_bleio/CharacteristicBuffer.c #: shared-bindings/_bleio/CharacteristicBuffer.c
msgid "Not connected" msgid "Not connected"
@ -1929,7 +1966,7 @@ msgstr "Pin méiyǒu ADC nénglì"
msgid "Pin interrupt already in use" msgid "Pin interrupt already in use"
msgstr "yǐn jiǎo zhōng duàn yǐ zài shǐ yòng zhōng" msgstr "yǐn jiǎo zhōng duàn yǐ zài shǐ yòng zhōng"
#: shared-bindings/adafruit_bus_device/SPIDevice.c #: shared-bindings/adafruit_bus_device/spi_device/SPIDevice.c
#: shared-bindings/digitalio/DigitalInOut.c #: shared-bindings/digitalio/DigitalInOut.c
msgid "Pin is input only" msgid "Pin is input only"
msgstr "Yǐn jiǎo jǐn shūrù" msgstr "Yǐn jiǎo jǐn shūrù"
@ -2016,6 +2053,10 @@ msgstr "Fāngxiàng shūchū shí Pull méiyǒu shǐyòng."
msgid "RAISE mode is not implemented" msgid "RAISE mode is not implemented"
msgstr "wèi shí xiàn tí shēng mó shì" msgstr "wèi shí xiàn tí shēng mó shì"
#: ports/raspberrypi/common-hal/countio/Counter.c
msgid "RISE_AND_FALL not available on this chip"
msgstr "RISE_AND_FALL zài cǐ xīn piàn shàng bù kě yòng"
#: ports/stm/common-hal/os/__init__.c #: ports/stm/common-hal/os/__init__.c
msgid "RNG DeInit Error" msgid "RNG DeInit Error"
msgstr "RNG qǔxiāo chūshǐhuà cuòwù" msgstr "RNG qǔxiāo chūshǐhuà cuòwù"
@ -2132,10 +2173,11 @@ msgstr "Cǎiyàng lǜ bìxū wèi zhèng shù"
msgid "Sample rate too high. It must be less than %d" msgid "Sample rate too high. It must be less than %d"
msgstr "Cǎiyàng lǜ tài gāo. Tā bìxū xiǎoyú %d" msgstr "Cǎiyàng lǜ tài gāo. Tā bìxū xiǎoyú %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
msgid "Scale dimensions must divide by 3" msgid "Scale dimensions must divide by 3"
msgstr "" msgstr "bǐ lì chǐ cùn bì xū chú yǐ 3"
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
msgid "Scan already in progess. Stop with stop_scan." msgid "Scan already in progess. Stop with stop_scan."
msgstr "Zhèngzài jìn háng sǎomiáo. Shǐyòng stop_scan tíngzhǐ." msgstr "Zhèngzài jìn háng sǎomiáo. Shǐyòng stop_scan tíngzhǐ."
@ -2303,6 +2345,7 @@ msgstr "Píng pū kuāndù bìxū huàfēn wèi tú kuāndù"
msgid "Time is in the past." msgid "Time is in the past."
msgstr "shí jiān yǐ jīng guò qù." msgstr "shí jiān yǐ jīng guò qù."
#: ports/espressif/common-hal/_bleio/Adapter.c
#: ports/nrf/common-hal/_bleio/Adapter.c #: ports/nrf/common-hal/_bleio/Adapter.c
#, c-format #, c-format
msgid "Timeout is too long: Maximum timeout length is %d seconds" msgid "Timeout is too long: Maximum timeout length is %d seconds"
@ -2325,6 +2368,7 @@ msgstr "Xiǎnshì zǒngxiàn tài duōle"
msgid "Too many displays" msgid "Too many displays"
msgstr "Xiǎnshì tài duō" msgstr "Xiǎnshì tài duō"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Total data to write is larger than %q" msgid "Total data to write is larger than %q"
msgstr "yào biān xiě de zǒng shù jù dà yú %q" msgstr "yào biān xiě de zǒng shù jù dà yú %q"
@ -2402,7 +2446,7 @@ msgstr "Wúfǎ fēnpèi huǎnchōng qū yòng yú qiānmíng zhuǎnhuàn"
msgid "Unable to create lock" msgid "Unable to create lock"
msgstr "Wúfǎ chuàngjiàn suǒ" msgstr "Wúfǎ chuàngjiàn suǒ"
#: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/is31fl3741.c #: shared-module/displayio/I2CDisplay.c shared-module/is31fl3741/IS31FL3741.c
#, c-format #, c-format
msgid "Unable to find I2C Display at %x" msgid "Unable to find I2C Display at %x"
msgstr "Wúfǎ zài%x zhǎodào I2C xiǎnshìqì" msgstr "Wúfǎ zài%x zhǎodào I2C xiǎnshìqì"
@ -2437,6 +2481,16 @@ msgstr "Yìwài de nrfx uuid lèixíng"
msgid "Unhandled ESP TLS error %d %d %x %d" msgid "Unhandled ESP TLS error %d %d %x %d"
msgstr "Wèi chǔlǐ de ESP TLS cuòwù %d %d %x %d" msgstr "Wèi chǔlǐ de ESP TLS cuòwù %d %d %x %d"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error at %s:%d: %d"
msgstr ""
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown BLE error: %d"
msgstr ""
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
#, c-format #, c-format
msgid "Unknown failure %d" msgid "Unknown failure %d"
@ -2456,11 +2510,21 @@ msgstr "Yuányīn bùmíng."
msgid "Unknown security error: 0x%04x" msgid "Unknown security error: 0x%04x"
msgstr "Wèizhī de ānquán cuòwù: 0x%04x" msgstr "Wèizhī de ānquán cuòwù: 0x%04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error at %s:%d: %d"
msgstr "%s:%d: %d shí chū xiàn wèi zhī xì tǒng gù jiàn cuò wù"
#: ports/nrf/common-hal/_bleio/__init__.c #: ports/nrf/common-hal/_bleio/__init__.c
#, c-format #, c-format
msgid "Unknown system firmware error: %04x" msgid "Unknown system firmware error: %04x"
msgstr "wèi zhī xì tǒng gù jiàn cuò wù: %04x" msgstr "wèi zhī xì tǒng gù jiàn cuò wù: %04x"
#: ports/espressif/common-hal/_bleio/__init__.c
#, c-format
msgid "Unknown system firmware error: %d"
msgstr "wèi zhī de xì tǒng gù jiàn cuò wù: %d"
#: shared-bindings/adafruit_pixelbuf/PixelBuf.c #: shared-bindings/adafruit_pixelbuf/PixelBuf.c
#, c-format #, c-format
msgid "Unmatched number of items on RHS (expected %d, got %d)." msgid "Unmatched number of items on RHS (expected %d, got %d)."
@ -2496,19 +2560,19 @@ msgstr "Bù zhīchí de géshì"
msgid "Unsupported operation" msgid "Unsupported operation"
msgstr "Bù zhīchí de cāozuò" msgstr "Bù zhīchí de cāozuò"
#: shared-bindings/digitalio/DigitalInOut.c
msgid "Unsupported pull value."
msgstr "Bù zhīchí de lādòng zhí."
#: ports/espressif/common-hal/dualbank/__init__.c #: ports/espressif/common-hal/dualbank/__init__.c
msgid "Update Failed" msgid "Update Failed"
msgstr "gēng xīn shī bài" msgstr "gēng xīn shī bài"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length != required fixed length" msgid "Value length != required fixed length"
msgstr "Zhí chángdù != Suǒ xū de gùdìng chángdù" msgstr "Zhí chángdù != Suǒ xū de gùdìng chángdù"
#: ports/espressif/common-hal/_bleio/Characteristic.c
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
msgid "Value length > max_length" msgid "Value length > max_length"
@ -2572,6 +2636,7 @@ msgstr "WiFi mìmǎ bìxū jiè yú 8 dào 63 gè zìfú zhī jiān"
msgid "Woken up by alarm.\n" msgid "Woken up by alarm.\n"
msgstr "bèi jǐng bào chǎo xǐng.\n" msgstr "bèi jǐng bào chǎo xǐng.\n"
#: ports/espressif/common-hal/_bleio/PacketBuffer.c
#: ports/nrf/common-hal/_bleio/PacketBuffer.c #: ports/nrf/common-hal/_bleio/PacketBuffer.c
msgid "Writes not supported on Characteristic" msgid "Writes not supported on Characteristic"
msgstr "Tèzhēng bù zhīchí xiě rù" msgstr "Tèzhēng bù zhīchí xiě rù"
@ -2677,7 +2742,7 @@ msgstr "chángshì huòqǔ kōng xùliè de argmin/ argmax"
msgid "attributes not supported yet" msgid "attributes not supported yet"
msgstr "shǔxìng shàngwèi zhīchí" msgstr "shǔxìng shàngwèi zhīchí"
#: extmod/ulab/code/numpy/numerical.c #: extmod/ulab/code/ulab_tools.c
msgid "axis is out of bounds" msgid "axis is out of bounds"
msgstr "zhóu chāo chū biān jiè" msgstr "zhóu chāo chū biān jiè"
@ -2733,11 +2798,11 @@ msgstr "měi jiàn yàngběn bìxū wèi 8 huò 16"
msgid "branch not in range" msgid "branch not in range"
msgstr "fēnzhī bùzài fànwéi nèi" msgstr "fēnzhī bùzài fànwéi nèi"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer is smaller than requested size" msgid "buffer is smaller than requested size"
msgstr "huǎn chōng qū xiǎo yú qǐng qiú de dà xiǎo" msgstr "huǎn chōng qū xiǎo yú qǐng qiú de dà xiǎo"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "buffer size must be a multiple of element size" msgid "buffer size must be a multiple of element size"
msgstr "huǎn chōng qū dà xiǎo bì xū shì yuán sù dà xiǎo de bèi shù" msgstr "huǎn chōng qū dà xiǎo bì xū shì yuán sù dà xiǎo de bèi shù"
@ -2787,6 +2852,10 @@ msgstr "jiàozhǔn zhǐ dú dào"
msgid "calibration value out of range +/-127" msgid "calibration value out of range +/-127"
msgstr "jiàozhǔn zhí chāochū fànwéi +/-127" msgstr "jiàozhǔn zhí chāochū fànwéi +/-127"
#: shared-module/vectorio/Rectangle.c
msgid "can only be registered in one parent"
msgstr "zhǐ néng zài yí gè jiā zhǎng zhōng zhù cè"
#: py/emitinlinethumb.c #: py/emitinlinethumb.c
msgid "can only have up to 4 parameters to Thumb assembly" msgid "can only have up to 4 parameters to Thumb assembly"
msgstr "zhǐyǒu Thumb zǔjiàn zuìduō 4 cānshù" msgstr "zhǐyǒu Thumb zǔjiàn zuìduō 4 cānshù"
@ -2825,6 +2894,10 @@ msgstr "wúfǎ zhuǎnhuàn%s dào fùzá"
msgid "can't convert '%q' object to %q implicitly" 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" msgstr "wúfǎ jiāng '%q' duìxiàng zhuǎnhuàn wèi %q yǐn hán"
#: 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/obj.c #: py/obj.c
msgid "can't convert to %q" msgid "can't convert to %q"
msgstr "wúfǎ zhuǎnhuàn wèi %q" msgstr "wúfǎ zhuǎnhuàn wèi %q"
@ -2877,6 +2950,10 @@ msgstr "wúfǎ cóng '%q' jiāzài"
msgid "can't load with '%q' index" msgid "can't load with '%q' index"
msgstr "wúfǎ yòng '%q' ' suǒyǐn jiāzài" msgstr "wúfǎ yòng '%q' ' suǒyǐn jiāzài"
#: py/builtinimport.c
msgid "can't perform relative import"
msgstr ""
#: py/objgenerator.c #: py/objgenerator.c
msgid "can't send non-None value to a just-started generator" msgid "can't send non-None value to a just-started generator"
msgstr "wúfǎ xiàng gānggāng qǐdòng de shēngchéng qì fāsòng fēi zhí" msgstr "wúfǎ xiàng gānggāng qǐdòng de shēngchéng qì fāsòng fēi zhí"
@ -2920,6 +2997,14 @@ msgid "cannot cast output with casting rule"
msgstr "" msgstr ""
"wú fǎ shǐ yòng qiáng zhì zhuǎn huàn guī zé qiáng zhì zhuǎn huàn shū chū" "wú fǎ shǐ yòng qiáng zhì zhuǎn huàn guī zé qiáng zhì zhuǎn huàn shū chū"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex to dtype"
msgstr "wú fǎ jiāng fù zá zhuǎn huàn wéi dtype"
#: extmod/ulab/code/ndarray.c
msgid "cannot convert complex type"
msgstr "wú fǎ zhuǎn huàn fù zá lèi xíng"
#: py/objtype.c #: py/objtype.c
msgid "cannot create '%q' instances" msgid "cannot create '%q' instances"
msgstr "wúfǎ chuàngjiàn '%q' ' shílì" msgstr "wúfǎ chuàngjiàn '%q' ' shílì"
@ -2932,10 +3017,6 @@ msgstr "wúfǎ chuàngjiàn shílì"
msgid "cannot import name %q" msgid "cannot import name %q"
msgstr "wúfǎ dǎorù míngchēng %q" msgstr "wúfǎ dǎorù míngchēng %q"
#: py/builtinimport.c
msgid "cannot perform relative import"
msgstr "wúfǎ zhíxíng xiāngguān dǎorù"
#: extmod/moductypes.c #: extmod/moductypes.c
msgid "cannot unambiguously get sizeof scalar" msgid "cannot unambiguously get sizeof scalar"
msgstr "bù néng háo bù hán hu de dé dào dà xiǎo de lín" msgstr "bù néng háo bù hán hu de dé dào dà xiǎo de lín"
@ -3116,6 +3197,10 @@ msgstr "bèi líng chú"
msgid "divisor must be 4" msgid "divisor must be 4"
msgstr "èr chóng zòu bì xū shì 4" msgstr "èr chóng zòu bì xū shì 4"
#: extmod/ulab/code/numpy/vector.c
msgid "dtype must be float, or complex"
msgstr "dtype bì xū shì fú diǎn xíng huò fù shù"
#: py/objdeque.c #: py/objdeque.c
msgid "empty" msgid "empty"
msgstr "kòngxián" msgstr "kòngxián"
@ -3219,7 +3304,7 @@ msgstr "dì yī gè cānshù bìxū shì kě tiáo yòng de"
msgid "first argument must be a function" msgid "first argument must be a function"
msgstr "dì yīgè cānshù bìxū shì yī gè hánshù" msgstr "dì yīgè cānshù bìxū shì yī gè hánshù"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "first argument must be a tuple of ndarrays" msgid "first argument must be a tuple of ndarrays"
msgstr "dì yī gè cān shù bì xū shì yí gè yuán zǔ ndarrays" msgstr "dì yī gè cān shù bì xū shì yí gè yuán zǔ ndarrays"
@ -3284,6 +3369,10 @@ msgstr "hánshù zài jiàngé mòwěi jùyǒu xiāngtóng de fúhào"
msgid "function is defined for ndarrays only" msgid "function is defined for ndarrays only"
msgstr "hán shù jǐn wéi ndarrays dìng yì" msgstr "hán shù jǐn wéi ndarrays dìng yì"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "function is implemented for ndarrays only"
msgstr "hán shù jǐn zhēn duì ndarray shí xiàn"
#: py/argcheck.c #: py/argcheck.c
#, c-format #, c-format
msgid "function missing %d required positional arguments" msgid "function missing %d required positional arguments"
@ -3397,7 +3486,7 @@ msgstr "nèi lián jíhé bìxū shì yīgè hánshù"
msgid "input and output shapes are not compatible" msgid "input and output shapes are not compatible"
msgstr "shū rù hé shū chū xíng zhuàng bù jiān róng" msgstr "shū rù hé shū chū xíng zhuàng bù jiān róng"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input argument must be an integer, a tuple, or a list" msgid "input argument must be an integer, a tuple, or a list"
msgstr "shū rù cān shù bì xū shì zhěng shù, yuán zǔ huò liè biǎo" msgstr "shū rù cān shù bì xū shì zhěng shù, yuán zǔ huò liè biǎo"
@ -3405,7 +3494,7 @@ msgstr "shū rù cān shù bì xū shì zhěng shù, yuán zǔ huò liè biǎo"
msgid "input array length must be power of 2" msgid "input array length must be power of 2"
msgstr "shūrù shùzǔ de chángdù bìxū shì 2 de mì" msgstr "shūrù shùzǔ de chángdù bìxū shì 2 de mì"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input arrays are not compatible" msgid "input arrays are not compatible"
msgstr "shū rù shù zǔ bù jiān róng" msgstr "shū rù shù zǔ bù jiān róng"
@ -3413,6 +3502,10 @@ msgstr "shū rù shù zǔ bù jiān róng"
msgid "input data must be an iterable" msgid "input data must be an iterable"
msgstr "shūrù shùjù bìxū shì kě diédài de" msgstr "shūrù shùjù bìxū shì kě diédài de"
#: extmod/ulab/code/numpy/vector.c
msgid "input dtype must be float or complex"
msgstr "shū rù dtype bì xū shì fú diǎn xíng huò fù shù"
#: extmod/ulab/code/numpy/linalg/linalg.c #: extmod/ulab/code/numpy/linalg/linalg.c
msgid "input matrix is asymmetric" msgid "input matrix is asymmetric"
msgstr "shūrù jǔzhèn bù duìchèn" msgstr "shūrù jǔzhèn bù duìchèn"
@ -3422,18 +3515,26 @@ msgstr "shūrù jǔzhèn bù duìchèn"
msgid "input matrix is singular" msgid "input matrix is singular"
msgstr "shūrù jǔzhèn shì qíyì de" msgstr "shūrù jǔzhèn shì qíyì de"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be a 1D ndarray"
msgstr "shū rù bì xū shì 1D ndarray"
#: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c #: extmod/ulab/code/scipy/linalg/linalg.c extmod/ulab/code/user/user.c
msgid "input must be a dense ndarray" msgid "input must be a dense ndarray"
msgstr "shū rù bì xū shì mì jí de ndarray" msgstr "shū rù bì xū shì mì jí de ndarray"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "input must be a tensor of rank 2" msgid "input must be a tensor of rank 2"
msgstr "shū rù bì xū shì děng jí 2 de zhāng liàng" msgstr "shū rù bì xū shì děng jí 2 de zhāng liàng"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/user/user.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/user/user.c
msgid "input must be an ndarray" msgid "input must be an ndarray"
msgstr "shū rù bì xū shì ndarray" msgstr "shū rù bì xū shì ndarray"
#: extmod/ulab/code/numpy/carray/carray.c
msgid "input must be an ndarray, or a scalar"
msgstr "shū rù bì xū shì ndarray huò biāo liàng"
#: extmod/ulab/code/scipy/signal/signal.c #: extmod/ulab/code/scipy/signal/signal.c
msgid "input must be one-dimensional" msgid "input must be one-dimensional"
msgstr "shū rù bì xū shì yì wéi de" msgstr "shū rù bì xū shì yì wéi de"
@ -3612,6 +3713,11 @@ msgstr "shùxué yù cuòwù"
msgid "matrix is not positive definite" msgid "matrix is not positive definite"
msgstr "jǔzhèn bùshì zhèngdìng de" msgstr "jǔzhèn bùshì zhèngdìng de"
#: ports/espressif/common-hal/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""
#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c #: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c #: ports/nrf/common-hal/_bleio/Descriptor.c
#, c-format #, c-format
@ -3765,6 +3871,7 @@ msgstr "méiyǒu cǐ shǔxìng"
msgid "non-Device in %q" msgid "non-Device in %q"
msgstr "fēi shè bèi zài %q" msgstr "fēi shè bèi zài %q"
#: ports/espressif/common-hal/_bleio/Connection.c
#: ports/nrf/common-hal/_bleio/Connection.c #: ports/nrf/common-hal/_bleio/Connection.c
msgid "non-UUID found in service_uuids_whitelist" msgid "non-UUID found in service_uuids_whitelist"
msgstr "Zài service_uuids bái míngdān zhōng zhǎodào fēi UUID" msgstr "Zài service_uuids bái míngdān zhōng zhǎodào fēi UUID"
@ -3805,7 +3912,11 @@ msgstr "bùshì zì chuàn géshì huà guòchéng zhōng zhuǎnhuàn de suǒyǒ
msgid "not enough arguments for format string" msgid "not enough arguments for format string"
msgstr "géshì zìfú chuàn cān shǔ bùzú" msgstr "géshì zìfú chuàn cān shǔ bùzú"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/carray/carray_tools.c
msgid "not implemented for complex dtype"
msgstr "wèi zhēn duì fù zá de dtype shí xiàn"
#: extmod/ulab/code/numpy/create.c
msgid "number of points must be at least 2" msgid "number of points must be at least 2"
msgstr "diǎnshù bìxū zhìshǎo wèi 2" msgstr "diǎnshù bìxū zhìshǎo wèi 2"
@ -3863,7 +3974,7 @@ msgstr "xūyào huǎnchōng qū xiéyì de duìxiàng"
msgid "odd-length string" msgid "odd-length string"
msgstr "jīshù zìfú chuàn" msgstr "jīshù zìfú chuàn"
#: extmod/ulab/code/ulab_create.c extmod/ulab/code/utils/utils.c #: extmod/ulab/code/numpy/create.c extmod/ulab/code/utils/utils.c
msgid "offset is too large" msgid "offset is too large"
msgstr "piān yí tài dà" msgstr "piān yí tài dà"
@ -3871,7 +3982,7 @@ msgstr "piān yí tài dà"
msgid "offset must be >= 0" msgid "offset must be >= 0"
msgstr "piān yí liàng bì xū >= 0" msgstr "piān yí liàng bì xū >= 0"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "offset must be non-negative and no greater than buffer length" msgid "offset must be non-negative and no greater than buffer length"
msgstr "piān yí liàng bì xū wéi fēi fù shù qiě bù dà yú huǎn chōng qū cháng dù" msgstr "piān yí liàng bì xū wéi fēi fù shù qiě bù dà yú huǎn chōng qū cháng dù"
@ -3983,6 +4094,10 @@ msgstr "xiàngsù zhí xūyào tài duō wèi"
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
msgstr "pixel_shader bìxū shì displayio.Palette huò displayio.ColorConverter" msgstr "pixel_shader bìxū shì displayio.Palette huò displayio.ColorConverter"
#: extmod/vfs_posix_file.c
msgid "poll on file not available on win32"
msgstr ""
#: shared-module/vectorio/Polygon.c #: shared-module/vectorio/Polygon.c
msgid "polygon can only be registered in one parent" msgid "polygon can only be registered in one parent"
msgstr "duōbiānxíng zhī néng zài yīgè fù jí zhōng zhùcè" msgstr "duōbiānxíng zhī néng zài yīgè fù jí zhōng zhùcè"
@ -4012,18 +4127,27 @@ msgstr "pow() 3 cān shǔ bùnéng wéi 0"
msgid "pow() with 3 arguments requires integers" msgid "pow() with 3 arguments requires integers"
msgstr "pow() yǒu 3 cānshù xūyào zhěngshù" msgstr "pow() yǒu 3 cānshù xūyào zhěngshù"
#: ports/espressif/boards/adafruit_esp32s2_camera/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tft/mpconfigboard.h
#: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h #: ports/espressif/boards/adafruit_feather_esp32s2_tftback_nopsram/mpconfigboard.h
#: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h #: ports/espressif/boards/adafruit_funhouse/mpconfigboard.h
#: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h #: ports/espressif/boards/adafruit_magtag_2.9_grayscale/mpconfigboard.h
#: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h #: ports/espressif/boards/adafruit_metro_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s2/mpconfigboard.h
#: ports/espressif/boards/adafruit_qtpy_esp32s3_nopsram/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp32-c3s/mpconfigboard.h
#: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h #: ports/espressif/boards/ai_thinker_esp_12k_nodemcu/mpconfigboard.h
#: ports/espressif/boards/artisense_rd00/mpconfigboard.h #: ports/espressif/boards/artisense_rd00/mpconfigboard.h
#: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h #: ports/espressif/boards/atmegazero_esp32s2/mpconfigboard.h
#: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h #: ports/espressif/boards/crumpspace_crumps2/mpconfigboard.h
#: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h #: ports/espressif/boards/electroniccats_bastwifi/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32c3_devkitm_1_n4/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s2_devkitc_1_n4r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_box/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r2/mpconfigboard.h
#: ports/espressif/boards/espressif_esp32s3_devkitc_1_n8r8/mpconfigboard.h
#: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h #: ports/espressif/boards/espressif_hmi_devkit_1/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1.3/mpconfigboard.h
#: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h #: ports/espressif/boards/espressif_kaluga_1/mpconfigboard.h
@ -4049,7 +4173,10 @@ msgstr "pow() yǒu 3 cānshù xūyào zhěngshù"
#: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_neo/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_feathers2_prerelease/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_feathers3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_pros3/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h #: ports/espressif/boards/unexpectedmaker_tinys2/mpconfigboard.h
#: ports/espressif/boards/unexpectedmaker_tinys3/mpconfigboard.h
msgid "pressing boot button at start up.\n" msgid "pressing boot button at start up.\n"
msgstr "Zài qǐdòng shí àn qǐdòng ànniǔ.\n" msgstr "Zài qǐdòng shí àn qǐdòng ànniǔ.\n"
@ -4238,7 +4365,7 @@ msgstr "yuán wèi tú (source_bitmap) de zhí de shù mù (value_count) bì xū
#: shared-bindings/wifi/Radio.c #: shared-bindings/wifi/Radio.c
msgid "ssid can't be more than 32 bytes" msgid "ssid can't be more than 32 bytes"
msgstr "" msgstr "ssid bù néng chāo guò 32 gè zì jié"
#: py/objstr.c #: py/objstr.c
msgid "start/end indices" msgid "start/end indices"
@ -4351,7 +4478,7 @@ msgstr "tobytes zhǐ néng duì mì jí shù zǔ diào yòng"
msgid "too many arguments provided with the given format" msgid "too many arguments provided with the given format"
msgstr "tígōng jǐ dìng géshì de cānshù tài duō" msgstr "tígōng jǐ dìng géshì de cānshù tài duō"
#: extmod/ulab/code/ndarray.c extmod/ulab/code/ulab_create.c #: extmod/ulab/code/ndarray.c extmod/ulab/code/numpy/create.c
msgid "too many dimensions" msgid "too many dimensions"
msgstr "chǐ cùn tài duō" msgstr "chǐ cùn tài duō"
@ -4535,7 +4662,7 @@ msgstr "kān mén gǒu chāoshí bìxū dàyú 0"
msgid "width must be from 2 to 8 (inclusive), not %d" msgid "width must be from 2 to 8 (inclusive), not %d"
msgstr "kuān dù bì xū cóng 2 dào 8 ( hán ), ér bù shì %d" msgstr "kuān dù bì xū cóng 2 dào 8 ( hán ), ér bù shì %d"
#: shared-bindings/is31fl3741/is31fl3741.c #: shared-bindings/is31fl3741/FrameBuffer.c
#: shared-bindings/rgbmatrix/RGBMatrix.c #: shared-bindings/rgbmatrix/RGBMatrix.c
msgid "width must be greater than zero" msgid "width must be greater than zero"
msgstr "kuāndù bìxū dàyú líng" msgstr "kuāndù bìxū dàyú líng"
@ -4552,7 +4679,7 @@ msgstr "Chuāngkǒu bìxū shì <= jiàngé"
msgid "wrong axis index" msgid "wrong axis index"
msgstr "cuò wù de zhóu suǒ yǐn" msgstr "cuò wù de zhóu suǒ yǐn"
#: extmod/ulab/code/ulab_create.c #: extmod/ulab/code/numpy/create.c
msgid "wrong axis specified" msgid "wrong axis specified"
msgstr "zhǐ dìng de zhóu cuò wù" msgstr "zhǐ dìng de zhóu cuò wù"
@ -4560,7 +4687,11 @@ msgstr "zhǐ dìng de zhóu cuò wù"
msgid "wrong input type" msgid "wrong input type"
msgstr "shūrù lèixíng cuòwù" msgstr "shūrù lèixíng cuòwù"
#: extmod/ulab/code/ulab_create.c py/objarray.c py/objstr.c #: extmod/ulab/code/numpy/transform.c
msgid "wrong length of condition array"
msgstr "tiáo jiàn shù zǔ de cháng dù cuò wù"
#: extmod/ulab/code/numpy/create.c py/objarray.c py/objstr.c
msgid "wrong number of arguments" msgid "wrong number of arguments"
msgstr "cānshù shù cuòwù" msgstr "cānshù shù cuòwù"
@ -4604,6 +4735,16 @@ msgstr "zi bìxū wèi fú diǎn xíng"
msgid "zi must be of shape (n_section, 2)" msgid "zi must be of shape (n_section, 2)"
msgstr "zi bìxū jùyǒu xíngzhuàng (n_section,2)" msgstr "zi bìxū jùyǒu xíngzhuàng (n_section,2)"
#~ msgid "cannot perform relative import"
#~ msgstr "wúfǎ zhíxíng xiāngguān dǎorù"
#, c-format
#~ msgid "No I2C device at address: %x"
#~ msgstr "dì zhǐ wú I2C shè bèi: %x"
#~ msgid "Unsupported pull value."
#~ msgstr "Bù zhīchí de lādòng zhí."
#~ msgid "%q must <= %d" #~ msgid "%q must <= %d"
#~ msgstr "%q bì xū <= %d" #~ msgstr "%q bì xū <= %d"

83
main.c
View File

@ -56,6 +56,7 @@
#include "supervisor/shared/safe_mode.h" #include "supervisor/shared/safe_mode.h"
#include "supervisor/shared/stack.h" #include "supervisor/shared/stack.h"
#include "supervisor/shared/status_leds.h" #include "supervisor/shared/status_leds.h"
#include "supervisor/shared/tick.h"
#include "supervisor/shared/traceback.h" #include "supervisor/shared/traceback.h"
#include "supervisor/shared/translate.h" #include "supervisor/shared/translate.h"
#include "supervisor/shared/workflow.h" #include "supervisor/shared/workflow.h"
@ -122,7 +123,7 @@ static void reset_devices(void) {
#endif #endif
} }
STATIC void start_mp(supervisor_allocation *heap) { STATIC void start_mp(supervisor_allocation *heap, bool first_run) {
autoreload_stop(); autoreload_stop();
supervisor_workflow_reset(); supervisor_workflow_reset();
@ -161,16 +162,17 @@ STATIC void start_mp(supervisor_allocation *heap) {
mp_obj_list_init((mp_obj_list_t *)mp_sys_path, 0); mp_obj_list_init((mp_obj_list_t *)mp_sys_path, 0);
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script) mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script)
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_)); mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_));
// Frozen modules are in their own pseudo-dir, e.g., ".frozen". #if MICROPY_MODULE_FROZEN
// Prioritize .frozen over /lib. mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__dot_frozen));
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_FROZEN_FAKE_DIR_QSTR)); #endif
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib)); mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib));
mp_obj_list_init((mp_obj_list_t *)mp_sys_argv, 0); mp_obj_list_init((mp_obj_list_t *)mp_sys_argv, 0);
#if CIRCUITPY_ALARM #if CIRCUITPY_ALARM
// Record which alarm woke us up, if any. An object may be created so the heap must be functional. // Record which alarm woke us up, if any. An object may be created so the heap must be functional.
shared_alarm_save_wake_alarm(common_hal_alarm_create_wake_alarm()); // There is no alarm if this is not the first time code.py or the REPL has been run.
shared_alarm_save_wake_alarm(first_run ? common_hal_alarm_create_wake_alarm() : mp_const_none);
// Reset alarm module only after we retrieved the wakeup alarm. // Reset alarm module only after we retrieved the wakeup alarm.
alarm_reset(); alarm_reset();
#endif #endif
@ -288,10 +290,10 @@ STATIC void cleanup_after_vm(supervisor_allocation *heap, mp_obj_t exception) {
keypad_reset(); keypad_reset();
#endif #endif
// reset_board_busses() first because it may release pins from the never_reset state, so that // reset_board_buses() first because it may release pins from the never_reset state, so that
// reset_port() can reset them. // reset_port() can reset them.
#if CIRCUITPY_BOARD #if CIRCUITPY_BOARD
reset_board_busses(); reset_board_buses();
#endif #endif
reset_port(); reset_port();
reset_board(); reset_board();
@ -299,7 +301,8 @@ STATIC void cleanup_after_vm(supervisor_allocation *heap, mp_obj_t exception) {
STATIC void print_code_py_status_message(safe_mode_t safe_mode) { STATIC void print_code_py_status_message(safe_mode_t safe_mode) {
if (autoreload_is_enabled()) { if (autoreload_is_enabled()) {
serial_write_compressed(translate("Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.\n")); serial_write_compressed(
translate("Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.\n"));
} else { } else {
serial_write_compressed(translate("Auto-reload is off.\n")); serial_write_compressed(translate("Auto-reload is off.\n"));
} }
@ -308,7 +311,7 @@ STATIC void print_code_py_status_message(safe_mode_t safe_mode) {
} }
} }
STATIC bool run_code_py(safe_mode_t safe_mode) { STATIC bool run_code_py(safe_mode_t safe_mode, bool first_run, bool *simulate_reset) {
bool serial_connected_at_start = serial_connected(); bool serial_connected_at_start = serial_connected();
bool printed_safe_mode_message = false; bool printed_safe_mode_message = false;
#if CIRCUITPY_AUTORELOAD_DELAY_MS > 0 #if CIRCUITPY_AUTORELOAD_DELAY_MS > 0
@ -347,7 +350,7 @@ STATIC bool run_code_py(safe_mode_t safe_mode) {
supervisor_allocation *heap = allocate_remaining_memory(); supervisor_allocation *heap = allocate_remaining_memory();
// Prepare the VM state. Includes an alarm check/reset for sleep. // Prepare the VM state. Includes an alarm check/reset for sleep.
start_mp(heap); start_mp(heap, first_run);
#if CIRCUITPY_USB #if CIRCUITPY_USB
usb_setup_with_vm(); usb_setup_with_vm();
@ -399,7 +402,8 @@ STATIC bool run_code_py(safe_mode_t safe_mode) {
// the options because it can be treated like any other reason-for-stickiness bit. The // the options because it can be treated like any other reason-for-stickiness bit. The
// source is different though: it comes from the options that will apply to the next run, // source is different though: it comes from the options that will apply to the next run,
// while the rest of next_code_options is what applied to this run. // while the rest of next_code_options is what applied to this run.
if (next_code_allocation != NULL && (((next_code_info_t *)next_code_allocation->ptr)->options & SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET)) { if (next_code_allocation != NULL &&
(((next_code_info_t *)next_code_allocation->ptr)->options & SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET)) {
next_code_options |= SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET; next_code_options |= SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET;
} }
@ -525,9 +529,9 @@ STATIC bool run_code_py(safe_mode_t safe_mode) {
// Sleep until our next interrupt. // Sleep until our next interrupt.
#if CIRCUITPY_ALARM #if CIRCUITPY_ALARM
if (result.return_code & PYEXEC_DEEP_SLEEP) { if (result.return_code & PYEXEC_DEEP_SLEEP) {
// Make sure we have been awake long enough for USB to connect (enumeration delay). const bool awoke_from_true_deep_sleep =
int64_t connecting_delay_ticks = CIRCUITPY_USB_CONNECTED_SLEEP_DELAY * 1024 - port_get_raw_ticks(NULL); common_hal_mcu_processor_get_reset_reason() == RESET_REASON_DEEP_SLEEP_ALARM;
// Until it's safe to decide whether we're real/fake sleeping
if (fake_sleeping) { if (fake_sleeping) {
// This waits until a pretend deep sleep alarm occurs. They are set // This waits until a pretend deep sleep alarm occurs. They are set
// during common_hal_alarm_set_deep_sleep_alarms. On some platforms // during common_hal_alarm_set_deep_sleep_alarms. On some platforms
@ -535,18 +539,28 @@ STATIC bool run_code_py(safe_mode_t safe_mode) {
// for deep sleep alarms above. If it wasn't a deep sleep alarm, // for deep sleep alarms above. If it wasn't a deep sleep alarm,
// then we'll idle here again. // then we'll idle here again.
common_hal_alarm_pretending_deep_sleep(); common_hal_alarm_pretending_deep_sleep();
} else if (connecting_delay_ticks < 0) { }
// Entering deep sleep (may be fake or real.) // The first time we go into a deep sleep, make sure we have been awake long enough
// for USB to connect (enumeration delay), or for the BLE workflow to start.
// We wait CIRCUITPY_WORKFLOW_CONNECTION_SLEEP_DELAY seconds after a restart.
// But if we woke up from a real deep sleep, don't wait for connection. The user will need to
// do a hard reset to get out of the real deep sleep.
else if (awoke_from_true_deep_sleep ||
port_get_raw_ticks(NULL) > CIRCUITPY_WORKFLOW_CONNECTION_SLEEP_DELAY * 1024) {
// OK to start sleeping, real or fake.
status_led_deinit(); status_led_deinit();
deinit_rxtx_leds(); deinit_rxtx_leds();
board_deinit(); board_deinit();
if (!supervisor_workflow_active()) {
// Continue with true deep sleep even if workflow is available.
if (awoke_from_true_deep_sleep || !supervisor_workflow_active()) {
// Enter true deep sleep. When we wake up we'll be back at the // Enter true deep sleep. When we wake up we'll be back at the
// top of main(), not in this loop. // top of main(), not in this loop.
common_hal_alarm_enter_deep_sleep(); common_hal_alarm_enter_deep_sleep();
// Does not return. // Does not return.
} else { } else {
serial_write_compressed(translate("Pretending to deep sleep until alarm, CTRL-C or file write.\n")); serial_write_compressed(
translate("Pretending to deep sleep until alarm, CTRL-C or file write.\n"));
fake_sleeping = true; fake_sleeping = true;
} }
} else { } else {
@ -630,6 +644,8 @@ STATIC bool run_code_py(safe_mode_t safe_mode) {
#if CIRCUITPY_ALARM #if CIRCUITPY_ALARM
if (fake_sleeping) { if (fake_sleeping) {
board_init(); board_init();
// Pretend that the next run is the first run, as if we were reset.
*simulate_reset = true;
} }
#endif #endif
@ -651,7 +667,9 @@ STATIC void __attribute__ ((noinline)) run_boot_py(safe_mode_t safe_mode) {
// Do USB setup even if boot.py is not run. // Do USB setup even if boot.py is not run.
supervisor_allocation *heap = allocate_remaining_memory(); supervisor_allocation *heap = allocate_remaining_memory();
start_mp(heap);
// true means this is the first set of VM's after a hard reset.
start_mp(heap, true);
#if CIRCUITPY_USB #if CIRCUITPY_USB
// Set up default USB values after boot.py VM starts but before running boot.py. // Set up default USB values after boot.py VM starts but before running boot.py.
@ -728,12 +746,12 @@ STATIC void __attribute__ ((noinline)) run_boot_py(safe_mode_t safe_mode) {
#endif #endif
} }
STATIC int run_repl(void) { STATIC int run_repl(bool first_run) {
int exit_code = PYEXEC_FORCED_EXIT; int exit_code = PYEXEC_FORCED_EXIT;
stack_resize(); stack_resize();
filesystem_flush(); filesystem_flush();
supervisor_allocation *heap = allocate_remaining_memory(); supervisor_allocation *heap = allocate_remaining_memory();
start_mp(heap); start_mp(heap, first_run);
#if CIRCUITPY_USB #if CIRCUITPY_USB
usb_setup_with_vm(); usb_setup_with_vm();
@ -805,7 +823,12 @@ int __attribute__((used)) main(void) {
// Create a new filesystem only if we're not in a safe mode. // Create a new filesystem only if we're not in a safe mode.
// A power brownout here could make it appear as if there's // A power brownout here could make it appear as if there's
// no SPI flash filesystem, and we might erase the existing one. // no SPI flash filesystem, and we might erase the existing one.
filesystem_init(safe_mode == NO_SAFE_MODE, false);
// Check whether CIRCUITPY is available. No need to reset to get safe mode
// since we haven't run user code yet.
if (!filesystem_init(safe_mode == NO_SAFE_MODE, false)) {
safe_mode = NO_CIRCUITPY;
}
// displays init after filesystem, since they could share the flash SPI // displays init after filesystem, since they could share the flash SPI
board_init(); board_init();
@ -827,7 +850,7 @@ int __attribute__((used)) main(void) {
// By default our internal flash is readonly to local python code and // By default our internal flash is readonly to local python code and
// writable over USB. Set it here so that boot.py can change it. // writable over USB. Set it here so that boot.py can change it.
filesystem_set_internal_concurrent_write_protection(true); filesystem_set_internal_concurrent_write_protection(true);
filesystem_set_internal_writable_by_usb(true); filesystem_set_internal_writable_by_usb(CIRCUITPY_USB == 1);
run_boot_py(safe_mode); run_boot_py(safe_mode);
@ -846,28 +869,34 @@ int __attribute__((used)) main(void) {
supervisor_start_bluetooth(); supervisor_start_bluetooth();
#endif #endif
// Boot script is finished, so now go into REPL/main mode. // Boot script is finished, so now go into REPL or run code.py.
int exit_code = PYEXEC_FORCED_EXIT; int exit_code = PYEXEC_FORCED_EXIT;
bool skip_repl = true; bool skip_repl = true;
bool first_run = true; bool first_run = true;
bool simulate_reset;
for (;;) { for (;;) {
simulate_reset = false;
if (!skip_repl) { if (!skip_repl) {
exit_code = run_repl(); exit_code = run_repl(first_run);
supervisor_set_run_reason(RUN_REASON_REPL_RELOAD); supervisor_set_run_reason(RUN_REASON_REPL_RELOAD);
} }
if (exit_code == PYEXEC_FORCED_EXIT) { if (exit_code == PYEXEC_FORCED_EXIT) {
if (!first_run) { if (!first_run) {
serial_write_compressed(translate("soft reboot\n")); serial_write_compressed(translate("soft reboot\n"));
} }
first_run = false;
if (pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL) { if (pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL) {
skip_repl = run_code_py(safe_mode); skip_repl = run_code_py(safe_mode, first_run, &simulate_reset);
} else { } else {
skip_repl = false; skip_repl = false;
} }
} else if (exit_code != 0) { } else if (exit_code != 0) {
break; break;
} }
// Either the REPL or code.py has run and finished.
// If code.py did a fake deep sleep, pretend that we are running code.py for
// the first time after a hard reset. This will preserve any alarm information.
first_run = simulate_reset;
} }
mp_deinit(); mp_deinit();
return 0; return 0;

View File

@ -23,10 +23,7 @@ by the target MicroPython runtime (eg onto a pyboard's filesystem), and then
imported like any other Python module using `import foo`. imported like any other Python module using `import foo`.
Different target runtimes may require a different format of the compiled Different target runtimes may require a different format of the compiled
bytecode, and such options can be passed to the cross compiler. For example, bytecode, and such options can be passed to the cross compiler.
the unix port of MicroPython requires the following:
$ ./mpy-cross -mcache-lookup-bc foo.py
If the Python code contains `@native` or `@viper` annotations, then you must If the Python code contains `@native` or `@viper` annotations, then you must
specify `-march` to match the target architecture. specify `-march` to match the target architecture.

View File

@ -87,7 +87,6 @@ STATIC int usage(char **argv) {
"Target specific options:\n" "Target specific options:\n"
"-msmall-int-bits=number : set the maximum bits used to encode a small-int\n" "-msmall-int-bits=number : set the maximum bits used to encode a small-int\n"
"-mno-unicode : don't support unicode in compiled strings\n" "-mno-unicode : don't support unicode in compiled strings\n"
"-mcache-lookup-bc : cache map lookups in the bytecode\n"
"-march=<arch> : set architecture for native emitter; x86, x64, armv6, armv7m, armv7em, armv7emsp, armv7emdp, xtensa, xtensawin\n" "-march=<arch> : set architecture for native emitter; x86, x64, armv6, armv7m, armv7em, armv7emsp, armv7emdp, xtensa, xtensawin\n"
"\n" "\n"
"Implementation specific options:\n", argv[0] "Implementation specific options:\n", argv[0]
@ -172,8 +171,6 @@ MP_NOINLINE int main_(int argc, char **argv) {
#ifdef _WIN32 #ifdef _WIN32
set_fmode_binary(); set_fmode_binary();
#endif #endif
mp_obj_list_init(mp_sys_path, 0);
mp_obj_list_init(mp_sys_argv, 0);
#if MICROPY_EMIT_NATIVE #if MICROPY_EMIT_NATIVE
// Set default emitter options // Set default emitter options
@ -184,7 +181,6 @@ MP_NOINLINE int main_(int argc, char **argv) {
// set default compiler configuration // set default compiler configuration
mp_dynamic_compiler.small_int_bits = 31; mp_dynamic_compiler.small_int_bits = 31;
mp_dynamic_compiler.opt_cache_map_lookup_in_bytecode = 0;
mp_dynamic_compiler.py_builtins_str_unicode = 1; mp_dynamic_compiler.py_builtins_str_unicode = 1;
#if defined(__i386__) #if defined(__i386__)
mp_dynamic_compiler.native_arch = MP_NATIVE_ARCH_X86; mp_dynamic_compiler.native_arch = MP_NATIVE_ARCH_X86;
@ -243,10 +239,6 @@ MP_NOINLINE int main_(int argc, char **argv) {
return usage(argv); return usage(argv);
} }
// TODO check that small_int_bits is within range of host's capabilities // TODO check that small_int_bits is within range of host's capabilities
} else if (strcmp(argv[a], "-mno-cache-lookup-bc") == 0) {
mp_dynamic_compiler.opt_cache_map_lookup_in_bytecode = 0;
} else if (strcmp(argv[a], "-mcache-lookup-bc") == 0) {
mp_dynamic_compiler.opt_cache_map_lookup_in_bytecode = 1;
} else if (strcmp(argv[a], "-mno-unicode") == 0) { } else if (strcmp(argv[a], "-mno-unicode") == 0) {
mp_dynamic_compiler.py_builtins_str_unicode = 0; mp_dynamic_compiler.py_builtins_str_unicode = 0;
} else if (strcmp(argv[a], "-municode") == 0) { } else if (strcmp(argv[a], "-municode") == 0) {

View File

@ -36,8 +36,6 @@
#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (1) #define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (1)
#define MICROPY_COMP_RETURN_IF_EXPR (1) #define MICROPY_COMP_RETURN_IF_EXPR (1)
#define MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE (0)
#define MICROPY_READER_POSIX (1) #define MICROPY_READER_POSIX (1)
#define MICROPY_ENABLE_RUNTIME (0) #define MICROPY_ENABLE_RUNTIME (0)
#define MICROPY_ENABLE_GC (1) #define MICROPY_ENABLE_GC (1)

View File

@ -53,6 +53,7 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR_BATTERY), MP_ROM_PTR(&pin_PB01) }, { MP_ROM_QSTR(MP_QSTR_BATTERY), MP_ROM_PTR(&pin_PB01) },
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) }, { MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) },
{ MP_ROM_QSTR(MP_QSTR_STEMMA_I2C), MP_ROM_PTR(&board_i2c_obj) },
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) }, { MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) },
{ MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&board_uart_obj) }, { MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&board_uart_obj) },

View File

@ -9,5 +9,3 @@ CHIP_FAMILY = samd21
INTERNAL_FLASH_FILESYSTEM = 1 INTERNAL_FLASH_FILESYSTEM = 1
LONGINT_IMPL = NONE LONGINT_IMPL = NONE
CIRCUITPY_FULL_BUILD = 0 CIRCUITPY_FULL_BUILD = 0
CIRCUITPY_ONEWIREIO = 0

Some files were not shown because too many files have changed in this diff Show More