Merge branch 'main' into rp2040_countio
This commit is contained in:
commit
b935dcafdc
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -18,6 +18,7 @@
|
|||||||
*.deb binary
|
*.deb binary
|
||||||
*.zip binary
|
*.zip binary
|
||||||
*.pdf binary
|
*.pdf binary
|
||||||
|
*.wav binary
|
||||||
|
|
||||||
# These should also not be modified by git.
|
# These should also not be modified by git.
|
||||||
tests/basics/string_cr_conversion.py -text
|
tests/basics/string_cr_conversion.py -text
|
||||||
|
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -208,6 +208,7 @@ jobs:
|
|||||||
- "datum_imu"
|
- "datum_imu"
|
||||||
- "datum_light"
|
- "datum_light"
|
||||||
- "datum_weather"
|
- "datum_weather"
|
||||||
|
- "dynalora_usb"
|
||||||
- "dynossat_edu_eps"
|
- "dynossat_edu_eps"
|
||||||
- "dynossat_edu_obc"
|
- "dynossat_edu_obc"
|
||||||
- "electronut_labs_blip"
|
- "electronut_labs_blip"
|
||||||
@ -280,6 +281,9 @@ jobs:
|
|||||||
- "pewpew10"
|
- "pewpew10"
|
||||||
- "pewpew_m4"
|
- "pewpew_m4"
|
||||||
- "picoplanet"
|
- "picoplanet"
|
||||||
|
- "pimoroni_keybow2040"
|
||||||
|
- "pimoroni_picosystem"
|
||||||
|
- "pimoroni_tiny2040"
|
||||||
- "pirkey_m0"
|
- "pirkey_m0"
|
||||||
- "pitaya_go"
|
- "pitaya_go"
|
||||||
- "pyb_nano_v2"
|
- "pyb_nano_v2"
|
||||||
@ -295,6 +299,7 @@ jobs:
|
|||||||
- "pyruler"
|
- "pyruler"
|
||||||
- "qtpy_m0"
|
- "qtpy_m0"
|
||||||
- "qtpy_m0_haxpress"
|
- "qtpy_m0_haxpress"
|
||||||
|
- "qtpy_rp2040"
|
||||||
- "raspberry_pi_pico"
|
- "raspberry_pi_pico"
|
||||||
- "raytac_mdbt50q-db-40"
|
- "raytac_mdbt50q-db-40"
|
||||||
- "robohatmm1_m4"
|
- "robohatmm1_m4"
|
||||||
@ -304,6 +309,7 @@ jobs:
|
|||||||
- "seeeduino_xiao"
|
- "seeeduino_xiao"
|
||||||
- "serpente"
|
- "serpente"
|
||||||
- "shirtty"
|
- "shirtty"
|
||||||
|
- "silicognition-m4-shim"
|
||||||
- "simmel"
|
- "simmel"
|
||||||
- "snekboard"
|
- "snekboard"
|
||||||
- "sparkfun_lumidrive"
|
- "sparkfun_lumidrive"
|
||||||
@ -443,12 +449,14 @@ jobs:
|
|||||||
- "espressif_kaluga_1"
|
- "espressif_kaluga_1"
|
||||||
- "espressif_saola_1_wroom"
|
- "espressif_saola_1_wroom"
|
||||||
- "espressif_saola_1_wrover"
|
- "espressif_saola_1_wrover"
|
||||||
|
- "lilygo_ttgo_t8_s2_st7789"
|
||||||
- "microdev_micro_s2"
|
- "microdev_micro_s2"
|
||||||
- "muselab_nanoesp32_s2"
|
- "muselab_nanoesp32_s2"
|
||||||
- "targett_module_clip_wroom"
|
- "targett_module_clip_wroom"
|
||||||
- "targett_module_clip_wrover"
|
- "targett_module_clip_wrover"
|
||||||
- "unexpectedmaker_feathers2"
|
- "unexpectedmaker_feathers2"
|
||||||
- "unexpectedmaker_feathers2_prerelease"
|
- "unexpectedmaker_feathers2_prerelease"
|
||||||
|
- "unexpectedmaker_tinys2"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
|
9
Makefile
9
Makefile
@ -40,17 +40,18 @@ ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(BASEOPTS)
|
|||||||
# the i18n builder cannot share the environment and doctrees with the others
|
# the i18n builder cannot share the environment and doctrees with the others
|
||||||
I18NSPHINXOPTS = $(BASEOPTS)
|
I18NSPHINXOPTS = $(BASEOPTS)
|
||||||
|
|
||||||
TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/cxd56 ports/esp32s2 ports/mimxrt10xx ports/nrf ports/stm py shared-bindings shared-module supervisor
|
TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/cxd56 ports/esp32s2 ports/mimxrt10xx ports/nrf ports/raspberrypi ports/stm py shared-bindings shared-module supervisor
|
||||||
# Paths to exclude from TRANSLATE_SOURCES
|
# Paths to exclude from TRANSLATE_SOURCES
|
||||||
# Each must be preceded by "-path"; if any wildcards, enclose in quotes.
|
# Each must be preceded by "-path"; if any wildcards, enclose in quotes.
|
||||||
# Separate by "-o" (Find's "or" operand)
|
# Separate by "-o" (Find's "or" operand)
|
||||||
TRANSLATE_SOURCES_EXC = -path "ports/*/build-*" \
|
TRANSLATE_SOURCES_EXC = -path "ports/*/build-*" \
|
||||||
-o -path "ports/*/build" \
|
-o -path "ports/*/build" \
|
||||||
-o -path ports/esp32s2/esp-idf \
|
|
||||||
-o -path ports/cxd56/spresense-exported-sdk \
|
|
||||||
-o -path ports/stm/st_driver \
|
|
||||||
-o -path ports/atmel-samd/asf4 \
|
-o -path ports/atmel-samd/asf4 \
|
||||||
|
-o -path ports/cxd56/spresense-exported-sdk \
|
||||||
|
-o -path ports/esp32s2/esp-idf \
|
||||||
-o -path ports/mimxrt10xx/sdk \
|
-o -path ports/mimxrt10xx/sdk \
|
||||||
|
-o -path ports/raspberrypi/sdk \
|
||||||
|
-o -path ports/stm/st_driver \
|
||||||
-o -path lib/tinyusb \
|
-o -path lib/tinyusb \
|
||||||
-o -path lib/lwip \
|
-o -path lib/lwip \
|
||||||
|
|
||||||
|
94
WEBUSB_README.md
Normal file
94
WEBUSB_README.md
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
||||||
|
|
||||||
|
SPDX-License-Identifier: MIT
|
||||||
|
-->
|
||||||
|
|
||||||
|
# WebUSB Serial Support
|
||||||
|
|
||||||
|
To date, this has only been tested on one port (esp32s2), on one board (espressif_kaluga_1).
|
||||||
|
|
||||||
|
## What it does
|
||||||
|
|
||||||
|
If you have ever used CircuitPython on a platform with a graphical LCD display, you have probably
|
||||||
|
already seen multiple "consoles" in use (although the LCD console is "output only").
|
||||||
|
|
||||||
|
New compile-time option CIRCUITPY_USB_VENDOR enables an additional "console" that can be used in
|
||||||
|
parallel with the original (CDC) serial console.
|
||||||
|
|
||||||
|
Web pages that support the WebUSB standard can connect to the "vendor" interface and activate
|
||||||
|
this WebUSB serial console at any time.
|
||||||
|
|
||||||
|
You can type into either console, and CircuitPython output is sent to all active consoles.
|
||||||
|
|
||||||
|
One example of a web page you can use to test drive this feature can be found at:
|
||||||
|
|
||||||
|
https://adafruit.github.io/Adafruit_TinyUSB_Arduino/examples/webusb-serial/index.html
|
||||||
|
|
||||||
|
## How to enable
|
||||||
|
|
||||||
|
Update your platform's mpconfigboard.mk file to enable and disable specific types of USB interfaces.
|
||||||
|
|
||||||
|
CIRCUITPY_USB_HID = xxx
|
||||||
|
CIRCUITPY_USB_MIDI = xxx
|
||||||
|
CIRCUITPY_USB_VENDOR = xxx
|
||||||
|
|
||||||
|
On at least some of the hardware platforms, the maximum number of USB endpoints is fixed.
|
||||||
|
For example, on the ESP32S2, you must pick only one of the above 3 interfaces to be enabled.
|
||||||
|
|
||||||
|
Original espressif_kaluga_1 mpconfigboard.mk settings:
|
||||||
|
|
||||||
|
CIRCUITPY_USB_HID = 1
|
||||||
|
CIRCUITPY_USB_MIDI = 0
|
||||||
|
CIRCUITPY_USB_VENDOR = 0
|
||||||
|
|
||||||
|
Settings to enable WebUSB instead:
|
||||||
|
|
||||||
|
CIRCUITPY_USB_HID = 0
|
||||||
|
CIRCUITPY_USB_MIDI = 0
|
||||||
|
CIRCUITPY_USB_VENDOR = 1
|
||||||
|
|
||||||
|
Notice that to enable VENDOR on ESP32-S2, we had to give up HID. There may be platforms that can have both, or even all three.
|
||||||
|
|
||||||
|
## Implementation Notes
|
||||||
|
|
||||||
|
CircuitPython uses the tinyusb library.
|
||||||
|
|
||||||
|
The tinyusb library already has support for WebUSB serial.
|
||||||
|
The tinyusb examples already include a "WebUSB serial" example.
|
||||||
|
|
||||||
|
Sidenote - The use of the term "vendor" instead of "WebUSB" was done to match tinyusb.
|
||||||
|
|
||||||
|
Basically, this feature was ported into CircuitPython by pulling code snippets out of the
|
||||||
|
tinyusb example, and putting them where they best belonged in the CircuitPython codebase.
|
||||||
|
|
||||||
|
There was one complication:
|
||||||
|
|
||||||
|
tinyusb uses C preprocessor macros to define things like USB descriptors.
|
||||||
|
|
||||||
|
CircuitPython uses a Python program (tools/gen_usb_descriptor.py) to create USB descriptors (etc.)
|
||||||
|
using "helper objects" from another repo (adafruit_usb_descriptor). This means some of the example
|
||||||
|
code had to be adapted to the new programing model, and gen_usb_descriptor gained new command-line
|
||||||
|
options to control the generated code.
|
||||||
|
|
||||||
|
The generated files go into the "build" directory, look for autogen_usb_descriptor.c and
|
||||||
|
genhdr/autogen_usb_descriptor.h.
|
||||||
|
|
||||||
|
|
||||||
|
Also worth pointing out - the re-use of the CDC connect/disconnect mechanism is not actually part
|
||||||
|
of the WebUSB standard, it's more of "common idiom". We make use of it here because we need to know
|
||||||
|
when we should be paying attention to the WebUSB serial interface, and when we should ignore it..
|
||||||
|
|
||||||
|
## Possible future work areas
|
||||||
|
|
||||||
|
The current code uses the existing Python infrastructure to create the Interface descriptor, but
|
||||||
|
simply outputs the code snippets from the original tinyusb demo code to create the WEBUSB_URL,
|
||||||
|
BOS, and MS_OS_20 descriptors. I suppose additional work could be done to add these to the
|
||||||
|
adafruit_usb_descriptor project, and then gen_usb_descriptor.py could be modified to make use
|
||||||
|
of them.
|
||||||
|
|
||||||
|
Program gen_usb_descriptor.py creates objects for most interface types, regardless of whether or
|
||||||
|
not they are actually enabled. This increases the size of a generated string table. I made the
|
||||||
|
new vendor-interface-related code not do this (because some of the ARM platforms would no longer
|
||||||
|
build), but I did not go back and do this for the other interface types (CDC, MIDI, HID, etc.)
|
||||||
|
Some FLASH savings are probably possible if this is done.
|
1
conf.py
1
conf.py
@ -178,6 +178,7 @@ exclude_patterns = ["**/build*",
|
|||||||
"ports/cxd56/spresense-exported-sdk",
|
"ports/cxd56/spresense-exported-sdk",
|
||||||
"ports/esp32s2/certificates",
|
"ports/esp32s2/certificates",
|
||||||
"ports/esp32s2/esp-idf",
|
"ports/esp32s2/esp-idf",
|
||||||
|
"ports/esp32s2/.idf_tools",
|
||||||
"ports/esp32s2/peripherals",
|
"ports/esp32s2/peripherals",
|
||||||
"ports/litex/hw",
|
"ports/litex/hw",
|
||||||
"ports/minimal",
|
"ports/minimal",
|
||||||
|
@ -165,6 +165,24 @@ use what.
|
|||||||
Here is more info on properties from
|
Here is more info on properties from
|
||||||
`Python <https://docs.python.org/3/library/functions.html#property>`_.
|
`Python <https://docs.python.org/3/library/functions.html#property>`_.
|
||||||
|
|
||||||
|
Exceptions and asserts
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Raise an appropriate `Exception <https://docs.python.org/3/library/exceptions.html#bltin-exceptions>`_,
|
||||||
|
along with a useful message, whenever a critical test or other condition fails.
|
||||||
|
|
||||||
|
Example::
|
||||||
|
|
||||||
|
if not 0 <= pin <= 7:
|
||||||
|
raise ValueError("Pin number must be 0-7.")
|
||||||
|
|
||||||
|
If memory is constrained and a more compact method is needed, use `assert`
|
||||||
|
instead.
|
||||||
|
|
||||||
|
Example::
|
||||||
|
|
||||||
|
assert 0 <= pin <= 7, "Pin number must be 0-7."
|
||||||
|
|
||||||
Design for compatibility with CPython
|
Design for compatibility with CPython
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -46,6 +46,7 @@ Full Table of Contents
|
|||||||
../BUILDING
|
../BUILDING
|
||||||
../CODE_OF_CONDUCT
|
../CODE_OF_CONDUCT
|
||||||
../license.rst
|
../license.rst
|
||||||
|
../WEBUSB_README
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
==================
|
==================
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
/*************************** HEADER FILES ***************************/
|
/*************************** HEADER FILES ***************************/
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
#include "sha256.h"
|
#include "sha256.h"
|
||||||
|
|
||||||
/****************************** MACROS ******************************/
|
/****************************** MACROS ******************************/
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 743d86487c83e42024ed508ed50499ad0a527d5d
|
Subproject commit 2ecad9586d088ee66f1b208ff2204906eba9e987
|
@ -1 +1 @@
|
|||||||
Subproject commit 1e3312ab1cba0b1d3bb1f559c52acfdc1a6d57b8
|
Subproject commit 0cfa671b0c38386ba4da59119d61d399faa9b358
|
@ -1 +1 @@
|
|||||||
Subproject commit dd7cc167c528a94a9feed81f9c52b5d372f68258
|
Subproject commit 5fee6e0c3878110844bc51e16063eeae7d94c457
|
@ -1 +1 @@
|
|||||||
Subproject commit a14da2e1ced1010a0da65f758199ff08eedd0bd5
|
Subproject commit 88b8be84b5dce7660f58c02a63263f1d2ff0709f
|
239
locale/ID.po
239
locale/ID.po
@ -344,6 +344,10 @@ msgstr "Semua perangkat UART sedang digunakan"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Semua channel event sedang digunakan"
|
msgstr "Semua channel event sedang digunakan"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Semua channel event yang disinkronisasi sedang digunakan"
|
msgstr "Semua channel event yang disinkronisasi sedang digunakan"
|
||||||
@ -364,6 +368,7 @@ msgstr "Semua timer untuk pin ini sedang digunakan"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Semua timer sedang digunakan"
|
msgstr "Semua timer sedang digunakan"
|
||||||
@ -392,6 +397,7 @@ msgstr "AnalogIn tidak didukung pada pin yang diberikan"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "fungsionalitas AnalogOut tidak didukung"
|
msgstr "fungsionalitas AnalogOut tidak didukung"
|
||||||
|
|
||||||
@ -593,6 +599,7 @@ msgstr "Tidak dapat menghapus nilai"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Tidak bisa mendapatkan pull pada saat mode output"
|
msgstr "Tidak bisa mendapatkan pull pada saat mode output"
|
||||||
|
|
||||||
@ -636,6 +643,10 @@ msgstr ""
|
|||||||
"Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader yang "
|
"Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader yang "
|
||||||
"terisi"
|
"terisi"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Tidak dapat menetapkan nilai saat arah input."
|
msgstr "Tidak dapat menetapkan nilai saat arah input."
|
||||||
@ -878,11 +889,12 @@ msgstr "Channel EXTINT sedang digunakan"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Error pada regex"
|
msgstr "Error pada regex"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -936,7 +948,7 @@ msgstr "FFT didefinisikan hanya untuk ndarrays"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1064,6 +1076,10 @@ msgstr "operasi I/O pada file tertutup"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "Gagal Inisialisasi I2C"
|
msgstr "Gagal Inisialisasi I2C"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1089,10 +1105,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Ukuran penyangga salah"
|
msgstr "Ukuran penyangga salah"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1101,6 +1126,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Kesalahan input/output"
|
msgstr "Kesalahan input/output"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Otentikasi tidak cukup"
|
msgstr "Otentikasi tidak cukup"
|
||||||
@ -1152,7 +1202,7 @@ msgstr "Pin DAC yang diberikan tidak valid"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Frekuensi PWM tidak valid"
|
msgstr "Frekuensi PWM tidak valid"
|
||||||
|
|
||||||
@ -1246,6 +1296,8 @@ msgstr "Pin untuk channel kanan tidak valid"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Pin-pin tidak valid"
|
msgstr "Pin-pin tidak valid"
|
||||||
|
|
||||||
@ -1274,7 +1326,7 @@ msgstr "security_mode tidak valid"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1282,10 +1334,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "Suara tidak valid"
|
msgstr "Suara tidak valid"
|
||||||
@ -1302,10 +1350,6 @@ msgstr "File wave tidak valid"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Panjang kata/bit tidak valid"
|
msgstr "Panjang kata/bit tidak valid"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1367,6 +1411,36 @@ msgstr "Penundaan mulai mikrofon harus dalam kisaran 0,0 hingga 1,0"
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "Tidak menemukan Pin MISO atau MOSI"
|
msgstr "Tidak menemukan Pin MISO atau MOSI"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "Harus berupa subclass %q."
|
msgstr "Harus berupa subclass %q."
|
||||||
@ -1399,9 +1473,14 @@ msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "tidak ada channel DMA ditemukan"
|
msgstr "tidak ada channel DMA ditemukan"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1420,14 +1499,14 @@ msgstr "Tidak ada Pin MOSI"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Tidak pin RX"
|
msgstr "Tidak pin RX"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Tidak ada pin TX"
|
msgstr "Tidak ada pin TX"
|
||||||
|
|
||||||
@ -1484,6 +1563,16 @@ msgstr "Tidak ada lagi penghitung waktu yang tersedia pada pin ini."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Tidak ada pull-down pada pin; 1Mohm direkomendasikan"
|
msgstr "Tidak ada pull-down pada pin; 1Mohm direkomendasikan"
|
||||||
@ -1541,6 +1630,10 @@ msgstr "Parity ganjil tidak didukung"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Hanya 8 atau 16 bit mono dengan "
|
msgstr "Hanya 8 atau 16 bit mono dengan "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1594,10 +1687,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Sampel berlebihan harus kelipatan 8."
|
msgstr "Sampel berlebihan harus kelipatan 8."
|
||||||
@ -1619,6 +1717,7 @@ msgstr ""
|
|||||||
"konstruksi."
|
"konstruksi."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBus belum didukung"
|
msgstr "ParallelBus belum didukung"
|
||||||
@ -1631,11 +1730,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Izin ditolak"
|
msgstr "Izin ditolak"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 tidak mempunya kemampuan untuk ADC (Analog Digital Converter)"
|
msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)"
|
||||||
@ -1664,6 +1772,10 @@ msgstr ""
|
|||||||
"ideal. Jika ini tidak dapat dihindari, berikan allow_inefficient=True ke "
|
"ideal. Jika ini tidak dapat dihindari, berikan allow_inefficient=True ke "
|
||||||
"konstruktor"
|
"konstruktor"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Tambahkan module apapun pada filesystem\n"
|
msgstr "Tambahkan module apapun pada filesystem\n"
|
||||||
@ -1699,10 +1811,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Pull tidak digunakan saat arah output."
|
msgstr "Pull tidak digunakan saat arah output."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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"
|
||||||
@ -1711,6 +1847,10 @@ msgstr "Kesalahan DeInit RNG"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "Kesalahan Init RNG"
|
msgstr "Kesalahan Init RNG"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1718,6 +1858,7 @@ msgstr "Pembalikan RS485 ditentukan saat tidak dalam mode RS485"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "Kalibrasi RTC tidak didukung pada board ini"
|
msgstr "Kalibrasi RTC tidak didukung pada board ini"
|
||||||
|
|
||||||
@ -1726,7 +1867,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "RTC tidak didukung di board ini"
|
msgstr "RTC tidak didukung di board ini"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS/CTS/RS485 Belum didukung pada perangkat ini"
|
msgstr "RTS/CTS/RS485 Belum didukung pada perangkat ini"
|
||||||
|
|
||||||
@ -1784,11 +1925,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA atau SCL membutuhkan pull up"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1807,6 +1943,10 @@ msgstr "Kesalahan Init SPI"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "Kesalahan Inisialisasi ulang SPI"
|
msgstr "Kesalahan Inisialisasi ulang SPI"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Tingkat sampel harus positif"
|
msgstr "Tingkat sampel harus positif"
|
||||||
@ -1837,6 +1977,14 @@ msgstr "Serializer sedang digunakan"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1868,6 +2016,14 @@ msgstr "Memisahkan dengan menggunakan sub-captures"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Ukuran stack minimal harus 256"
|
msgstr "Ukuran stack minimal harus 256"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Aliran tidak menemukan metode readinto() atau write()."
|
msgstr "Aliran tidak menemukan metode readinto() atau write()."
|
||||||
@ -2009,6 +2165,10 @@ msgstr "Kesalahan Init UART"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "Kesalahan Re-init UART"
|
msgstr "Kesalahan Re-init UART"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "Kesalahan penulisan UART"
|
msgstr "Kesalahan penulisan UART"
|
||||||
@ -2035,6 +2195,7 @@ msgstr "Nilai UUID bukan str, int atau byte buffer"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion"
|
msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion"
|
||||||
|
|
||||||
@ -2072,7 +2233,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Tipe urf nrfx tak sesuai"
|
msgstr "Tipe urf nrfx tak sesuai"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2115,7 +2276,8 @@ msgstr ""
|
|||||||
"perangkat lain ditolak atau diabaikan."
|
"perangkat lain ditolak atau diabaikan."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Baudrate tidak didukung"
|
msgstr "Baudrate tidak didukung"
|
||||||
|
|
||||||
@ -2167,6 +2329,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "PERINGATAN: Nama file kode anda mempunyai dua ekstensi\n"
|
msgstr "PERINGATAN: Nama file kode anda mempunyai dua ekstensi\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2379,7 +2542,7 @@ msgstr ""
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3225,6 +3388,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "modul tidak ditemukan"
|
msgstr "modul tidak ditemukan"
|
||||||
@ -3540,6 +3707,10 @@ msgstr "Muncul dari PulseIn yang kosong"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3556,6 +3727,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3573,6 +3745,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "antrian meluap (overflow)"
|
msgstr "antrian meluap (overflow)"
|
||||||
@ -3776,6 +3956,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3987,6 +4168,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
@ -4059,6 +4245,9 @@ msgstr ""
|
|||||||
msgid "zi must be of shape (n_section, 2)"
|
msgid "zi must be of shape (n_section, 2)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA atau SCL membutuhkan pull up"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr "pin alamat %d dan pin rgb %d menunjukkan tinggi %d, bukan %d"
|
#~ msgstr "pin alamat %d dan pin rgb %d menunjukkan tinggi %d, bukan %d"
|
||||||
|
|
||||||
|
@ -363,6 +363,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -630,6 +631,10 @@ msgstr ""
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -866,7 +871,7 @@ msgstr ""
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -925,7 +930,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1088,6 +1093,11 @@ msgstr ""
|
|||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1296,7 +1306,7 @@ msgstr ""
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1304,10 +1314,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1324,10 +1330,6 @@ msgstr ""
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
msgid "Key must be 16, 24, or 32 bytes long"
|
msgid "Key must be 16, 24, or 32 bytes long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1451,9 +1453,14 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1540,6 +1547,12 @@ msgstr ""
|
|||||||
msgid "No out in program"
|
msgid "No out in program"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1648,10 +1661,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1671,6 +1689,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1726,6 +1745,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1785,6 +1808,10 @@ msgstr ""
|
|||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1793,6 +1820,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1800,6 +1831,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1808,7 +1840,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1865,12 +1897,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
#: ports/raspberrypi/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1962,6 +1988,14 @@ msgstr ""
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2125,6 +2159,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2162,7 +2197,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2255,6 +2290,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2460,7 +2496,7 @@ msgstr ""
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3306,6 +3342,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3620,6 +3660,10 @@ msgstr ""
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3636,6 +3680,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3864,6 +3909,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4074,6 +4120,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
|
236
locale/cs.po
236
locale/cs.po
@ -342,6 +342,10 @@ msgstr ""
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -362,6 +366,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -390,6 +395,7 @@ msgstr ""
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -589,6 +595,7 @@ msgstr ""
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -626,6 +633,10 @@ msgstr ""
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -862,11 +873,12 @@ msgstr ""
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -920,7 +932,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1048,6 +1060,10 @@ msgstr ""
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1071,10 +1087,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1083,6 +1108,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1134,7 +1184,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1228,6 +1278,8 @@ msgstr ""
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1256,7 +1308,7 @@ msgstr ""
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1264,10 +1316,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1284,10 +1332,6 @@ msgstr ""
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
msgid "Key must be 16, 24, or 32 bytes long"
|
msgid "Key must be 16, 24, or 32 bytes long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1349,6 +1393,36 @@ msgstr ""
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1381,9 +1455,14 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1402,14 +1481,14 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1466,6 +1545,16 @@ msgstr ""
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1521,6 +1610,10 @@ msgstr ""
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1570,10 +1663,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1593,6 +1691,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1605,11 +1704,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 ""
|
msgstr ""
|
||||||
@ -1635,6 +1743,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1670,10 +1782,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1682,6 +1818,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1689,6 +1829,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1697,7 +1838,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1754,11 +1895,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1777,6 +1913,10 @@ msgstr ""
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1807,6 +1947,14 @@ msgstr ""
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1838,6 +1986,14 @@ msgstr ""
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1971,6 +2127,10 @@ msgstr ""
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1997,6 +2157,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2034,7 +2195,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2075,7 +2236,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2126,6 +2288,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2331,7 +2494,7 @@ msgstr ""
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3177,6 +3340,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3491,6 +3658,10 @@ msgstr ""
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3507,6 +3678,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3524,6 +3696,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3727,6 +3907,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3937,6 +4118,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
|
297
locale/de_DE.po
297
locale/de_DE.po
@ -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-01-07 18:01+0000\n"
|
"PO-Revision-Date: 2021-02-05 15:41+0000\n"
|
||||||
"Last-Translator: Dennis Schweer <dennis.schweer@ruhr-uni-bochum.de>\n"
|
"Last-Translator: Jeff Epler <jepler@gmail.com>\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.4.1-dev\n"
|
"X-Generator: Weblate 4.5-dev\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -120,7 +120,8 @@ msgstr "%q sollte ein integer sein"
|
|||||||
|
|
||||||
#: 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"
|
||||||
msgstr "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben"
|
msgstr ""
|
||||||
|
"%q() nimmt %d Argumente ohne Schlüsselwort an, aber es wurden %d angegeben"
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
||||||
#, c-format
|
#, c-format
|
||||||
@ -235,7 +236,7 @@ msgstr "'await' außerhalb einer Funktion"
|
|||||||
|
|
||||||
#: py/compile.c
|
#: py/compile.c
|
||||||
msgid "'await', 'async for' or 'async with' outside async function"
|
msgid "'await', 'async for' or 'async with' outside async function"
|
||||||
msgstr ""
|
msgstr "'await', 'async for' oder 'async with' außerhalb einer async Funktion"
|
||||||
|
|
||||||
#: py/compile.c
|
#: py/compile.c
|
||||||
msgid "'break' outside loop"
|
msgid "'break' outside loop"
|
||||||
@ -267,7 +268,7 @@ msgstr "'return' außerhalb einer Funktion"
|
|||||||
|
|
||||||
#: py/compile.c
|
#: py/compile.c
|
||||||
msgid "'yield from' inside async function"
|
msgid "'yield from' inside async function"
|
||||||
msgstr ""
|
msgstr "'yield from' innerhalb einer async Funktion"
|
||||||
|
|
||||||
#: py/compile.c
|
#: py/compile.c
|
||||||
msgid "'yield' outside function"
|
msgid "'yield' outside function"
|
||||||
@ -313,7 +314,7 @@ msgstr "Adresstyp außerhalb des zulässigen Bereichs"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/canio/CAN.c
|
#: ports/esp32s2/common-hal/canio/CAN.c
|
||||||
msgid "All CAN peripherals are in use"
|
msgid "All CAN peripherals are in use"
|
||||||
msgstr ""
|
msgstr "Alle CAN Schnittstellen sind in Benutzung"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
msgid "All I2C peripherals are in use"
|
msgid "All I2C peripherals are in use"
|
||||||
@ -329,7 +330,7 @@ msgstr "Alle PCNT Einheiten sind in Benutzung"
|
|||||||
#: ports/esp32s2/common-hal/canio/Listener.c
|
#: ports/esp32s2/common-hal/canio/Listener.c
|
||||||
#: ports/stm/common-hal/canio/Listener.c
|
#: ports/stm/common-hal/canio/Listener.c
|
||||||
msgid "All RX FIFOs in use"
|
msgid "All RX FIFOs in use"
|
||||||
msgstr ""
|
msgstr "Alle RX FIFOs sind in Benutzung"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
|
#: ports/esp32s2/common-hal/busio/SPI.c ports/nrf/common-hal/busio/SPI.c
|
||||||
msgid "All SPI peripherals are in use"
|
msgid "All SPI peripherals are in use"
|
||||||
@ -343,6 +344,10 @@ msgstr "Alle UART-Peripheriegeräte sind in Benutzung"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Alle event Kanäle werden benutzt"
|
msgstr "Alle event Kanäle werden benutzt"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Alle sync event Kanäle werden benutzt"
|
msgstr "Alle sync event Kanäle werden benutzt"
|
||||||
@ -363,6 +368,7 @@ msgstr "Alle timer für diesen Pin werden bereits benutzt"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Alle timer werden benutzt"
|
msgstr "Alle timer werden benutzt"
|
||||||
@ -391,6 +397,7 @@ msgstr "AnalogIn ist an diesem Pin nicht unterstützt"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "AnalogOut-Funktion wird nicht unterstützt"
|
msgstr "AnalogOut-Funktion wird nicht unterstützt"
|
||||||
|
|
||||||
@ -536,7 +543,7 @@ msgstr "Puffer zu groß und kann nicht reserviert werden"
|
|||||||
#: shared-bindings/_bleio/PacketBuffer.c
|
#: shared-bindings/_bleio/PacketBuffer.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Buffer too short by %d bytes"
|
msgid "Buffer too short by %d bytes"
|
||||||
msgstr "Buffer um %d Bytes zu kurz"
|
msgstr "Puffer um %d Bytes zu kurz"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
|
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
||||||
@ -594,6 +601,7 @@ msgstr "Kann Werte nicht löschen"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Pull up im Ausgabemodus nicht möglich"
|
msgstr "Pull up im Ausgabemodus nicht möglich"
|
||||||
|
|
||||||
@ -632,6 +640,10 @@ msgstr "Kann '/' nicht remounten when USB aktiv ist."
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden."
|
msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Der Wert kann nicht gesetzt werden, wenn die Richtung input ist."
|
msgstr "Der Wert kann nicht gesetzt werden, wenn die Richtung input ist."
|
||||||
@ -685,7 +697,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: supervisor/shared/safe_mode.c
|
#: supervisor/shared/safe_mode.c
|
||||||
msgid "CircuitPython was unable to allocate the heap.\n"
|
msgid "CircuitPython was unable to allocate the heap.\n"
|
||||||
msgstr ""
|
msgstr "CircuitPython war es nicht möglich heap-Speicher zu allozieren.\n"
|
||||||
|
|
||||||
#: shared-module/bitbangio/SPI.c
|
#: shared-module/bitbangio/SPI.c
|
||||||
msgid "Clock pin init failed."
|
msgid "Clock pin init failed."
|
||||||
@ -763,7 +775,7 @@ msgstr "PWM konnte nicht neu gestartet werden"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/neopixel_write/__init__.c
|
#: ports/esp32s2/common-hal/neopixel_write/__init__.c
|
||||||
msgid "Could not retrieve clock"
|
msgid "Could not retrieve clock"
|
||||||
msgstr ""
|
msgstr "Clock konnte nicht ermittelt werden"
|
||||||
|
|
||||||
#: shared-bindings/_bleio/Adapter.c
|
#: shared-bindings/_bleio/Adapter.c
|
||||||
msgid "Could not set address"
|
msgid "Could not set address"
|
||||||
@ -801,7 +813,7 @@ msgstr "Absturz in den HardFault_Handler."
|
|||||||
|
|
||||||
#: ports/stm/common-hal/analogio/AnalogOut.c
|
#: ports/stm/common-hal/analogio/AnalogOut.c
|
||||||
msgid "DAC Channel Init Error"
|
msgid "DAC Channel Init Error"
|
||||||
msgstr "DAC Kanal Intialisierungs Fehler"
|
msgstr "DAC Kanal Initialisierungsfehler"
|
||||||
|
|
||||||
#: ports/stm/common-hal/analogio/AnalogOut.c
|
#: ports/stm/common-hal/analogio/AnalogOut.c
|
||||||
msgid "DAC Device Init Error"
|
msgid "DAC Device Init Error"
|
||||||
@ -874,11 +886,12 @@ msgstr "EXTINT Kanal ist schon in Benutzung"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Fehler in regex"
|
msgstr "Fehler in regex"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -933,7 +946,7 @@ msgstr "FFT ist nur für ndarrays definiert"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr "FFT ist nur für lineare Arrays implementiert"
|
msgstr "FFT ist nur für lineare Arrays implementiert"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr "SSL Handshake fehlgeschlagen"
|
msgstr "SSL Handshake fehlgeschlagen"
|
||||||
|
|
||||||
@ -966,7 +979,7 @@ msgstr "Zuweisung des Wifi Speichers ist fehlgeschlagen"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/ScannedNetworks.c
|
#: ports/esp32s2/common-hal/wifi/ScannedNetworks.c
|
||||||
msgid "Failed to allocate wifi scan memory"
|
msgid "Failed to allocate wifi scan memory"
|
||||||
msgstr ""
|
msgstr "Zuweisung des Wifi Scan Speichers ist fehlgeschlagen"
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -982,7 +995,7 @@ msgstr "Wifi Initialisierung ist fehlgeschlagen"
|
|||||||
|
|
||||||
#: shared-module/audiomp3/MP3Decoder.c
|
#: shared-module/audiomp3/MP3Decoder.c
|
||||||
msgid "Failed to parse MP3 file"
|
msgid "Failed to parse MP3 file"
|
||||||
msgstr "Parsen der MP3 Datei fehlgeschlagen"
|
msgstr "MP3-Datei konnte nicht analysiert werden"
|
||||||
|
|
||||||
#: ports/nrf/sd_mutex.c
|
#: ports/nrf/sd_mutex.c
|
||||||
#, c-format
|
#, c-format
|
||||||
@ -1005,7 +1018,7 @@ msgstr "Filter zu komplex"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/dualbank/__init__.c
|
#: ports/esp32s2/common-hal/dualbank/__init__.c
|
||||||
msgid "Firmware image is invalid"
|
msgid "Firmware image is invalid"
|
||||||
msgstr ""
|
msgstr "Firmware Image ist ungültig"
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Format not supported"
|
msgid "Format not supported"
|
||||||
@ -1063,6 +1076,10 @@ msgstr "Lese/Schreibe-operation an geschlossener Datei"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "I2C-Init-Fehler"
|
msgstr "I2C-Init-Fehler"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOut nicht verfügbar"
|
msgstr "I2SOut nicht verfügbar"
|
||||||
@ -1088,10 +1105,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Inkorrekte Puffergröße"
|
msgstr "Inkorrekte Puffergröße"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "Initialisierung aufgrund von Speichermangel fehlgeschlagen"
|
msgstr "Initialisierung aufgrund von Speichermangel fehlgeschlagen"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1100,6 +1126,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Eingabe-/Ausgabefehler"
|
msgstr "Eingabe-/Ausgabefehler"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Unzureichende Authentifizierung"
|
msgstr "Unzureichende Authentifizierung"
|
||||||
@ -1151,7 +1202,7 @@ msgstr "Ungültiger DAC-Pin angegeben"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Ungültige PWM Frequenz"
|
msgstr "Ungültige PWM Frequenz"
|
||||||
|
|
||||||
@ -1245,6 +1296,8 @@ msgstr "Ungültiger Pin für rechten Kanal"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Ungültige Pins"
|
msgstr "Ungültige Pins"
|
||||||
|
|
||||||
@ -1273,7 +1326,7 @@ msgstr "Ungültiger security_mode"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1281,10 +1334,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "Ungültige Stimme"
|
msgstr "Ungültige Stimme"
|
||||||
@ -1301,10 +1350,6 @@ msgstr "Ungültige wave Datei"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Ungültige Wort- / Bitlänge"
|
msgstr "Ungültige Wort- / Bitlänge"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1368,6 +1413,36 @@ msgstr ""
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "Fehlender MISO- oder MOSI-Pin"
|
msgstr "Fehlender MISO- oder MOSI-Pin"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "Muss eine %q Unterklasse sein."
|
msgstr "Muss eine %q Unterklasse sein."
|
||||||
@ -1400,9 +1475,14 @@ msgstr "Kein DAC im Chip vorhanden"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Kein DMA Kanal gefunden"
|
msgstr "Kein DMA Kanal gefunden"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1421,14 +1501,14 @@ msgstr "Kein MOSI Pin"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Kein RX Pin"
|
msgstr "Kein RX Pin"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Kein TX Pin"
|
msgstr "Kein TX Pin"
|
||||||
|
|
||||||
@ -1485,6 +1565,16 @@ msgstr "An diesem Pin sind keine Timer mehr verfügbar."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Kein Pulldown Widerstand am Pin; 1Mohm wird vorgeschlagen"
|
msgstr "Kein Pulldown Widerstand am Pin; 1Mohm wird vorgeschlagen"
|
||||||
@ -1542,6 +1632,10 @@ msgstr "Eine ungerade Parität wird nicht unterstützt"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Nur 8 oder 16 bit mono mit "
|
msgstr "Nur 8 oder 16 bit mono mit "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1595,10 +1689,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Oversample muss ein Vielfaches von 8 sein."
|
msgstr "Oversample muss ein Vielfaches von 8 sein."
|
||||||
@ -1618,6 +1717,7 @@ msgid ""
|
|||||||
msgstr "Die PWM-Frequenz ist nicht schreibbar wenn variable_Frequenz = False."
|
msgstr "Die PWM-Frequenz ist nicht schreibbar wenn variable_Frequenz = False."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBus wird noch nicht unterstützt"
|
msgstr "ParallelBus wird noch nicht unterstützt"
|
||||||
@ -1630,11 +1730,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Zugang verweigert"
|
msgstr "Zugang verweigert"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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"
|
||||||
@ -1663,6 +1772,10 @@ msgstr ""
|
|||||||
"Bytes verbraucht. Wenn dies nicht vermieden werden kann, übergeben Sie "
|
"Bytes verbraucht. Wenn dies nicht vermieden werden kann, übergeben Sie "
|
||||||
"allow_inefficient = True an den Konstruktor"
|
"allow_inefficient = True an den Konstruktor"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "und alle Module im Dateisystem \n"
|
msgstr "und alle Module im Dateisystem \n"
|
||||||
@ -1698,10 +1811,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Pull wird nicht verwendet, wenn die Richtung output ist."
|
msgstr "Pull wird nicht verwendet, wenn die Richtung output ist."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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"
|
||||||
@ -1710,6 +1847,10 @@ msgstr "RNG DeInit-Fehler"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "RNG Init Fehler"
|
msgstr "RNG Init Fehler"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1717,6 +1858,7 @@ msgstr "RS485-Inversion angegeben, wenn nicht im RS485-Modus"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt"
|
msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt"
|
||||||
|
|
||||||
@ -1725,7 +1867,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "Eine RTC wird auf diesem Board nicht unterstützt"
|
msgstr "Eine RTC wird auf diesem Board nicht unterstützt"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS / CTS / RS485 Wird von diesem Gerät noch nicht unterstützt"
|
msgstr "RTS / CTS / RS485 Wird von diesem Gerät noch nicht unterstützt"
|
||||||
|
|
||||||
@ -1782,11 +1924,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA oder SCL brauchen pull up"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1805,6 +1942,10 @@ msgstr "SPI-Init-Fehler"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "SPI-Neuinitialisierungsfehler"
|
msgstr "SPI-Neuinitialisierungsfehler"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Abtastrate muss positiv sein"
|
msgstr "Abtastrate muss positiv sein"
|
||||||
@ -1835,6 +1976,14 @@ msgstr "Serializer wird benutzt"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1866,6 +2015,14 @@ msgstr "Splitting mit sub-captures"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Die Stackgröße sollte mindestens 256 sein"
|
msgstr "Die Stackgröße sollte mindestens 256 sein"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Stream fehlt readinto() oder write() Methode."
|
msgstr "Stream fehlt readinto() oder write() Methode."
|
||||||
@ -2013,6 +2170,10 @@ msgstr "UART Init Fehler"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "UART Re-Init-Fehler"
|
msgstr "UART Re-Init-Fehler"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "UART-Schreibfehler"
|
msgstr "UART-Schreibfehler"
|
||||||
@ -2039,6 +2200,7 @@ msgstr "Der UUID-Wert ist kein str-, int- oder Byte-Puffer"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren"
|
msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren"
|
||||||
|
|
||||||
@ -2076,7 +2238,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Unerwarteter nrfx uuid-Typ"
|
msgstr "Unerwarteter nrfx uuid-Typ"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2121,7 +2283,8 @@ msgstr ""
|
|||||||
"Eingabeaufforderung auf dem anderen Gerät abgelehnt oder ignoriert."
|
"Eingabeaufforderung auf dem anderen Gerät abgelehnt oder ignoriert."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Baudrate wird nicht unterstützt"
|
msgstr "Baudrate wird nicht unterstützt"
|
||||||
|
|
||||||
@ -2173,6 +2336,7 @@ msgstr ""
|
|||||||
"WARNUNG: Der Dateiname deines Programms hat zwei Dateityperweiterungen\n"
|
"WARNUNG: Der Dateiname deines Programms hat zwei Dateityperweiterungen\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2388,7 +2552,7 @@ msgstr "Puffersegmente müssen gleich lang sein"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "Der Puffer ist zu klein"
|
msgstr "Der Puffer ist zu klein"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2769,7 +2933,7 @@ msgstr "erwarte tuple/list"
|
|||||||
|
|
||||||
#: py/modthread.c
|
#: py/modthread.c
|
||||||
msgid "expecting a dict for keyword args"
|
msgid "expecting a dict for keyword args"
|
||||||
msgstr "erwarte ein dict als Keyword-Argumente"
|
msgstr "erwarte ein dict als Schlüsselwort-Argumente"
|
||||||
|
|
||||||
#: py/compile.c
|
#: py/compile.c
|
||||||
msgid "expecting an assembler instruction"
|
msgid "expecting an assembler instruction"
|
||||||
@ -2789,11 +2953,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: py/argcheck.c
|
#: py/argcheck.c
|
||||||
msgid "extra keyword arguments given"
|
msgid "extra keyword arguments given"
|
||||||
msgstr "Es wurden zusätzliche Keyword-Argumente angegeben"
|
msgstr "Es wurden zusätzliche Schlüsselwort-Argumente angegeben"
|
||||||
|
|
||||||
#: py/argcheck.c
|
#: py/argcheck.c
|
||||||
msgid "extra positional arguments given"
|
msgid "extra positional arguments given"
|
||||||
msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben"
|
msgstr "Es wurden zusätzliche Argumente ohne Schlüsselwort angegeben"
|
||||||
|
|
||||||
#: py/parse.c
|
#: py/parse.c
|
||||||
msgid "f-string expression part cannot include a '#'"
|
msgid "f-string expression part cannot include a '#'"
|
||||||
@ -2874,7 +3038,7 @@ msgstr "voll"
|
|||||||
|
|
||||||
#: py/argcheck.c
|
#: py/argcheck.c
|
||||||
msgid "function does not take keyword arguments"
|
msgid "function does not take keyword arguments"
|
||||||
msgstr "Funktion akzeptiert keine Keyword-Argumente"
|
msgstr "Funktion akzeptiert keine Schlüsselwort-Argumente"
|
||||||
|
|
||||||
#: py/argcheck.c
|
#: py/argcheck.c
|
||||||
#, c-format
|
#, c-format
|
||||||
@ -2896,26 +3060,27 @@ 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"
|
||||||
msgstr "Funktion vermisst %d benötigte Argumente ohne Keyword"
|
msgstr "Funktion vermisst %d benötigte Argumente ohne Schlüsselwort"
|
||||||
|
|
||||||
#: py/bc.c
|
#: py/bc.c
|
||||||
msgid "function missing keyword-only argument"
|
msgid "function missing keyword-only argument"
|
||||||
msgstr "Funktion vermisst Keyword-only-Argument"
|
msgstr "Funktion vermisst Nur-Schlüsselwort-Argument"
|
||||||
|
|
||||||
#: py/bc.c
|
#: py/bc.c
|
||||||
msgid "function missing required keyword argument '%q'"
|
msgid "function missing required keyword argument '%q'"
|
||||||
msgstr "Funktion vermisst benötigtes Keyword-Argumente '%q'"
|
msgstr "Funktion vermisst benötigtes Schlüsselwort-Argumente '%q'"
|
||||||
|
|
||||||
#: py/bc.c
|
#: py/bc.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "function missing required positional argument #%d"
|
msgid "function missing required positional argument #%d"
|
||||||
msgstr "Funktion vermisst benötigtes Argumente ohne Keyword #%d"
|
msgstr "Funktion vermisst benötigtes Argumente ohne Schlüsselwort #%d"
|
||||||
|
|
||||||
#: py/argcheck.c py/bc.c py/objnamedtuple.c shared-bindings/time/__init__.c
|
#: py/argcheck.c py/bc.c py/objnamedtuple.c shared-bindings/time/__init__.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "function takes %d positional arguments but %d were given"
|
msgid "function takes %d positional arguments but %d were given"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Funktion nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben"
|
"Funktion nimmt %d Argumente ohne Schlüsselwort an, aber es wurden %d "
|
||||||
|
"angegeben"
|
||||||
|
|
||||||
#: shared-bindings/time/__init__.c
|
#: shared-bindings/time/__init__.c
|
||||||
msgid "function takes exactly 9 arguments"
|
msgid "function takes exactly 9 arguments"
|
||||||
@ -3145,8 +3310,8 @@ msgstr ""
|
|||||||
#: py/argcheck.c
|
#: py/argcheck.c
|
||||||
msgid "keyword argument(s) not yet implemented - use normal args instead"
|
msgid "keyword argument(s) not yet implemented - use normal args instead"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Keyword-Argument(e) noch nicht implementiert - verwenden Sie stattdessen "
|
"Schlüsselwort-Argument(e) noch nicht implementiert - verwenden Sie "
|
||||||
"normale Argumente"
|
"stattdessen normale Argumente"
|
||||||
|
|
||||||
#: py/bc.c
|
#: py/bc.c
|
||||||
msgid "keywords must be strings"
|
msgid "keywords must be strings"
|
||||||
@ -3253,6 +3418,10 @@ msgstr "Speicherzuordnung fehlgeschlagen, Zuweisung von %u Bytes"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt"
|
msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "Modul nicht gefunden"
|
msgstr "Modul nicht gefunden"
|
||||||
@ -3571,6 +3740,10 @@ msgstr "pop von einem leeren PulseIn"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "pow() drittes Argument darf nicht 0 sein"
|
msgstr "pow() drittes Argument darf nicht 0 sein"
|
||||||
@ -3587,6 +3760,7 @@ msgstr "pow () mit 3 Argumenten erfordert Integer"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3604,6 +3778,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "Warteschlangenüberlauf"
|
msgstr "Warteschlangenüberlauf"
|
||||||
@ -3810,6 +3992,7 @@ msgstr "time.struct_time() nimmt eine 9-Sequenz an"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "Das Zeitlimit hat den maximal zulässigen Wert überschritten"
|
msgstr "Das Zeitlimit hat den maximal zulässigen Wert überschritten"
|
||||||
|
|
||||||
@ -3926,11 +4109,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: py/bc.c
|
#: py/bc.c
|
||||||
msgid "unexpected keyword argument"
|
msgid "unexpected keyword argument"
|
||||||
msgstr "unerwartetes Keyword-Argument"
|
msgstr "unerwartetes Schlüsselwort-Argument"
|
||||||
|
|
||||||
#: py/bc.c py/objnamedtuple.c
|
#: py/bc.c py/objnamedtuple.c
|
||||||
msgid "unexpected keyword argument '%q'"
|
msgid "unexpected keyword argument '%q'"
|
||||||
msgstr "unerwartetes Keyword-Argument '%q'"
|
msgstr "unerwartetes Schlüsselwort-Argument '%q'"
|
||||||
|
|
||||||
#: py/lexer.c
|
#: py/lexer.c
|
||||||
msgid "unicode name escapes"
|
msgid "unicode name escapes"
|
||||||
@ -4024,6 +4207,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
@ -4096,6 +4284,9 @@ msgstr ""
|
|||||||
msgid "zi must be of shape (n_section, 2)"
|
msgid "zi must be of shape (n_section, 2)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA oder SCL brauchen pull up"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "%d Adress-Pins und %d rgb-Pins zeigen eine Höhe von %d, nicht von %d"
|
#~ "%d Adress-Pins und %d rgb-Pins zeigen eine Höhe von %d, nicht von %d"
|
||||||
|
236
locale/el.po
236
locale/el.po
@ -339,6 +339,10 @@ msgstr ""
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -359,6 +363,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -387,6 +392,7 @@ msgstr ""
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -586,6 +592,7 @@ msgstr ""
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -623,6 +630,10 @@ msgstr ""
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -859,11 +870,12 @@ msgstr ""
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -917,7 +929,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1045,6 +1057,10 @@ msgstr ""
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1068,10 +1084,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1080,6 +1105,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1131,7 +1181,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1225,6 +1275,8 @@ msgstr ""
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1253,7 +1305,7 @@ msgstr ""
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1261,10 +1313,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1281,10 +1329,6 @@ msgstr ""
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
msgid "Key must be 16, 24, or 32 bytes long"
|
msgid "Key must be 16, 24, or 32 bytes long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1346,6 +1390,36 @@ msgstr ""
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1378,9 +1452,14 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1399,14 +1478,14 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1463,6 +1542,16 @@ msgstr ""
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1518,6 +1607,10 @@ msgstr ""
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1567,10 +1660,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1590,6 +1688,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1602,11 +1701,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 ""
|
msgstr ""
|
||||||
@ -1632,6 +1740,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1667,10 +1779,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1679,6 +1815,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1686,6 +1826,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1694,7 +1835,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1751,11 +1892,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1774,6 +1910,10 @@ msgstr ""
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1804,6 +1944,14 @@ msgstr ""
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1835,6 +1983,14 @@ msgstr ""
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1968,6 +2124,10 @@ msgstr ""
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1994,6 +2154,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2031,7 +2192,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2072,7 +2233,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2123,6 +2285,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2328,7 +2491,7 @@ msgstr ""
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3174,6 +3337,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3488,6 +3655,10 @@ msgstr ""
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3504,6 +3675,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3521,6 +3693,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3724,6 +3904,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3934,6 +4115,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
|
387
locale/es.po
387
locale/es.po
File diff suppressed because it is too large
Load Diff
239
locale/fil.po
239
locale/fil.po
@ -342,6 +342,10 @@ msgstr "Lahat ng I2C peripherals ginagamit"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Lahat ng event channels ginagamit"
|
msgstr "Lahat ng event channels ginagamit"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Lahat ng sync event channels ay ginagamit"
|
msgstr "Lahat ng sync event channels ay ginagamit"
|
||||||
@ -362,6 +366,7 @@ msgstr "Lahat ng timers para sa pin na ito ay ginagamit"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Lahat ng timer ginagamit"
|
msgstr "Lahat ng timer ginagamit"
|
||||||
@ -390,6 +395,7 @@ msgstr ""
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "Hindi supportado ang AnalogOut"
|
msgstr "Hindi supportado ang AnalogOut"
|
||||||
|
|
||||||
@ -592,6 +598,7 @@ msgstr "Hindi mabura ang values"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Hindi makakakuha ng pull habang nasa output mode"
|
msgstr "Hindi makakakuha ng pull habang nasa output mode"
|
||||||
|
|
||||||
@ -630,6 +637,10 @@ msgstr "Hindi ma-remount '/' kapag aktibo ang USB."
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr "Hindi ma-reset sa bootloader dahil walang bootloader."
|
msgstr "Hindi ma-reset sa bootloader dahil walang bootloader."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Hindi ma i-set ang value kapag ang direksyon ay input."
|
msgstr "Hindi ma i-set ang value kapag ang direksyon ay input."
|
||||||
@ -870,11 +881,12 @@ msgstr "Ginagamit na ang EXTINT channel"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "May pagkakamali sa REGEX"
|
msgstr "May pagkakamali sa REGEX"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -930,7 +942,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1058,6 +1070,10 @@ msgstr "I/O operasyon sa saradong file"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1083,10 +1099,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1095,6 +1120,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "May mali sa Input/Output"
|
msgstr "May mali sa Input/Output"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1146,7 +1196,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Mali ang PWM frequency"
|
msgstr "Mali ang PWM frequency"
|
||||||
|
|
||||||
@ -1240,6 +1290,8 @@ msgstr "Mali ang pin para sa kanang channel"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Mali ang pins"
|
msgstr "Mali ang pins"
|
||||||
|
|
||||||
@ -1268,7 +1320,7 @@ msgstr ""
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1276,10 +1328,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1296,10 +1344,6 @@ msgstr "May hindi tama sa wave file"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
msgid "Key must be 16, 24, or 32 bytes long"
|
msgid "Key must be 16, 24, or 32 bytes long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1361,6 +1405,36 @@ msgstr "Ang delay ng startup ng mikropono ay dapat na nasa 0.0 hanggang 1.0"
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1393,9 +1467,14 @@ msgstr "Walang DAC sa chip"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Walang DMA channel na mahanap"
|
msgstr "Walang DMA channel na mahanap"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1414,14 +1493,14 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Walang RX pin"
|
msgstr "Walang RX pin"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Walang TX pin"
|
msgstr "Walang TX pin"
|
||||||
|
|
||||||
@ -1478,6 +1557,16 @@ msgstr ""
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1536,6 +1625,10 @@ msgstr "Odd na parity ay hindi supportado"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Tanging 8 o 16 na bit mono na may "
|
msgstr "Tanging 8 o 16 na bit mono na may "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1585,10 +1678,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Oversample ay dapat multiple ng 8."
|
msgstr "Oversample ay dapat multiple ng 8."
|
||||||
@ -1609,6 +1707,7 @@ msgstr ""
|
|||||||
"PWM frequency hindi writable kapag variable_frequency ay False sa pag buo."
|
"PWM frequency hindi writable kapag variable_frequency ay False sa pag buo."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1621,11 +1720,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Walang pahintulot"
|
msgstr "Walang pahintulot"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 "Ang pin ay walang kakayahan sa ADC"
|
msgstr "Ang pin ay walang kakayahan sa ADC"
|
||||||
@ -1651,6 +1759,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Kasama ang kung ano pang modules na sa filesystem\n"
|
msgstr "Kasama ang kung ano pang modules na sa filesystem\n"
|
||||||
@ -1686,10 +1798,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Pull hindi ginagamit kapag ang direksyon ay output."
|
msgstr "Pull hindi ginagamit kapag ang direksyon ay output."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1698,6 +1834,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1705,6 +1845,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "RTC calibration ay hindi supportado ng board na ito"
|
msgstr "RTC calibration ay hindi supportado ng board na ito"
|
||||||
|
|
||||||
@ -1713,7 +1854,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "Hindi supportado ang RTC sa board na ito"
|
msgstr "Hindi supportado ang RTC sa board na ito"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1771,11 +1912,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "Kailangan ng pull up resistors ang SDA o SCL"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1794,6 +1930,10 @@ msgstr ""
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Sample rate ay dapat positibo"
|
msgstr "Sample rate ay dapat positibo"
|
||||||
@ -1824,6 +1964,14 @@ msgstr "Serializer ginagamit"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1855,6 +2003,14 @@ msgstr "Binibiyak gamit ang sub-captures"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Ang laki ng stack ay dapat na hindi bababa sa 256"
|
msgstr "Ang laki ng stack ay dapat na hindi bababa sa 256"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Stream kulang ng readinto() o write() method."
|
msgstr "Stream kulang ng readinto() o write() method."
|
||||||
@ -1988,6 +2144,10 @@ msgstr ""
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2014,6 +2174,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion"
|
msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion"
|
||||||
|
|
||||||
@ -2052,7 +2213,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "hindi inaasahang indent"
|
msgstr "hindi inaasahang indent"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2093,7 +2254,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Hindi supportadong baudrate"
|
msgstr "Hindi supportadong baudrate"
|
||||||
|
|
||||||
@ -2147,6 +2309,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "BABALA: Ang pangalan ng file ay may dalawang extension\n"
|
msgstr "BABALA: Ang pangalan ng file ay may dalawang extension\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2359,7 +2522,7 @@ msgstr "aarehas na haba dapat ang buffer slices"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "masyadong maliit ang buffer"
|
msgstr "masyadong maliit ang buffer"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3221,6 +3384,10 @@ msgstr "nabigo ang paglalaan ng memorya, paglalaan ng %u bytes"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock"
|
msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "module hindi nakita"
|
msgstr "module hindi nakita"
|
||||||
@ -3537,6 +3704,10 @@ msgstr "pop mula sa walang laman na PulseIn"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "pow() 3rd argument ay hindi maaring 0"
|
msgstr "pow() 3rd argument ay hindi maaring 0"
|
||||||
@ -3553,6 +3724,7 @@ msgstr "pow() na may 3 argumento kailangan ng integers"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3570,6 +3742,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "puno na ang pila (overflow)"
|
msgstr "puno na ang pila (overflow)"
|
||||||
@ -3776,6 +3956,7 @@ msgstr "time.struct_time() kumukuha ng 9-sequence"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3987,6 +4168,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
@ -4061,6 +4247,9 @@ msgstr ""
|
|||||||
msgid "zi must be of shape (n_section, 2)"
|
msgid "zi must be of shape (n_section, 2)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "Kailangan ng pull up resistors ang SDA o SCL"
|
||||||
|
|
||||||
#~ msgid "tuple index out of range"
|
#~ msgid "tuple index out of range"
|
||||||
#~ msgstr "indeks ng tuple wala sa sakop"
|
#~ msgstr "indeks ng tuple wala sa sakop"
|
||||||
|
|
||||||
|
274
locale/fr.po
274
locale/fr.po
@ -8,14 +8,14 @@ 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-01-17 12:55+0000\n"
|
"PO-Revision-Date: 2021-02-21 22:27+0000\n"
|
||||||
"Last-Translator: Hugo Dahl <hugo@code-jedi.com>\n"
|
"Last-Translator: Hugo Dahl <hugo@code-jedi.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"
|
||||||
"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.5-dev\n"
|
"X-Generator: Weblate 4.5\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -54,7 +54,7 @@ msgstr " Fichier \"%q\", ligne %d"
|
|||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid " is of type %q\n"
|
msgid " is of type %q\n"
|
||||||
msgstr ""
|
msgstr " est de type %q\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid " output:\n"
|
msgid " output:\n"
|
||||||
@ -70,6 +70,8 @@ msgstr "%%c nécessite un chiffre entier 'int' ou un caractère 'char'"
|
|||||||
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 broches d'adresse, %d broches RGB et %d pour tile indique une hauteur de "
|
||||||
|
"%d, et non %d"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
||||||
msgid "%q failure: %d"
|
msgid "%q failure: %d"
|
||||||
@ -348,6 +350,10 @@ msgstr "Tous les périphériques UART sont utilisés"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Tous les canaux d'événements sont utilisés"
|
msgstr "Tous les canaux d'événements sont utilisés"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr "Tous les automates finis sont utilisés"
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Tous les canaux d'événements sync (sync event channels) sont utilisés"
|
msgstr "Tous les canaux d'événements sync (sync event channels) sont utilisés"
|
||||||
@ -368,6 +374,7 @@ msgstr "Tous les minuteurs pour cette broche sont utilisés"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Tous les minuteurs sont utilisés"
|
msgstr "Tous les minuteurs sont utilisés"
|
||||||
@ -396,6 +403,7 @@ msgstr "'AnalogOut' n'est pas supporté sur la broche indiquée"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "Fonctionnalité AnalogOut non supportée"
|
msgstr "Fonctionnalité AnalogOut non supportée"
|
||||||
|
|
||||||
@ -606,6 +614,7 @@ msgstr "Impossible de supprimer les valeurs"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Ne peut être tiré ('pull') en mode sortie ('output')"
|
msgstr "Ne peut être tiré ('pull') en mode sortie ('output')"
|
||||||
|
|
||||||
@ -646,6 +655,10 @@ msgid "Cannot reset into bootloader because no bootloader is present."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader."
|
"Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr "Ne peut définir les options de socket"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -832,7 +845,7 @@ msgstr "La broche 'Data 0' doit être aligné sur l'octet"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
||||||
msgid "Data 0 pin must be byte aligned."
|
msgid "Data 0 pin must be byte aligned."
|
||||||
msgstr ""
|
msgstr "La broche Data 0 doit être aligné sur l'octet."
|
||||||
|
|
||||||
#: shared-module/audiocore/WaveFile.c
|
#: shared-module/audiocore/WaveFile.c
|
||||||
msgid "Data chunk must follow fmt chunk"
|
msgid "Data chunk must follow fmt chunk"
|
||||||
@ -889,11 +902,12 @@ msgstr "Canal EXTINT déjà utilisé"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Erreur dans l'expression régulière"
|
msgstr "Erreur dans l'expression régulière"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr "Erreur : Impossible de lier"
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -948,7 +962,7 @@ msgstr "La FFT est définie uniquement pour les ndarrays"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr "FFT n'est implémenté que pour les tableaux linéaires"
|
msgstr "FFT n'est implémenté que pour les tableaux linéaires"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr "Échec du handshake SSL"
|
msgstr "Échec du handshake SSL"
|
||||||
|
|
||||||
@ -1078,6 +1092,10 @@ msgstr "Opération d'E/S sur un fichier fermé"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "Erreur d'initialisation I2C"
|
msgstr "Erreur d'initialisation I2C"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr "périphérique I2C utilisé"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOut n'est pas disponible"
|
msgstr "I2SOut n'est pas disponible"
|
||||||
@ -1103,10 +1121,21 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Taille de tampon incorrecte"
|
msgstr "Taille de tampon incorrecte"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr "Taille du programme d'initialisation non valide"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "Échec d'initialisation par manque de mémoire"
|
msgstr "Échec d'initialisation par manque de mémoire"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
"La taille (%d) du tampon d'entrée doit être un multiple du nombre (%d) de "
|
||||||
|
"brins"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "L'entrée prend trop de temps"
|
msgstr "L'entrée prend trop de temps"
|
||||||
@ -1115,6 +1144,35 @@ msgstr "L'entrée prend trop de temps"
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Erreur d'entrée/sortie"
|
msgstr "Erreur d'entrée/sortie"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr "Instruction %d saute sur la broche"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
"Instruction %d décale vers l'intérieur de plus de bits que le nombre de "
|
||||||
|
"broches"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
"instruction %d décale vers l'extérieur de plus de bits que le nombre de "
|
||||||
|
"broches"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr "instruction %d utilise des broches supplémentaires"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr "instruction %d attend sur une entrée hors du compte"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Authentification insuffisante"
|
msgstr "Authentification insuffisante"
|
||||||
@ -1166,7 +1224,7 @@ msgstr "Broche DAC non valide fournie"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Fréquence de PWM invalide"
|
msgstr "Fréquence de PWM invalide"
|
||||||
|
|
||||||
@ -1260,6 +1318,8 @@ msgstr "Broche invalide pour le canal droit"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Broches invalides"
|
msgstr "Broches invalides"
|
||||||
|
|
||||||
@ -1288,18 +1348,14 @@ msgstr "'security_mode' invalide"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr "Taille invalide"
|
msgstr "Taille invalide"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr "Socket non valide pour TLS"
|
||||||
|
|
||||||
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
#: ports/esp32s2/bindings/espidf/__init__.c ports/esp32s2/esp_error.c
|
||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr "État invalide"
|
msgstr "État invalide"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "Voix invalide"
|
msgstr "Voix invalide"
|
||||||
@ -1316,10 +1372,6 @@ msgstr "Fichier WAVE invalide"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Longueur de mot / bit invalide"
|
msgstr "Longueur de mot / bit invalide"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1381,6 +1433,37 @@ msgstr "Le délais au démarrage du micro doit être entre 0.0 et 1.0"
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "Broche MISO ou MOSI manquante"
|
msgstr "Broche MISO ou MOSI manquante"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr "first_in_pin manquant. Instruction %d lit une/des broche(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr "first_in_pin manquant. Instruction %d est déplacée par la/les broche(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr "first_in_pin manquant. L'instruction %d attends dépends de la broche"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
"first_out_pin manquant. Instruction %d est déplacée par la/les broche(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr "first_out_pin manquant. Instruction %d écrit un/des broche(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr "first_set_pin manquant. L'instruction %d règle la/les broche(s)"
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "Doit être une sous-classe de %q."
|
msgstr "Doit être une sous-classe de %q."
|
||||||
@ -1413,9 +1496,14 @@ msgstr "Pas de DAC sur la puce"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Aucun canal DMA trouvé"
|
msgstr "Aucun canal DMA trouvé"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr "Aucun minuteur de rythme DMA trouvé"
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1434,14 +1522,14 @@ msgstr "Pas de broche MOSI"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Pas de broche RX"
|
msgstr "Pas de broche RX"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Pas de broche TX"
|
msgstr "Pas de broche TX"
|
||||||
|
|
||||||
@ -1498,6 +1586,16 @@ msgstr "Plus de minuteurs disponibles sur cette broche."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr "Aucun réseau avec ce ssid"
|
msgstr "Aucun réseau avec ce ssid"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr "Aucun out dans le programme"
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr "Aucun pull up trouvé sur SDA ou SCL; vérifiez votre cablage"
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Pas de pulldown sur la broche ; 1Mohm recommandé"
|
msgstr "Pas de pulldown sur la broche ; 1Mohm recommandé"
|
||||||
@ -1555,6 +1653,10 @@ msgstr "Parité impaire non supportée"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Uniquement 8 ou 16 bit mono avec "
|
msgstr "Uniquement 8 ou 16 bit mono avec "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr "Seulement des IN/OUT jusqu'à 8 est supporté"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr "Seulement les adresses IPv4 sont supportées"
|
msgstr "Seulement les adresses IPv4 sont supportées"
|
||||||
@ -1608,10 +1710,15 @@ msgstr "Timeout de l'opération"
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr "Hors de mémoire"
|
msgstr "Hors de mémoire"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr "Plus de sockets"
|
msgstr "Plus de sockets"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr "Tampon de sortie doit être au moins %d octets"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Le sur-échantillonage doit être un multiple de 8."
|
msgstr "Le sur-échantillonage doit être un multiple de 8."
|
||||||
@ -1635,6 +1742,7 @@ msgstr ""
|
|||||||
"à la construction."
|
"à la construction."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBus pas encore supporté"
|
msgstr "ParallelBus pas encore supporté"
|
||||||
@ -1647,11 +1755,20 @@ msgstr "Périphérique en utilisation"
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Permission refusée"
|
msgstr "Permission refusée"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr "Nombre de broches doit être au moins 1"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr "Nombre de broches trop élevé"
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 "La broche 'pin' ne supporte pas les capacitées ADC"
|
msgstr "La broche 'pin' ne supporte pas les capacitées ADC"
|
||||||
@ -1680,6 +1797,10 @@ msgstr ""
|
|||||||
"octets idéal. Si cela ne peut pas être évité, transmettez allow_inefficient "
|
"octets idéal. Si cela ne peut pas être évité, transmettez allow_inefficient "
|
||||||
"= True au constructeur"
|
"= True au constructeur"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr "Les broches doivent partager la tranche PWM"
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Ainsi que tout autres modules présents sur le système de fichiers\n"
|
msgstr "Ainsi que tout autres modules présents sur le système de fichiers\n"
|
||||||
@ -1722,10 +1843,34 @@ msgid "Pretending to deep sleep until alarm, CTRL-C or file write.\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Feinte de someil profond jusqu'à l'alarme, CTRL-C ou écriture au fichier.\n"
|
"Feinte de someil profond jusqu'à l'alarme, CTRL-C ou écriture au fichier.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr "Le programme fait des entrées sans charger d'ISR"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr "Le programme fait des sorties sans charger d'OSR"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr "Le programme doit contenir au moins une instruction de 16 bits."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr "Taille du programme invalide"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr "Programme trop grand"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Le tirage 'pull' n'est pas utilisé quand la direction est 'output'."
|
msgstr "Le tirage 'pull' n'est pas utilisé quand la direction est 'output'."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
msgstr "Mode RAISE n'est pas implémenté"
|
||||||
|
|
||||||
#: 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ésinitiation du RNG (RNG DeInit)"
|
msgstr "Erreur de désinitiation du RNG (RNG DeInit)"
|
||||||
@ -1734,6 +1879,10 @@ msgstr "Erreur de désinitiation du RNG (RNG DeInit)"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "Erreur d'initialisation du RNG (RNG Init)"
|
msgstr "Erreur d'initialisation du RNG (RNG Init)"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr "RS485 n'est pas encore supporté sur cet appareil"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1741,6 +1890,7 @@ msgstr "Inversion RS485 spécifiée sans être en mode RS485"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "La calibration du RTC non supportée sur cette carte"
|
msgstr "La calibration du RTC non supportée sur cette carte"
|
||||||
|
|
||||||
@ -1749,7 +1899,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "RTC non supporté sur cette carte"
|
msgstr "RTC non supporté sur cette carte"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS / CTS / RS485 Pas encore supporté sur cet appareil"
|
msgstr "RTS / CTS / RS485 Pas encore supporté sur cet appareil"
|
||||||
|
|
||||||
@ -1806,11 +1956,6 @@ msgstr "Exécution en mode sécurisé! "
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr "Le format de carte SD CSD n'est pas supporté"
|
msgstr "Le format de carte SD CSD n'est pas supporté"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA ou SCL a besoin d'une résistance de tirage ('pull up')"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1829,6 +1974,10 @@ msgstr "Erreur d'initialisation SPI"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "Erreur de réinitialisation SPI"
|
msgstr "Erreur de réinitialisation SPI"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr "Périphérique SPI utilisé"
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Le taux d'échantillonage doit être positif"
|
msgstr "Le taux d'échantillonage doit être positif"
|
||||||
@ -1859,6 +2008,14 @@ msgstr "Sérialiseur en cours d'utilisation"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr "Un contexte niveau serveur ne peut avoir de hostname"
|
msgstr "Un contexte niveau serveur ne peut avoir de hostname"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr "Nombre de broches configurées doit être entre 1 et 5"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr "Nombre de broches Side configurées doit être entre 1 et 5"
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr "Taille n'est pas supportée"
|
msgstr "Taille n'est pas supportée"
|
||||||
@ -1890,6 +2047,14 @@ msgstr "Fractionnement avec des sous-captures"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "La pile doit être au moins de 256"
|
msgstr "La pile doit être au moins de 256"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr "Canal stéréo gauche doit être sur le canal PWM A"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr "Canal stéréo droit doit être sur le canal PWM B"
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Il manque une méthode readinto() ou write() au flux."
|
msgstr "Il manque une méthode readinto() ou write() au flux."
|
||||||
@ -2035,6 +2200,10 @@ msgstr "Erreur d'initialisation UART"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "Erreur de réinitialisation UART"
|
msgstr "Erreur de réinitialisation UART"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr "UART n'est pas encore supporté"
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "Erreur d'écriture UART"
|
msgstr "Erreur d'écriture UART"
|
||||||
@ -2064,6 +2233,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Impossible d'allouer des tampons pour une conversion signée"
|
msgstr "Impossible d'allouer des tampons pour une conversion signée"
|
||||||
|
|
||||||
@ -2101,7 +2271,7 @@ msgstr "Écriture impossible vers sleep_memory."
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Type inattendu pour l'uuid nrfx"
|
msgstr "Type inattendu pour l'uuid nrfx"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
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"
|
||||||
@ -2145,7 +2315,8 @@ msgstr ""
|
|||||||
"appareil ait été refusée ou ignorée."
|
"appareil ait été refusée ou ignorée."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Débit en bauds non supporté"
|
msgstr "Débit en bauds non supporté"
|
||||||
|
|
||||||
@ -2197,6 +2368,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "ATTENTION : le nom de fichier de votre code a deux extensions\n"
|
msgstr "ATTENTION : le nom de fichier de votre code a deux extensions\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"WatchDogTimer ne peut pas être désinitialisé une fois que le mode est réglé "
|
"WatchDogTimer ne peut pas être désinitialisé une fois que le mode est réglé "
|
||||||
@ -2411,7 +2583,7 @@ msgstr "les tranches de tampon doivent être de longueurs égales"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "tampon trop petit"
|
msgstr "tampon trop petit"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr "tampon trop petit pour le nombre d'octets demandé"
|
msgstr "tampon trop petit pour le nombre d'octets demandé"
|
||||||
|
|
||||||
@ -3277,6 +3449,10 @@ msgstr "l'allocation de mémoire a échoué en allouant %u octets"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "l'allocation de mémoire a échoué, le tas est vérrouillé"
|
msgstr "l'allocation de mémoire a échoué, le tas est vérrouillé"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr "memoryview: length n'est pas un multiple de itemsize"
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "module introuvable"
|
msgstr "module introuvable"
|
||||||
@ -3423,7 +3599,7 @@ msgstr "le nombre de points doit être d'au moins 2"
|
|||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "object "
|
msgid "object "
|
||||||
msgstr ""
|
msgstr "objet "
|
||||||
|
|
||||||
#: py/obj.c
|
#: py/obj.c
|
||||||
msgid "object '%q' is not a tuple or list"
|
msgid "object '%q' is not a tuple or list"
|
||||||
@ -3596,6 +3772,10 @@ msgstr "'pop' d'une entrée PulseIn vide"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr "pop sur %q vide"
|
msgstr "pop sur %q vide"
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr "port doit être >= 0"
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "le 3e argument de pow() ne peut être 0"
|
msgstr "le 3e argument de pow() ne peut être 0"
|
||||||
@ -3612,6 +3792,7 @@ msgstr "pow() avec 3 arguments nécessite des entiers"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3629,6 +3810,14 @@ msgstr "bouton boot appuyé lors du démarrage.\n"
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr "les deux boutons appuyés lors du démarrage.\n"
|
msgstr "les deux boutons appuyés lors du démarrage.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr "pull_threshold doit être entre 1 et 32"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr "push_threshold doit être entre 1 et 32"
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "dépassement de file"
|
msgstr "dépassement de file"
|
||||||
@ -3827,7 +4016,7 @@ msgstr "le seuil doit être dans la portée 0-65536"
|
|||||||
|
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
msgid "tile must be greater than zero"
|
msgid "tile must be greater than zero"
|
||||||
msgstr ""
|
msgstr "tile doit être plus que zéro"
|
||||||
|
|
||||||
#: shared-bindings/time/__init__.c
|
#: shared-bindings/time/__init__.c
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
@ -3835,6 +4024,7 @@ msgstr "time.struct_time() prend une séquence de longueur 9"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "le délai d'expiration a dépassé la valeur maximale prise en charge"
|
msgstr "le délai d'expiration a dépassé la valeur maximale prise en charge"
|
||||||
|
|
||||||
@ -4045,13 +4235,18 @@ msgstr "chien de garde (watchdog) non initialisé"
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdog timeout doit être supérieur à 0"
|
msgstr "watchdog timeout doit être supérieur à 0"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr "width doit être entre 2 et 8 (inclusivement), non %d"
|
||||||
|
|
||||||
#: 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 grand que zero"
|
msgstr "width doit être plus que zero"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/Radio.c
|
#: ports/esp32s2/common-hal/wifi/Radio.c
|
||||||
msgid "wifi is not enabled"
|
msgid "wifi is not enabled"
|
||||||
msgstr ""
|
msgstr "wifi n’est pas activé"
|
||||||
|
|
||||||
#: shared-bindings/_bleio/Adapter.c
|
#: shared-bindings/_bleio/Adapter.c
|
||||||
msgid "window must be <= interval"
|
msgid "window must be <= interval"
|
||||||
@ -4117,6 +4312,15 @@ 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 "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA ou SCL a besoin d'une résistance de tirage ('pull up')"
|
||||||
|
|
||||||
|
#~ msgid "Invalid use of TLS Socket"
|
||||||
|
#~ msgstr "Utilisation incorrecte de socket TLS"
|
||||||
|
|
||||||
|
#~ msgid "Issue setting SO_REUSEADDR"
|
||||||
|
#~ msgstr "Problème en activant SO_REUSEADDR"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Les broches d'adresse %d et les broches RVB %d indiquent une hauteur de "
|
#~ "Les broches d'adresse %d et les broches RVB %d indiquent une hauteur de "
|
||||||
|
236
locale/hi.po
236
locale/hi.po
@ -339,6 +339,10 @@ msgstr ""
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -359,6 +363,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -387,6 +392,7 @@ msgstr ""
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -586,6 +592,7 @@ msgstr ""
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -623,6 +630,10 @@ msgstr ""
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -859,11 +870,12 @@ msgstr ""
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -917,7 +929,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1045,6 +1057,10 @@ msgstr ""
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1068,10 +1084,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1080,6 +1105,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1131,7 +1181,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1225,6 +1275,8 @@ msgstr ""
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1253,7 +1305,7 @@ msgstr ""
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1261,10 +1313,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1281,10 +1329,6 @@ msgstr ""
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
msgid "Key must be 16, 24, or 32 bytes long"
|
msgid "Key must be 16, 24, or 32 bytes long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1346,6 +1390,36 @@ msgstr ""
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1378,9 +1452,14 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1399,14 +1478,14 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1463,6 +1542,16 @@ msgstr ""
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1518,6 +1607,10 @@ msgstr ""
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1567,10 +1660,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1590,6 +1688,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1602,11 +1701,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 ""
|
msgstr ""
|
||||||
@ -1632,6 +1740,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1667,10 +1779,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1679,6 +1815,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1686,6 +1826,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1694,7 +1835,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1751,11 +1892,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1774,6 +1910,10 @@ msgstr ""
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1804,6 +1944,14 @@ msgstr ""
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1835,6 +1983,14 @@ msgstr ""
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1968,6 +2124,10 @@ msgstr ""
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1994,6 +2154,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2031,7 +2192,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2072,7 +2233,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2123,6 +2285,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2328,7 +2491,7 @@ msgstr ""
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3174,6 +3337,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3488,6 +3655,10 @@ msgstr ""
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3504,6 +3675,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3521,6 +3693,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3724,6 +3904,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3934,6 +4115,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
|
418
locale/it_IT.po
418
locale/it_IT.po
File diff suppressed because it is too large
Load Diff
239
locale/ja.po
239
locale/ja.po
@ -344,6 +344,10 @@ msgstr "全てのUART周辺機器が使用中"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "全てのイベントチャネルが使用中"
|
msgstr "全てのイベントチャネルが使用中"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "全ての同期イベントチャネルが使用中"
|
msgstr "全ての同期イベントチャネルが使用中"
|
||||||
@ -364,6 +368,7 @@ msgstr "このピン用の全てのタイマが使用中"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "全てのタイマーが使用中"
|
msgstr "全てのタイマーが使用中"
|
||||||
@ -392,6 +397,7 @@ msgstr "指定のピンはAnalogInに対応していません"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "AnalogOut機能に対応していません"
|
msgstr "AnalogOut機能に対応していません"
|
||||||
|
|
||||||
@ -595,6 +601,7 @@ msgstr "値を削除できません"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "出力モード時はpullを取得できません"
|
msgstr "出力モード時はpullを取得できません"
|
||||||
|
|
||||||
@ -632,6 +639,10 @@ msgstr "USBがアクティブの時に'/'を再マウントできません"
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr "ブートローダが存在しないためブートローダへとリセットできません"
|
msgstr "ブートローダが存在しないためブートローダへとリセットできません"
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "方向がinputのときは値を設定できません"
|
msgstr "方向がinputのときは値を設定できません"
|
||||||
@ -870,11 +881,12 @@ msgstr "EXTINTチャネルはすでに使用されています"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "正規表現にエラーがあります"
|
msgstr "正規表現にエラーがあります"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -928,7 +940,7 @@ msgstr "FFTはndarrayでのみ使えます"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1056,6 +1068,10 @@ msgstr "閉じられたファイルへのI/O操作"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "I2C初期化エラー"
|
msgstr "I2C初期化エラー"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOutが利用できません"
|
msgstr "I2SOutが利用できません"
|
||||||
@ -1081,10 +1097,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "バッファサイズが正しくありません"
|
msgstr "バッファサイズが正しくありません"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1093,6 +1118,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "入力/出力エラー"
|
msgstr "入力/出力エラー"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "認証が不十分"
|
msgstr "認証が不十分"
|
||||||
@ -1144,7 +1194,7 @@ msgstr "不正なDACピンが与えられました"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "無効なPWM周波数"
|
msgstr "無効なPWM周波数"
|
||||||
|
|
||||||
@ -1238,6 +1288,8 @@ msgstr "右チャネルのピンが不正"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "ピンが不正"
|
msgstr "ピンが不正"
|
||||||
|
|
||||||
@ -1266,7 +1318,7 @@ msgstr "不正なsecurity_mode"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1274,10 +1326,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "不正なボイス"
|
msgstr "不正なボイス"
|
||||||
@ -1294,10 +1342,6 @@ msgstr "不正なwaveファイル"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "不正なワード/ビット長"
|
msgstr "不正なワード/ビット長"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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バイトのいずれかでなければなりません"
|
||||||
@ -1359,6 +1403,36 @@ msgstr "マイクのスタートアップディレイは 0.0 から 1.0 の間
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "MISOまたはMOSIピンがありません"
|
msgstr "MISOまたはMOSIピンがありません"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "%q のサブクラスでなければなりません"
|
msgstr "%q のサブクラスでなければなりません"
|
||||||
@ -1391,9 +1465,14 @@ msgstr "チップにDACがありません"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "DMAチャネルが見つかりません"
|
msgstr "DMAチャネルが見つかりません"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1412,14 +1491,14 @@ msgstr "MOSIピンがありません"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "RXピンがありません"
|
msgstr "RXピンがありません"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "TXピンがありません"
|
msgstr "TXピンがありません"
|
||||||
|
|
||||||
@ -1476,6 +1555,16 @@ msgstr "このピンには使えるタイマーがもうありません"
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "ピンにプルダウンがありません。1Mオーム推奨"
|
msgstr "ピンにプルダウンがありません。1Mオーム推奨"
|
||||||
@ -1533,6 +1622,10 @@ msgstr "奇数パリティには対応していません"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "8または16ビットの "
|
msgstr "8または16ビットの "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1582,10 +1675,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "オーバーサンプルは8の倍数でなければなりません"
|
msgstr "オーバーサンプルは8の倍数でなければなりません"
|
||||||
@ -1606,6 +1704,7 @@ msgid ""
|
|||||||
msgstr "PWM周波数は生成時のvariable_frequencyがFalseのとき書き換え不可"
|
msgstr "PWM周波数は生成時のvariable_frequencyがFalseのとき書き換え不可"
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBusにはまだ対応していません"
|
msgstr "ParallelBusにはまだ対応していません"
|
||||||
@ -1618,11 +1717,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "パーミッション拒否"
|
msgstr "パーミッション拒否"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 "ピンにADCの能力がありません"
|
msgstr "ピンにADCの能力がありません"
|
||||||
@ -1648,6 +1756,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1683,10 +1795,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "方向がoutputのときpullは使われません"
|
msgstr "方向がoutputのときpullは使われません"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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解体エラー"
|
||||||
@ -1695,6 +1831,10 @@ msgstr "RNG解体エラー"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "乱数生成器の初期化エラー"
|
msgstr "乱数生成器の初期化エラー"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1702,6 +1842,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "このボードはRTCのキャリブレーションに非対応"
|
msgstr "このボードはRTCのキャリブレーションに非対応"
|
||||||
|
|
||||||
@ -1710,7 +1851,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "このボードはRTCに対応していません"
|
msgstr "このボードはRTCに対応していません"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS/CTS/RS485はこのデバイスでは未対応"
|
msgstr "RTS/CTS/RS485はこのデバイスでは未対応"
|
||||||
|
|
||||||
@ -1767,11 +1908,6 @@ msgstr "セーフモードで実行中! "
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr "SDカードのCSDフォーマットは非対応"
|
msgstr "SDカードのCSDフォーマットは非対応"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDAとSCLにプルアップが必要"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1790,6 +1926,10 @@ msgstr "SPI初期化エラー"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "SPI再初期化エラー"
|
msgstr "SPI再初期化エラー"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "サンプルレートは正数でなければなりません"
|
msgstr "サンプルレートは正数でなければなりません"
|
||||||
@ -1820,6 +1960,14 @@ msgstr "シリアライザは使用中"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr "サイズは対応していません"
|
msgstr "サイズは対応していません"
|
||||||
@ -1851,6 +1999,14 @@ msgstr ""
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "スタックサイズは少なくとも256以上でなければなりません"
|
msgstr "スタックサイズは少なくとも256以上でなければなりません"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "ストリームにreadinto()またはwrite()メソッドがありません"
|
msgstr "ストリームにreadinto()またはwrite()メソッドがありません"
|
||||||
@ -1990,6 +2146,10 @@ msgstr "UARTの初期化エラー"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "UARTの再初期化エラー"
|
msgstr "UARTの再初期化エラー"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "UART書き込みエラー"
|
msgstr "UART書き込みエラー"
|
||||||
@ -2017,6 +2177,7 @@ msgstr "UUIDの値がstr, int, bufferのいずれでもありません"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2054,7 +2215,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "想定されていないnrfx UUID型"
|
msgstr "想定されていないnrfx UUID型"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2095,7 +2256,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "非対応のbaudrate"
|
msgstr "非対応のbaudrate"
|
||||||
|
|
||||||
@ -2146,6 +2308,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2351,7 +2514,7 @@ msgstr "バッファのスライスは同じ長さでなければなりません
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3202,6 +3365,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "メモリ確保に失敗。ヒープがロックされています"
|
msgstr "メモリ確保に失敗。ヒープがロックされています"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "モジュールが見つかりません"
|
msgstr "モジュールが見つかりません"
|
||||||
@ -3518,6 +3685,10 @@ msgstr ""
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "pow()の3つ目の引数は0にできません"
|
msgstr "pow()の3つ目の引数は0にできません"
|
||||||
@ -3534,6 +3705,7 @@ msgstr "pow()の第3引数には整数が必要"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3551,6 +3723,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "キューがオーバーフローしました"
|
msgstr "キューがオーバーフローしました"
|
||||||
@ -3755,6 +3935,7 @@ msgstr "time.struct_time()は9要素のシーケンスを受け取ります"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "タイムアウト長は対応する最大値を超えています"
|
msgstr "タイムアウト長は対応する最大値を超えています"
|
||||||
|
|
||||||
@ -3965,6 +4146,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdogのtimeoutは0以上でなければなりません"
|
msgstr "watchdogのtimeoutは0以上でなければなりません"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
@ -4037,6 +4223,9 @@ msgstr "ziはfloat値でなければなりません"
|
|||||||
msgid "zi must be of shape (n_section, 2)"
|
msgid "zi must be of shape (n_section, 2)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDAとSCLにプルアップが必要"
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Code done running. Waiting for reload.\n"
|
#~ "Code done running. Waiting for reload.\n"
|
||||||
|
236
locale/ko.po
236
locale/ko.po
@ -340,6 +340,10 @@ msgstr "사용중인 모든 UART주변 기기"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -360,6 +364,7 @@ msgstr "핀의 모든 타이머가 사용 중입니다"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "모든 타이머가 사용 중입니다"
|
msgstr "모든 타이머가 사용 중입니다"
|
||||||
@ -388,6 +393,7 @@ msgstr ""
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -589,6 +595,7 @@ msgstr "값을 삭제할 수 없습니다"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -626,6 +633,10 @@ msgstr ""
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -862,11 +873,12 @@ msgstr ""
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Regex에 오류가 있습니다."
|
msgstr "Regex에 오류가 있습니다."
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -920,7 +932,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1048,6 +1060,10 @@ msgstr ""
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1071,10 +1087,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1083,6 +1108,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1134,7 +1184,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1228,6 +1278,8 @@ msgstr "오른쪽 채널 핀이 잘못되었습니다"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "핀이 유효하지 않습니다"
|
msgstr "핀이 유효하지 않습니다"
|
||||||
|
|
||||||
@ -1256,7 +1308,7 @@ msgstr ""
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1264,10 +1316,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1284,10 +1332,6 @@ msgstr ""
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
msgid "Key must be 16, 24, or 32 bytes long"
|
msgid "Key must be 16, 24, or 32 bytes long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1349,6 +1393,36 @@ msgstr ""
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1381,9 +1455,14 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1402,14 +1481,14 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1466,6 +1545,16 @@ msgstr ""
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1521,6 +1610,10 @@ msgstr ""
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1570,10 +1663,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1593,6 +1691,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1605,11 +1704,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 ""
|
msgstr ""
|
||||||
@ -1635,6 +1743,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1670,10 +1782,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1682,6 +1818,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1689,6 +1829,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1697,7 +1838,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1754,11 +1895,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1777,6 +1913,10 @@ msgstr ""
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1807,6 +1947,14 @@ msgstr ""
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1838,6 +1986,14 @@ msgstr ""
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1971,6 +2127,10 @@ msgstr ""
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1998,6 +2158,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2035,7 +2196,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2076,7 +2237,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2127,6 +2289,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2332,7 +2495,7 @@ msgstr ""
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3178,6 +3341,10 @@ msgstr ""
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3492,6 +3659,10 @@ msgstr ""
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3508,6 +3679,7 @@ msgstr ""
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3525,6 +3697,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -3728,6 +3908,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3938,6 +4119,11 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 ""
|
||||||
|
239
locale/nl.po
239
locale/nl.po
@ -342,6 +342,10 @@ msgstr "Alle UART peripherals zijn in gebruik"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Alle event kanalen zijn in gebruik"
|
msgstr "Alle event kanalen zijn in gebruik"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Alle sync event kanalen zijn in gebruik"
|
msgstr "Alle sync event kanalen zijn in gebruik"
|
||||||
@ -362,6 +366,7 @@ msgstr "Alle timers voor deze pin zijn in gebruik"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Alle timers zijn in gebruik"
|
msgstr "Alle timers zijn in gebruik"
|
||||||
@ -390,6 +395,7 @@ msgstr "AnalogIn niet ondersteund door gegeven pin"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "AnalogOut functionaliteit niet ondersteund"
|
msgstr "AnalogOut functionaliteit niet ondersteund"
|
||||||
|
|
||||||
@ -591,6 +597,7 @@ msgstr "Kan waardes niet verwijderen"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "get pull kan niet gedurende output mode"
|
msgstr "get pull kan niet gedurende output mode"
|
||||||
|
|
||||||
@ -630,6 +637,10 @@ msgid "Cannot reset into bootloader because no bootloader is present."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Kan niet resetten naar bootloader omdat er geen bootloader aanwezig is."
|
"Kan niet resetten naar bootloader omdat er geen bootloader aanwezig is."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Kan de waarde niet toewijzen als de richting input is."
|
msgstr "Kan de waarde niet toewijzen als de richting input is."
|
||||||
@ -870,11 +881,12 @@ msgstr "EXTINT kanaal al in gebruik"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Fout in regex"
|
msgstr "Fout in regex"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -928,7 +940,7 @@ msgstr "FFT alleen voor ndarrays gedefineerd"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr "FFT is alleen geïmplementeerd voor lineaire arrays"
|
msgstr "FFT is alleen geïmplementeerd voor lineaire arrays"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr "SSL handdruk mislukt"
|
msgstr "SSL handdruk mislukt"
|
||||||
|
|
||||||
@ -1057,6 +1069,10 @@ msgstr "I/O actie op gesloten bestand"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "I2C Init Fout"
|
msgstr "I2C Init Fout"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOut is niet beschikbaar"
|
msgstr "I2SOut is niet beschikbaar"
|
||||||
@ -1082,10 +1098,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Incorrecte buffer grootte"
|
msgstr "Incorrecte buffer grootte"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "De initialisatie is mislukt vanwege een gebrek aan geheugen"
|
msgstr "De initialisatie is mislukt vanwege een gebrek aan geheugen"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "Invoer duurt te lang"
|
msgstr "Invoer duurt te lang"
|
||||||
@ -1094,6 +1119,31 @@ msgstr "Invoer duurt te lang"
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Input/Output fout"
|
msgstr "Input/Output fout"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Onvoldoende authenticatie"
|
msgstr "Onvoldoende authenticatie"
|
||||||
@ -1145,7 +1195,7 @@ msgstr "Ongeldige DAC pin opgegeven"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Ongeldige PWM frequentie"
|
msgstr "Ongeldige PWM frequentie"
|
||||||
|
|
||||||
@ -1239,6 +1289,8 @@ msgstr "Ongeldige pin voor rechter kanaal"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Ongeldige pinnen"
|
msgstr "Ongeldige pinnen"
|
||||||
|
|
||||||
@ -1267,7 +1319,7 @@ msgstr "Ongeldige security_mode"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1275,10 +1327,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "Ongeldige stem"
|
msgstr "Ongeldige stem"
|
||||||
@ -1295,10 +1343,6 @@ msgstr "Ongeldig wave bestand"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Ongeldig woord/bit lengte"
|
msgstr "Ongeldig woord/bit lengte"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1360,6 +1404,36 @@ msgstr "Microfoon opstart vertraging moet in bereik van 0.0 tot 1.0 zijn"
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "Ontbrekende MISO of MOSI Pin"
|
msgstr "Ontbrekende MISO of MOSI Pin"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "%q moet een subklasse zijn."
|
msgstr "%q moet een subklasse zijn."
|
||||||
@ -1392,9 +1466,14 @@ msgstr "Geen DAC op de chip"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Geen DMA kanaal gevonden"
|
msgstr "Geen DMA kanaal gevonden"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1413,14 +1492,14 @@ msgstr "Geen MOSI pin"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Geen RX pin"
|
msgstr "Geen RX pin"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Geen TX pin"
|
msgstr "Geen TX pin"
|
||||||
|
|
||||||
@ -1477,6 +1556,16 @@ msgstr "Geen timers meer beschikbaar op deze pin."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr "Geen netwerk met dat SSID gevonden"
|
msgstr "Geen netwerk met dat SSID gevonden"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Geen pulldown op pin; 1MOhm aangeraden"
|
msgstr "Geen pulldown op pin; 1MOhm aangeraden"
|
||||||
@ -1534,6 +1623,10 @@ msgstr "Oneven pariteit is niet ondersteund"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Alleen 8 of 16 bit mono met "
|
msgstr "Alleen 8 of 16 bit mono met "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr "Alleen IPv4 adressen worden ondersteund"
|
msgstr "Alleen IPv4 adressen worden ondersteund"
|
||||||
@ -1587,10 +1680,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr "Geen sockets meer beschikbaar"
|
msgstr "Geen sockets meer beschikbaar"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Oversample moet een meervoud van 8 zijn."
|
msgstr "Oversample moet een meervoud van 8 zijn."
|
||||||
@ -1613,6 +1711,7 @@ msgstr ""
|
|||||||
"tijdens constructie."
|
"tijdens constructie."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBus nog niet ondersteund"
|
msgstr "ParallelBus nog niet ondersteund"
|
||||||
@ -1625,11 +1724,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Toegang geweigerd"
|
msgstr "Toegang geweigerd"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 heeft geen ADC mogelijkheden"
|
msgstr "Pin heeft geen ADC mogelijkheden"
|
||||||
@ -1658,6 +1766,10 @@ msgstr ""
|
|||||||
"gebruikt. Als dit niet kan worden vermeden, geef dan het argument "
|
"gebruikt. Als dit niet kan worden vermeden, geef dan het argument "
|
||||||
"allow_inefficient=True aan de constructor"
|
"allow_inefficient=True aan de constructor"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "En iedere module in het bestandssysteem\n"
|
msgstr "En iedere module in het bestandssysteem\n"
|
||||||
@ -1699,10 +1811,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Pull niet gebruikt wanneer de richting output is."
|
msgstr "Pull niet gebruikt wanneer de richting output is."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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"
|
||||||
@ -1711,6 +1847,10 @@ msgstr "RNG DeInit Fout"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "RNG Init Fout"
|
msgstr "RNG Init Fout"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1718,6 +1858,7 @@ msgstr "RS485 inversie gespecificeerd terwijl niet in RS485 modus"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "RTC calibratie niet ondersteund door dit board"
|
msgstr "RTC calibratie niet ondersteund door dit board"
|
||||||
|
|
||||||
@ -1726,7 +1867,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "RTC is niet ondersteund door dit board"
|
msgstr "RTC is niet ondersteund door dit board"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS/CTS/RS485 Nog niet ondersteund door dit apparaat"
|
msgstr "RTS/CTS/RS485 Nog niet ondersteund door dit apparaat"
|
||||||
|
|
||||||
@ -1783,11 +1924,6 @@ msgstr "Veilige modus wordt uitgevoerd! "
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr "SD kaart CSD formaat niet ondersteund"
|
msgstr "SD kaart CSD formaat niet ondersteund"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA of SCL hebben een pullup nodig"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1806,6 +1942,10 @@ msgstr "SPI Init Fout"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "SPI Herinitialisatie Fout"
|
msgstr "SPI Herinitialisatie Fout"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Sample rate moet positief zijn"
|
msgstr "Sample rate moet positief zijn"
|
||||||
@ -1836,6 +1976,14 @@ msgstr "Serializer in gebruik"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr "Context aan de serverkant kan geen hostnaam hebben"
|
msgstr "Context aan de serverkant kan geen hostnaam hebben"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr "Afmeting niet ondersteund"
|
msgstr "Afmeting niet ondersteund"
|
||||||
@ -1867,6 +2015,14 @@ msgstr "Splitting met sub-captures"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Stack grootte moet op zijn minst 256 zijn"
|
msgstr "Stack grootte moet op zijn minst 256 zijn"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Stream mist readinto() of write() methode."
|
msgstr "Stream mist readinto() of write() methode."
|
||||||
@ -2010,6 +2166,10 @@ msgstr "UART Init Fout"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "UART Re-init Fout"
|
msgstr "UART Re-init Fout"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "UART schrijf fout"
|
msgstr "UART schrijf fout"
|
||||||
@ -2036,6 +2196,7 @@ msgstr "UUID waarde is geen str, int, of byte buffer"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Niet in staat buffers voor gesigneerde conversie te alloceren"
|
msgstr "Niet in staat buffers voor gesigneerde conversie te alloceren"
|
||||||
|
|
||||||
@ -2073,7 +2234,7 @@ msgstr "Kan niet naar sleep_memory schrijven."
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Onverwacht mrfx uuid type"
|
msgstr "Onverwacht mrfx uuid type"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
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"
|
||||||
@ -2116,7 +2277,8 @@ msgstr ""
|
|||||||
"apparaat geweigerd of genegeerd werd."
|
"apparaat geweigerd of genegeerd werd."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Niet-ondersteunde baudsnelheid"
|
msgstr "Niet-ondersteunde baudsnelheid"
|
||||||
|
|
||||||
@ -2167,6 +2329,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "WAARSCHUWING: De bestandsnaam van de code heeft twee extensies\n"
|
msgstr "WAARSCHUWING: De bestandsnaam van de code heeft twee extensies\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"WatchDogTimer kan niet worden gedeïnitialiseerd zodra de modus in ingesteld "
|
"WatchDogTimer kan niet worden gedeïnitialiseerd zodra de modus in ingesteld "
|
||||||
@ -2381,7 +2544,7 @@ msgstr "buffer slices moeten van gelijke grootte zijn"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "buffer te klein"
|
msgstr "buffer te klein"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr "buffer te klein voor gevraagde bytes"
|
msgstr "buffer te klein voor gevraagde bytes"
|
||||||
|
|
||||||
@ -3235,6 +3398,10 @@ msgstr "geheugentoewijzing mislukt, %u bytes worden toegewezen"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "geheugentoewijzing mislukt, heap is vergrendeld"
|
msgstr "geheugentoewijzing mislukt, heap is vergrendeld"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "module niet gevonden"
|
msgstr "module niet gevonden"
|
||||||
@ -3550,6 +3717,10 @@ msgstr "pop van een lege PulseIn"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr "pop van een lege %q"
|
msgstr "pop van een lege %q"
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "derde argument van pow() mag geen 0 zijn"
|
msgstr "derde argument van pow() mag geen 0 zijn"
|
||||||
@ -3566,6 +3737,7 @@ msgstr "pow() met 3 argumenten vereist integers"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3583,6 +3755,14 @@ msgstr "druk bootknop in bij opstarten.\n"
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr "druk beide knoppen in bij opstarten.\n"
|
msgstr "druk beide knoppen in bij opstarten.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "wachtrij overloop"
|
msgstr "wachtrij overloop"
|
||||||
@ -3788,6 +3968,7 @@ msgstr "time.struct_time() accepteert een 9-rij"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "time-outduur is groter dan de ondersteunde maximale waarde"
|
msgstr "time-outduur is groter dan de ondersteunde maximale waarde"
|
||||||
|
|
||||||
@ -3998,6 +4179,11 @@ msgstr "watchdog niet geïnitialiseerd"
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdog time-out moet groter zijn dan 0"
|
msgstr "watchdog time-out moet groter zijn dan 0"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -4070,6 +4256,9 @@ 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 "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA of SCL hebben een pullup nodig"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr "%d adres pins en %d RGB pins geven een hoogte van %d aan, niet %d"
|
#~ msgstr "%d adres pins en %d RGB pins geven een hoogte van %d aan, niet %d"
|
||||||
|
|
||||||
|
247
locale/pl.po
247
locale/pl.po
@ -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-01-27 01:31+0000\n"
|
"PO-Revision-Date: 2021-02-10 21:50+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"
|
||||||
@ -344,6 +344,10 @@ msgstr "Wszystkie peryferia UART w użyciu"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Wszystkie kanały zdarzeń w użyciu"
|
msgstr "Wszystkie kanały zdarzeń w użyciu"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Wszystkie kanały zdarzeń synchronizacji w użyciu"
|
msgstr "Wszystkie kanały zdarzeń synchronizacji w użyciu"
|
||||||
@ -364,6 +368,7 @@ msgstr "Wszystkie timery tej nóżki w użyciu"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Wszystkie timery w użyciu"
|
msgstr "Wszystkie timery w użyciu"
|
||||||
@ -392,6 +397,7 @@ msgstr "AnalogIn nie jest obsługiwany na danym pinie"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "AnalogOut jest niewspierane"
|
msgstr "AnalogOut jest niewspierane"
|
||||||
|
|
||||||
@ -593,6 +599,7 @@ msgstr "Nie można usunąć"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Nie ma podciągnięcia w trybie wyjścia"
|
msgstr "Nie ma podciągnięcia w trybie wyjścia"
|
||||||
|
|
||||||
@ -630,6 +637,10 @@ msgstr "Nie można przemontować '/' gdy USB działa."
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr "Nie można zrestartować -- nie ma bootloadera."
|
msgstr "Nie można zrestartować -- nie ma bootloadera."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Nie można ustawić wartości w trybie wejścia."
|
msgstr "Nie można ustawić wartości w trybie wejścia."
|
||||||
@ -870,11 +881,12 @@ msgstr "Kanał EXTINT w użyciu"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Błąd w regex"
|
msgstr "Błąd w regex"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -928,7 +940,7 @@ msgstr ""
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1056,6 +1068,10 @@ msgstr "Operacja I/O na zamkniętym pliku"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "Błąd inicjalizacji I2C"
|
msgstr "Błąd inicjalizacji I2C"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOut niedostępne"
|
msgstr "I2SOut niedostępne"
|
||||||
@ -1081,10 +1097,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Niewłaściwa wielkość bufora"
|
msgstr "Niewłaściwa wielkość bufora"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "Inicjalizacja nie powiodła się z powodu braku pamięci"
|
msgstr "Inicjalizacja nie powiodła się z powodu braku pamięci"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1093,6 +1118,31 @@ msgstr ""
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Błąd I/O"
|
msgstr "Błąd I/O"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Niewystarczające uwierzytelnienie"
|
msgstr "Niewystarczające uwierzytelnienie"
|
||||||
@ -1144,7 +1194,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Zła częstotliwość PWM"
|
msgstr "Zła częstotliwość PWM"
|
||||||
|
|
||||||
@ -1238,6 +1288,8 @@ msgstr "Zła nóżka dla prawego kanału"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Złe nóżki"
|
msgstr "Złe nóżki"
|
||||||
|
|
||||||
@ -1266,7 +1318,7 @@ msgstr "Nieprawidłowy security_mode"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr "Nieprawidłowy rozmiar"
|
msgstr "Nieprawidłowy rozmiar"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1274,10 +1326,6 @@ msgstr ""
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr "Nieprawidłowy stan"
|
msgstr "Nieprawidłowy stan"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1294,10 +1342,6 @@ msgstr "Zły plik wave"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Niepoprawna długość słowa/bitu"
|
msgstr "Niepoprawna długość słowa/bitu"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1360,6 +1404,36 @@ msgstr "Opóźnienie włączenia mikrofonu musi być w zakresie od 0.0 do 1.0"
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "Brak pinu MISO lub MOSI"
|
msgstr "Brak pinu MISO lub MOSI"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1392,9 +1466,14 @@ msgstr "Brak DAC"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Nie znaleziono kanału DMA"
|
msgstr "Nie znaleziono kanału DMA"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1413,14 +1492,14 @@ msgstr "Brak pinu MOSI"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Brak nóżki RX"
|
msgstr "Brak nóżki RX"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Brak nóżki TX"
|
msgstr "Brak nóżki TX"
|
||||||
|
|
||||||
@ -1477,6 +1556,16 @@ msgstr ""
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1532,6 +1621,10 @@ msgstr "Nieparzysta parzystość nie jest wspierana"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Tylko 8 lub 16 bitów mono z "
|
msgstr "Tylko 8 lub 16 bitów mono z "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1581,10 +1674,15 @@ msgstr ""
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr "Brak pamięci"
|
msgstr "Brak pamięci"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Nadpróbkowanie musi być wielokrotnością 8."
|
msgstr "Nadpróbkowanie musi być wielokrotnością 8."
|
||||||
@ -1604,6 +1702,7 @@ msgid ""
|
|||||||
msgstr "Nie można zmienić częstotliwości PWM gdy variable_frequency=False."
|
msgstr "Nie można zmienić częstotliwości PWM gdy variable_frequency=False."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBus nie jest jeszcze obsługiwany"
|
msgstr "ParallelBus nie jest jeszcze obsługiwany"
|
||||||
@ -1616,11 +1715,20 @@ msgstr ""
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Odmowa dostępu"
|
msgstr "Odmowa dostępu"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 "Nóżka nie obsługuje ADC"
|
msgstr "Nóżka nie obsługuje ADC"
|
||||||
@ -1646,6 +1754,10 @@ msgid ""
|
|||||||
"constructor"
|
"constructor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Oraz moduły w systemie plików\n"
|
msgstr "Oraz moduły w systemie plików\n"
|
||||||
@ -1681,10 +1793,34 @@ msgstr ""
|
|||||||
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 ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Podciągnięcie nieużywane w trybie wyjścia."
|
msgstr "Podciągnięcie nieużywane w trybie wyjścia."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
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 ""
|
||||||
@ -1693,6 +1829,10 @@ msgstr ""
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1700,6 +1840,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "Brak obsługi kalibracji RTC"
|
msgstr "Brak obsługi kalibracji RTC"
|
||||||
|
|
||||||
@ -1708,7 +1849,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "Brak obsługi RTC"
|
msgstr "Brak obsługi RTC"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1765,11 +1906,6 @@ msgstr ""
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA lub SCL wymagają podciągnięcia"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1788,6 +1924,10 @@ msgstr "Błąd inicjowania SPI"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "Błąd ponownej inicjalizacji SPI"
|
msgstr "Błąd ponownej inicjalizacji SPI"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Częstotliwość próbkowania musi być dodatnia"
|
msgstr "Częstotliwość próbkowania musi być dodatnia"
|
||||||
@ -1818,6 +1958,14 @@ msgstr "Serializator w użyciu"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1849,6 +1997,14 @@ msgstr "Podział z podgrupami"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Stos musi mieć co najmniej 256 bajtów"
|
msgstr "Stos musi mieć co najmniej 256 bajtów"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Strumień nie ma metod readinto() lub write()."
|
msgstr "Strumień nie ma metod readinto() lub write()."
|
||||||
@ -1982,6 +2138,10 @@ msgstr ""
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "Błąd zapisu UART"
|
msgstr "Błąd zapisu UART"
|
||||||
@ -2008,6 +2168,7 @@ msgstr "UUID nie jest typu str, int lub bytes"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Nie udała się alokacja buforów do konwersji ze znakiem"
|
msgstr "Nie udała się alokacja buforów do konwersji ze znakiem"
|
||||||
|
|
||||||
@ -2045,7 +2206,7 @@ msgstr ""
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Nieoczekiwany typ nrfx uuid"
|
msgstr "Nieoczekiwany typ nrfx uuid"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unhandled ESP TLS error %d %d %x %d"
|
msgid "Unhandled ESP TLS error %d %d %x %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2086,7 +2247,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Zła szybkość transmisji"
|
msgstr "Zła szybkość transmisji"
|
||||||
|
|
||||||
@ -2137,6 +2299,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "UWAGA: Nazwa pliku ma dwa rozszerzenia\n"
|
msgstr "UWAGA: Nazwa pliku ma dwa rozszerzenia\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2348,7 +2511,7 @@ msgstr "fragmenty bufora muszą mieć tę samą długość"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "zbyt mały bufor"
|
msgstr "zbyt mały bufor"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3195,6 +3358,10 @@ msgstr "alokacja pamięci nie powiodła się, alokowano %u bajtów"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "alokacja pamięci nie powiodła się, sterta zablokowana"
|
msgstr "alokacja pamięci nie powiodła się, sterta zablokowana"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "brak modułu"
|
msgstr "brak modułu"
|
||||||
@ -3510,6 +3677,10 @@ msgstr "pop z pustego PulseIn"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "trzeci argument pow() nie może być 0"
|
msgstr "trzeci argument pow() nie może być 0"
|
||||||
@ -3526,6 +3697,7 @@ msgstr "trzyargumentowe pow() wymaga liczb całkowitych"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3543,6 +3715,14 @@ msgstr ""
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "przepełnienie kolejki"
|
msgstr "przepełnienie kolejki"
|
||||||
@ -3747,6 +3927,7 @@ msgstr "time.struct_time() wymaga 9-elementowej sekwencji"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3957,9 +4138,14 @@ msgstr ""
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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 "szerokość musi być większa niż zero"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/Radio.c
|
#: ports/esp32s2/common-hal/wifi/Radio.c
|
||||||
msgid "wifi is not enabled"
|
msgid "wifi is not enabled"
|
||||||
@ -3979,7 +4165,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: extmod/ulab/code/vector/vectorise.c
|
#: extmod/ulab/code/vector/vectorise.c
|
||||||
msgid "wrong input type"
|
msgid "wrong input type"
|
||||||
msgstr ""
|
msgstr "nieprawidłowy typ wejścia"
|
||||||
|
|
||||||
#: extmod/ulab/code/ulab_create.c py/objstr.c
|
#: extmod/ulab/code/ulab_create.c py/objstr.c
|
||||||
msgid "wrong number of arguments"
|
msgid "wrong number of arguments"
|
||||||
@ -3995,7 +4181,7 @@ msgstr "zły typ operandu"
|
|||||||
|
|
||||||
#: extmod/ulab/code/vector/vectorise.c
|
#: extmod/ulab/code/vector/vectorise.c
|
||||||
msgid "wrong output type"
|
msgid "wrong output type"
|
||||||
msgstr ""
|
msgstr "nieprawidłowy typ wyjścia"
|
||||||
|
|
||||||
#: shared-module/displayio/Shape.c
|
#: shared-module/displayio/Shape.c
|
||||||
msgid "x value out of bounds"
|
msgid "x value out of bounds"
|
||||||
@ -4029,6 +4215,9 @@ msgstr ""
|
|||||||
msgid "zi must be of shape (n_section, 2)"
|
msgid "zi must be of shape (n_section, 2)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA lub SCL wymagają podciągnięcia"
|
||||||
|
|
||||||
#~ msgid "tuple index out of range"
|
#~ msgid "tuple index out of range"
|
||||||
#~ msgstr "indeks krotki poza zakresem"
|
#~ msgstr "indeks krotki poza zakresem"
|
||||||
|
|
||||||
|
260
locale/pt_BR.po
260
locale/pt_BR.po
@ -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-01-22 15:30+0000\n"
|
"PO-Revision-Date: 2021-02-21 22:27+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.5-dev\n"
|
"X-Generator: Weblate 4.5\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -68,6 +68,8 @@ msgstr "%%c requer int ou char"
|
|||||||
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 pinos de endereço, %d pinos rgb e %d blocos indicam uma altura com %d, "
|
||||||
|
"não %d"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
||||||
msgid "%q failure: %d"
|
msgid "%q failure: %d"
|
||||||
@ -350,6 +352,10 @@ msgstr "Todos os periféricos UART estão em uso"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Todos os canais de eventos em uso"
|
msgstr "Todos os canais de eventos em uso"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr "O estado de todas as máquinas em uso"
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Todos os canais dos eventos de sincronização em uso"
|
msgstr "Todos os canais dos eventos de sincronização em uso"
|
||||||
@ -370,6 +376,7 @@ msgstr "Todos os temporizadores para este pino estão em uso"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Todos os temporizadores em uso"
|
msgstr "Todos os temporizadores em uso"
|
||||||
@ -398,6 +405,7 @@ msgstr "O AnalogIn não é compatível no pino informado"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "Funcionalidade AnalogOut não suportada"
|
msgstr "Funcionalidade AnalogOut não suportada"
|
||||||
|
|
||||||
@ -606,6 +614,7 @@ msgstr "Não é possível excluir valores"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Não é possível obter (pull) enquanto estiver no modo saída"
|
msgstr "Não é possível obter (pull) enquanto estiver no modo saída"
|
||||||
|
|
||||||
@ -646,6 +655,10 @@ msgid "Cannot reset into bootloader because no bootloader is present."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Não é possível redefinir para o bootloader porque o mesmo não está presente."
|
"Não é possível redefinir para o bootloader porque o mesmo não está presente."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr "Não foi possível definir as opções do socket"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Não é possível definir o valor quando a direção é inserida."
|
msgstr "Não é possível definir o valor quando a direção é inserida."
|
||||||
@ -830,7 +843,7 @@ msgstr "O pino de dados 0 deve ser alinhado por bytes"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
||||||
msgid "Data 0 pin must be byte aligned."
|
msgid "Data 0 pin must be byte aligned."
|
||||||
msgstr ""
|
msgstr "O pino de dados 0 deve ser alinhado por bytes."
|
||||||
|
|
||||||
#: shared-module/audiocore/WaveFile.c
|
#: shared-module/audiocore/WaveFile.c
|
||||||
msgid "Data chunk must follow fmt chunk"
|
msgid "Data chunk must follow fmt chunk"
|
||||||
@ -886,11 +899,12 @@ msgstr "Canal EXTINT em uso"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Erro no regex"
|
msgstr "Erro no regex"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr "Erro: Falha na vinculação"
|
msgstr "Erro: Falha na vinculação"
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -944,7 +958,7 @@ msgstr "O FFT é definido apenas para ndarrays"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr "O FFT é implementado apenas para matrizes lineares"
|
msgstr "O FFT é implementado apenas para matrizes lineares"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr "Houve uma falha no handshake do SSL"
|
msgstr "Houve uma falha no handshake do SSL"
|
||||||
|
|
||||||
@ -1073,6 +1087,10 @@ msgstr "Operação I/O no arquivo fechado"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "Erro de inicialização do I2C"
|
msgstr "Erro de inicialização do I2C"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr "Periférico I2C em uso"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "O I2SOut não está disponível"
|
msgstr "O I2SOut não está disponível"
|
||||||
@ -1098,10 +1116,21 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "O tamanho do buffer está incorreto"
|
msgstr "O tamanho do buffer está incorreto"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr "O tamanho do programa Init é inválido"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "A inicialização falhou devido à falta de memória"
|
msgstr "A inicialização falhou devido à falta de memória"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
"O comprimento do buffer de entrada (%d) deve ser um múltiplo da contagem dos "
|
||||||
|
"fios (%d)"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "A entrada está demorando demais"
|
msgstr "A entrada está demorando demais"
|
||||||
@ -1110,6 +1139,31 @@ msgstr "A entrada está demorando demais"
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Erro de entrada/saída"
|
msgstr "Erro de entrada/saída"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr "A instrução %d salta no pino"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr "A instrução %d muda com mais bits do que a quantidade dos pinos"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr "A instrução %d desloca mais bits do que a quantidade dos pinos"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr "A instrução %d usa um pino extra"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr "A instrução %d aguarda a entrada de fora da contagem"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Autenticação insuficiente"
|
msgstr "Autenticação insuficiente"
|
||||||
@ -1161,7 +1215,7 @@ msgstr "O pino DAC informado é inválido"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Frequência PWM inválida"
|
msgstr "Frequência PWM inválida"
|
||||||
|
|
||||||
@ -1255,6 +1309,8 @@ msgstr "Pino inválido para canal direito"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Pinos inválidos"
|
msgstr "Pinos inválidos"
|
||||||
|
|
||||||
@ -1283,7 +1339,7 @@ msgstr "O Security_mode é inválido"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr "Tamanho inválido"
|
msgstr "Tamanho inválido"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr "Soquete inválido para o TLS"
|
msgstr "Soquete inválido para o TLS"
|
||||||
|
|
||||||
@ -1291,10 +1347,6 @@ msgstr "Soquete inválido para o TLS"
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr "Estado inválido"
|
msgstr "Estado inválido"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr "Uso inválido do soquete TLS"
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "A voz é inválida"
|
msgstr "A voz é inválida"
|
||||||
@ -1311,10 +1363,6 @@ msgstr "Aqruivo de ondas inválido"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "O comprimento do bit/palavra são inválidos"
|
msgstr "O comprimento do bit/palavra são inválidos"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr "Problema na configuração do SO_REUSEADDR"
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1376,6 +1424,36 @@ msgstr "O atraso na inicialização do microfone deve estar entre 0,0 e 1,0"
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "O pino MISO ou MOSI está ausente"
|
msgstr "O pino MISO ou MOSI está ausente"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr "Faltando first_in_pin. A instrução %d lê pinos(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr "Faltando first_in_pin. A instrução %d muda a partir do(s) pino(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr "Faltando first_in_pin. A instrução %d aguarda com base no pino"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr "Faltando first_out_pin. A instrução %d muda para o(s) pinos(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr "Faltando first_out_pin. A instrução %d escreve nos pinos(s)"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr "Faltando first_set_pin. A instrução %d define os pinos(s)"
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "Deve ser uma subclasse %q."
|
msgstr "Deve ser uma subclasse %q."
|
||||||
@ -1408,9 +1486,14 @@ msgstr "Nenhum DAC no chip"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Nenhum canal DMA foi encontrado"
|
msgstr "Nenhum canal DMA foi encontrado"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr "Nenhum temporizador DMA foi encontrado"
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1429,14 +1512,14 @@ msgstr "Nenhum pino MOSI"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Nenhum pino RX"
|
msgstr "Nenhum pino RX"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Nenhum pino TX"
|
msgstr "Nenhum pino TX"
|
||||||
|
|
||||||
@ -1493,6 +1576,18 @@ msgstr "Não há mais temporizadores disponíveis neste pino."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr "Não há rede com este ssid"
|
msgstr "Não há rede com este ssid"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr "Sem saída no programa"
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr ""
|
||||||
|
"Nenhum pull up foi encontrado no SDA ou no SCL; verifique o fio das suas "
|
||||||
|
"conexões"
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Não há pulldown no pino; É recomendável utilizar um resistor de 1M ohm"
|
msgstr "Não há pulldown no pino; É recomendável utilizar um resistor de 1M ohm"
|
||||||
@ -1549,6 +1644,10 @@ msgstr "A paridade ímpar não é compatível"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Apenas mono com 8 ou 16 bits com "
|
msgstr "Apenas mono com 8 ou 16 bits com "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr "Somente IN/OUT de até 8 suportados"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr "Somente os endereços IPv4 são suportados"
|
msgstr "Somente os endereços IPv4 são suportados"
|
||||||
@ -1602,10 +1701,15 @@ msgstr "A operação expirou"
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr "Sem memória"
|
msgstr "Sem memória"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr "Sem soquetes"
|
msgstr "Sem soquetes"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr "O buffer de saída deve ter ao menos %d bytes"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "A superamostragem deve ser um múltiplo de 8."
|
msgstr "A superamostragem deve ser um múltiplo de 8."
|
||||||
@ -1629,6 +1733,7 @@ msgstr ""
|
|||||||
"na construção."
|
"na construção."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "O ParallelBus ainda não é compatível"
|
msgstr "O ParallelBus ainda não é compatível"
|
||||||
@ -1641,11 +1746,20 @@ msgstr "O periférico está em uso"
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Permissão negada"
|
msgstr "Permissão negada"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr "A contagem dos pinos deve ser com pelo menos 1"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr "A contagem dos pinos é muito grande"
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 "O pino não tem recursos de ADC"
|
msgstr "O pino não tem recursos de ADC"
|
||||||
@ -1674,6 +1788,10 @@ msgstr ""
|
|||||||
"ideal. Caso isso não possa ser evitado, passe allow_inefficient=True ao "
|
"ideal. Caso isso não possa ser evitado, passe allow_inefficient=True ao "
|
||||||
"construtor"
|
"construtor"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr "Os pinos devem compartilhar a fatia do PWM"
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Além de quaisquer módulos no sistema de arquivos\n"
|
msgstr "Além de quaisquer módulos no sistema de arquivos\n"
|
||||||
@ -1718,10 +1836,34 @@ msgstr ""
|
|||||||
"Tentando entrar no deep sleep até o alarme, pressione CTRL-C ou grave o "
|
"Tentando entrar no deep sleep até o alarme, pressione CTRL-C ou grave o "
|
||||||
"arquivo.\n"
|
"arquivo.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr "O programa faz IN sem carregar o ISR"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr "O programa faz OUT sem carregar o OSR"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr "O programa deve conter pelo menos uma instrução com 16 bits."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr "O tamanho do programa é inválido"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr "O programa é muito grande"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "O Pull não foi usado quando a direção for gerada."
|
msgstr "O Pull não foi usado quando a direção for gerada."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
msgstr "O modo RAISE não foi implementado"
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -1730,6 +1872,10 @@ msgstr "Erro DeInit RNG"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "Houve um erro na inicialização do RNG"
|
msgstr "Houve um erro na inicialização do RNG"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr "Ainda não há suporte para o RS485 neste dispositivo"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1737,6 +1883,7 @@ msgstr "A definição da inversão do RS485 quando não está no modo RS485"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "A calibração RTC não é suportada nesta placa"
|
msgstr "A calibração RTC não é suportada nesta placa"
|
||||||
|
|
||||||
@ -1745,7 +1892,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "O RTC não é suportado nesta placa"
|
msgstr "O RTC não é suportado nesta placa"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS/CTS/RS485 Ainda não é compatível neste dispositivo"
|
msgstr "RTS/CTS/RS485 Ainda não é compatível neste dispositivo"
|
||||||
|
|
||||||
@ -1802,11 +1949,6 @@ msgstr "Executando no modo de segurança! "
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr "O formato CSD do Cartão SD não é compatível"
|
msgstr "O formato CSD do Cartão SD não é compatível"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA ou SCL precisa de um pull up"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1825,6 +1967,10 @@ msgstr "Houve um erro na inicialização SPI"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "Houve um erro na reinicialização SPI"
|
msgstr "Houve um erro na reinicialização SPI"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr "O periférico SPI está em uso"
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "A taxa de amostragem deve ser positiva"
|
msgstr "A taxa de amostragem deve ser positiva"
|
||||||
@ -1855,6 +2001,15 @@ msgstr "Serializer em uso"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr "O contexto do lado do servidor não pode ter nome de host"
|
msgstr "O contexto do lado do servidor não pode ter nome de host"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr "A definição da contagem dos pinos deve estar entre 1 e 5"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr ""
|
||||||
|
"A definição da contagem dos pinos do conjunto lateral deve estar entre 1 e 5"
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr "O tamanho não é suportado"
|
msgstr "O tamanho não é suportado"
|
||||||
@ -1886,6 +2041,14 @@ msgstr "Divisão com sub-capturas"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "O tamanho da pilha deve ser pelo menos 256"
|
msgstr "O tamanho da pilha deve ser pelo menos 256"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr "O estéreo à esquerda deve estar no canal PWM A"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr "O estéreo à direita deve estar no canal PWM B"
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Transmita o método ausente readinto() ou write()."
|
msgstr "Transmita o método ausente readinto() ou write()."
|
||||||
@ -2033,6 +2196,10 @@ msgstr "Houve um erro na inicialização do UART"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "Houve um erro na reinicialização do UART"
|
msgstr "Houve um erro na reinicialização do UART"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr "O UART ainda não é suportado"
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "Houve um erro na gravação UART"
|
msgstr "Houve um erro na gravação UART"
|
||||||
@ -2059,6 +2226,7 @@ msgstr "O valor UUID não é um buffer str, int ou byte"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Não é possível alocar buffers para conversão assinada"
|
msgstr "Não é possível alocar buffers para conversão assinada"
|
||||||
|
|
||||||
@ -2096,7 +2264,7 @@ msgstr "Não foi possível escrever no sleep_memory."
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Tipo uuid nrfx inesperado"
|
msgstr "Tipo uuid nrfx inesperado"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
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"
|
||||||
@ -2139,7 +2307,8 @@ msgstr ""
|
|||||||
"dispositivo tenha sido recusado ou ignorado."
|
"dispositivo tenha sido recusado ou ignorado."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Taxa de transmissão não suportada"
|
msgstr "Taxa de transmissão não suportada"
|
||||||
|
|
||||||
@ -2190,6 +2359,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "AVISO: Seu arquivo de código tem duas extensões\n"
|
msgstr "AVISO: Seu arquivo de código tem duas extensões\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O WatchDogTimer não pode ser não-inicializado uma vez que o modo é definido "
|
"O WatchDogTimer não pode ser não-inicializado uma vez que o modo é definido "
|
||||||
@ -2405,7 +2575,7 @@ msgstr "as fatias do buffer devem ter o mesmo comprimento"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "o buffer é muito pequeno"
|
msgstr "o buffer é muito pequeno"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr "o buffer é pequeno demais para os bytes requisitados"
|
msgstr "o buffer é pequeno demais para os bytes requisitados"
|
||||||
|
|
||||||
@ -3266,6 +3436,10 @@ msgstr ""
|
|||||||
"falha na alocação de memória, a área de alocação dinâmica de variáveis "
|
"falha na alocação de memória, a área de alocação dinâmica de variáveis "
|
||||||
"(heap) está bloqueada"
|
"(heap) está bloqueada"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr "memoryview: o comprimento não é um múltiplo do tamanho dos itens"
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "o módulo não foi encontrado"
|
msgstr "o módulo não foi encontrado"
|
||||||
@ -3585,6 +3759,10 @@ msgstr "pop a partir de um PulseIn vazio"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr "pop a partir do %q vazio"
|
msgstr "pop a partir do %q vazio"
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr "a porta deve ser > = 0"
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "O terceiro argumento pow() não pode ser 0"
|
msgstr "O terceiro argumento pow() não pode ser 0"
|
||||||
@ -3601,6 +3779,7 @@ msgstr "o pow() com 3 argumentos requer números inteiros"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3618,6 +3797,14 @@ msgstr "pressionando o botão de boot na inicialização.\n"
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr "pressionando ambos os botões durante a inicialização.\n"
|
msgstr "pressionando ambos os botões durante a inicialização.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr "O pull_threshold deve ser entre 1 e 32"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr "O pull_threshold deve ser entre 1 e 32"
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "estouro de fila"
|
msgstr "estouro de fila"
|
||||||
@ -3815,7 +4002,7 @@ msgstr "Limite deve estar no alcance de 0-65536"
|
|||||||
|
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
msgid "tile must be greater than zero"
|
msgid "tile must be greater than zero"
|
||||||
msgstr ""
|
msgstr "o bloco deve ser maior que zero"
|
||||||
|
|
||||||
#: shared-bindings/time/__init__.c
|
#: shared-bindings/time/__init__.c
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
@ -3823,6 +4010,7 @@ msgstr "time.struct_time() leva uma sequência com 9"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "a duração do tempo limite excedeu o valor máximo suportado"
|
msgstr "a duração do tempo limite excedeu o valor máximo suportado"
|
||||||
|
|
||||||
@ -4033,6 +4221,11 @@ msgstr "o watchdog não foi inicializado"
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "o tempo limite do watchdog deve ser maior que 0"
|
msgstr "o tempo limite do watchdog deve ser maior que 0"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr "a largura deve ser entre 2 a 8 (inclusive), não %d"
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -4105,6 +4298,15 @@ 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 "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA ou SCL precisa de um pull up"
|
||||||
|
|
||||||
|
#~ msgid "Invalid use of TLS Socket"
|
||||||
|
#~ msgstr "Uso inválido do soquete TLS"
|
||||||
|
|
||||||
|
#~ msgid "Issue setting SO_REUSEADDR"
|
||||||
|
#~ msgstr "Problema na configuração do SO_REUSEADDR"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "%d endereços dos pinos e %d pinos rgb indicam uma altura do %d, não %d"
|
#~ "%d endereços dos pinos e %d pinos rgb indicam uma altura do %d, não %d"
|
||||||
|
254
locale/sv.po
254
locale/sv.po
@ -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-01-25 19:32+0000\n"
|
"PO-Revision-Date: 2021-02-21 22:27+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.5-dev\n"
|
"X-Generator: Weblate 4.5\n"
|
||||||
|
|
||||||
#: main.c
|
#: main.c
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -68,6 +68,7 @@ msgstr "%%c kräver int eller char"
|
|||||||
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 adresspinnar, %d rgb-stift och %d brickor anger en höjd på %d, inte %d"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
||||||
msgid "%q failure: %d"
|
msgid "%q failure: %d"
|
||||||
@ -346,6 +347,10 @@ msgstr "Alla UART-kringutrustning används"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Alla händelsekanaler används"
|
msgstr "Alla händelsekanaler används"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr "Alla tillståndsmaskiner används"
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Alla händelsekanaler används"
|
msgstr "Alla händelsekanaler används"
|
||||||
@ -366,6 +371,7 @@ msgstr "Alla timers för denna pinne är i bruk"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Alla timers används"
|
msgstr "Alla timers används"
|
||||||
@ -394,6 +400,7 @@ msgstr "AnalogIn stöds inte på angiven pinne"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "AnalogOut-funktionalitet stöds inte"
|
msgstr "AnalogOut-funktionalitet stöds inte"
|
||||||
|
|
||||||
@ -596,6 +603,7 @@ msgstr "Kan inte radera värden"
|
|||||||
#: 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
|
||||||
msgid "Cannot get pull while in output mode"
|
msgid "Cannot get pull while in output mode"
|
||||||
msgstr "Kan inte ange pull i output-läge"
|
msgstr "Kan inte ange pull i output-läge"
|
||||||
|
|
||||||
@ -635,6 +643,10 @@ msgid "Cannot reset into bootloader because no bootloader is present."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Det går inte att återställa till bootloader eftersom bootloader saknas."
|
"Det går inte att återställa till bootloader eftersom bootloader saknas."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr "Det går inte att ange socketalternativ"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Kan inte sätta värde när riktning är input."
|
msgstr "Kan inte sätta värde när riktning är input."
|
||||||
@ -819,7 +831,7 @@ msgstr "Datapinne 0 måste vara bytejusterad"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
||||||
msgid "Data 0 pin must be byte aligned."
|
msgid "Data 0 pin must be byte aligned."
|
||||||
msgstr ""
|
msgstr "Datapinne 0 måste vara byte-justerad."
|
||||||
|
|
||||||
#: shared-module/audiocore/WaveFile.c
|
#: shared-module/audiocore/WaveFile.c
|
||||||
msgid "Data chunk must follow fmt chunk"
|
msgid "Data chunk must follow fmt chunk"
|
||||||
@ -875,11 +887,12 @@ msgstr "EXTINT-kanalen används redan"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Fel i regex"
|
msgstr "Fel i regex"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr "Fel: Bind misslyckades"
|
msgstr "Fel: Bind misslyckades"
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -933,7 +946,7 @@ msgstr "FFT är enbart definierade för ndarrays"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr "FTT är enbart implementerad för linjära matriser"
|
msgstr "FTT är enbart implementerad för linjära matriser"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr "Misslyckad SSL-handskakning"
|
msgstr "Misslyckad SSL-handskakning"
|
||||||
|
|
||||||
@ -1061,6 +1074,10 @@ msgstr "I/O-operation på stängd fil"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "I2C init-fel"
|
msgstr "I2C init-fel"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr "I2C-enhet används redan"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOut är inte tillgängligt"
|
msgstr "I2SOut är inte tillgängligt"
|
||||||
@ -1086,10 +1103,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Fel buffertstorlek"
|
msgstr "Fel buffertstorlek"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr "Storlek på init-program ogiltigt"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "Initieringen misslyckades på grund av minnesbrist"
|
msgstr "Initieringen misslyckades på grund av minnesbrist"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr "indatabuffertlängd (%d) måste vara en multipel av antal strand (%d)"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "Indata tar för lång tid"
|
msgstr "Indata tar för lång tid"
|
||||||
@ -1098,6 +1124,31 @@ msgstr "Indata tar för lång tid"
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Indata-/utdatafel"
|
msgstr "Indata-/utdatafel"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr "Instruktion %d hoppar på pinne"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr "Instruktion %d skiftar fler bitar än antalet pinnar"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr "Instruktion %d skiftar fler bitar än antal pinnar"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr "Instruktion %d använder extra pinne"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr "Instruktion %d väntar på inmatning utanför intervallet"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Otillräcklig autentisering"
|
msgstr "Otillräcklig autentisering"
|
||||||
@ -1149,7 +1200,7 @@ msgstr "Ogiltig DAC-pinne angiven"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Ogiltig PWM-frekvens"
|
msgstr "Ogiltig PWM-frekvens"
|
||||||
|
|
||||||
@ -1243,6 +1294,8 @@ msgstr "Ogiltig pinne för höger kanal"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Ogiltiga pinnar"
|
msgstr "Ogiltiga pinnar"
|
||||||
|
|
||||||
@ -1271,7 +1324,7 @@ msgstr "Ogiltigt säkerhetsläge"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr "Ogiltig storlek"
|
msgstr "Ogiltig storlek"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr "Ogiltig socket för TLS"
|
msgstr "Ogiltig socket för TLS"
|
||||||
|
|
||||||
@ -1279,10 +1332,6 @@ msgstr "Ogiltig socket för TLS"
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr "Ogiltigt tillstånd"
|
msgstr "Ogiltigt tillstånd"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr "Ogiltig användning av TLS Socket"
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "Ogiltig kanal"
|
msgstr "Ogiltig kanal"
|
||||||
@ -1299,10 +1348,6 @@ msgstr "Ogiltig wave-fil"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Ogiltig word-/bitlängd"
|
msgstr "Ogiltig word-/bitlängd"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr "Misslyckades att sätta SO_REUSEADDR"
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1365,6 +1410,36 @@ msgstr ""
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "MISO- eller MOSI-pinne saknas"
|
msgstr "MISO- eller MOSI-pinne saknas"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr "Saknad first_in_pin. Instruktion %d läser pinnar"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr "Saknad first_in_pin. Instruktion %d skiftar in från pinnar"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr "Saknad first_in_pin. Instruktion %d väntar baserat på pinne"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr "Saknad first_out_pin. Instruktion %d skiftar ut till pinnar"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr "Saknad first_out_pin. Instruktion %d skriver till pinnar"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr "Saknad first_set_pin. Instruktion %d sätter pinnar"
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "Måste vara en %q-subklass."
|
msgstr "Måste vara en %q-subklass."
|
||||||
@ -1397,9 +1472,14 @@ msgstr "Ingen DAC på chipet"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Ingen DMA-kanal hittades"
|
msgstr "Ingen DMA-kanal hittades"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr "Ingen DMA pacing timer hittades"
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1418,14 +1498,14 @@ msgstr "Ingen MOSI-pinne"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Ingen RX-pinne"
|
msgstr "Ingen RX-pinne"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Ingen TX-pinne"
|
msgstr "Ingen TX-pinne"
|
||||||
|
|
||||||
@ -1482,6 +1562,16 @@ msgstr "Inga fler timers tillgängliga på denna pinne."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr "Inget nätverk med sådant ssid"
|
msgstr "Inget nätverk med sådant ssid"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr "Inget out i programmet"
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr "Ingen pull-up hittades på SDA eller SCL; kontrollera inkopplingen"
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Ingen pulldown på pinnen; 1Mohm rekommenderas"
|
msgstr "Ingen pulldown på pinnen; 1Mohm rekommenderas"
|
||||||
@ -1539,6 +1629,10 @@ msgstr "Udda paritet stöds inte"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Endast 8 eller 16 bitars mono med "
|
msgstr "Endast 8 eller 16 bitars mono med "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr "Endast IN/OUT på upp till 8 stöds"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr "Endast IPv4-adresser stöds"
|
msgstr "Endast IPv4-adresser stöds"
|
||||||
@ -1591,10 +1685,15 @@ msgstr "Åtgärden orsakade timeout"
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr "Slut på minne"
|
msgstr "Slut på minne"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr "Slut på sockets"
|
msgstr "Slut på sockets"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr "Utdatabuffert måste vara minst %d byte"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Översampling måste vara multipel av 8."
|
msgstr "Översampling måste vara multipel av 8."
|
||||||
@ -1616,6 +1715,7 @@ msgstr ""
|
|||||||
"skapandet."
|
"skapandet."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "ParallelBus stöds ännu inte"
|
msgstr "ParallelBus stöds ännu inte"
|
||||||
@ -1628,11 +1728,20 @@ msgstr "Periferi i bruk"
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Åtkomst nekad"
|
msgstr "Åtkomst nekad"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr "Antalet pinnar måste vara minst 1"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr "Antal pinnar för stort"
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 "Pinnen har inte ADC-funktionalitet"
|
msgstr "Pinnen har inte ADC-funktionalitet"
|
||||||
@ -1661,6 +1770,10 @@ msgstr ""
|
|||||||
"%d byte. Om detta inte kan undvikas, skicka allow_inefficient=True till "
|
"%d byte. Om detta inte kan undvikas, skicka allow_inefficient=True till "
|
||||||
"konstruktorn"
|
"konstruktorn"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr "Pinnar måste dela PWM-segment"
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Plus eventuella moduler i filsystemet\n"
|
msgstr "Plus eventuella moduler i filsystemet\n"
|
||||||
@ -1702,10 +1815,34 @@ msgstr ""
|
|||||||
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 "Fingerar djup sömn tills larm, Ctrl-C eller filskrivning.\n"
|
msgstr "Fingerar djup sömn tills larm, Ctrl-C eller filskrivning.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr "Program gör IN utan att ladda ISR"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr "Program gör OUT utan att läsa in OSR"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr "Programmet måste innehålla minst en 16-bitars instruktion."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr "Programstorlek ogiltig"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr "Programmet är för stort"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Pull används inte när riktningen är output."
|
msgstr "Pull används inte när riktningen är output."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
msgstr "RAISE-läge är inte implementerat"
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -1714,6 +1851,10 @@ msgstr "RNG DeInit-fel"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "RNG Init-fel"
|
msgstr "RNG Init-fel"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr "RS485 stöds ännu inte på den här enheten"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1721,6 +1862,7 @@ msgstr "RS485-inversion specificerad när den inte är i RS485-läge"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "RTC-kalibrering stöds inte av detta kort"
|
msgstr "RTC-kalibrering stöds inte av detta kort"
|
||||||
|
|
||||||
@ -1729,7 +1871,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "RTC stöds inte av detta kort"
|
msgstr "RTC stöds inte av detta kort"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS/CTS/RS485 Stöds ännu inte på den här enheten"
|
msgstr "RTS/CTS/RS485 Stöds ännu inte på den här enheten"
|
||||||
|
|
||||||
@ -1786,11 +1928,6 @@ msgstr "Kör i säkert läge! "
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr "SD-kort CSD-format stöds inte"
|
msgstr "SD-kort CSD-format stöds inte"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA eller SCL behöver en pullup"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1809,6 +1946,10 @@ msgstr "SPI Init-fel"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "SPI reinitialiseringsfel"
|
msgstr "SPI reinitialiseringsfel"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr "SPI-enhet används redan"
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Samplingsfrekvensen måste vara positiv"
|
msgstr "Samplingsfrekvensen måste vara positiv"
|
||||||
@ -1839,6 +1980,14 @@ msgstr "Serializern används redan"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr "Serversidans kontext kan inte ha värdnamn"
|
msgstr "Serversidans kontext kan inte ha värdnamn"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr "Inställt antal pinnar måste vara mellan 1 och 5"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr "Sido-setets antal pinnar måste vara mellan 1 och 5"
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr "Storleken stöds inte"
|
msgstr "Storleken stöds inte"
|
||||||
@ -1870,6 +2019,14 @@ msgstr "Splitting med sub-captures"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Stackstorleken måste vara minst 256"
|
msgstr "Stackstorleken måste vara minst 256"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr "Vänster stereokanal måste använda PWM kanal A"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr "Höger stereokanal måste använda PWM kanal B"
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Stream saknar readinto() eller write() metod."
|
msgstr "Stream saknar readinto() eller write() metod."
|
||||||
@ -2013,6 +2170,10 @@ msgstr "UART Init-fel"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "UART reinit-fel"
|
msgstr "UART reinit-fel"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr "UART stöds ännu inte"
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "UART skrivfel"
|
msgstr "UART skrivfel"
|
||||||
@ -2039,6 +2200,7 @@ msgstr "UUID-värdet är inte str, int eller byte-buffert"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Det går inte att allokera buffert för signerad konvertering"
|
msgstr "Det går inte att allokera buffert för signerad konvertering"
|
||||||
|
|
||||||
@ -2076,7 +2238,7 @@ msgstr "Det gick inte att skriva till sleep_memory."
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Oväntad nrfx uuid-typ"
|
msgstr "Oväntad nrfx uuid-typ"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
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"
|
||||||
@ -2119,7 +2281,8 @@ msgstr ""
|
|||||||
"eller ignorerades."
|
"eller ignorerades."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Baudrate stöd inte"
|
msgstr "Baudrate stöd inte"
|
||||||
|
|
||||||
@ -2170,6 +2333,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "VARNING: Ditt filnamn för kod har två tillägg\n"
|
msgstr "VARNING: Ditt filnamn för kod har två tillägg\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr "WatchDogTimer kan inte avinitialiseras när läget är inställt på RESET"
|
msgstr "WatchDogTimer kan inte avinitialiseras när läget är inställt på RESET"
|
||||||
|
|
||||||
@ -2381,7 +2545,7 @@ msgstr "buffertsegmenten måste vara lika långa"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "buffert för liten"
|
msgstr "buffert för liten"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr "buffert för liten för begärd längd"
|
msgstr "buffert för liten för begärd längd"
|
||||||
|
|
||||||
@ -3235,6 +3399,10 @@ msgstr "minnesallokering misslyckades, allokerar %u byte"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "minnesallokeringen misslyckades, heapen är låst"
|
msgstr "minnesallokeringen misslyckades, heapen är låst"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr "memoryview: längden är inte en multipel av itemsize"
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "modulen hittades inte"
|
msgstr "modulen hittades inte"
|
||||||
@ -3550,6 +3718,10 @@ msgstr "pop från en tom PulseIn"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr "pop från tom %q"
|
msgstr "pop från tom %q"
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr "port måste vara >= 0"
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "pow() 3: e argument kan inte vara 0"
|
msgstr "pow() 3: e argument kan inte vara 0"
|
||||||
@ -3566,6 +3738,7 @@ msgstr "pow() med 3 argument kräver heltal"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3583,6 +3756,14 @@ msgstr "trycka på startknappen vid start.\n"
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr "trycka båda knapparna vid uppstart.\n"
|
msgstr "trycka båda knapparna vid uppstart.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr "pull_threshold måste vara mellan 1 och 32"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr "push_threshold måste vara mellan 1 och 32"
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "köstorlek överskreds"
|
msgstr "köstorlek överskreds"
|
||||||
@ -3780,7 +3961,7 @@ msgstr "tröskelvärdet måste ligga i intervallet 0-65536"
|
|||||||
|
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
msgid "tile must be greater than zero"
|
msgid "tile must be greater than zero"
|
||||||
msgstr ""
|
msgstr "tile måste vara större än noll"
|
||||||
|
|
||||||
#: shared-bindings/time/__init__.c
|
#: shared-bindings/time/__init__.c
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
@ -3788,6 +3969,7 @@ msgstr "time.struct_time() kräver en 9-sekvens"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "timeout-längd överskred det maximala värde som stöds"
|
msgstr "timeout-längd överskred det maximala värde som stöds"
|
||||||
|
|
||||||
@ -3998,6 +4180,11 @@ msgstr "watchdog är inte initierad"
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "watchdog timeout måste vara större än 0"
|
msgstr "watchdog timeout måste vara större än 0"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr "width måste vara mellan 2 och 8, inte %d"
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -4070,6 +4257,15 @@ 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 "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA eller SCL behöver en pullup"
|
||||||
|
|
||||||
|
#~ msgid "Invalid use of TLS Socket"
|
||||||
|
#~ msgstr "Ogiltig användning av TLS Socket"
|
||||||
|
|
||||||
|
#~ msgid "Issue setting SO_REUSEADDR"
|
||||||
|
#~ msgstr "Misslyckades att sätta SO_REUSEADDR"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr "%d adresspinnar och %d RGB-pinnar indikerar en höjd av %d, inte %d"
|
#~ msgstr "%d adresspinnar och %d RGB-pinnar indikerar en höjd av %d, inte %d"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ 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-01-25 19:32+0000\n"
|
"PO-Revision-Date: 2021-02-09 14:03+0000\n"
|
||||||
"Last-Translator: hexthat <hexthat@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"
|
||||||
@ -69,6 +69,8 @@ msgstr "%%c xūyào zhěngshù huò char"
|
|||||||
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ù, "
|
||||||
|
"ér bù shì %d"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
#: ports/atmel-samd/common-hal/sdioio/SDCard.c
|
||||||
msgid "%q failure: %d"
|
msgid "%q failure: %d"
|
||||||
@ -347,6 +349,10 @@ msgstr "Suǒyǒu UART wàiwéi zhèngzài shǐyòng"
|
|||||||
msgid "All event channels in use"
|
msgid "All event channels in use"
|
||||||
msgstr "Suǒyǒu shǐyòng de shìjiàn píndào"
|
msgstr "Suǒyǒu shǐyòng de shìjiàn píndào"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "All state machines in use"
|
||||||
|
msgstr "suǒ yǒu zhèng zài shǐ yòng de zhuàng tài jī"
|
||||||
|
|
||||||
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c
|
||||||
msgid "All sync event channels in use"
|
msgid "All sync event channels in use"
|
||||||
msgstr "Suǒyǒu tóngbù shìjiàn píndào shǐyòng"
|
msgstr "Suǒyǒu tóngbù shìjiàn píndào shǐyòng"
|
||||||
@ -367,6 +373,7 @@ msgstr "Cǐ yǐn jiǎo de suǒyǒu jìshí qì zhèngzài shǐyòng"
|
|||||||
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
#: ports/esp32s2/common-hal/pulseio/PulseOut.c
|
||||||
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
#: ports/nrf/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
#: ports/nrf/common-hal/pulseio/PulseIn.c ports/nrf/peripherals/nrf/timers.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
#: ports/stm/peripherals/timers.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "All timers in use"
|
msgid "All timers in use"
|
||||||
msgstr "Suǒyǒu jìshí qì shǐyòng"
|
msgstr "Suǒyǒu jìshí qì shǐyòng"
|
||||||
@ -395,6 +402,7 @@ msgstr "Gěi dìng de yǐn jiǎo bù zhīchí AnalogIn"
|
|||||||
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
#: ports/cxd56/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogOut.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
#: ports/nrf/common-hal/analogio/AnalogOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/analogio/AnalogOut.c
|
||||||
msgid "AnalogOut functionality not supported"
|
msgid "AnalogOut functionality not supported"
|
||||||
msgstr "Bù zhīchí AnalogOut gōngnéng"
|
msgstr "Bù zhīchí AnalogOut gōngnéng"
|
||||||
|
|
||||||
@ -598,6 +606,7 @@ msgstr "Wúfǎ shānchú zhí"
|
|||||||
#: 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
|
||||||
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ǔ lādòng"
|
||||||
|
|
||||||
@ -635,6 +644,10 @@ msgstr "USB jīhuó shí wúfǎ chóngxīn bǎng ding '/'."
|
|||||||
msgid "Cannot reset into bootloader because no bootloader is present."
|
msgid "Cannot reset into bootloader because no bootloader is present."
|
||||||
msgstr "Wúfǎ chóng zhì wèi bootloader, yīnwèi méiyǒu bootloader cúnzài."
|
msgstr "Wúfǎ chóng zhì wèi bootloader, yīnwèi méiyǒu bootloader cúnzài."
|
||||||
|
|
||||||
|
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
||||||
|
msgid "Cannot set socket options"
|
||||||
|
msgstr "wú fǎ shè zhì tào jiē zì xuǎn xiàng"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Cannot set value when direction is input."
|
msgid "Cannot set value when direction is input."
|
||||||
msgstr "Dāng fāngxiàng xiàng nèi shí, bùnéng shèzhì gāi zhí."
|
msgstr "Dāng fāngxiàng xiàng nèi shí, bùnéng shèzhì gāi zhí."
|
||||||
@ -817,7 +830,7 @@ msgstr "Shùjù 0 de yǐn jiǎo bìxū shì zì jié duìqí"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
||||||
msgid "Data 0 pin must be byte aligned."
|
msgid "Data 0 pin must be byte aligned."
|
||||||
msgstr ""
|
msgstr "shù jù 0 yǐn jiǎo bì xū àn zì jié duì qí."
|
||||||
|
|
||||||
#: shared-module/audiocore/WaveFile.c
|
#: shared-module/audiocore/WaveFile.c
|
||||||
msgid "Data chunk must follow fmt chunk"
|
msgid "Data chunk must follow fmt chunk"
|
||||||
@ -873,11 +886,12 @@ msgstr "EXTINT píndào yǐjīng shǐyòng"
|
|||||||
msgid "Error in regex"
|
msgid "Error in regex"
|
||||||
msgstr "Zhèngzé biǎodá shì cuòwù"
|
msgstr "Zhèngzé biǎodá shì cuòwù"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "Error: Failure to bind"
|
msgid "Error: Failure to bind"
|
||||||
msgstr "cuò wù: bǎng dìng shī bài"
|
msgstr "cuò wù: bǎng dìng shī bài"
|
||||||
|
|
||||||
#: py/enum.c shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c py/enum.c
|
||||||
|
#: shared-bindings/_bleio/__init__.c shared-bindings/aesio/aes.c
|
||||||
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
#: shared-bindings/busio/SPI.c shared-bindings/microcontroller/Pin.c
|
||||||
#: shared-bindings/neopixel_write/__init__.c
|
#: shared-bindings/neopixel_write/__init__.c
|
||||||
#: shared-bindings/terminalio/Terminal.c
|
#: shared-bindings/terminalio/Terminal.c
|
||||||
@ -931,7 +945,7 @@ msgstr "FFT jǐn wéi ndarrays dìng yì"
|
|||||||
msgid "FFT is implemented for linear arrays only"
|
msgid "FFT is implemented for linear arrays only"
|
||||||
msgstr "FFT jǐn shì yòng yú xiàn xìng zhèn liè"
|
msgstr "FFT jǐn shì yòng yú xiàn xìng zhèn liè"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
msgid "Failed SSL handshake"
|
msgid "Failed SSL handshake"
|
||||||
msgstr "SSL wòshǒu shībài"
|
msgstr "SSL wòshǒu shībài"
|
||||||
|
|
||||||
@ -1059,6 +1073,10 @@ msgstr "Wénjiàn shàng de I/ O cāozuò"
|
|||||||
msgid "I2C Init Error"
|
msgid "I2C Init Error"
|
||||||
msgstr "I2C chūshǐhuà cuòwù"
|
msgstr "I2C chūshǐhuà cuòwù"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "I2C peripheral in use"
|
||||||
|
msgstr "I2C wài shè zhèng zài shǐ yòng zhōng"
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/I2SOut.c
|
#: shared-bindings/audiobusio/I2SOut.c
|
||||||
msgid "I2SOut not available"
|
msgid "I2SOut not available"
|
||||||
msgstr "I2SOut bù kě yòng"
|
msgstr "I2SOut bù kě yòng"
|
||||||
@ -1084,10 +1102,19 @@ msgstr ""
|
|||||||
msgid "Incorrect buffer size"
|
msgid "Incorrect buffer size"
|
||||||
msgstr "Huǎnchōng qū dàxiǎo bù zhèngquè"
|
msgstr "Huǎnchōng qū dàxiǎo bù zhèngquè"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Init program size invalid"
|
||||||
|
msgstr "Init chéng xù dà xiǎo wú xiào"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "Initialization failed due to lack of memory"
|
msgid "Initialization failed due to lack of memory"
|
||||||
msgstr "yóu yú nèi cún bù zú, chū shǐ huà shī bài"
|
msgstr "yóu yú nèi cún bù zú, chū shǐ huà shī bài"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Input buffer length (%d) must be a multiple of the strand count (%d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
|
||||||
msgid "Input taking too long"
|
msgid "Input taking too long"
|
||||||
msgstr "Shūrù shíjiānguò zhǎng"
|
msgstr "Shūrù shíjiānguò zhǎng"
|
||||||
@ -1096,6 +1123,31 @@ msgstr "Shūrù shíjiānguò zhǎng"
|
|||||||
msgid "Input/output error"
|
msgid "Input/output error"
|
||||||
msgstr "Shūrù/shūchū cuòwù"
|
msgstr "Shūrù/shūchū cuòwù"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d jumps on pin"
|
||||||
|
msgstr "zhǐ lìng %d zài yǐn jiǎo shàng tiào zhuǎn"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts in more bits than pin count"
|
||||||
|
msgstr "zhǐ lìng %d yí wèi chāo guò yǐn jiǎo jì shù"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d shifts out more bits than pin count"
|
||||||
|
msgstr "zhǐ lìng %d yí chū de wèi bǐ yǐn jiǎo shù duō"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d uses extra pin"
|
||||||
|
msgstr "zhǐ lìng %d shǐ yòng é wài de yǐn jiǎo"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Instruction %d waits on input outside of count"
|
||||||
|
msgstr "zhǐ lìng %d děng dài jì shù zhī wài de shū rù"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/_bleio/__init__.c
|
#: ports/nrf/common-hal/_bleio/__init__.c
|
||||||
msgid "Insufficient authentication"
|
msgid "Insufficient authentication"
|
||||||
msgstr "Rènzhèng bùzú"
|
msgstr "Rènzhèng bùzú"
|
||||||
@ -1147,7 +1199,7 @@ msgstr "Tí gōng liǎo wúxiào de DAC yǐn jiǎo"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
msgid "Invalid PWM frequency"
|
msgid "Invalid PWM frequency"
|
||||||
msgstr "Wúxiào de PWM pínlǜ"
|
msgstr "Wúxiào de PWM pínlǜ"
|
||||||
|
|
||||||
@ -1241,6 +1293,8 @@ msgstr "Yòuxián tōngdào yǐn jiǎo wúxiào"
|
|||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
#: ports/mimxrt10xx/common-hal/busio/SPI.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
msgid "Invalid pins"
|
msgid "Invalid pins"
|
||||||
msgstr "Wúxiào de yǐn jiǎo"
|
msgstr "Wúxiào de yǐn jiǎo"
|
||||||
|
|
||||||
@ -1269,7 +1323,7 @@ msgstr "Ānquán móshì wúxiào"
|
|||||||
msgid "Invalid size"
|
msgid "Invalid size"
|
||||||
msgstr "dà xiǎo wú xiào"
|
msgstr "dà xiǎo wú xiào"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLContext.c
|
||||||
msgid "Invalid socket for TLS"
|
msgid "Invalid socket for TLS"
|
||||||
msgstr "TLS de chā zuò wú xiào"
|
msgstr "TLS de chā zuò wú xiào"
|
||||||
|
|
||||||
@ -1277,10 +1331,6 @@ msgstr "TLS de chā zuò wú xiào"
|
|||||||
msgid "Invalid state"
|
msgid "Invalid state"
|
||||||
msgstr "wú xiào zhuàng tài"
|
msgstr "wú xiào zhuàng tài"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Invalid use of TLS Socket"
|
|
||||||
msgstr "TLS tào jiē zì de wú xiào shǐ yòng"
|
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Invalid voice"
|
msgid "Invalid voice"
|
||||||
msgstr "Yǔyīn wúxiào"
|
msgstr "Yǔyīn wúxiào"
|
||||||
@ -1297,10 +1347,6 @@ msgstr "Wúxiào de làng làngcháo wénjiàn"
|
|||||||
msgid "Invalid word/bit length"
|
msgid "Invalid word/bit length"
|
||||||
msgstr "Wúxiào de zì/wèi chángdù"
|
msgstr "Wúxiào de zì/wèi chángdù"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
|
||||||
msgid "Issue setting SO_REUSEADDR"
|
|
||||||
msgstr "wèn tí shè zhì SO_REUSEADDR"
|
|
||||||
|
|
||||||
#: shared-bindings/aesio/aes.c
|
#: shared-bindings/aesio/aes.c
|
||||||
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"
|
||||||
@ -1362,6 +1408,37 @@ msgstr "Màikèfēng qǐdòng yánchí bìxū zài 0.0 Dào 1.0 De fànwéi nèi
|
|||||||
msgid "Missing MISO or MOSI Pin"
|
msgid "Missing MISO or MOSI Pin"
|
||||||
msgstr "Quēshǎo MISO huò MOSI yǐn jiǎo"
|
msgstr "Quēshǎo MISO huò MOSI yǐn jiǎo"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d reads pin(s)"
|
||||||
|
msgstr "shǒu xiān zài yǐn jiǎo zhōng quē shī. zhǐ lìng %d dú qǔ yǐn jiǎo"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d shifts in from pin(s)"
|
||||||
|
msgstr "shǒu xiān zài yǐn jiǎo zhōng quē shī. zhǐ lìng %d cóng yǐn jiǎo yí wèi"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_in_pin. Instruction %d waits based on pin"
|
||||||
|
msgstr ""
|
||||||
|
"shǒu xiān zài yǐn jiǎo zhōng quē shī. jī yú yǐn jiǎo de zhǐ lìng %d děng dài"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d shifts out to pin(s)"
|
||||||
|
msgstr "xiān lòu chū yǐn jiǎo. zhǐ lìng %d yí chū dào yǐn jiǎo"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_out_pin. Instruction %d writes pin(s)"
|
||||||
|
msgstr "xiān lòu chū yǐn jiǎo. zhǐ lìng %d xiě rù yǐn jiǎo"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Missing first_set_pin. Instruction %d sets pin(s)"
|
||||||
|
msgstr "quē shǎo dì yī zǔ yǐn jiǎo. zhǐ lìng %d shè zhì yǐn jiǎo"
|
||||||
|
|
||||||
#: shared-bindings/displayio/Group.c
|
#: shared-bindings/displayio/Group.c
|
||||||
msgid "Must be a %q subclass."
|
msgid "Must be a %q subclass."
|
||||||
msgstr "Bìxū shì %q zi lèi."
|
msgstr "Bìxū shì %q zi lèi."
|
||||||
@ -1394,9 +1471,14 @@ msgstr "Méiyǒu DAC zài xīnpiàn shàng de"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "No DMA channel found"
|
msgid "No DMA channel found"
|
||||||
msgstr "Wèi zhǎodào DMA píndào"
|
msgstr "Wèi zhǎodào DMA píndào"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "No DMA pacing timer found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-module/adafruit_bus_device/I2CDevice.c
|
#: shared-module/adafruit_bus_device/I2CDevice.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "No I2C device at address: %x"
|
msgid "No I2C device at address: %x"
|
||||||
@ -1415,14 +1497,14 @@ msgstr "Méiyǒu MOSI yǐn jiǎo"
|
|||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No RX pin"
|
msgid "No RX pin"
|
||||||
msgstr "Wèi zhǎodào RX yǐn jiǎo"
|
msgstr "Wèi zhǎodào RX yǐn jiǎo"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/raspberrypi/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
||||||
msgid "No TX pin"
|
msgid "No TX pin"
|
||||||
msgstr "Wèi zhǎodào TX yǐn jiǎo"
|
msgstr "Wèi zhǎodào TX yǐn jiǎo"
|
||||||
|
|
||||||
@ -1479,6 +1561,16 @@ msgstr "Gāi yǐn jiǎo shàng méiyǒu kěyòng de dìngshí qì."
|
|||||||
msgid "No network with that ssid"
|
msgid "No network with that ssid"
|
||||||
msgstr "Méiyǒu wǎngluò yǔ gāi ssid"
|
msgstr "Méiyǒu wǎngluò yǔ gāi ssid"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "No out in program"
|
||||||
|
msgstr "chéng xù zhōng wèi tuì chū"
|
||||||
|
|
||||||
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
||||||
|
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c
|
||||||
|
msgid "No pull up found on SDA or SCL; check your wiring"
|
||||||
|
msgstr "zài SDA huò SCL shàng wèi zhǎo dào shàng lā; jiǎn chá nín de xiàn lù"
|
||||||
|
|
||||||
#: shared-module/touchio/TouchIn.c
|
#: shared-module/touchio/TouchIn.c
|
||||||
msgid "No pulldown on pin; 1Mohm recommended"
|
msgid "No pulldown on pin; 1Mohm recommended"
|
||||||
msgstr "Yǐn jiǎo shàng méiyǒu xiàlā; 1Mohm tuījiàn"
|
msgstr "Yǐn jiǎo shàng méiyǒu xiàlā; 1Mohm tuījiàn"
|
||||||
@ -1535,6 +1627,10 @@ msgstr "Bù zhīchí jīshù"
|
|||||||
msgid "Only 8 or 16 bit mono with "
|
msgid "Only 8 or 16 bit mono with "
|
||||||
msgstr "Zhǐyǒu 8 huò 16 wèi dānwèi "
|
msgstr "Zhǐyǒu 8 huò 16 wèi dānwèi "
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Only IN/OUT of up to 8 supported"
|
||||||
|
msgstr "jǐn zhī chí zuì duō 8 gè IN/OUT"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/wifi/__init__.c
|
#: ports/esp32s2/common-hal/wifi/__init__.c
|
||||||
msgid "Only IPv4 addresses supported"
|
msgid "Only IPv4 addresses supported"
|
||||||
msgstr "Jǐn zhīchí IPv4 dìzhǐ"
|
msgstr "Jǐn zhīchí IPv4 dìzhǐ"
|
||||||
@ -1588,10 +1684,15 @@ msgstr "cāo zuò yǐ fēn shí"
|
|||||||
msgid "Out of memory"
|
msgid "Out of memory"
|
||||||
msgstr "nèi cún bù zú"
|
msgstr "nèi cún bù zú"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/socketpool/SocketPool.c
|
||||||
msgid "Out of sockets"
|
msgid "Out of sockets"
|
||||||
msgstr "tào jiē zì wài"
|
msgstr "tào jiē zì wài"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "Output buffer must be at least %d bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/audiobusio/PDMIn.c
|
#: shared-bindings/audiobusio/PDMIn.c
|
||||||
msgid "Oversample must be multiple of 8."
|
msgid "Oversample must be multiple of 8."
|
||||||
msgstr "Guò cǎiyàng bìxū shì 8 de bèishù."
|
msgstr "Guò cǎiyàng bìxū shì 8 de bèishù."
|
||||||
@ -1612,6 +1713,7 @@ msgid ""
|
|||||||
msgstr "Dāng biànliàng_pínlǜ shì False zài jiànzhú shí PWM pínlǜ bùkě xiě."
|
msgstr "Dāng biànliàng_pínlǜ shì False zài jiànzhú shí PWM pínlǜ bùkě xiě."
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr "Shàng bù zhīchí ParallelBus"
|
msgstr "Shàng bù zhīchí ParallelBus"
|
||||||
@ -1624,11 +1726,20 @@ msgstr "shǐ yòng zhōng de wài shè"
|
|||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Quánxiàn bèi jùjué"
|
msgstr "Quánxiàn bèi jùjué"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count must be at least 1"
|
||||||
|
msgstr "yǐn jiǎo jì shù bì xū zhì shǎo wéi 1"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Pin count too large"
|
||||||
|
msgstr "yǐn jiǎo jì shù tài dà"
|
||||||
|
|
||||||
#: 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
|
||||||
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
#: ports/esp32s2/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
#: ports/mimxrt10xx/common-hal/analogio/AnalogIn.c
|
||||||
#: ports/nrf/common-hal/analogio/AnalogIn.c
|
#: ports/nrf/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 méiyǒu ADC nénglì"
|
msgstr "Pin méiyǒu ADC nénglì"
|
||||||
@ -1657,6 +1768,10 @@ msgstr ""
|
|||||||
"duōzì jié. Rúguǒ wúfǎ bìmiǎn, qǐng jiāng allow_inefficient = True chuándì "
|
"duōzì jié. Rúguǒ wúfǎ bìmiǎn, qǐng jiāng allow_inefficient = True chuándì "
|
||||||
"gěigòuzào hánshù"
|
"gěigòuzào hánshù"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Pins must share PWM slice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinhelp.c
|
#: py/builtinhelp.c
|
||||||
msgid "Plus any modules on the filesystem\n"
|
msgid "Plus any modules on the filesystem\n"
|
||||||
msgstr "Zài wénjiàn xìtǒng shàng tiānjiā rènhé mókuài\n"
|
msgstr "Zài wénjiàn xìtǒng shàng tiānjiā rènhé mókuài\n"
|
||||||
@ -1695,10 +1810,34 @@ msgstr ""
|
|||||||
"jiǎ zhuāng shēn dù shuì mián , zhí dào bào jǐng , CTRL-C huò wén jiàn xiě "
|
"jiǎ zhuāng shēn dù shuì mián , zhí dào bào jǐng , CTRL-C huò wén jiàn xiě "
|
||||||
"rù .\n"
|
"rù .\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does IN without loading ISR"
|
||||||
|
msgstr "chéng xù zài bù jiā zǎi ISR de qíng kuàng xià wán chéng"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/rp2pio/StateMachine.c
|
||||||
|
msgid "Program does OUT without loading OSR"
|
||||||
|
msgstr "chéng xù zài bù jiā zǎi Osr de qíng kuàng xià zhí xíng OUT"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program must contain at least one 16-bit instruction."
|
||||||
|
msgstr "chéng xù bì xū zhì shǎo bāo hán yí gè 16 wèi zhǐ lìng ."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program size invalid"
|
||||||
|
msgstr "chéng xù dà xiǎo wú xiào"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Program too large"
|
||||||
|
msgstr "chéng xù tài dà"
|
||||||
|
|
||||||
#: shared-bindings/digitalio/DigitalInOut.c
|
#: shared-bindings/digitalio/DigitalInOut.c
|
||||||
msgid "Pull not used when direction is output."
|
msgid "Pull not used when direction is output."
|
||||||
msgstr "Fāngxiàng shūchū shí Pull méiyǒu shǐyòng."
|
msgstr "Fāngxiàng shūchū shí Pull méiyǒu shǐyòng."
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
msgid "RAISE mode is not implemented"
|
||||||
|
msgstr "wèi shí xiàn tí shēng mó shì"
|
||||||
|
|
||||||
#: 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ù"
|
||||||
@ -1707,6 +1846,10 @@ msgstr "RNG qǔxiāo chūshǐhuà cuòwù"
|
|||||||
msgid "RNG Init Error"
|
msgid "RNG Init Error"
|
||||||
msgstr "RNG chūshǐhuà cuòwù"
|
msgstr "RNG chūshǐhuà cuòwù"
|
||||||
|
|
||||||
|
#: ports/nrf/common-hal/busio/UART.c
|
||||||
|
msgid "RS485 Not yet supported on this device"
|
||||||
|
msgstr "RS485 cǐ shè bèi shàng bù zhī chí"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
#: ports/mimxrt10xx/common-hal/busio/UART.c
|
||||||
msgid "RS485 inversion specified when not in RS485 mode"
|
msgid "RS485 inversion specified when not in RS485 mode"
|
||||||
@ -1714,6 +1857,7 @@ msgstr "Wèi chǔyú RS485 móshì shí zhǐdìngle RS485 fǎn zhuǎn"
|
|||||||
|
|
||||||
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
#: ports/cxd56/common-hal/rtc/RTC.c ports/esp32s2/common-hal/rtc/RTC.c
|
||||||
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
#: ports/mimxrt10xx/common-hal/rtc/RTC.c ports/nrf/common-hal/rtc/RTC.c
|
||||||
|
#: ports/raspberrypi/common-hal/rtc/RTC.c
|
||||||
msgid "RTC calibration is not supported on this board"
|
msgid "RTC calibration is not supported on this board"
|
||||||
msgstr "Cǐ bǎn bù zhīchí RTC jiàozhǔn"
|
msgstr "Cǐ bǎn bù zhīchí RTC jiàozhǔn"
|
||||||
|
|
||||||
@ -1722,7 +1866,7 @@ msgid "RTC is not supported on this board"
|
|||||||
msgstr "Cǐ bǎn bù zhīchí RTC"
|
msgstr "Cǐ bǎn bù zhīchí RTC"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
#: ports/atmel-samd/common-hal/busio/UART.c ports/cxd56/common-hal/busio/UART.c
|
||||||
#: ports/nrf/common-hal/busio/UART.c ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
msgid "RTS/CTS/RS485 Not yet supported on this device"
|
||||||
msgstr "RTS/CTS/RS485 gāi shèbèi shàng bù zhīchí"
|
msgstr "RTS/CTS/RS485 gāi shèbèi shàng bù zhīchí"
|
||||||
|
|
||||||
@ -1779,11 +1923,6 @@ msgstr "Zài ānquán móshì xià yùnxíng! "
|
|||||||
msgid "SD card CSD format not supported"
|
msgid "SD card CSD format not supported"
|
||||||
msgstr "Bù zhīchí SD kǎ CSD géshì"
|
msgstr "Bù zhīchí SD kǎ CSD géshì"
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/esp32s2/common-hal/busio/I2C.c
|
|
||||||
#: ports/mimxrt10xx/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c
|
|
||||||
msgid "SDA or SCL needs a pull up"
|
|
||||||
msgstr "SDA huò SCL xūyào lādòng"
|
|
||||||
|
|
||||||
#: ports/stm/common-hal/sdioio/SDCard.c
|
#: ports/stm/common-hal/sdioio/SDCard.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "SDIO GetCardInfo Error %d"
|
msgid "SDIO GetCardInfo Error %d"
|
||||||
@ -1802,6 +1941,10 @@ msgstr "SPI chūshǐhuà cuòwù"
|
|||||||
msgid "SPI Re-initialization error"
|
msgid "SPI Re-initialization error"
|
||||||
msgstr "SPI chóngxīn chūshǐhuà cuòwù"
|
msgstr "SPI chóngxīn chūshǐhuà cuòwù"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/SPI.c
|
||||||
|
msgid "SPI peripheral in use"
|
||||||
|
msgstr "SPI wài shè zhèng zài shǐ yòng zhōng"
|
||||||
|
|
||||||
#: shared-bindings/audiomixer/Mixer.c
|
#: shared-bindings/audiomixer/Mixer.c
|
||||||
msgid "Sample rate must be positive"
|
msgid "Sample rate must be positive"
|
||||||
msgstr "Cǎiyàng lǜ bìxū wèi zhèng shù"
|
msgstr "Cǎiyàng lǜ bìxū wèi zhèng shù"
|
||||||
@ -1832,6 +1975,14 @@ msgstr "Xùliè huà yǐjīng shǐyòngguò"
|
|||||||
msgid "Server side context cannot have hostname"
|
msgid "Server side context cannot have hostname"
|
||||||
msgstr "Fúwùqì duān shàngxiàwén bùnéng jùyǒu zhǔjī míng"
|
msgstr "Fúwùqì duān shàngxiàwén bùnéng jùyǒu zhǔjī míng"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Set pin count must be between 1 and 5"
|
||||||
|
msgstr "shè zhì yǐn jiǎo shù bì xū jiè yú 1 hé 5 zhī jiān"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "Side set pin count must be between 1 and 5"
|
||||||
|
msgstr "cè miàn shè zhì yǐn jiǎo shù bì xū jiè yú 1 hé 5 zhī jiān"
|
||||||
|
|
||||||
#: ports/cxd56/common-hal/camera/Camera.c
|
#: ports/cxd56/common-hal/camera/Camera.c
|
||||||
msgid "Size not supported"
|
msgid "Size not supported"
|
||||||
msgstr "bù zhī chí dà xiǎo"
|
msgstr "bù zhī chí dà xiǎo"
|
||||||
@ -1863,6 +2014,14 @@ msgstr "Yǔ zi bǔhuò fēnliè"
|
|||||||
msgid "Stack size must be at least 256"
|
msgid "Stack size must be at least 256"
|
||||||
msgstr "Duīzhàn dàxiǎo bìxū zhìshǎo 256"
|
msgstr "Duīzhàn dàxiǎo bìxū zhìshǎo 256"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo left must be on PWM channel A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
|
msgid "Stereo right must be on PWM channel B"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: shared-bindings/multiterminal/__init__.c
|
#: shared-bindings/multiterminal/__init__.c
|
||||||
msgid "Stream missing readinto() or write() method."
|
msgid "Stream missing readinto() or write() method."
|
||||||
msgstr "Liú quēshǎo readinto() huò write() fāngfǎ."
|
msgstr "Liú quēshǎo readinto() huò write() fāngfǎ."
|
||||||
@ -2005,6 +2164,10 @@ msgstr "UART chūshǐhuà cuòwù"
|
|||||||
msgid "UART Re-init error"
|
msgid "UART Re-init error"
|
||||||
msgstr "UART chóngxīn chūshǐhuà cuòwù"
|
msgstr "UART chóngxīn chūshǐhuà cuòwù"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/common-hal/busio/UART.c
|
||||||
|
msgid "UART not yet supported"
|
||||||
|
msgstr "UART shàng wèi shòu zhī chí"
|
||||||
|
|
||||||
#: ports/stm/common-hal/busio/UART.c
|
#: ports/stm/common-hal/busio/UART.c
|
||||||
msgid "UART write error"
|
msgid "UART write error"
|
||||||
msgstr "UART xiě cuòwù"
|
msgstr "UART xiě cuòwù"
|
||||||
@ -2031,6 +2194,7 @@ msgstr "UUID zhí bùshì str,int huò zì jié huǎnchōng qū"
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c
|
||||||
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
#: ports/atmel-samd/common-hal/audioio/AudioOut.c
|
||||||
|
#: ports/raspberrypi/common-hal/audiopwmio/PWMAudioOut.c
|
||||||
msgid "Unable to allocate buffers for signed conversion"
|
msgid "Unable to allocate buffers for signed conversion"
|
||||||
msgstr "Wúfǎ fēnpèi huǎnchōng qū yòng yú qiānmíng zhuǎnhuàn"
|
msgstr "Wúfǎ fēnpèi huǎnchōng qū yòng yú qiānmíng zhuǎnhuàn"
|
||||||
|
|
||||||
@ -2068,7 +2232,7 @@ msgstr "wú fǎ xiě rù sleep_memory。"
|
|||||||
msgid "Unexpected nrfx uuid type"
|
msgid "Unexpected nrfx uuid type"
|
||||||
msgstr "Yìwài de nrfx uuid lèixíng"
|
msgstr "Yìwài de nrfx uuid lèixíng"
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/socketpool/Socket.c
|
#: ports/esp32s2/common-hal/ssl/SSLSocket.c
|
||||||
#, c-format
|
#, c-format
|
||||||
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"
|
||||||
@ -2111,7 +2275,8 @@ msgstr ""
|
|||||||
"huò hūlüè."
|
"huò hūlüè."
|
||||||
|
|
||||||
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
#: ports/atmel-samd/common-hal/busio/I2C.c ports/cxd56/common-hal/busio/I2C.c
|
||||||
#: ports/esp32s2/common-hal/busio/UART.c ports/stm/common-hal/busio/I2C.c
|
#: ports/esp32s2/common-hal/busio/UART.c
|
||||||
|
#: ports/raspberrypi/common-hal/busio/I2C.c ports/stm/common-hal/busio/I2C.c
|
||||||
msgid "Unsupported baudrate"
|
msgid "Unsupported baudrate"
|
||||||
msgstr "Bù zhīchí de baudrate"
|
msgstr "Bù zhīchí de baudrate"
|
||||||
|
|
||||||
@ -2162,6 +2327,7 @@ msgid "WARNING: Your code filename has two extensions\n"
|
|||||||
msgstr "Jǐnggào: Nǐ de dàimǎ wénjiàn míng yǒu liǎng gè kuòzhǎn míng\n"
|
msgstr "Jǐnggào: Nǐ de dàimǎ wénjiàn míng yǒu liǎng gè kuòzhǎn míng\n"
|
||||||
|
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
msgid "WatchDogTimer cannot be deinitialized once mode is set to RESET"
|
||||||
msgstr "Yīdàn jiāng móshì shèzhì wèi RESET, jiù wúfǎ chūshǐhuà WatchDog Timer"
|
msgstr "Yīdàn jiāng móshì shèzhì wèi RESET, jiù wúfǎ chūshǐhuà WatchDog Timer"
|
||||||
|
|
||||||
@ -2374,7 +2540,7 @@ msgstr "huǎnchōng qū qiēpiàn bìxū chángdù xiāngděng"
|
|||||||
msgid "buffer too small"
|
msgid "buffer too small"
|
||||||
msgstr "huǎnchōng qū tài xiǎo"
|
msgstr "huǎnchōng qū tài xiǎo"
|
||||||
|
|
||||||
#: shared-bindings/socketpool/Socket.c
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
msgid "buffer too small for requested bytes"
|
msgid "buffer too small for requested bytes"
|
||||||
msgstr "huǎn chōng qū tài xiǎo, duì yú qǐng qiú de zì jié"
|
msgstr "huǎn chōng qū tài xiǎo, duì yú qǐng qiú de zì jié"
|
||||||
|
|
||||||
@ -3227,6 +3393,10 @@ msgstr "nèicún fēnpèi shībài, fēnpèi %u zì jié"
|
|||||||
msgid "memory allocation failed, heap is locked"
|
msgid "memory allocation failed, heap is locked"
|
||||||
msgstr "jìyì tǐ fēnpèi shībài, duī bèi suǒdìng"
|
msgstr "jìyì tǐ fēnpèi shībài, duī bèi suǒdìng"
|
||||||
|
|
||||||
|
#: py/objarray.c
|
||||||
|
msgid "memoryview: length is not a multiple of itemsize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: py/builtinimport.c
|
#: py/builtinimport.c
|
||||||
msgid "module not found"
|
msgid "module not found"
|
||||||
msgstr "zhǎo bù dào mókuài"
|
msgstr "zhǎo bù dào mókuài"
|
||||||
@ -3541,6 +3711,10 @@ msgstr "cóng kōng mài chōng tán chū"
|
|||||||
msgid "pop from empty %q"
|
msgid "pop from empty %q"
|
||||||
msgstr "cóng kōng %q dànchū"
|
msgstr "cóng kōng %q dànchū"
|
||||||
|
|
||||||
|
#: shared-bindings/socketpool/Socket.c shared-bindings/ssl/SSLSocket.c
|
||||||
|
msgid "port must be >= 0"
|
||||||
|
msgstr "duān kǒu bì xū wéi >= 0"
|
||||||
|
|
||||||
#: py/objint_mpz.c
|
#: py/objint_mpz.c
|
||||||
msgid "pow() 3rd argument cannot be 0"
|
msgid "pow() 3rd argument cannot be 0"
|
||||||
msgstr "pow() 3 cān shǔ bùnéng wéi 0"
|
msgstr "pow() 3 cān shǔ bùnéng wéi 0"
|
||||||
@ -3557,6 +3731,7 @@ msgstr "pow() yǒu 3 cānshù xūyào zhěngshù"
|
|||||||
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_kaluga_1/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wroom/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
#: ports/esp32s2/boards/espressif_saola_1_wrover/mpconfigboard.h
|
||||||
|
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
#: ports/esp32s2/boards/muselab_nanoesp32_s2/mpconfigboard.h
|
||||||
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
|
||||||
@ -3574,6 +3749,14 @@ msgstr "Zài qǐdòng shí àn qǐdòng ànniǔ.\n"
|
|||||||
msgid "pressing both buttons at start up.\n"
|
msgid "pressing both buttons at start up.\n"
|
||||||
msgstr "zài qǐdòng shí tóngshí àn xià liǎng gè ànniǔ.\n"
|
msgstr "zài qǐdòng shí tóngshí àn xià liǎng gè ànniǔ.\n"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "pull_threshold must be between 1 and 32"
|
||||||
|
msgstr "lā lì yù zhí bì xū jiè yú 1 hé 32 zhī jiān"
|
||||||
|
|
||||||
|
#: ports/raspberrypi/bindings/rp2pio/StateMachine.c
|
||||||
|
msgid "push_threshold must be between 1 and 32"
|
||||||
|
msgstr "tuī sòng yù zhí bì xū jiè yú 1 hé 32 zhī jiān"
|
||||||
|
|
||||||
#: extmod/modutimeq.c
|
#: extmod/modutimeq.c
|
||||||
msgid "queue overflow"
|
msgid "queue overflow"
|
||||||
msgstr "duìliè yìchū"
|
msgstr "duìliè yìchū"
|
||||||
@ -3771,7 +3954,7 @@ msgstr "yùzhí bìxū zài fànwéi 0-65536"
|
|||||||
|
|
||||||
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
#: shared-bindings/rgbmatrix/RGBMatrix.c
|
||||||
msgid "tile must be greater than zero"
|
msgid "tile must be greater than zero"
|
||||||
msgstr ""
|
msgstr "cí tiē bì xū dà yú líng"
|
||||||
|
|
||||||
#: shared-bindings/time/__init__.c
|
#: shared-bindings/time/__init__.c
|
||||||
msgid "time.struct_time() takes a 9-sequence"
|
msgid "time.struct_time() takes a 9-sequence"
|
||||||
@ -3779,6 +3962,7 @@ msgstr "time.struct_time() xūyào 9 xùliè"
|
|||||||
|
|
||||||
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
#: ports/esp32s2/common-hal/watchdog/WatchDogTimer.c
|
||||||
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
#: ports/nrf/common-hal/watchdog/WatchDogTimer.c
|
||||||
|
#: ports/raspberrypi/common-hal/watchdog/WatchDogTimer.c
|
||||||
msgid "timeout duration exceeded the maximum supported value"
|
msgid "timeout duration exceeded the maximum supported value"
|
||||||
msgstr "chāoshí shíjiān chāoguò zuìdà zhīchí zhí"
|
msgstr "chāoshí shíjiān chāoguò zuìdà zhīchí zhí"
|
||||||
|
|
||||||
@ -3989,6 +4173,11 @@ msgstr "wèi chū shǐ huà jiān shì qì"
|
|||||||
msgid "watchdog timeout must be greater than 0"
|
msgid "watchdog timeout must be greater than 0"
|
||||||
msgstr "kān mén gǒu chāoshí bìxū dàyú 0"
|
msgstr "kān mén gǒu chāoshí bìxū dàyú 0"
|
||||||
|
|
||||||
|
#: shared-bindings/bitops/__init__.c
|
||||||
|
#, c-format
|
||||||
|
msgid "width must be from 2 to 8 (inclusive), not %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: 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"
|
||||||
@ -4061,6 +4250,15 @@ 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 "SDA or SCL needs a pull up"
|
||||||
|
#~ msgstr "SDA huò SCL xūyào lādòng"
|
||||||
|
|
||||||
|
#~ msgid "Invalid use of TLS Socket"
|
||||||
|
#~ msgstr "TLS tào jiē zì de wú xiào shǐ yòng"
|
||||||
|
|
||||||
|
#~ msgid "Issue setting SO_REUSEADDR"
|
||||||
|
#~ msgstr "wèn tí shè zhì SO_REUSEADDR"
|
||||||
|
|
||||||
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
#~ msgid "%d address pins and %d rgb pins indicate a height of %d, not %d"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "%d dìzhǐ yǐn jiǎo hé %d rgb yǐn jiǎo jiāng gāodù biǎoshì wèi %d, ér bùshì "
|
#~ "%d dìzhǐ yǐn jiǎo hé %d rgb yǐn jiǎo jiāng gāodù biǎoshì wèi %d, ér bùshì "
|
||||||
|
27
main.c
27
main.c
@ -69,6 +69,19 @@
|
|||||||
#include "shared-bindings/alarm/__init__.h"
|
#include "shared-bindings/alarm/__init__.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CIRCUITPY_BLEIO
|
||||||
|
#include "shared-bindings/_bleio/__init__.h"
|
||||||
|
#include "supervisor/shared/bluetooth.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if CIRCUITPY_BOARD
|
||||||
|
#include "shared-module/board/__init__.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if CIRCUITPY_CANIO
|
||||||
|
#include "common-hal/canio/CAN.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_DISPLAYIO
|
#if CIRCUITPY_DISPLAYIO
|
||||||
#include "shared-module/displayio/__init__.h"
|
#include "shared-module/displayio/__init__.h"
|
||||||
#endif
|
#endif
|
||||||
@ -81,17 +94,8 @@
|
|||||||
#include "shared-module/network/__init__.h"
|
#include "shared-module/network/__init__.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_BOARD
|
#if CIRCUITPY_USB_CDC
|
||||||
#include "shared-module/board/__init__.h"
|
#include "shared-module/usb_cdc/__init__.h"
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CIRCUITPY_BLEIO
|
|
||||||
#include "shared-bindings/_bleio/__init__.h"
|
|
||||||
#include "supervisor/shared/bluetooth.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CIRCUITPY_CANIO
|
|
||||||
#include "common-hal/canio/CAN.h"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_WIFI
|
#if CIRCUITPY_WIFI
|
||||||
@ -184,6 +188,7 @@ STATIC void stop_mp(void) {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
background_callback_reset();
|
background_callback_reset();
|
||||||
|
usb_background();
|
||||||
|
|
||||||
gc_deinit();
|
gc_deinit();
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,7 @@ CFLAGS += -ftree-vrp
|
|||||||
$(echo PERIPHERALS_CHIP_FAMILY=$(PERIPHERALS_CHIP_FAMILY))
|
$(echo PERIPHERALS_CHIP_FAMILY=$(PERIPHERALS_CHIP_FAMILY))
|
||||||
#Debugging/Optimization
|
#Debugging/Optimization
|
||||||
ifeq ($(DEBUG), 1)
|
ifeq ($(DEBUG), 1)
|
||||||
CFLAGS += -ggdb3 -Og
|
CFLAGS += -ggdb3 -Og -Os
|
||||||
# You may want to disable -flto if it interferes with debugging.
|
# You may want to disable -flto if it interferes with debugging.
|
||||||
CFLAGS += -flto -flto-partition=none
|
CFLAGS += -flto -flto-partition=none
|
||||||
# You may want to enable these flags to make setting breakpoints easier.
|
# You may want to enable these flags to make setting breakpoints easier.
|
||||||
|
@ -15,8 +15,7 @@ CIRCUITPY_FULL_BUILD = 0
|
|||||||
CIRCUITPY_USB_MIDI = 0
|
CIRCUITPY_USB_MIDI = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
CFLAGS_INLINE_LIMIT = 60
|
|
||||||
|
|
||||||
CIRCUITPY_GAMEPAD = 1
|
CIRCUITPY_GAMEPAD = 1
|
||||||
CIRCUITPY_BUSDEVICE = 1
|
CIRCUITPY_BUSDEVICE = 1
|
||||||
|
@ -9,5 +9,6 @@ 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
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
|
@ -12,4 +12,3 @@ CIRCUITPY_FULL_BUILD = 0
|
|||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
CFLAGS_INLINE_LIMIT = 40
|
|
||||||
|
@ -11,5 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -22,7 +22,7 @@ CIRCUITPY_ROTARYIO = 0
|
|||||||
CIRCUITPY_RTC = 0
|
CIRCUITPY_RTC = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
CFLAGS_INLINE_LIMIT = 40
|
SUPEROPT_VM = 0
|
||||||
|
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
|
@ -25,25 +25,10 @@ CIRCUITPY_RTC = 0
|
|||||||
CIRCUITPY_VECTORIO = 0
|
CIRCUITPY_VECTORIO = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
CFLAGS_INLINE_LIMIT = 55
|
SUPEROPT_VM = 0
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_CircuitPlayground
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_CircuitPlayground
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Thermistor
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Thermistor
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), ja)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 15
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
|
||||||
endif
|
|
||||||
|
@ -11,14 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
endif
|
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
37
ports/atmel-samd/boards/dynalora_usb/board.c
Normal file
37
ports/atmel-samd/boards/dynalora_usb/board.c
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2017 Scott Shawcroft for Adafruit Industries
|
||||||
|
*
|
||||||
|
* 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 "supervisor/board.h"
|
||||||
|
|
||||||
|
void board_init(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool board_requests_safe_mode(void) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset_board(void) {
|
||||||
|
}
|
36
ports/atmel-samd/boards/dynalora_usb/mpconfigboard.h
Normal file
36
ports/atmel-samd/boards/dynalora_usb/mpconfigboard.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
#define MICROPY_HW_BOARD_NAME "DynaLoRa_USB"
|
||||||
|
#define MICROPY_HW_MCU_NAME "samd21e18"
|
||||||
|
|
||||||
|
#define MICROPY_HW_LED_STATUS (&pin_PA27)
|
||||||
|
#define MICROPY_HW_NEOPIXEL (&pin_PA19)
|
||||||
|
|
||||||
|
#define SPI_FLASH_MOSI_PIN &pin_PA04
|
||||||
|
#define SPI_FLASH_MISO_PIN &pin_PA05
|
||||||
|
#define SPI_FLASH_SCK_PIN &pin_PA07
|
||||||
|
#define SPI_FLASH_CS_PIN &pin_PA06
|
||||||
|
|
||||||
|
// These are pins not to reset.
|
||||||
|
#define MICROPY_PORT_A (0)
|
||||||
|
#define MICROPY_PORT_B (0)
|
||||||
|
#define MICROPY_PORT_C (0)
|
||||||
|
|
||||||
|
#define DEFAULT_I2C_BUS_SCL (&pin_PA01)
|
||||||
|
#define DEFAULT_I2C_BUS_SDA (&pin_PA00)
|
||||||
|
|
||||||
|
#define DEFAULT_SPI_BUS_SCK (&pin_PA17)
|
||||||
|
#define DEFAULT_SPI_BUS_MOSI (&pin_PA16)
|
||||||
|
#define DEFAULT_SPI_BUS_MISO (&pin_PA18)
|
||||||
|
|
||||||
|
#define DEFAULT_UART_BUS_RX (&pin_PA00)
|
||||||
|
#define DEFAULT_UART_BUS_TX (&pin_PA01)
|
||||||
|
|
||||||
|
// USB is always used internally so skip the pin objects for it.
|
||||||
|
#define IGNORE_PIN_PA23 1
|
||||||
|
#define IGNORE_PIN_PA24 1
|
||||||
|
|
||||||
|
// Not connected
|
||||||
|
#define IGNORE_PIN_PA08 1
|
||||||
|
#define IGNORE_PIN_PA14 1
|
||||||
|
#define IGNORE_PIN_PA21 1
|
||||||
|
#define IGNORE_PIN_PA22 1
|
||||||
|
#define IGNORE_PIN_PA28 1
|
39
ports/atmel-samd/boards/dynalora_usb/mpconfigboard.mk
Normal file
39
ports/atmel-samd/boards/dynalora_usb/mpconfigboard.mk
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
USB_VID = 0x04D8
|
||||||
|
USB_PID = 0xEA2A
|
||||||
|
USB_PRODUCT = "DynaLoRa_USB"
|
||||||
|
USB_MANUFACTURER = "BHDynamics"
|
||||||
|
|
||||||
|
CHIP_VARIANT = SAMD21E18A
|
||||||
|
CHIP_FAMILY = samd21
|
||||||
|
|
||||||
|
SPI_FLASH_FILESYSTEM = 1
|
||||||
|
EXTERNAL_FLASH_DEVICE_COUNT = 1
|
||||||
|
EXTERNAL_FLASH_DEVICES = GD25Q32C
|
||||||
|
LONGINT_IMPL = MPZ
|
||||||
|
|
||||||
|
CIRCUITPY_AUDIOBUSIO = 0
|
||||||
|
CIRCUITPY_FREQUENCYIO = 0
|
||||||
|
CIRCUITPY_GAMEPAD = 0
|
||||||
|
CIRCUITPY_DISPLAYIO = 0
|
||||||
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
|
SUPEROPT_GC = 0
|
||||||
|
|
||||||
|
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
||||||
|
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
||||||
|
RELEASE_NEEDS_CLEAN_BUILD = 1
|
||||||
|
CFLAGS_INLINE_LIMIT = 35
|
||||||
|
endif
|
||||||
|
ifeq ($(TRANSLATION), ja)
|
||||||
|
RELEASE_NEEDS_CLEAN_BUILD = 1
|
||||||
|
CFLAGS_INLINE_LIMIT = 35
|
||||||
|
endif
|
||||||
|
ifeq ($(TRANSLATION), de_DE)
|
||||||
|
RELEASE_NEEDS_CLEAN_BUILD = 1
|
||||||
|
CFLAGS_INLINE_LIMIT = 35
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
||||||
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_RFM9x
|
||||||
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_SD
|
41
ports/atmel-samd/boards/dynalora_usb/pins.c
Normal file
41
ports/atmel-samd/boards/dynalora_usb/pins.c
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#include "shared-bindings/board/__init__.h"
|
||||||
|
|
||||||
|
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D0), MP_ROM_PTR(&pin_PA00) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D1), MP_ROM_PTR(&pin_PA01) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D2), MP_ROM_PTR(&pin_PA02) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D3), MP_ROM_PTR(&pin_PA30) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D4), MP_ROM_PTR(&pin_PA31) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_PA00) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_PA01) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A2), MP_ROM_PTR(&pin_PA02) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_PA16) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_PA18) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_PA17) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RADIO_CS), MP_ROM_PTR(&pin_PA11) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RADIO_INT), MP_ROM_PTR(&pin_PA09) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RADIO_RESET), MP_ROM_PTR(&pin_PA10) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SD_CS), MP_ROM_PTR(&pin_PA03) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_PA01) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(&pin_PA00) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_PA01) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_PA00) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MOSI1), MP_ROM_PTR(&pin_PA00) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MISO1), MP_ROM_PTR(&pin_PA02) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCK1), MP_ROM_PTR(&pin_PA01) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_PA27) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_NEOPIXEL), MP_ROM_PTR(&pin_PA19) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_BUTTON), MP_ROM_PTR(&pin_PA15) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_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_DEFINE_CONST_DICT(board_module_globals, board_global_dict_table);
|
@ -12,3 +12,4 @@ CIRCUITPY_FULL_BUILD = 0
|
|||||||
CIRCUITPY_RTC = 0
|
CIRCUITPY_RTC = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,9 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
|
@ -11,14 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
endif
|
|
||||||
|
@ -25,22 +25,8 @@ CIRCUITPY_VECTORIO = 0
|
|||||||
|
|
||||||
CFLAGS_INLINE_LIMIT = 55
|
CFLAGS_INLINE_LIMIT = 55
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), ja)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
|
||||||
endif
|
|
||||||
|
@ -12,3 +12,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -12,3 +12,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -9,8 +9,6 @@ CHIP_FAMILY = samd21
|
|||||||
INTERNAL_FLASH_FILESYSTEM = 1
|
INTERNAL_FLASH_FILESYSTEM = 1
|
||||||
LONGINT_IMPL = NONE
|
LONGINT_IMPL = NONE
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
|
||||||
|
|
||||||
CIRCUITPY_ANALOGIO = 0
|
CIRCUITPY_ANALOGIO = 0
|
||||||
CIRCUITPY_ROTARYIO = 0
|
CIRCUITPY_ROTARYIO = 0
|
||||||
CIRCUITPY_RTC = 0
|
CIRCUITPY_RTC = 0
|
||||||
@ -28,16 +26,8 @@ CIRCUITPY_USB_MIDI = 1
|
|||||||
CIRCUITPY_TOUCHIO = 1
|
CIRCUITPY_TOUCHIO = 1
|
||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
SUPEROPT_GC = 0
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
endif
|
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
||||||
|
@ -20,12 +20,6 @@ CIRCUITPY_SAMD = 0
|
|||||||
CIRCUITPY_USB_MIDI = 0
|
CIRCUITPY_USB_MIDI = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/pew-pewpew-standalone-10.x
|
FROZEN_MPY_DIRS += $(TOP)/frozen/pew-pewpew-standalone-10.x
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
|
||||||
endif
|
|
||||||
|
@ -11,14 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
endif
|
|
||||||
|
@ -21,12 +21,11 @@ CIRCUITPY_SAMD = 0
|
|||||||
CIRCUITPY_USB_MIDI = 1
|
CIRCUITPY_USB_MIDI = 1
|
||||||
CIRCUITPY_TOUCHIO = 0
|
CIRCUITPY_TOUCHIO = 0
|
||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
# Make more room.
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
|
||||||
# Include these Python libraries in firmware.
|
# Include these Python libraries in firmware.
|
||||||
# FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DotStar
|
# FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DotStar
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HID
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HID
|
||||||
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IRRemote
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_IRRemote
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=12
|
|
||||||
|
@ -11,10 +11,6 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
CIRCUITPY_COUNTIO = 0
|
CIRCUITPY_COUNTIO = 0
|
||||||
CIRCUITPY_RTC = 0
|
CIRCUITPY_RTC = 0
|
||||||
SUPEROPT_GC = 0
|
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
SUPEROPT_GC = 0
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
SUPEROPT_VM = 0
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
|
@ -12,5 +12,3 @@ CIRCUITPY_FULL_BUILD = 0
|
|||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -17,18 +17,4 @@ CIRCUITPY_GAMEPAD = 0
|
|||||||
CIRCUITPY_BUSDEVICE = 0
|
CIRCUITPY_BUSDEVICE = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), ja)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
endif
|
|
||||||
|
@ -13,5 +13,4 @@ CIRCUITPY_I2CPERIPHERAL = 1
|
|||||||
CIRCUITPY_TOUCHIO = 0
|
CIRCUITPY_TOUCHIO = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
|
38
ports/atmel-samd/boards/silicognition-m4-shim/board.c
Normal file
38
ports/atmel-samd/boards/silicognition-m4-shim/board.c
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2017 Scott Shawcroft for Adafruit Industries
|
||||||
|
*
|
||||||
|
* 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 "supervisor/board.h"
|
||||||
|
#include "mpconfigboard.h"
|
||||||
|
|
||||||
|
void board_init(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool board_requests_safe_mode(void) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset_board(void) {
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
#define MICROPY_HW_BOARD_NAME "Silicognition LLC M4-Shim"
|
||||||
|
#define MICROPY_HW_MCU_NAME "samd51j19"
|
||||||
|
|
||||||
|
#define CIRCUITPY_MCU_FAMILY samd51
|
||||||
|
|
||||||
|
// Rev E
|
||||||
|
|
||||||
|
#define MICROPY_HW_LED_STATUS (&pin_PA23)
|
||||||
|
#define MICROPY_HW_NEOPIXEL (&pin_PB03)
|
||||||
|
|
||||||
|
// These are pins not to reset.
|
||||||
|
// QSPI Data pins
|
||||||
|
#define MICROPY_PORT_A (PORT_PA08 | PORT_PA09 | PORT_PA10 | PORT_PA11)
|
||||||
|
// QSPI CS, QSPI SCK and NeoPixel pin
|
||||||
|
#define MICROPY_PORT_B (PORT_PB03 | PORT_PB10 | PORT_PB11)
|
||||||
|
#define MICROPY_PORT_C (0)
|
||||||
|
#define MICROPY_PORT_D (0)
|
||||||
|
|
||||||
|
#define BOARD_HAS_CRYSTAL 1
|
||||||
|
|
||||||
|
#define DEFAULT_I2C_BUS_SCL (&pin_PA13)
|
||||||
|
#define DEFAULT_I2C_BUS_SDA (&pin_PA12)
|
||||||
|
|
||||||
|
#define DEFAULT_SPI_BUS_SCK (&pin_PA17)
|
||||||
|
#define DEFAULT_SPI_BUS_MOSI (&pin_PB23)
|
||||||
|
#define DEFAULT_SPI_BUS_MISO (&pin_PB22)
|
||||||
|
|
||||||
|
#define DEFAULT_UART_BUS_RX (&pin_PB17)
|
||||||
|
#define DEFAULT_UART_BUS_TX (&pin_PB16)
|
||||||
|
|
||||||
|
// USB is always used internally so skip the pin objects for it.
|
||||||
|
#define IGNORE_PIN_PA24 1
|
||||||
|
#define IGNORE_PIN_PA25 1
|
@ -0,0 +1,14 @@
|
|||||||
|
USB_VID = 0x1209
|
||||||
|
USB_PID = 0xF500
|
||||||
|
USB_PRODUCT = "M4-Shim"
|
||||||
|
USB_MANUFACTURER = "Silicognition LLC"
|
||||||
|
|
||||||
|
CHIP_VARIANT = SAMD51J19A
|
||||||
|
CHIP_FAMILY = samd51
|
||||||
|
|
||||||
|
QSPI_FLASH_FILESYSTEM = 1
|
||||||
|
EXTERNAL_FLASH_DEVICE_COUNT = 1
|
||||||
|
EXTERNAL_FLASH_DEVICES = GD25Q16C
|
||||||
|
LONGINT_IMPL = MPZ
|
||||||
|
|
||||||
|
CIRCUITPY_VECTORIO = 1
|
54
ports/atmel-samd/boards/silicognition-m4-shim/pins.c
Normal file
54
ports/atmel-samd/boards/silicognition-m4-shim/pins.c
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#include "shared-bindings/board/__init__.h"
|
||||||
|
|
||||||
|
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_PA02) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D14), MP_ROM_PTR(&pin_PA02) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_PA05) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D15), MP_ROM_PTR(&pin_PA05) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A2), MP_ROM_PTR(&pin_PB08) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D16), MP_ROM_PTR(&pin_PB08) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A3), MP_ROM_PTR(&pin_PB09) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D17), MP_ROM_PTR(&pin_PB09) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A4), MP_ROM_PTR(&pin_PA04) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D18), MP_ROM_PTR(&pin_PA04) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_A5), MP_ROM_PTR(&pin_PA06) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D19), MP_ROM_PTR(&pin_PA06) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_PA17) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D25), MP_ROM_PTR(&pin_PA17) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_PB23) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D24), MP_ROM_PTR(&pin_PB23) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_PB22) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D23), MP_ROM_PTR(&pin_PB22) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D0), MP_ROM_PTR(&pin_PB17) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_PB17) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D1), MP_ROM_PTR(&pin_PB16) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_PB16) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(&pin_PA12) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_PA13) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D4), MP_ROM_PTR(&pin_PA14) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D5), MP_ROM_PTR(&pin_PA16) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D6), MP_ROM_PTR(&pin_PA18) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D9), MP_ROM_PTR(&pin_PA19) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D10), MP_ROM_PTR(&pin_PA20) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D11), MP_ROM_PTR(&pin_PA21) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D12), MP_ROM_PTR(&pin_PA22) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_D13), MP_ROM_PTR(&pin_PA23) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_NEOPIXEL), MP_ROM_PTR(&pin_PB03) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_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_DEFINE_CONST_DICT(board_module_globals, board_global_dict_table);
|
@ -10,4 +10,6 @@ INTERNAL_FLASH_FILESYSTEM = 1
|
|||||||
LONGINT_IMPL = NONE
|
LONGINT_IMPL = NONE
|
||||||
|
|
||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -10,10 +10,5 @@ INTERNAL_FLASH_FILESYSTEM = 1
|
|||||||
LONGINT_IMPL = NONE
|
LONGINT_IMPL = NONE
|
||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
ifeq ($(TRANSLATION),de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
|
||||||
endif
|
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,3 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -11,14 +11,4 @@ LONGINT_IMPL = NONE
|
|||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
|
||||||
CFLAGS_BOARD = --param max-inline-insns-auto=15
|
|
||||||
ifeq ($(TRANSLATION), zh_Latn_pinyin)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
endif
|
|
||||||
ifeq ($(TRANSLATION), de_DE)
|
|
||||||
RELEASE_NEEDS_CLEAN_BUILD = 1
|
|
||||||
CFLAGS_INLINE_LIMIT = 35
|
|
||||||
SUPEROPT_VM = 0
|
SUPEROPT_VM = 0
|
||||||
endif
|
|
||||||
|
@ -10,7 +10,5 @@ INTERNAL_FLASH_FILESYSTEM = 1
|
|||||||
LONGINT_IMPL = NONE
|
LONGINT_IMPL = NONE
|
||||||
CIRCUITPY_FULL_BUILD = 0
|
CIRCUITPY_FULL_BUILD = 0
|
||||||
|
|
||||||
# Always use aggressive inlining
|
|
||||||
CFLAGS_INLINE_LIMIT = 45
|
|
||||||
|
|
||||||
SUPEROPT_GC = 0
|
SUPEROPT_GC = 0
|
||||||
|
SUPEROPT_VM = 0
|
||||||
|
@ -40,6 +40,7 @@
|
|||||||
|
|
||||||
|
|
||||||
static uint8_t pewpew_tc_index = 0xff;
|
static uint8_t pewpew_tc_index = 0xff;
|
||||||
|
static volatile uint16_t pewpew_ticks = 0;
|
||||||
|
|
||||||
|
|
||||||
void pewpew_interrupt_handler(uint8_t index) {
|
void pewpew_interrupt_handler(uint8_t index) {
|
||||||
@ -52,6 +53,7 @@ void pewpew_interrupt_handler(uint8_t index) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pew_tick();
|
pew_tick();
|
||||||
|
++pewpew_ticks;
|
||||||
|
|
||||||
// Clear the interrupt bit.
|
// Clear the interrupt bit.
|
||||||
tc->COUNT16.INTFLAG.reg = TC_INTFLAG_MC0;
|
tc->COUNT16.INTFLAG.reg = TC_INTFLAG_MC0;
|
||||||
@ -123,3 +125,7 @@ void pew_reset(void) {
|
|||||||
}
|
}
|
||||||
MP_STATE_VM(pew_singleton) = NULL;
|
MP_STATE_VM(pew_singleton) = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint16_t pew_get_ticks() {
|
||||||
|
return pewpew_ticks;
|
||||||
|
}
|
||||||
|
@ -44,5 +44,6 @@ typedef struct {
|
|||||||
void pew_init(void);
|
void pew_init(void);
|
||||||
void pewpew_interrupt_handler(uint8_t index);
|
void pewpew_interrupt_handler(uint8_t index);
|
||||||
void pew_reset(void);
|
void pew_reset(void);
|
||||||
|
uint16_t pew_get_ticks(void);
|
||||||
|
|
||||||
#endif // MICROPY_INCLUDED_PEW_PEWPEW_H
|
#endif // MICROPY_INCLUDED_PEW_PEWPEW_H
|
||||||
|
@ -97,7 +97,7 @@ void common_hal_busio_i2c_construct(busio_i2c_obj_t *self,
|
|||||||
if (!gpio_get_pin_level(sda->number) || !gpio_get_pin_level(scl->number)) {
|
if (!gpio_get_pin_level(sda->number) || !gpio_get_pin_level(scl->number)) {
|
||||||
reset_pin_number(sda->number);
|
reset_pin_number(sda->number);
|
||||||
reset_pin_number(scl->number);
|
reset_pin_number(scl->number);
|
||||||
mp_raise_RuntimeError(translate("SDA or SCL needs a pull up"));
|
mp_raise_RuntimeError(translate("No pull up found on SDA or SCL; check your wiring"));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -28,10 +28,10 @@
|
|||||||
#include "shared-bindings/supervisor/Runtime.h"
|
#include "shared-bindings/supervisor/Runtime.h"
|
||||||
#include "supervisor/serial.h"
|
#include "supervisor/serial.h"
|
||||||
|
|
||||||
bool common_hal_get_serial_connected(void) {
|
bool common_hal_supervisor_runtime_get_serial_connected(void) {
|
||||||
return (bool) serial_connected();
|
return (bool) serial_connected();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool common_hal_get_serial_bytes_available(void) {
|
bool common_hal_supervisor_runtime_get_serial_bytes_available(void) {
|
||||||
return (bool) serial_bytes_available();
|
return (bool) serial_bytes_available();
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,16 @@ ifeq ($(LONGINT_IMPL),LONGLONG)
|
|||||||
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=longlong
|
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=longlong
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
INTERNAL_LIBM = 1
|
||||||
|
|
||||||
|
USB_SERIAL_NUMBER_LENGTH = 32
|
||||||
|
|
||||||
|
# Number of USB endpoint pairs.
|
||||||
|
USB_NUM_EP = 8
|
||||||
|
|
||||||
|
######################################################################
|
||||||
# Put samd21-only choices here.
|
# Put samd21-only choices here.
|
||||||
|
|
||||||
ifeq ($(CHIP_FAMILY),samd21)
|
ifeq ($(CHIP_FAMILY),samd21)
|
||||||
|
|
||||||
# The ?='s allow overriding in mpconfigboard.mk.
|
# The ?='s allow overriding in mpconfigboard.mk.
|
||||||
@ -39,8 +48,8 @@ CIRCUITPY_SDCARDIO ?= 0
|
|||||||
# Not enough RAM for framebuffers
|
# Not enough RAM for framebuffers
|
||||||
CIRCUITPY_FRAMEBUFFERIO ?= 0
|
CIRCUITPY_FRAMEBUFFERIO ?= 0
|
||||||
|
|
||||||
# SAMD21 needs separate endpoint pairs for MSC BULK IN and BULK OUT, otherwise it's erratic.
|
# Not enough room in 192kB or 256kB builds for secondary CDC.
|
||||||
USB_MSC_EP_NUM_OUT = 1
|
CIRCUITPY_USB_CDC ?= 0
|
||||||
|
|
||||||
CIRCUITPY_ULAB = 0
|
CIRCUITPY_ULAB = 0
|
||||||
|
|
||||||
@ -55,9 +64,13 @@ CIRCUITPY_TERMINALIO = 0
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
endif # samd21
|
endif # samd21
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
######################################################################
|
||||||
# Put samd51-only choices here.
|
# Put samd51-only choices here.
|
||||||
|
|
||||||
ifeq ($(CHIP_FAMILY),samd51)
|
ifeq ($(CHIP_FAMILY),samd51)
|
||||||
|
|
||||||
# No native touchio on SAMD51.
|
# No native touchio on SAMD51.
|
||||||
CIRCUITPY_TOUCHIO_USE_NATIVE = 0
|
CIRCUITPY_TOUCHIO_USE_NATIVE = 0
|
||||||
|
|
||||||
@ -70,9 +83,4 @@ CIRCUITPY_RGBMATRIX ?= $(CIRCUITPY_FULL_BUILD)
|
|||||||
CIRCUITPY_FRAMEBUFFERIO ?= $(CIRCUITPY_FULL_BUILD)
|
CIRCUITPY_FRAMEBUFFERIO ?= $(CIRCUITPY_FULL_BUILD)
|
||||||
|
|
||||||
endif # samd51
|
endif # samd51
|
||||||
|
######################################################################
|
||||||
INTERNAL_LIBM = 1
|
|
||||||
|
|
||||||
USB_SERIAL_NUMBER_LENGTH = 32
|
|
||||||
|
|
||||||
USB_NUM_EP = 8
|
|
||||||
|
@ -27,10 +27,10 @@
|
|||||||
#include "shared-bindings/supervisor/Runtime.h"
|
#include "shared-bindings/supervisor/Runtime.h"
|
||||||
#include "supervisor/serial.h"
|
#include "supervisor/serial.h"
|
||||||
|
|
||||||
bool common_hal_get_serial_connected(void) {
|
bool common_hal_supervisor_runtime_get_serial_connected(void) {
|
||||||
return (bool) serial_connected();
|
return (bool) serial_connected();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool common_hal_get_serial_bytes_available(void) {
|
bool common_hal_supervisor_runtime_get_serial_bytes_available(void) {
|
||||||
return (bool) serial_bytes_available();
|
return (bool) serial_bytes_available();
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,9 @@ USB_CDC_EP_NUM_DATA_IN = 1
|
|||||||
USB_MSC_EP_NUM_OUT = 5
|
USB_MSC_EP_NUM_OUT = 5
|
||||||
USB_MSC_EP_NUM_IN = 4
|
USB_MSC_EP_NUM_IN = 4
|
||||||
|
|
||||||
|
# Number of USB endpoint pairs.
|
||||||
|
USB_NUM_EP = 6
|
||||||
|
|
||||||
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=mpz
|
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=mpz
|
||||||
|
|
||||||
CIRCUITPY_AUDIOBUSIO = 0
|
CIRCUITPY_AUDIOBUSIO = 0
|
||||||
|
@ -164,7 +164,9 @@ LIBS += -lm
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# TinyUSB defines
|
# TinyUSB defines
|
||||||
CFLAGS += -DCFG_TUSB_MCU=OPT_MCU_ESP32S2 -DCFG_TUSB_OS=OPT_OS_FREERTOS -DCFG_TUD_CDC_RX_BUFSIZE=1024 -DCFG_TUD_CDC_TX_BUFSIZE=1024 -DCFG_TUD_MSC_BUFSIZE=4096 -DCFG_TUD_MIDI_RX_BUFSIZE=128 -DCFG_TUD_MIDI_TX_BUFSIZE=128
|
CFLAGS += -DCFG_TUSB_MCU=OPT_MCU_ESP32S2 -DCFG_TUSB_OS=OPT_OS_FREERTOS -DCFG_TUD_CDC_RX_BUFSIZE=1024 -DCFG_TUD_CDC_TX_BUFSIZE=1024
|
||||||
|
CFLAGS += -DCFG_TUD_MSC_BUFSIZE=4096 -DCFG_TUD_MIDI_RX_BUFSIZE=128 -DCFG_TUD_MIDI_TX_BUFSIZE=128
|
||||||
|
CFLAGS += -DCFG_TUD_VENDOR_RX_BUFSIZE=128 -DCFG_TUD_VENDOR_TX_BUFSIZE=128
|
||||||
|
|
||||||
|
|
||||||
######################################
|
######################################
|
||||||
|
@ -14,4 +14,10 @@ CIRCUITPY_ESP_FLASH_MODE=dio
|
|||||||
CIRCUITPY_ESP_FLASH_FREQ=80m
|
CIRCUITPY_ESP_FLASH_FREQ=80m
|
||||||
CIRCUITPY_ESP_FLASH_SIZE=4MB
|
CIRCUITPY_ESP_FLASH_SIZE=4MB
|
||||||
|
|
||||||
|
# We only have enough endpoints available in hardware to
|
||||||
|
# enable ONE of these at a time.
|
||||||
|
CIRCUITPY_USB_MIDI = 1
|
||||||
|
CIRCUITPY_USB_HID = 0
|
||||||
|
CIRCUITPY_USB_VENDOR = 0
|
||||||
|
|
||||||
CIRCUITPY_MODULE=wrover
|
CIRCUITPY_MODULE=wrover
|
||||||
|
158
ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/board.c
Normal file
158
ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/board.c
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
||||||
|
*
|
||||||
|
* 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 "supervisor/board.h"
|
||||||
|
#include "mpconfigboard.h"
|
||||||
|
#include "shared-bindings/microcontroller/Pin.h"
|
||||||
|
#include "shared-module/displayio/__init__.h"
|
||||||
|
#include "shared-module/displayio/mipi_constants.h"
|
||||||
|
|
||||||
|
#define DELAY 0x80
|
||||||
|
|
||||||
|
// display init sequence according to LilyGO example app
|
||||||
|
uint8_t display_init_sequence[] = {
|
||||||
|
// sw reset
|
||||||
|
0x01, 0 | DELAY, 150,
|
||||||
|
// sleep out
|
||||||
|
0x11, 0 | DELAY, 255,
|
||||||
|
// normal display mode on
|
||||||
|
0x13, 0,
|
||||||
|
// display and color format settings
|
||||||
|
0x36, 1, 0x08,
|
||||||
|
0xB6, 2, 0x0A, 0x82,
|
||||||
|
0x3A, 1 | DELAY, 0x55, 10,
|
||||||
|
// ST7789V frame rate setting
|
||||||
|
0xB2, 5, 0x0C, 0x0C, 0x00, 0x33, 0x33,
|
||||||
|
// voltages: VGH / VGL
|
||||||
|
0xB7, 1, 0x35,
|
||||||
|
// ST7789V power setting
|
||||||
|
0xBB, 1, 0x28,
|
||||||
|
0xC0, 1, 0x0C,
|
||||||
|
0xC2, 2, 0x01, 0xFF,
|
||||||
|
0xC3, 1, 0x10,
|
||||||
|
0xC4, 1, 0x20,
|
||||||
|
0xC6, 1, 0x0F,
|
||||||
|
0xD0, 2, 0xA4, 0xA1,
|
||||||
|
// ST7789V gamma setting
|
||||||
|
0xE0, 14, 0xD0, 0x00, 0x02, 0x07, 0x0A, 0x28, 0x32, 0x44, 0x42, 0x06, 0x0E, 0x12, 0x14, 0x17,
|
||||||
|
0xE1, 14, 0xD0, 0x00, 0x02, 0x07, 0x0A, 0x28, 0x31, 0x54, 0x47, 0x0E, 0x1C, 0x17, 0x1B, 0x1E,
|
||||||
|
0x21, 0,
|
||||||
|
// display on
|
||||||
|
0x29, 0 | DELAY, 255,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void display_init(void) {
|
||||||
|
busio_spi_obj_t* spi = &displays[0].fourwire_bus.inline_bus;
|
||||||
|
|
||||||
|
common_hal_busio_spi_construct(
|
||||||
|
spi,
|
||||||
|
&pin_GPIO36, // CLK
|
||||||
|
&pin_GPIO35, // MOSI
|
||||||
|
NULL // MISO not connected
|
||||||
|
);
|
||||||
|
|
||||||
|
common_hal_busio_spi_never_reset(spi);
|
||||||
|
|
||||||
|
displayio_fourwire_obj_t* bus = &displays[0].fourwire_bus;
|
||||||
|
bus->base.type = &displayio_fourwire_type;
|
||||||
|
|
||||||
|
common_hal_displayio_fourwire_construct(
|
||||||
|
bus,
|
||||||
|
spi,
|
||||||
|
&pin_GPIO37, // DC
|
||||||
|
&pin_GPIO34, // CS
|
||||||
|
&pin_GPIO38, // RST
|
||||||
|
40000000, // baudrate
|
||||||
|
0, // polarity
|
||||||
|
0 // phase
|
||||||
|
);
|
||||||
|
|
||||||
|
displayio_display_obj_t* display = &displays[0].display;
|
||||||
|
display->base.type = &displayio_display_type;
|
||||||
|
|
||||||
|
// workaround as board_init() is called before reset_port() in main.c
|
||||||
|
pwmout_reset();
|
||||||
|
|
||||||
|
common_hal_displayio_display_construct(
|
||||||
|
display,
|
||||||
|
bus,
|
||||||
|
240, // width (after rotation)
|
||||||
|
135, // height (after rotation)
|
||||||
|
52, // column start
|
||||||
|
40, // row start
|
||||||
|
90, // rotation
|
||||||
|
16, // color depth
|
||||||
|
false, // grayscale
|
||||||
|
false, // pixels in a byte share a row. Only valid for depths < 8
|
||||||
|
1, // bytes per cell. Only valid for depths < 8
|
||||||
|
false, // reverse_pixels_in_byte. Only valid for depths < 8
|
||||||
|
true, // reverse_pixels_in_word
|
||||||
|
MIPI_COMMAND_SET_COLUMN_ADDRESS, // set column command
|
||||||
|
MIPI_COMMAND_SET_PAGE_ADDRESS, // set row command
|
||||||
|
MIPI_COMMAND_WRITE_MEMORY_START, // write memory command
|
||||||
|
0x37, // set vertical scroll command
|
||||||
|
display_init_sequence,
|
||||||
|
sizeof(display_init_sequence),
|
||||||
|
&pin_GPIO33, // backlight pin
|
||||||
|
NO_BRIGHTNESS_COMMAND,
|
||||||
|
1.0f, // brightness (ignored)
|
||||||
|
false, // auto_brightness
|
||||||
|
false, // single_byte_bounds
|
||||||
|
false, // data_as_commands
|
||||||
|
true, // auto_refresh
|
||||||
|
60, // native_frames_per_second
|
||||||
|
true, // backlight_on_high
|
||||||
|
false // SH1107_addressing
|
||||||
|
);
|
||||||
|
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO33); // backlight pin
|
||||||
|
}
|
||||||
|
|
||||||
|
void board_init(void) {
|
||||||
|
// USB
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO19);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO20);
|
||||||
|
|
||||||
|
// Debug UART
|
||||||
|
#ifdef DEBUG
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO43);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO44);
|
||||||
|
#endif /* DEBUG */
|
||||||
|
|
||||||
|
// Display
|
||||||
|
display_init();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool board_requests_safe_mode(void) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset_board(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void board_deinit(void) {
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2019 Scott Shawcroft for Adafruit Industries
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Micropython setup
|
||||||
|
|
||||||
|
#define MICROPY_HW_BOARD_NAME "LILYGO TTGO T8 ESP32-S2 w/Display"
|
||||||
|
#define MICROPY_HW_MCU_NAME "ESP32S2"
|
||||||
|
|
||||||
|
#define CIRCUITPY_BOOT_BUTTON (&pin_GPIO0)
|
||||||
|
|
||||||
|
#define BOARD_USER_SAFE_MODE_ACTION translate("pressing boot button at start up.\n")
|
||||||
|
|
||||||
|
#define AUTORESET_DELAY_MS 500
|
@ -0,0 +1,17 @@
|
|||||||
|
USB_VID = 0x303a
|
||||||
|
USB_PID = 0x8007
|
||||||
|
USB_PRODUCT = "TTGO T8 ESP32-S2"
|
||||||
|
USB_MANUFACTURER = "LILYGO"
|
||||||
|
|
||||||
|
INTERNAL_FLASH_FILESYSTEM = 1
|
||||||
|
LONGINT_IMPL = MPZ
|
||||||
|
|
||||||
|
# The default queue depth of 16 overflows on release builds,
|
||||||
|
# so increase it to 32.
|
||||||
|
CFLAGS += -DCFG_TUD_TASK_QUEUE_SZ=32
|
||||||
|
|
||||||
|
CIRCUITPY_ESP_FLASH_MODE = dio
|
||||||
|
CIRCUITPY_ESP_FLASH_FREQ = 40m
|
||||||
|
CIRCUITPY_ESP_FLASH_SIZE = 4MB
|
||||||
|
|
||||||
|
CIRCUITPY_MODULE = wroom
|
56
ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/pins.c
Normal file
56
ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/pins.c
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#include "shared-bindings/board/__init__.h"
|
||||||
|
#include "shared-module/displayio/__init__.h"
|
||||||
|
|
||||||
|
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO0), MP_ROM_PTR(&pin_GPIO0) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO1), MP_ROM_PTR(&pin_GPIO1) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO2), MP_ROM_PTR(&pin_GPIO2) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO3), MP_ROM_PTR(&pin_GPIO3) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO4), MP_ROM_PTR(&pin_GPIO4) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO5), MP_ROM_PTR(&pin_GPIO5) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO6), MP_ROM_PTR(&pin_GPIO6) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO7), MP_ROM_PTR(&pin_GPIO7) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO8), MP_ROM_PTR(&pin_GPIO8) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO11), MP_ROM_PTR(&pin_GPIO11) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO12), MP_ROM_PTR(&pin_GPIO12) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO13), MP_ROM_PTR(&pin_GPIO13) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO15), MP_ROM_PTR(&pin_GPIO15) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO16), MP_ROM_PTR(&pin_GPIO16) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO17), MP_ROM_PTR(&pin_GPIO17) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO18), MP_ROM_PTR(&pin_GPIO18) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO19), MP_ROM_PTR(&pin_GPIO19) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO20), MP_ROM_PTR(&pin_GPIO20) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO21), MP_ROM_PTR(&pin_GPIO21) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO39), MP_ROM_PTR(&pin_GPIO39) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO40), MP_ROM_PTR(&pin_GPIO40) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO41), MP_ROM_PTR(&pin_GPIO41) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO42), MP_ROM_PTR(&pin_GPIO42) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO45), MP_ROM_PTR(&pin_GPIO45) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO46), MP_ROM_PTR(&pin_GPIO46) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_GPIO43) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_GPIO44) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_TX1), MP_ROM_PTR(&pin_GPIO17) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RX1), MP_ROM_PTR(&pin_GPIO18) },
|
||||||
|
|
||||||
|
// SD Card
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SD_MISO), MP_ROM_PTR(&pin_GPIO13) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SD_MOSI), MP_ROM_PTR(&pin_GPIO11) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SD_CLK), MP_ROM_PTR(&pin_GPIO12) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SD_CS), MP_ROM_PTR(&pin_GPIO10) },
|
||||||
|
|
||||||
|
// 1.14 inch LCD ST7789
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LCD_MOSI), MP_ROM_PTR(&pin_GPIO35) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LCD_CLK), MP_ROM_PTR(&pin_GPIO36) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LCD_CS), MP_ROM_PTR(&pin_GPIO34) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LCD_RST), MP_ROM_PTR(&pin_GPIO38) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LCD_BCKL), MP_ROM_PTR(&pin_GPIO33) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_LCD_D_C), MP_ROM_PTR(&pin_GPIO37) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display) },
|
||||||
|
|
||||||
|
// Peripheral Power control
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_PE_POWER), MP_ROM_PTR(&pin_GPIO14) },
|
||||||
|
};
|
||||||
|
MP_DEFINE_CONST_DICT(board_module_globals, board_global_dict_table);
|
31
ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/sdkconfig
Normal file
31
ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/sdkconfig
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
CONFIG_ESP32S2_SPIRAM_SUPPORT=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI RAM config
|
||||||
|
#
|
||||||
|
CONFIG_SPIRAM_TYPE_ESPPSRAM64=y
|
||||||
|
CONFIG_SPIRAM_SIZE=8388608
|
||||||
|
|
||||||
|
#
|
||||||
|
# PSRAM clock and cs IO for ESP32S2
|
||||||
|
#
|
||||||
|
CONFIG_DEFAULT_PSRAM_CLK_IO=30
|
||||||
|
CONFIG_DEFAULT_PSRAM_CS_IO=26
|
||||||
|
# end of PSRAM clock and cs IO for ESP32S2
|
||||||
|
|
||||||
|
CONFIG_SPIRAM_SPIWP_SD3_PIN=28
|
||||||
|
CONFIG_SPIRAM_SPEED_40M=y
|
||||||
|
CONFIG_SPIRAM=y
|
||||||
|
CONFIG_SPIRAM_BOOT_INIT=y
|
||||||
|
CONFIG_SPIRAM_USE_MALLOC=y
|
||||||
|
CONFIG_SPIRAM_MEMTEST=y
|
||||||
|
CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=16384
|
||||||
|
CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=32768
|
||||||
|
# end of SPI RAM config
|
||||||
|
|
||||||
|
#
|
||||||
|
# LWIP
|
||||||
|
#
|
||||||
|
CONFIG_LWIP_LOCAL_HOSTNAME="TTGO-T8-ESP32-S2"
|
||||||
|
CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y
|
||||||
|
# end of LWIP
|
@ -2,7 +2,6 @@ USB_VID = 0x239A
|
|||||||
USB_PID = 0x80C6
|
USB_PID = 0x80C6
|
||||||
USB_PRODUCT = "microS2"
|
USB_PRODUCT = "microS2"
|
||||||
USB_MANUFACTURER = "microDev"
|
USB_MANUFACTURER = "microDev"
|
||||||
USB_DEVICES = "CDC,MSC,HID"
|
|
||||||
|
|
||||||
INTERNAL_FLASH_FILESYSTEM = 1
|
INTERNAL_FLASH_FILESYSTEM = 1
|
||||||
LONGINT_IMPL = MPZ
|
LONGINT_IMPL = MPZ
|
||||||
|
@ -2,7 +2,6 @@ USB_VID = 0x239A
|
|||||||
USB_PID = 0x80AC
|
USB_PID = 0x80AC
|
||||||
USB_PRODUCT = "FeatherS2"
|
USB_PRODUCT = "FeatherS2"
|
||||||
USB_MANUFACTURER = "UnexpectedMaker"
|
USB_MANUFACTURER = "UnexpectedMaker"
|
||||||
USB_DEVICES = "CDC,MSC,HID"
|
|
||||||
|
|
||||||
INTERNAL_FLASH_FILESYSTEM = 1
|
INTERNAL_FLASH_FILESYSTEM = 1
|
||||||
LONGINT_IMPL = MPZ
|
LONGINT_IMPL = MPZ
|
||||||
|
@ -2,7 +2,6 @@ USB_VID = 0x239A
|
|||||||
USB_PID = 0x80AC
|
USB_PID = 0x80AC
|
||||||
USB_PRODUCT = "FeatherS2"
|
USB_PRODUCT = "FeatherS2"
|
||||||
USB_MANUFACTURER = "UnexpectedMaker"
|
USB_MANUFACTURER = "UnexpectedMaker"
|
||||||
USB_DEVICES = "CDC,MSC,HID"
|
|
||||||
|
|
||||||
INTERNAL_FLASH_FILESYSTEM = 1
|
INTERNAL_FLASH_FILESYSTEM = 1
|
||||||
LONGINT_IMPL = MPZ
|
LONGINT_IMPL = MPZ
|
||||||
|
61
ports/esp32s2/boards/unexpectedmaker_tinys2/board.c
Normal file
61
ports/esp32s2/boards/unexpectedmaker_tinys2/board.c
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
||||||
|
*
|
||||||
|
* 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 "supervisor/board.h"
|
||||||
|
#include "mpconfigboard.h"
|
||||||
|
#include "shared-bindings/microcontroller/Pin.h"
|
||||||
|
|
||||||
|
void board_init(void) {
|
||||||
|
// USB
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO19);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO20);
|
||||||
|
|
||||||
|
// Debug UART
|
||||||
|
#ifdef DEBUG
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO43);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO44);
|
||||||
|
#endif /* DEBUG */
|
||||||
|
|
||||||
|
// SPI Flash and RAM
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO26);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO27);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO28);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO29);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO30);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO31);
|
||||||
|
common_hal_never_reset_pin(&pin_GPIO32);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool board_requests_safe_mode(void) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset_board(void) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void board_deinit(void) {
|
||||||
|
}
|
46
ports/esp32s2/boards/unexpectedmaker_tinys2/mpconfigboard.h
Normal file
46
ports/esp32s2/boards/unexpectedmaker_tinys2/mpconfigboard.h
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||||||
|
*
|
||||||
|
* The MIT License (MIT)
|
||||||
|
*
|
||||||
|
* Copyright (c) 2019 Scott Shawcroft for Adafruit Industries
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Micropython setup
|
||||||
|
|
||||||
|
#define MICROPY_HW_BOARD_NAME "TinyS2"
|
||||||
|
#define MICROPY_HW_MCU_NAME "ESP32S2"
|
||||||
|
|
||||||
|
#define MICROPY_HW_NEOPIXEL (&pin_GPIO1)
|
||||||
|
#define CIRCUITPY_BOOT_BUTTON (&pin_GPIO0)
|
||||||
|
#define BOARD_USER_SAFE_MODE_ACTION translate("pressing boot button at start up.\n")
|
||||||
|
|
||||||
|
#define AUTORESET_DELAY_MS 500
|
||||||
|
|
||||||
|
#define DEFAULT_I2C_BUS_SCL (&pin_GPIO9)
|
||||||
|
#define DEFAULT_I2C_BUS_SDA (&pin_GPIO8)
|
||||||
|
|
||||||
|
#define DEFAULT_SPI_BUS_SCK (&pin_GPIO36)
|
||||||
|
#define DEFAULT_SPI_BUS_MOSI (&pin_GPIO35)
|
||||||
|
#define DEFAULT_SPI_BUS_MISO (&pin_GPIO37)
|
||||||
|
|
||||||
|
#define DEFAULT_UART_BUS_RX (&pin_GPIO44)
|
||||||
|
#define DEFAULT_UART_BUS_TX (&pin_GPIO43)
|
23
ports/esp32s2/boards/unexpectedmaker_tinys2/mpconfigboard.mk
Normal file
23
ports/esp32s2/boards/unexpectedmaker_tinys2/mpconfigboard.mk
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
USB_VID = 0x303A
|
||||||
|
USB_PID = 0x8002
|
||||||
|
USB_PRODUCT = "TinyS2"
|
||||||
|
USB_MANUFACTURER = "UnexpectedMaker"
|
||||||
|
|
||||||
|
INTERNAL_FLASH_FILESYSTEM = 1
|
||||||
|
LONGINT_IMPL = MPZ
|
||||||
|
|
||||||
|
# The default queue depth of 16 overflows on release builds,
|
||||||
|
# so increase it to 32.
|
||||||
|
CFLAGS += -DCFG_TUD_TASK_QUEUE_SZ=32
|
||||||
|
|
||||||
|
CIRCUITPY_ESP_FLASH_MODE=qio
|
||||||
|
CIRCUITPY_ESP_FLASH_FREQ=80m
|
||||||
|
CIRCUITPY_ESP_FLASH_SIZE=4MB
|
||||||
|
|
||||||
|
# CIRCUITPY_MODULE=wroom
|
||||||
|
|
||||||
|
CIRCUITPY_BITBANG_NEOPIXEL = 1
|
||||||
|
|
||||||
|
# Include these Python libraries in firmware.
|
||||||
|
# FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_Requests
|
||||||
|
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
|
79
ports/esp32s2/boards/unexpectedmaker_tinys2/pins.c
Normal file
79
ports/esp32s2/boards/unexpectedmaker_tinys2/pins.c
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
#include "shared-bindings/board/__init__.h"
|
||||||
|
|
||||||
|
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
|
||||||
|
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO0), MP_ROM_PTR(&pin_GPIO0) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D4), MP_ROM_PTR(&pin_GPIO0) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO18), MP_ROM_PTR(&pin_GPIO18) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_GPIO18) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D15), MP_ROM_PTR(&pin_GPIO18) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO17), MP_ROM_PTR(&pin_GPIO17) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_GPIO17) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D14), MP_ROM_PTR(&pin_GPIO17) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO7), MP_ROM_PTR(&pin_GPIO7) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D9), MP_ROM_PTR(&pin_GPIO7) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_A8), MP_ROM_PTR(&pin_GPIO7) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO6), MP_ROM_PTR(&pin_GPIO6) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_A4), MP_ROM_PTR(&pin_GPIO6) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D18), MP_ROM_PTR(&pin_GPIO6) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO5), MP_ROM_PTR(&pin_GPIO5) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_A5), MP_ROM_PTR(&pin_GPIO5) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D19), MP_ROM_PTR(&pin_GPIO5) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO4), MP_ROM_PTR(&pin_GPIO4) },
|
||||||
|
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO36), MP_ROM_PTR(&pin_GPIO36) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_GPIO36) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D25), MP_ROM_PTR(&pin_GPIO36) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO35), MP_ROM_PTR(&pin_GPIO35) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_GPIO35) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D24), MP_ROM_PTR(&pin_GPIO35) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO37), MP_ROM_PTR(&pin_GPIO37) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_GPIO37) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D23), MP_ROM_PTR(&pin_GPIO37) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO34), MP_ROM_PTR(&pin_GPIO34) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_GPIO37) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D23), MP_ROM_PTR(&pin_GPIO37) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(&pin_GPIO8) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO8), MP_ROM_PTR(&pin_GPIO8) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D10), MP_ROM_PTR(&pin_GPIO8) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_GPIO9) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO9), MP_ROM_PTR(&pin_GPIO9) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D11), MP_ROM_PTR(&pin_GPIO9) },
|
||||||
|
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO38), MP_ROM_PTR(&pin_GPIO38) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D21), MP_ROM_PTR(&pin_GPIO38) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO33), MP_ROM_PTR(&pin_GPIO33) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D20), MP_ROM_PTR(&pin_GPIO33) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO43), MP_ROM_PTR(&pin_GPIO43) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D1), MP_ROM_PTR(&pin_GPIO43) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_GPIO43) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_IO44), MP_ROM_PTR(&pin_GPIO44) },
|
||||||
|
// { MP_ROM_QSTR(MP_QSTR_D0), MP_ROM_PTR(&pin_GPIO44) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_GPIO44) },
|
||||||
|
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_NEOPIXEL_POWER), MP_ROM_PTR(&pin_GPIO2) },
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_NEOPIXEL), MP_ROM_PTR(&pin_GPIO1) },
|
||||||
|
|
||||||
|
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_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_DEFINE_CONST_DICT(board_module_globals, board_global_dict_table);
|
39
ports/esp32s2/boards/unexpectedmaker_tinys2/sdkconfig
Normal file
39
ports/esp32s2/boards/unexpectedmaker_tinys2/sdkconfig
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
CONFIG_ESP32S2_SPIRAM_SUPPORT=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI RAM config
|
||||||
|
#
|
||||||
|
# CONFIG_SPIRAM_TYPE_AUTO=y
|
||||||
|
CONFIG_SPIRAM_TYPE_ESPPSRAM16=y
|
||||||
|
# CONFIG_SPIRAM_TYPE_ESPPSRAM32 is not set
|
||||||
|
# CONFIG_SPIRAM_TYPE_ESPPSRAM64=y
|
||||||
|
CONFIG_SPIRAM_SIZE=2097152
|
||||||
|
|
||||||
|
#
|
||||||
|
# PSRAM clock and cs IO for ESP32S2
|
||||||
|
#
|
||||||
|
CONFIG_DEFAULT_PSRAM_CLK_IO=30
|
||||||
|
CONFIG_DEFAULT_PSRAM_CS_IO=26
|
||||||
|
# end of PSRAM clock and cs IO for ESP32S2
|
||||||
|
|
||||||
|
# CONFIG_SPIRAM_FETCH_INSTRUCTIONS is not set
|
||||||
|
# CONFIG_SPIRAM_RODATA is not set
|
||||||
|
# CONFIG_SPIRAM_SPEED_80M=y
|
||||||
|
CONFIG_SPIRAM_SPEED_40M=y
|
||||||
|
# CONFIG_SPIRAM_SPEED_26M is not set
|
||||||
|
# CONFIG_SPIRAM_SPEED_20M is not set
|
||||||
|
CONFIG_SPIRAM=y
|
||||||
|
CONFIG_SPIRAM_BOOT_INIT=y
|
||||||
|
# CONFIG_SPIRAM_IGNORE_NOTFOUND is not set
|
||||||
|
CONFIG_SPIRAM_USE_MEMMAP=y
|
||||||
|
# CONFIG_SPIRAM_USE_CAPS_ALLOC is not set
|
||||||
|
# CONFIG_SPIRAM_USE_MALLOC is not set
|
||||||
|
CONFIG_SPIRAM_MEMTEST=y
|
||||||
|
# CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY is not set
|
||||||
|
# end of SPI RAM config
|
||||||
|
|
||||||
|
#
|
||||||
|
# LWIP
|
||||||
|
#
|
||||||
|
CONFIG_LWIP_LOCAL_HOSTNAME="UMTinyS2"
|
||||||
|
# end of LWIP
|
@ -150,6 +150,14 @@ void common_hal_alarm_set_deep_sleep_alarms(size_t n_alarms, const mp_obj_t *ala
|
|||||||
void NORETURN alarm_enter_deep_sleep(void) {
|
void NORETURN alarm_enter_deep_sleep(void) {
|
||||||
alarm_pin_pinalarm_prepare_for_deep_sleep();
|
alarm_pin_pinalarm_prepare_for_deep_sleep();
|
||||||
alarm_touch_touchalarm_prepare_for_deep_sleep();
|
alarm_touch_touchalarm_prepare_for_deep_sleep();
|
||||||
|
|
||||||
|
// Disable brownout detection, which appears to be triggered sometimes when
|
||||||
|
// waking from deep sleep.
|
||||||
|
// See https://www.esp32.com/viewtopic.php?f=13&t=19208#p71084
|
||||||
|
// and https://github.com/adafruit/circuitpython/issues/4025#issuecomment-771027606
|
||||||
|
// TODO: We can remove this workaround when ESP-IDF handles this.
|
||||||
|
CLEAR_PERI_REG_MASK(RTC_CNTL_BROWN_OUT_REG, RTC_CNTL_BROWN_OUT_RST_ENA);
|
||||||
|
|
||||||
// The ESP-IDF caches the deep sleep settings and applies them before sleep.
|
// The ESP-IDF caches the deep sleep settings and applies them before sleep.
|
||||||
// We don't need to worry about resetting them in the interim.
|
// We don't need to worry about resetting them in the interim.
|
||||||
esp_deep_sleep_start();
|
esp_deep_sleep_start();
|
||||||
|
@ -63,6 +63,9 @@ void common_hal_audiobusio_i2sout_construct(audiobusio_i2sout_obj_t* self,
|
|||||||
self->bit_clock = bit_clock;
|
self->bit_clock = bit_clock;
|
||||||
self->word_select = word_select;
|
self->word_select = word_select;
|
||||||
self->data = data;
|
self->data = data;
|
||||||
|
claim_pin(bit_clock);
|
||||||
|
claim_pin(word_select);
|
||||||
|
claim_pin(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool common_hal_audiobusio_i2sout_deinited(audiobusio_i2sout_obj_t* self) {
|
bool common_hal_audiobusio_i2sout_deinited(audiobusio_i2sout_obj_t* self) {
|
||||||
|
@ -85,7 +85,7 @@ void common_hal_busio_i2c_construct(busio_i2c_obj_t *self,
|
|||||||
if (gpio_get_level(sda->number) == 0 || gpio_get_level(scl->number) == 0) {
|
if (gpio_get_level(sda->number) == 0 || gpio_get_level(scl->number) == 0) {
|
||||||
reset_pin_number(sda->number);
|
reset_pin_number(sda->number);
|
||||||
reset_pin_number(scl->number);
|
reset_pin_number(scl->number);
|
||||||
mp_raise_RuntimeError(translate("SDA or SCL needs a pull up"));
|
mp_raise_RuntimeError(translate("No pull up found on SDA or SCL; check your wiring"));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -134,7 +134,7 @@ bool pin_number_is_free(gpio_num_t pin_number) {
|
|||||||
|
|
||||||
uint8_t offset = pin_number / 32;
|
uint8_t offset = pin_number / 32;
|
||||||
uint32_t mask = 1 << (pin_number % 32);
|
uint32_t mask = 1 << (pin_number % 32);
|
||||||
return (never_reset_pins[offset] & mask) == 0 && (in_use[offset] & mask) == 0;
|
return (in_use[offset] & mask) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool common_hal_mcu_pin_is_free(const mcu_pin_obj_t *pin) {
|
bool common_hal_mcu_pin_is_free(const mcu_pin_obj_t *pin) {
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
*
|
*
|
||||||
* The MIT License (MIT)
|
* The MIT License (MIT)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
|
||||||
* Copyright (c) 2020 Lucian Copeland for Adafruit Industries
|
* Copyright (c) 2020 Lucian Copeland for Adafruit Industries
|
||||||
*
|
*
|
||||||
* 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
|
||||||
@ -38,16 +37,15 @@
|
|||||||
#include "components/lwip/lwip/src/include/lwip/sys.h"
|
#include "components/lwip/lwip/src/include/lwip/sys.h"
|
||||||
#include "components/lwip/lwip/src/include/lwip/netdb.h"
|
#include "components/lwip/lwip/src/include/lwip/netdb.h"
|
||||||
|
|
||||||
STATIC socketpool_socket_obj_t * open_socket_handles[CONFIG_LWIP_MAX_SOCKETS]; // 4 on the wrover/wroom
|
STATIC socketpool_socket_obj_t * open_socket_handles[CONFIG_LWIP_MAX_SOCKETS];
|
||||||
|
|
||||||
void socket_reset(void) {
|
void socket_reset(void) {
|
||||||
for (size_t i = 0; i < MP_ARRAY_SIZE(open_socket_handles); i++) {
|
for (size_t i = 0; i < MP_ARRAY_SIZE(open_socket_handles); i++) {
|
||||||
if (open_socket_handles[i]) {
|
if (open_socket_handles[i]) {
|
||||||
if (open_socket_handles[i]->num > 0) {
|
if (open_socket_handles[i]->num > 0) {
|
||||||
|
// Close automatically clears socket handle
|
||||||
common_hal_socketpool_socket_close(open_socket_handles[i]);
|
common_hal_socketpool_socket_close(open_socket_handles[i]);
|
||||||
open_socket_handles[i] = NULL;
|
|
||||||
} else {
|
} else {
|
||||||
// accidentally got a TCP socket in here, or something.
|
|
||||||
open_socket_handles[i] = NULL;
|
open_socket_handles[i] = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -64,83 +62,24 @@ bool register_open_socket(socketpool_socket_obj_t* self) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
STATIC void _lazy_init_LWIP(socketpool_socket_obj_t* self) {
|
|
||||||
if (self->num != -1) {
|
|
||||||
return; //safe to call on existing socket
|
|
||||||
}
|
|
||||||
if (self->tls != NULL) {
|
|
||||||
mp_raise_RuntimeError(translate("Invalid use of TLS Socket"));
|
|
||||||
}
|
|
||||||
int socknum = -1;
|
|
||||||
socknum = lwip_socket(self->family, self->type, self->ipproto);
|
|
||||||
if (socknum < 0 || !register_open_socket(self)) {
|
|
||||||
mp_raise_RuntimeError(translate("Out of sockets"));
|
|
||||||
}
|
|
||||||
self->num = socknum;
|
|
||||||
lwip_fcntl(socknum, F_SETFL, O_NONBLOCK);
|
|
||||||
}
|
|
||||||
|
|
||||||
STATIC void _lazy_init_TLS(socketpool_socket_obj_t* self) {
|
|
||||||
if (self->type != SOCK_STREAM || self->num != -1) {
|
|
||||||
mp_raise_RuntimeError(translate("Invalid socket for TLS"));
|
|
||||||
}
|
|
||||||
esp_tls_t* tls_handle = esp_tls_init();
|
|
||||||
if (tls_handle == NULL) {
|
|
||||||
mp_raise_espidf_MemoryError();
|
|
||||||
}
|
|
||||||
self->tls = tls_handle;
|
|
||||||
}
|
|
||||||
|
|
||||||
void common_hal_socketpool_socket_settimeout(socketpool_socket_obj_t* self, mp_uint_t timeout_ms) {
|
|
||||||
self->timeout_ms = timeout_ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool common_hal_socketpool_socket_bind(socketpool_socket_obj_t* self,
|
|
||||||
const char* host, size_t hostlen, uint8_t port) {
|
|
||||||
_lazy_init_LWIP(self);
|
|
||||||
|
|
||||||
struct sockaddr_in bind_addr;
|
|
||||||
bind_addr.sin_addr.s_addr = inet_addr(host);
|
|
||||||
bind_addr.sin_family = AF_INET;
|
|
||||||
bind_addr.sin_port = htons(port);
|
|
||||||
|
|
||||||
int opt = 1;
|
|
||||||
int err = lwip_setsockopt(self->num, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
|
|
||||||
if (err != 0) {
|
|
||||||
mp_raise_RuntimeError(translate("Issue setting SO_REUSEADDR"));
|
|
||||||
}
|
|
||||||
int result = lwip_bind(self->num, (struct sockaddr *)&bind_addr, sizeof(bind_addr)) == 0;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool common_hal_socketpool_socket_listen(socketpool_socket_obj_t* self, int backlog) {
|
|
||||||
return lwip_listen(self->num, backlog) == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
socketpool_socket_obj_t* common_hal_socketpool_socket_accept(socketpool_socket_obj_t* self,
|
socketpool_socket_obj_t* common_hal_socketpool_socket_accept(socketpool_socket_obj_t* self,
|
||||||
uint8_t* ip, uint *port) {
|
uint8_t* ip, uint32_t *port) {
|
||||||
struct sockaddr_in accept_addr;
|
struct sockaddr_in accept_addr;
|
||||||
socklen_t socklen = sizeof(accept_addr);
|
socklen_t socklen = sizeof(accept_addr);
|
||||||
int newsoc = -1;
|
int newsoc = -1;
|
||||||
bool timed_out = false;
|
bool timed_out = false;
|
||||||
uint64_t start_ticks = supervisor_ticks_ms64();
|
uint64_t start_ticks = supervisor_ticks_ms64();
|
||||||
|
|
||||||
if (self->timeout_ms != (uint)-1) {
|
|
||||||
mp_printf(&mp_plat_print, "will timeout");
|
|
||||||
} else {
|
|
||||||
mp_printf(&mp_plat_print, "won't timeout");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allow timeouts and interrupts
|
// Allow timeouts and interrupts
|
||||||
while (newsoc == -1 &&
|
while (newsoc == -1 &&
|
||||||
!timed_out &&
|
!timed_out &&
|
||||||
!mp_hal_is_interrupted()) {
|
!mp_hal_is_interrupted()) {
|
||||||
if (self->timeout_ms != (uint)-1) {
|
if (self->timeout_ms != (uint)-1 && self->timeout_ms != 0) {
|
||||||
timed_out = supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
timed_out = supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
||||||
}
|
}
|
||||||
RUN_BACKGROUND_TASKS;
|
RUN_BACKGROUND_TASKS;
|
||||||
newsoc = lwip_accept(self->num, (struct sockaddr *)&accept_addr, &socklen);
|
newsoc = lwip_accept(self->num, (struct sockaddr *)&accept_addr, &socklen);
|
||||||
// In non-blocking mode, fail instead of looping
|
// In non-blocking mode, fail instead of timing out
|
||||||
if (newsoc == -1 && self->timeout_ms == 0) {
|
if (newsoc == -1 && self->timeout_ms == 0) {
|
||||||
mp_raise_OSError(MP_EAGAIN);
|
mp_raise_OSError(MP_EAGAIN);
|
||||||
}
|
}
|
||||||
@ -159,9 +98,8 @@ socketpool_socket_obj_t* common_hal_socketpool_socket_accept(socketpool_socket_o
|
|||||||
socketpool_socket_obj_t *sock = m_new_obj_with_finaliser(socketpool_socket_obj_t);
|
socketpool_socket_obj_t *sock = m_new_obj_with_finaliser(socketpool_socket_obj_t);
|
||||||
sock->base.type = &socketpool_socket_type;
|
sock->base.type = &socketpool_socket_type;
|
||||||
sock->num = newsoc;
|
sock->num = newsoc;
|
||||||
sock->tls = NULL;
|
|
||||||
sock->ssl_context = NULL;
|
|
||||||
sock->pool = self->pool;
|
sock->pool = self->pool;
|
||||||
|
sock->connected = true;
|
||||||
|
|
||||||
if (!register_open_socket(sock)) {
|
if (!register_open_socket(sock)) {
|
||||||
mp_raise_OSError(MP_EBADF);
|
mp_raise_OSError(MP_EBADF);
|
||||||
@ -175,182 +113,97 @@ socketpool_socket_obj_t* common_hal_socketpool_socket_accept(socketpool_socket_o
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool common_hal_socketpool_socket_bind(socketpool_socket_obj_t* self,
|
||||||
|
const char* host, size_t hostlen, uint32_t port) {
|
||||||
|
struct sockaddr_in bind_addr;
|
||||||
|
bind_addr.sin_addr.s_addr = inet_addr(host);
|
||||||
|
bind_addr.sin_family = AF_INET;
|
||||||
|
bind_addr.sin_port = htons(port);
|
||||||
|
|
||||||
|
int opt = 1;
|
||||||
|
int err = lwip_setsockopt(self->num, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
|
||||||
|
if (err != 0) {
|
||||||
|
mp_raise_RuntimeError(translate("Cannot set socket options"));
|
||||||
|
}
|
||||||
|
int result = lwip_bind(self->num, (struct sockaddr *)&bind_addr, sizeof(bind_addr)) == 0;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void common_hal_socketpool_socket_close(socketpool_socket_obj_t* self) {
|
||||||
|
self->connected = false;
|
||||||
|
if (self->num >= 0) {
|
||||||
|
lwip_shutdown(self->num, 0);
|
||||||
|
lwip_close(self->num);
|
||||||
|
self->num = -1;
|
||||||
|
}
|
||||||
|
// Remove socket record
|
||||||
|
for (size_t i = 0; i < MP_ARRAY_SIZE(open_socket_handles); i++) {
|
||||||
|
if (open_socket_handles[i] == self) {
|
||||||
|
open_socket_handles[i] = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool common_hal_socketpool_socket_connect(socketpool_socket_obj_t* self,
|
bool common_hal_socketpool_socket_connect(socketpool_socket_obj_t* self,
|
||||||
const char* host, mp_uint_t hostlen, mp_int_t port) {
|
const char* host, size_t hostlen, uint32_t port) {
|
||||||
// For simplicity we use esp_tls for all TCP connections. If it's not SSL, ssl_context will be
|
|
||||||
// NULL and should still work. This makes regular TCP connections more memory expensive but TLS
|
|
||||||
// should become more and more common. Therefore, we optimize for the TLS case.
|
|
||||||
|
|
||||||
// Todo: move to SSL Wrapper and add lwip_connect()
|
|
||||||
_lazy_init_TLS(self);
|
|
||||||
|
|
||||||
esp_tls_cfg_t* tls_config = NULL;
|
|
||||||
if (self->ssl_context != NULL) {
|
|
||||||
tls_config = &self->ssl_context->ssl_config;
|
|
||||||
}
|
|
||||||
int result = esp_tls_conn_new_sync(host, hostlen, port, tls_config, self->tls);
|
|
||||||
self->connected = result >= 0;
|
|
||||||
if (result < 0) {
|
|
||||||
int esp_tls_code;
|
|
||||||
int flags;
|
|
||||||
esp_err_t err = esp_tls_get_and_clear_last_error(self->tls->error_handle, &esp_tls_code, &flags);
|
|
||||||
|
|
||||||
if (err == ESP_ERR_MBEDTLS_SSL_SETUP_FAILED) {
|
|
||||||
mp_raise_espidf_MemoryError();
|
|
||||||
} else if (ESP_ERR_MBEDTLS_SSL_HANDSHAKE_FAILED) {
|
|
||||||
mp_raise_OSError_msg_varg(translate("Failed SSL handshake"));
|
|
||||||
} else {
|
|
||||||
mp_raise_OSError_msg_varg(translate("Unhandled ESP TLS error %d %d %x %d"), esp_tls_code, flags, err, result);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Connection successful, set the timeout on the underlying socket. We can't rely on the IDF
|
|
||||||
// to do it because the config structure is only used for TLS connections. Generally, we
|
|
||||||
// shouldn't hit this timeout because we try to only read available data. However, there is
|
|
||||||
// always a chance that we try to read something that is used internally.
|
|
||||||
int fd;
|
|
||||||
esp_tls_get_conn_sockfd(self->tls, &fd);
|
|
||||||
struct timeval tv;
|
|
||||||
tv.tv_sec = 2 * 60; // Two minutes
|
|
||||||
tv.tv_usec = 0;
|
|
||||||
setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
|
|
||||||
setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
|
|
||||||
}
|
|
||||||
|
|
||||||
return self->connected;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool common_hal_socketpool_socket_get_connected(socketpool_socket_obj_t* self) {
|
|
||||||
return self->connected;
|
|
||||||
}
|
|
||||||
|
|
||||||
mp_uint_t common_hal_socketpool_socket_send(socketpool_socket_obj_t* self, const uint8_t* buf, mp_uint_t len) {
|
|
||||||
int sent = -1;
|
|
||||||
if (self->num != -1) {
|
|
||||||
// LWIP Socket
|
|
||||||
// TODO: deal with potential failure/add timeout?
|
|
||||||
sent = lwip_send(self->num, buf, len, 0);
|
|
||||||
} else if (self->tls != NULL) {
|
|
||||||
// TLS Socket
|
|
||||||
sent = esp_tls_conn_write(self->tls, buf, len);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sent < 0) {
|
|
||||||
mp_raise_OSError(MP_ENOTCONN);
|
|
||||||
}
|
|
||||||
return sent;
|
|
||||||
}
|
|
||||||
|
|
||||||
mp_uint_t common_hal_socketpool_socket_recv_into(socketpool_socket_obj_t* self, const uint8_t* buf, mp_uint_t len) {
|
|
||||||
int received = 0;
|
|
||||||
bool timed_out = false;
|
|
||||||
|
|
||||||
if (self->num != -1) {
|
|
||||||
// LWIP Socket
|
|
||||||
uint64_t start_ticks = supervisor_ticks_ms64();
|
|
||||||
received = -1;
|
|
||||||
while (received == -1 &&
|
|
||||||
!timed_out &&
|
|
||||||
!mp_hal_is_interrupted()) {
|
|
||||||
if (self->timeout_ms != (uint)-1) {
|
|
||||||
timed_out = supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
|
||||||
}
|
|
||||||
RUN_BACKGROUND_TASKS;
|
|
||||||
received = lwip_recv(self->num, (void*) buf, len - 1, 0);
|
|
||||||
|
|
||||||
// In non-blocking mode, fail instead of looping
|
|
||||||
if (received == -1 && self->timeout_ms == 0) {
|
|
||||||
mp_raise_OSError(MP_EAGAIN);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (self->tls != NULL) {
|
|
||||||
// TLS Socket
|
|
||||||
int status = 0;
|
|
||||||
uint64_t start_ticks = supervisor_ticks_ms64();
|
|
||||||
int sockfd;
|
|
||||||
esp_err_t err = esp_tls_get_conn_sockfd(self->tls, &sockfd);
|
|
||||||
if (err != ESP_OK) {
|
|
||||||
mp_raise_OSError(MP_EBADF);
|
|
||||||
}
|
|
||||||
while (received == 0 &&
|
|
||||||
status >= 0 &&
|
|
||||||
!timed_out &&
|
|
||||||
!mp_hal_is_interrupted()) {
|
|
||||||
if (self->timeout_ms != (uint)-1) {
|
|
||||||
timed_out = self->timeout_ms == 0 || supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
|
||||||
}
|
|
||||||
RUN_BACKGROUND_TASKS;
|
|
||||||
size_t available = esp_tls_get_bytes_avail(self->tls);
|
|
||||||
if (available == 0) {
|
|
||||||
// This reads the raw socket buffer and is used for non-TLS connections
|
|
||||||
// and between encrypted TLS blocks.
|
|
||||||
status = lwip_ioctl(sockfd, FIONREAD, &available);
|
|
||||||
}
|
|
||||||
size_t remaining = len - received;
|
|
||||||
if (available > remaining) {
|
|
||||||
available = remaining;
|
|
||||||
}
|
|
||||||
if (available > 0) {
|
|
||||||
status = esp_tls_conn_read(self->tls, (void*) buf + received, available);
|
|
||||||
if (status == 0) {
|
|
||||||
// Reading zero when something is available indicates a closed
|
|
||||||
// connection. (The available bytes could have been TLS internal.)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (status > 0) {
|
|
||||||
received += status;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Socket does not have a valid descriptor of either type
|
|
||||||
mp_raise_OSError(MP_EBADF);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (timed_out) {
|
|
||||||
mp_raise_OSError(ETIMEDOUT);
|
|
||||||
}
|
|
||||||
return received;
|
|
||||||
}
|
|
||||||
|
|
||||||
mp_uint_t common_hal_socketpool_socket_sendto(socketpool_socket_obj_t* self,
|
|
||||||
const char* host, size_t hostlen, uint8_t port, const uint8_t* buf, mp_uint_t len) {
|
|
||||||
|
|
||||||
_lazy_init_LWIP(self);
|
|
||||||
|
|
||||||
// Get the IP address string
|
|
||||||
const struct addrinfo hints = {
|
const struct addrinfo hints = {
|
||||||
.ai_family = AF_INET,
|
.ai_family = AF_INET,
|
||||||
.ai_socktype = SOCK_STREAM,
|
.ai_socktype = SOCK_STREAM,
|
||||||
};
|
};
|
||||||
struct addrinfo *result;
|
struct addrinfo *result_i;
|
||||||
int error = lwip_getaddrinfo(host, NULL, &hints, &result);
|
int error = lwip_getaddrinfo(host, NULL, &hints, &result_i);
|
||||||
if (error != 0 || result == NULL) {
|
if (error != 0 || result_i == NULL) {
|
||||||
return 0;
|
mp_raise_OSError(EHOSTUNREACH);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set parameters
|
// Set parameters
|
||||||
struct sockaddr_in dest_addr;
|
struct sockaddr_in dest_addr;
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
#pragma GCC diagnostic ignored "-Wcast-align"
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
||||||
dest_addr.sin_addr.s_addr = ((struct sockaddr_in *)result->ai_addr)->sin_addr.s_addr;
|
dest_addr.sin_addr.s_addr = ((struct sockaddr_in *)result_i->ai_addr)->sin_addr.s_addr;
|
||||||
#pragma GCC diagnostic pop
|
#pragma GCC diagnostic pop
|
||||||
freeaddrinfo(result);
|
freeaddrinfo(result_i);
|
||||||
|
|
||||||
dest_addr.sin_family = AF_INET;
|
dest_addr.sin_family = AF_INET;
|
||||||
dest_addr.sin_port = htons(port);
|
dest_addr.sin_port = htons(port);
|
||||||
|
|
||||||
int bytes_sent = lwip_sendto(self->num, buf, len, 0, (struct sockaddr *)&dest_addr, sizeof(dest_addr));
|
// Replace above with function call -----
|
||||||
if (bytes_sent < 0) {
|
|
||||||
mp_raise_BrokenPipeError();
|
// Switch to blocking mode for this one call
|
||||||
return 0;
|
int opts;
|
||||||
|
opts = lwip_fcntl(self->num,F_GETFL,0);
|
||||||
|
opts = opts & (~O_NONBLOCK);
|
||||||
|
lwip_fcntl(self->num, F_SETFL, opts);
|
||||||
|
|
||||||
|
int result = -1;
|
||||||
|
result = lwip_connect(self->num, (struct sockaddr *)&dest_addr, sizeof(struct sockaddr_in));
|
||||||
|
|
||||||
|
// Switch back once complete
|
||||||
|
opts = opts | O_NONBLOCK;
|
||||||
|
lwip_fcntl(self->num, F_SETFL, opts);
|
||||||
|
|
||||||
|
if (result >= 0) {
|
||||||
|
self->connected = true;
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
mp_raise_OSError(errno);
|
||||||
}
|
}
|
||||||
return bytes_sent;
|
}
|
||||||
|
|
||||||
|
bool common_hal_socketpool_socket_get_closed(socketpool_socket_obj_t* self) {
|
||||||
|
return self->num < 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool common_hal_socketpool_socket_get_connected(socketpool_socket_obj_t* self) {
|
||||||
|
return self->connected;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool common_hal_socketpool_socket_listen(socketpool_socket_obj_t* self, int backlog) {
|
||||||
|
return lwip_listen(self->num, backlog) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
mp_uint_t common_hal_socketpool_socket_recvfrom_into(socketpool_socket_obj_t* self,
|
mp_uint_t common_hal_socketpool_socket_recvfrom_into(socketpool_socket_obj_t* self,
|
||||||
uint8_t* buf, mp_uint_t len, uint8_t* ip, uint *port) {
|
uint8_t* buf, uint32_t len, uint8_t* ip, uint *port) {
|
||||||
|
|
||||||
_lazy_init_LWIP(self);
|
|
||||||
|
|
||||||
struct sockaddr_in source_addr;
|
struct sockaddr_in source_addr;
|
||||||
socklen_t socklen = sizeof(source_addr);
|
socklen_t socklen = sizeof(source_addr);
|
||||||
@ -362,7 +215,7 @@ mp_uint_t common_hal_socketpool_socket_recvfrom_into(socketpool_socket_obj_t* se
|
|||||||
while (received == -1 &&
|
while (received == -1 &&
|
||||||
!timed_out &&
|
!timed_out &&
|
||||||
!mp_hal_is_interrupted()) {
|
!mp_hal_is_interrupted()) {
|
||||||
if (self->timeout_ms != (uint)-1) {
|
if (self->timeout_ms != (uint)-1 && self->timeout_ms != 0) {
|
||||||
timed_out = supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
timed_out = supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
||||||
}
|
}
|
||||||
RUN_BACKGROUND_TASKS;
|
RUN_BACKGROUND_TASKS;
|
||||||
@ -389,24 +242,87 @@ mp_uint_t common_hal_socketpool_socket_recvfrom_into(socketpool_socket_obj_t* se
|
|||||||
return received;
|
return received;
|
||||||
}
|
}
|
||||||
|
|
||||||
void common_hal_socketpool_socket_close(socketpool_socket_obj_t* self) {
|
mp_uint_t common_hal_socketpool_socket_recv_into(socketpool_socket_obj_t* self, const uint8_t* buf, uint32_t len) {
|
||||||
self->connected = false;
|
int received = 0;
|
||||||
if (self->tls != NULL) {
|
bool timed_out = false;
|
||||||
esp_tls_conn_destroy(self->tls);
|
|
||||||
self->tls = NULL;
|
if (self->num != -1) {
|
||||||
|
// LWIP Socket
|
||||||
|
uint64_t start_ticks = supervisor_ticks_ms64();
|
||||||
|
received = -1;
|
||||||
|
while (received == -1 &&
|
||||||
|
!timed_out &&
|
||||||
|
!mp_hal_is_interrupted()) {
|
||||||
|
if (self->timeout_ms != (uint)-1 && self->timeout_ms != 0) {
|
||||||
|
timed_out = supervisor_ticks_ms64() - start_ticks >= self->timeout_ms;
|
||||||
|
}
|
||||||
|
RUN_BACKGROUND_TASKS;
|
||||||
|
received = lwip_recv(self->num, (void*) buf, len, 0);
|
||||||
|
|
||||||
|
// In non-blocking mode, fail instead of looping
|
||||||
|
if (received == -1 && self->timeout_ms == 0) {
|
||||||
|
mp_raise_OSError(MP_EAGAIN);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
mp_raise_OSError(MP_EBADF);
|
||||||
}
|
}
|
||||||
if (self->num >= 0) {
|
|
||||||
lwip_shutdown(self->num, 0);
|
if (timed_out) {
|
||||||
lwip_close(self->num);
|
mp_raise_OSError(ETIMEDOUT);
|
||||||
self->num = -1;
|
|
||||||
}
|
}
|
||||||
|
return received;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool common_hal_socketpool_socket_get_closed(socketpool_socket_obj_t* self) {
|
mp_uint_t common_hal_socketpool_socket_send(socketpool_socket_obj_t* self, const uint8_t* buf, uint32_t len) {
|
||||||
return self->tls == NULL && self->num < 0;
|
int sent = -1;
|
||||||
|
if (self->num != -1) {
|
||||||
|
// LWIP Socket
|
||||||
|
// TODO: deal with potential failure/add timeout?
|
||||||
|
sent = lwip_send(self->num, buf, len, 0);
|
||||||
|
} else {
|
||||||
|
mp_raise_OSError(MP_EBADF);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sent < 0) {
|
||||||
|
mp_raise_OSError(errno);
|
||||||
|
}
|
||||||
|
return sent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mp_uint_t common_hal_socketpool_socket_sendto(socketpool_socket_obj_t* self,
|
||||||
|
const char* host, size_t hostlen, uint32_t port, const uint8_t* buf, uint32_t len) {
|
||||||
|
|
||||||
mp_uint_t common_hal_socketpool_socket_get_hash(socketpool_socket_obj_t* self) {
|
// Set parameters
|
||||||
return self->num;
|
const struct addrinfo hints = {
|
||||||
|
.ai_family = AF_INET,
|
||||||
|
.ai_socktype = SOCK_STREAM,
|
||||||
|
};
|
||||||
|
struct addrinfo *result_i;
|
||||||
|
int error = lwip_getaddrinfo(host, NULL, &hints, &result_i);
|
||||||
|
if (error != 0 || result_i == NULL) {
|
||||||
|
mp_raise_OSError(EHOSTUNREACH);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set parameters
|
||||||
|
struct sockaddr_in dest_addr;
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
||||||
|
dest_addr.sin_addr.s_addr = ((struct sockaddr_in *)result_i->ai_addr)->sin_addr.s_addr;
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
freeaddrinfo(result_i);
|
||||||
|
|
||||||
|
dest_addr.sin_family = AF_INET;
|
||||||
|
dest_addr.sin_port = htons(port);
|
||||||
|
|
||||||
|
int bytes_sent = lwip_sendto(self->num, buf, len, 0, (struct sockaddr *)&dest_addr, sizeof(dest_addr));
|
||||||
|
if (bytes_sent < 0) {
|
||||||
|
mp_raise_BrokenPipeError();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return bytes_sent;
|
||||||
|
}
|
||||||
|
|
||||||
|
void common_hal_socketpool_socket_settimeout(socketpool_socket_obj_t* self, uint32_t timeout_ms) {
|
||||||
|
self->timeout_ms = timeout_ms;
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user