From fadb5a102426182f1412adbbe9d57268882f8b5f Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sat, 23 Mar 2019 18:34:42 -0700 Subject: Added option to toggle cs in displayio init sequence --- shared-bindings/displayio/Display.c | 8 +++++--- shared-bindings/displayio/Display.h | 2 +- shared-bindings/displayio/FourWire.h | 2 ++ shared-module/displayio/Display.c | 8 +++++++- shared-module/displayio/Display.h | 3 +++ shared-module/displayio/FourWire.c | 5 +++++ 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c index 1f46330e8..3f5eef34a 100644 --- a/shared-bindings/displayio/Display.c +++ b/shared-bindings/displayio/Display.c @@ -50,7 +50,7 @@ //| Most people should not use this class directly. Use a specific display driver instead that will //| contain the initialization sequence at minimum. //| -//| .. class:: Display(display_bus, init_sequence, *, width, height, colstart=0, rowstart=0, rotation=0, color_depth=16, set_column_command=0x2a, set_row_command=0x2b, write_ram_command=0x2c, set_vertical_scroll=0, backlight_pin=None) +//| .. class:: Display(display_bus, init_sequence, *, width, height, colstart=0, rowstart=0, rotation=0, color_depth=16, set_column_command=0x2a, set_row_command=0x2b, write_ram_command=0x2c, set_vertical_scroll=0, backlight_pin=None, init_cs_toggle=False) //| //| Create a Display object on the given display bus (`displayio.FourWire` or `displayio.ParallelBus`). //| @@ -93,7 +93,7 @@ //| :param microcontroller.Pin backlight_pin: Pin connected to the display's backlight //| STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { - enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin }; + enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_init_cs_toggle }; static const mp_arg_t allowed_args[] = { { MP_QSTR_display_bus, MP_ARG_REQUIRED | MP_ARG_OBJ }, { MP_QSTR_init_sequence, MP_ARG_REQUIRED | MP_ARG_OBJ }, @@ -108,6 +108,7 @@ STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_a { MP_QSTR_write_ram_command, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0x2c} }, { MP_QSTR_set_vertical_scroll, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0x0} }, { MP_QSTR_backlight_pin, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_obj = mp_const_none} }, + { MP_QSTR_init_cs_toggle, MP_ARG_BOOL | MP_ARG_KW_ONLY, {.u_bool = false} }, }; mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)]; mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args); @@ -146,7 +147,8 @@ STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_a args[ARG_color_depth].u_int, args[ARG_set_column_command].u_int, args[ARG_set_row_command].u_int, args[ARG_write_ram_command].u_int, args[ARG_set_vertical_scroll].u_int, - bufinfo.buf, bufinfo.len, MP_OBJ_TO_PTR(backlight_pin)); + bufinfo.buf, bufinfo.len, MP_OBJ_TO_PTR(backlight_pin), + args[ARG_init_cs_toggle].u_bool); return self; } diff --git a/shared-bindings/displayio/Display.h b/shared-bindings/displayio/Display.h index 7d6444a2d..407afe1c3 100644 --- a/shared-bindings/displayio/Display.h +++ b/shared-bindings/displayio/Display.h @@ -40,7 +40,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, mp_obj_t bus, uint16_t width, uint16_t height, int16_t colstart, int16_t rowstart, uint16_t rotation, uint16_t color_depth, uint8_t set_column_command, uint8_t set_row_command, uint8_t write_ram_command, uint8_t set_vertical_scroll, - uint8_t* init_sequence, uint16_t init_sequence_len, const mcu_pin_obj_t* backlight_pin); + uint8_t* init_sequence, uint16_t init_sequence_len, const mcu_pin_obj_t* backlight_pin, bool init_cs_toggle); int32_t common_hal_displayio_display_wait_for_frame(displayio_display_obj_t* self); diff --git a/shared-bindings/displayio/FourWire.h b/shared-bindings/displayio/FourWire.h index b8b00372c..a7fda2638 100644 --- a/shared-bindings/displayio/FourWire.h +++ b/shared-bindings/displayio/FourWire.h @@ -47,4 +47,6 @@ void common_hal_displayio_fourwire_send(mp_obj_t self, bool command, uint8_t *da void common_hal_displayio_fourwire_end_transaction(mp_obj_t self); +void common_hal_displayio_fourwire_set_cs(mp_obj_t self, bool high); + #endif // MICROPY_INCLUDED_SHARED_BINDINGS_DISPLAYBUSIO_FOURWIRE_H diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c index 0e76a868f..f82d94799 100644 --- a/shared-module/displayio/Display.c +++ b/shared-module/displayio/Display.c @@ -44,7 +44,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, mp_obj_t bus, uint16_t width, uint16_t height, int16_t colstart, int16_t rowstart, uint16_t rotation, uint16_t color_depth, uint8_t set_column_command, uint8_t set_row_command, uint8_t write_ram_command, uint8_t set_vertical_scroll, uint8_t* init_sequence, uint16_t init_sequence_len, - const mcu_pin_obj_t* backlight_pin) { + const mcu_pin_obj_t* backlight_pin, bool init_cs_toggle) { self->color_depth = color_depth; self->set_column_command = set_column_command; self->set_row_command = set_row_command; @@ -54,6 +54,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, self->colstart = colstart; self->rowstart = rowstart; self->auto_brightness = false; + self->init_cs_toggle = init_cs_toggle; if (MP_OBJ_IS_TYPE(bus, &displayio_parallelbus_type)) { self->begin_transaction = common_hal_displayio_parallelbus_begin_transaction; @@ -63,6 +64,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, self->begin_transaction = common_hal_displayio_fourwire_begin_transaction; self->send = common_hal_displayio_fourwire_send; self->end_transaction = common_hal_displayio_fourwire_end_transaction; + self->set_cs = common_hal_displayio_fourwire_set_cs; } else { mp_raise_ValueError(translate("Unsupported display bus type")); } @@ -82,6 +84,10 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, uint8_t *data = cmd + 2; self->send(self->bus, true, cmd, 1); self->send(self->bus, false, data, data_size); + if (self->init_cs_toggle && self->set_cs != NULL) { + self->set_cs(self->bus, true); + self->set_cs(self->bus, false); + } uint16_t delay_length_ms = 10; if (delay) { data_size++; diff --git a/shared-module/displayio/Display.h b/shared-module/displayio/Display.h index 04da68b63..250f44031 100644 --- a/shared-module/displayio/Display.h +++ b/shared-module/displayio/Display.h @@ -34,6 +34,7 @@ typedef bool (*display_bus_begin_transaction)(mp_obj_t bus); typedef void (*display_bus_send)(mp_obj_t bus, bool command, uint8_t *data, uint32_t data_length); typedef void (*display_bus_end_transaction)(mp_obj_t bus); +typedef void (*display_bus_set_cs)(mp_obj_t bus, bool high); typedef struct { mp_obj_base_t base; @@ -49,9 +50,11 @@ typedef struct { uint64_t last_refresh; int16_t colstart; int16_t rowstart; + bool init_cs_toggle; display_bus_begin_transaction begin_transaction; display_bus_send send; display_bus_end_transaction end_transaction; + display_bus_set_cs set_cs; union { digitalio_digitalinout_obj_t backlight_inout; pulseio_pwmout_obj_t backlight_pwm; diff --git a/shared-module/displayio/FourWire.c b/shared-module/displayio/FourWire.c index 9da5c0701..ae1fde7ca 100644 --- a/shared-module/displayio/FourWire.c +++ b/shared-module/displayio/FourWire.c @@ -87,3 +87,8 @@ void common_hal_displayio_fourwire_end_transaction(mp_obj_t obj) { common_hal_digitalio_digitalinout_set_value(&self->chip_select, true); common_hal_busio_spi_unlock(self->bus); } + +void common_hal_displayio_fourwire_set_cs(mp_obj_t obj, bool high) { + displayio_fourwire_obj_t* self = MP_OBJ_TO_PTR(obj); + common_hal_digitalio_digitalinout_set_value(&self->chip_select, high); +} -- cgit v1.2.3 From 2bb63cbeb351a93fba1f15d201d01fc608b42c53 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sat, 23 Mar 2019 18:53:04 -0700 Subject: Added new parameter description in displayio RTD comment --- shared-bindings/displayio/Display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c index 3f5eef34a..7f98ea8c0 100644 --- a/shared-bindings/displayio/Display.c +++ b/shared-bindings/displayio/Display.c @@ -91,6 +91,7 @@ //| :param int write_ram_command: Command used to write pixels values into the update region //| :param int set_vertical_scroll: Command used to set the first row to show //| :param microcontroller.Pin backlight_pin: Pin connected to the display's backlight +//| :param bool init_cs_toggle: Toggle the Chip Select between each initialization command. //| STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_init_cs_toggle }; -- cgit v1.2.3 From d2a0ec28a04b1e0ec9ea75424b1d8156ae99598a Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sat, 23 Mar 2019 19:32:15 -0700 Subject: Fixed display init on boards with displays --- ports/atmel-samd/boards/hallowing_m0_express/board.c | 3 ++- ports/atmel-samd/boards/pybadge/board.c | 3 ++- ports/atmel-samd/boards/pyportal/board.c | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ports/atmel-samd/boards/hallowing_m0_express/board.c b/ports/atmel-samd/boards/hallowing_m0_express/board.c index 23b119413..64d74aad0 100644 --- a/ports/atmel-samd/boards/hallowing_m0_express/board.c +++ b/ports/atmel-samd/boards/hallowing_m0_express/board.c @@ -93,7 +93,8 @@ void board_init(void) { 0x37, // set vertical scroll command display_init_sequence, sizeof(display_init_sequence), - &pin_PA00); + &pin_PA00, + false); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/ports/atmel-samd/boards/pybadge/board.c b/ports/atmel-samd/boards/pybadge/board.c index 0881d8f45..2c60015da 100644 --- a/ports/atmel-samd/boards/pybadge/board.c +++ b/ports/atmel-samd/boards/pybadge/board.c @@ -99,7 +99,8 @@ void board_init(void) { 0x37, // set vertical scroll command display_init_sequence, sizeof(display_init_sequence), - &pin_PA00); + &pin_PA00, + false); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/ports/atmel-samd/boards/pyportal/board.c b/ports/atmel-samd/boards/pyportal/board.c index d2c328850..1395daaae 100644 --- a/ports/atmel-samd/boards/pyportal/board.c +++ b/ports/atmel-samd/boards/pyportal/board.c @@ -90,7 +90,8 @@ void board_init(void) { 0x37, // Set vertical scroll command display_init_sequence, sizeof(display_init_sequence), - &pin_PB31); + &pin_PB31, + false); common_hal_displayio_display_set_auto_brightness(display, true); } -- cgit v1.2.3 From 0c33f7fdb4bd92ba2475671fee0ad2ae841eb5ba Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sat, 23 Mar 2019 20:23:23 -0700 Subject: Enable CS toggle for displayio by default --- ports/atmel-samd/boards/hallowing_m0_express/board.c | 2 +- ports/atmel-samd/boards/pybadge/board.c | 2 +- ports/atmel-samd/boards/pyportal/board.c | 2 +- shared-bindings/displayio/Display.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ports/atmel-samd/boards/hallowing_m0_express/board.c b/ports/atmel-samd/boards/hallowing_m0_express/board.c index 64d74aad0..4f073e270 100644 --- a/ports/atmel-samd/boards/hallowing_m0_express/board.c +++ b/ports/atmel-samd/boards/hallowing_m0_express/board.c @@ -94,7 +94,7 @@ void board_init(void) { display_init_sequence, sizeof(display_init_sequence), &pin_PA00, - false); + true); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/ports/atmel-samd/boards/pybadge/board.c b/ports/atmel-samd/boards/pybadge/board.c index 2c60015da..ce8c42a43 100644 --- a/ports/atmel-samd/boards/pybadge/board.c +++ b/ports/atmel-samd/boards/pybadge/board.c @@ -100,7 +100,7 @@ void board_init(void) { display_init_sequence, sizeof(display_init_sequence), &pin_PA00, - false); + true); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/ports/atmel-samd/boards/pyportal/board.c b/ports/atmel-samd/boards/pyportal/board.c index 1395daaae..3a306b0b4 100644 --- a/ports/atmel-samd/boards/pyportal/board.c +++ b/ports/atmel-samd/boards/pyportal/board.c @@ -91,7 +91,7 @@ void board_init(void) { display_init_sequence, sizeof(display_init_sequence), &pin_PB31, - false); + true); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c index 7f98ea8c0..8fed5129f 100644 --- a/shared-bindings/displayio/Display.c +++ b/shared-bindings/displayio/Display.c @@ -109,7 +109,7 @@ STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_a { MP_QSTR_write_ram_command, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0x2c} }, { MP_QSTR_set_vertical_scroll, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0x0} }, { MP_QSTR_backlight_pin, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_obj = mp_const_none} }, - { MP_QSTR_init_cs_toggle, MP_ARG_BOOL | MP_ARG_KW_ONLY, {.u_bool = false} }, + { MP_QSTR_init_cs_toggle, MP_ARG_BOOL | MP_ARG_KW_ONLY, {.u_bool = true} }, }; mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)]; mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args); -- cgit v1.2.3 From b25c4baeecc885ac31f2e92686179b4f2385cdc6 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sat, 23 Mar 2019 21:04:25 -0700 Subject: Moving Toggle to before command fixes driver issue --- shared-module/displayio/Display.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c index f82d94799..8ebe4b543 100644 --- a/shared-module/displayio/Display.c +++ b/shared-module/displayio/Display.c @@ -60,6 +60,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, self->begin_transaction = common_hal_displayio_parallelbus_begin_transaction; self->send = common_hal_displayio_parallelbus_send; self->end_transaction = common_hal_displayio_parallelbus_end_transaction; + self->set_cs = NULL; } else if (MP_OBJ_IS_TYPE(bus, &displayio_fourwire_type)) { self->begin_transaction = common_hal_displayio_fourwire_begin_transaction; self->send = common_hal_displayio_fourwire_send; @@ -82,12 +83,12 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, bool delay = (data_size & DELAY) != 0; data_size &= ~DELAY; uint8_t *data = cmd + 2; - self->send(self->bus, true, cmd, 1); - self->send(self->bus, false, data, data_size); if (self->init_cs_toggle && self->set_cs != NULL) { self->set_cs(self->bus, true); self->set_cs(self->bus, false); } + self->send(self->bus, true, cmd, 1); + self->send(self->bus, false, data, data_size); uint16_t delay_length_ms = 10; if (delay) { data_size++; -- cgit v1.2.3 From d9de1b99263bcc906af35a78ac81a11fff9483ca Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Sun, 24 Mar 2019 08:23:46 -0700 Subject: Updated RTD comment to reflect new param defaulting True --- shared-bindings/displayio/Display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c index 8fed5129f..9cefb9532 100644 --- a/shared-bindings/displayio/Display.c +++ b/shared-bindings/displayio/Display.c @@ -50,7 +50,7 @@ //| Most people should not use this class directly. Use a specific display driver instead that will //| contain the initialization sequence at minimum. //| -//| .. class:: Display(display_bus, init_sequence, *, width, height, colstart=0, rowstart=0, rotation=0, color_depth=16, set_column_command=0x2a, set_row_command=0x2b, write_ram_command=0x2c, set_vertical_scroll=0, backlight_pin=None, init_cs_toggle=False) +//| .. class:: Display(display_bus, init_sequence, *, width, height, colstart=0, rowstart=0, rotation=0, color_depth=16, set_column_command=0x2a, set_row_command=0x2b, write_ram_command=0x2c, set_vertical_scroll=0, backlight_pin=None, init_cs_toggle=True) //| //| Create a Display object on the given display bus (`displayio.FourWire` or `displayio.ParallelBus`). //| @@ -91,7 +91,7 @@ //| :param int write_ram_command: Command used to write pixels values into the update region //| :param int set_vertical_scroll: Command used to set the first row to show //| :param microcontroller.Pin backlight_pin: Pin connected to the display's backlight -//| :param bool init_cs_toggle: Toggle the Chip Select between each initialization command. +//| :param bool init_cs_toggle: Toggle the Chip Select between each initialization command //| STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_init_cs_toggle }; -- cgit v1.2.3 From 09a1f06bbf6b333aaa3a76dbd93e0a5f5c9d7ef4 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Tue, 26 Mar 2019 07:39:40 -0700 Subject: Added small delay inside toggle for edge cases --- shared-module/displayio/Display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c index 8ebe4b543..bbc23b7b0 100644 --- a/shared-module/displayio/Display.c +++ b/shared-module/displayio/Display.c @@ -85,6 +85,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, uint8_t *data = cmd + 2; if (self->init_cs_toggle && self->set_cs != NULL) { self->set_cs(self->bus, true); + common_hal_time_delay_ms(1); self->set_cs(self->bus, false); } self->send(self->bus, true, cmd, 1); -- cgit v1.2.3 From b2ad16f5c84cd4dc853114e5fc526ab1827580a4 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Tue, 26 Mar 2019 18:34:07 -0700 Subject: Removed parameter so CS is always toggled --- ports/atmel-samd/boards/hallowing_m0_express/board.c | 3 +-- ports/atmel-samd/boards/pybadge/board.c | 3 +-- ports/atmel-samd/boards/pyportal/board.c | 3 +-- shared-bindings/displayio/Display.c | 6 ++---- shared-bindings/displayio/Display.h | 2 +- shared-module/displayio/Display.c | 5 ++--- shared-module/displayio/Display.h | 1 - 7 files changed, 8 insertions(+), 15 deletions(-) diff --git a/ports/atmel-samd/boards/hallowing_m0_express/board.c b/ports/atmel-samd/boards/hallowing_m0_express/board.c index 4f073e270..23b119413 100644 --- a/ports/atmel-samd/boards/hallowing_m0_express/board.c +++ b/ports/atmel-samd/boards/hallowing_m0_express/board.c @@ -93,8 +93,7 @@ void board_init(void) { 0x37, // set vertical scroll command display_init_sequence, sizeof(display_init_sequence), - &pin_PA00, - true); + &pin_PA00); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/ports/atmel-samd/boards/pybadge/board.c b/ports/atmel-samd/boards/pybadge/board.c index ce8c42a43..0881d8f45 100644 --- a/ports/atmel-samd/boards/pybadge/board.c +++ b/ports/atmel-samd/boards/pybadge/board.c @@ -99,8 +99,7 @@ void board_init(void) { 0x37, // set vertical scroll command display_init_sequence, sizeof(display_init_sequence), - &pin_PA00, - true); + &pin_PA00); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/ports/atmel-samd/boards/pyportal/board.c b/ports/atmel-samd/boards/pyportal/board.c index 3a306b0b4..d2c328850 100644 --- a/ports/atmel-samd/boards/pyportal/board.c +++ b/ports/atmel-samd/boards/pyportal/board.c @@ -90,8 +90,7 @@ void board_init(void) { 0x37, // Set vertical scroll command display_init_sequence, sizeof(display_init_sequence), - &pin_PB31, - true); + &pin_PB31); common_hal_displayio_display_set_auto_brightness(display, true); } diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c index 9cefb9532..ddca9ffd8 100644 --- a/shared-bindings/displayio/Display.c +++ b/shared-bindings/displayio/Display.c @@ -94,7 +94,7 @@ //| :param bool init_cs_toggle: Toggle the Chip Select between each initialization command //| STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { - enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_init_cs_toggle }; + enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin }; static const mp_arg_t allowed_args[] = { { MP_QSTR_display_bus, MP_ARG_REQUIRED | MP_ARG_OBJ }, { MP_QSTR_init_sequence, MP_ARG_REQUIRED | MP_ARG_OBJ }, @@ -109,7 +109,6 @@ STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_a { MP_QSTR_write_ram_command, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0x2c} }, { MP_QSTR_set_vertical_scroll, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0x0} }, { MP_QSTR_backlight_pin, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_obj = mp_const_none} }, - { MP_QSTR_init_cs_toggle, MP_ARG_BOOL | MP_ARG_KW_ONLY, {.u_bool = true} }, }; mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)]; mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args); @@ -148,8 +147,7 @@ STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_a args[ARG_color_depth].u_int, args[ARG_set_column_command].u_int, args[ARG_set_row_command].u_int, args[ARG_write_ram_command].u_int, args[ARG_set_vertical_scroll].u_int, - bufinfo.buf, bufinfo.len, MP_OBJ_TO_PTR(backlight_pin), - args[ARG_init_cs_toggle].u_bool); + bufinfo.buf, bufinfo.len, MP_OBJ_TO_PTR(backlight_pin)); return self; } diff --git a/shared-bindings/displayio/Display.h b/shared-bindings/displayio/Display.h index 407afe1c3..7d6444a2d 100644 --- a/shared-bindings/displayio/Display.h +++ b/shared-bindings/displayio/Display.h @@ -40,7 +40,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, mp_obj_t bus, uint16_t width, uint16_t height, int16_t colstart, int16_t rowstart, uint16_t rotation, uint16_t color_depth, uint8_t set_column_command, uint8_t set_row_command, uint8_t write_ram_command, uint8_t set_vertical_scroll, - uint8_t* init_sequence, uint16_t init_sequence_len, const mcu_pin_obj_t* backlight_pin, bool init_cs_toggle); + uint8_t* init_sequence, uint16_t init_sequence_len, const mcu_pin_obj_t* backlight_pin); int32_t common_hal_displayio_display_wait_for_frame(displayio_display_obj_t* self); diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c index bbc23b7b0..c693d3c90 100644 --- a/shared-module/displayio/Display.c +++ b/shared-module/displayio/Display.c @@ -44,7 +44,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, mp_obj_t bus, uint16_t width, uint16_t height, int16_t colstart, int16_t rowstart, uint16_t rotation, uint16_t color_depth, uint8_t set_column_command, uint8_t set_row_command, uint8_t write_ram_command, uint8_t set_vertical_scroll, uint8_t* init_sequence, uint16_t init_sequence_len, - const mcu_pin_obj_t* backlight_pin, bool init_cs_toggle) { + const mcu_pin_obj_t* backlight_pin) { self->color_depth = color_depth; self->set_column_command = set_column_command; self->set_row_command = set_row_command; @@ -54,7 +54,6 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, self->colstart = colstart; self->rowstart = rowstart; self->auto_brightness = false; - self->init_cs_toggle = init_cs_toggle; if (MP_OBJ_IS_TYPE(bus, &displayio_parallelbus_type)) { self->begin_transaction = common_hal_displayio_parallelbus_begin_transaction; @@ -83,7 +82,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, bool delay = (data_size & DELAY) != 0; data_size &= ~DELAY; uint8_t *data = cmd + 2; - if (self->init_cs_toggle && self->set_cs != NULL) { + if (self->set_cs != NULL) { self->set_cs(self->bus, true); common_hal_time_delay_ms(1); self->set_cs(self->bus, false); diff --git a/shared-module/displayio/Display.h b/shared-module/displayio/Display.h index 250f44031..70308daa2 100644 --- a/shared-module/displayio/Display.h +++ b/shared-module/displayio/Display.h @@ -50,7 +50,6 @@ typedef struct { uint64_t last_refresh; int16_t colstart; int16_t rowstart; - bool init_cs_toggle; display_bus_begin_transaction begin_transaction; display_bus_send send; display_bus_end_transaction end_transaction; -- cgit v1.2.3 From 2f7b338a4b87bc04166b021c48eca1fd5732e16a Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Tue, 26 Mar 2019 18:56:25 -0700 Subject: Comment Cleanup --- shared-bindings/displayio/Display.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c index ddca9ffd8..1f46330e8 100644 --- a/shared-bindings/displayio/Display.c +++ b/shared-bindings/displayio/Display.c @@ -50,7 +50,7 @@ //| Most people should not use this class directly. Use a specific display driver instead that will //| contain the initialization sequence at minimum. //| -//| .. class:: Display(display_bus, init_sequence, *, width, height, colstart=0, rowstart=0, rotation=0, color_depth=16, set_column_command=0x2a, set_row_command=0x2b, write_ram_command=0x2c, set_vertical_scroll=0, backlight_pin=None, init_cs_toggle=True) +//| .. class:: Display(display_bus, init_sequence, *, width, height, colstart=0, rowstart=0, rotation=0, color_depth=16, set_column_command=0x2a, set_row_command=0x2b, write_ram_command=0x2c, set_vertical_scroll=0, backlight_pin=None) //| //| Create a Display object on the given display bus (`displayio.FourWire` or `displayio.ParallelBus`). //| @@ -91,7 +91,6 @@ //| :param int write_ram_command: Command used to write pixels values into the update region //| :param int set_vertical_scroll: Command used to set the first row to show //| :param microcontroller.Pin backlight_pin: Pin connected to the display's backlight -//| :param bool init_cs_toggle: Toggle the Chip Select between each initialization command //| STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) { enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin }; -- cgit v1.2.3 From b7a68a70209b16d7f9cda316a30584c136c4fc16 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Wed, 27 Mar 2019 16:28:50 -0400 Subject: restrict 'make translate' to include only those directories we have ports --- Makefile | 4 +- locale/ID.po | 498 +++++++++----------- locale/circuitpython.pot | 331 +++----------- locale/de_DE.po | 482 ++++++++------------ locale/en_US.po | 331 +++----------- locale/en_x_pirate.po | 331 +++----------- locale/es.po | 491 +++++++++----------- locale/fil.po | 500 +++++++++------------ locale/fr.po | 490 +++++++++----------- locale/it_IT.po | 495 +++++++++----------- locale/pt_BR.po | 488 +++++++++----------- ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk | 2 +- 12 files changed, 1626 insertions(+), 2817 deletions(-) diff --git a/Makefile b/Makefile index 0c298f0ba..9b7a5a32c 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,8 @@ ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(BASEOPTS) # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(BASEOPTS) +TRANSLATE_SOURCES = extmod lib main.c ports/atmel-samd ports/nrf py shared-bindings shared-module supervisor + .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext help: @@ -194,7 +196,7 @@ pseudoxml: all-source: locale/circuitpython.pot: all-source - find . -iname "*.c" | xargs xgettext -L C -s --add-location=file --keyword=translate -o circuitpython.pot -p locale + find $(TRANSLATE_SOURCES) -iname "*.c" | xargs xgettext -L C -s --add-location=file --keyword=translate -o circuitpython.pot -p locale translate: locale/circuitpython.pot for po in $(shell ls locale/*.po); do msgmerge -U $$po -s --no-fuzzy-matching --add-location=file locale/circuitpython.pot; done diff --git a/locale/ID.po b/locale/ID.po index 1df86a7d2..36023152c 100644 --- a/locale/ID.po +++ b/locale/ID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,7 +52,7 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "%q must be >= 1" @@ -62,7 +62,7 @@ msgstr "buffers harus mempunyai panjang yang sama" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "%q() mengambil posisi argumen %d tapi %d yang diberikan" @@ -218,10 +218,6 @@ msgstr "" msgid "A hardware interrupt channel is already in use" msgstr "Sebuah channel hardware interrupt sedang digunakan" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP dibutuhkan" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -249,7 +245,7 @@ msgstr "Semua perangkat I2C sedang digunakan" msgid "All event channels in use" msgstr "Semua channel event sedang digunakan" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "Semua channel event yang disinkronisasi sedang digunakan" @@ -257,8 +253,8 @@ msgstr "Semua channel event yang disinkronisasi sedang digunakan" msgid "All timers for this pin are in use" msgstr "Semua timer untuk pin ini sedang digunakan" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -330,7 +326,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -349,10 +345,6 @@ msgstr "buffers harus mempunyai panjang yang sama" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "Dukungan C-level" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -374,18 +366,10 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Tidak dapat menyambungkan ke AP" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Tidak dapat memutuskna dari AP" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -415,16 +399,11 @@ msgid "Cannot remount '/' when USB is active." msgstr "" #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" "Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader yang " "terisi" -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Tidak dapat mengatur konfigurasi STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" @@ -441,10 +420,6 @@ msgstr "" msgid "Cannot unambiguously get sizeof scalar" msgstr "tidak dapat mendapatkan ukuran scalar secara tidak ambigu" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Tidak dapat memperbarui status i/f" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -477,7 +452,7 @@ msgstr "Clock unit sedang digunakan" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -515,8 +490,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" @@ -534,37 +509,22 @@ msgstr "" msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Tidak tahu cara meloloskan objek ke fungsi native" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8266 tidak mendukung safe mode" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP866 tidak mendukung pull down" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "Channel EXTINT sedang digunakan" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Errod pada ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "Error pada regex" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -613,7 +573,6 @@ msgstr "Gagal untuk mengalokasikan buffer RX" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Gagal untuk megalokasikan buffer RX dari %d byte" @@ -698,8 +657,8 @@ msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" @@ -719,8 +678,8 @@ msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" msgid "Failed to stop advertising" msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" @@ -761,20 +720,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 tidak mendukung pull up" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "operasi I/O pada file tertutup" @@ -846,16 +801,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin tidak valid" @@ -868,14 +823,15 @@ msgstr "Pin untuk channel kiri tidak valid" msgid "Invalid pin for right channel" msgstr "Pin untuk channel kanan tidak valid" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Pin-pin tidak valid" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -922,11 +878,6 @@ msgstr "" msgid "MOSI pin init failed." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Nilai maksimum frekuensi PWM adalah %dhz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -944,15 +895,6 @@ msgstr "" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Nilai minimum frekuensi PWM is 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "Nilai Frekuensi PWM ganda tidak didukung. PWM sudah diatur pada %dhz" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -966,10 +908,6 @@ msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip" msgid "No DMA channel found" msgstr "tidak ada channel DMA ditemukan" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Tidak ada dukungan PulseIn untuk %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Tidak pin RX" @@ -1002,12 +940,8 @@ msgstr "Tidak ada GCLK yang kosong" msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Tidak dukungan hardware untuk analog out." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Tidak ada dukungan hardware untuk pin" @@ -1024,10 +958,6 @@ msgstr "" msgid "Not connected" msgstr "Tidak dapat menyambungkan ke AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "" @@ -1066,10 +996,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Hanya tx yang mendukung pada UART1 (GPIO2)." - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "" @@ -1084,32 +1010,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM tidak didukung pada pin %d" - #: py/moduerrno.c msgid "Permission denied" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pin %q tidak memiliki kemampuan ADC" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) tidak mendukung pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pin-pin tidak valid untuk SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1132,7 +1041,7 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" @@ -1174,14 +1083,6 @@ msgstr "" msgid "SDA or SCL needs a pull up" msgstr "SDA atau SCL membutuhkan pull up" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA harus aktif" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA dibutuhkan" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "" @@ -1200,8 +1101,8 @@ msgstr "Serializer sedang digunakan" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" @@ -1284,7 +1185,7 @@ msgstr "Untuk keluar, silahkan reset board tanpa " msgid "Too many channels in sample." msgstr "Terlalu banyak channel dalam sampel" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1300,15 +1201,6 @@ msgstr "" msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) tidak ada" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) tidak dapat dibaca" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "" @@ -1347,10 +1239,6 @@ msgstr "" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Tidak dapat memasang filesystem kembali" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "" @@ -1359,10 +1247,6 @@ msgstr "" msgid "Unexpected nrfx uuid type" msgstr "" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipe tidak diketahui" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1389,12 +1273,6 @@ msgstr "" msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Gunakan esptool untuk menghapus flash dan upload ulang Python sebagai " -"gantinya" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "" @@ -1435,11 +1313,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Anda mengajukan untuk memulai mode aman pada (safe mode) pada " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "[addrinfo error %d]" - #: py/objtype.c msgid "__init__() should return None" msgstr "" @@ -1461,7 +1334,7 @@ msgstr "sebuah objek menyerupai byte (bytes-like) dibutuhkan" msgid "abort() called" msgstr "abort() dipanggil" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "alamat %08x tidak selaras dengan %d bytes" @@ -1490,7 +1363,7 @@ msgstr "argumen num/types tidak cocok" msgid "argument should be a '%q' not a '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" @@ -1552,16 +1425,12 @@ msgstr "" msgid "buffer size must match format" msgstr "buffers harus mempunyai panjang yang sama" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer terlalu panjang" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "" @@ -1614,10 +1483,6 @@ msgstr "" msgid "can only save bytecode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "hanya bisa melakukan query satu param" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1689,14 +1554,6 @@ msgstr "" msgid "can't do truncated division of a complex number" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "tidak bisa mendapatkan konfigurasi AP" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "tidak bisa mendapatkan konfigurasi STA" - #: py/compile.c msgid "can't have multiple **x" msgstr "tidak bisa memiliki **x ganda" @@ -1725,14 +1582,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "tidak bisa mendapatkan konfigurasi AP" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "tidak bisa mendapatkan konfigurasi STA" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "" @@ -1819,7 +1668,7 @@ msgstr "" msgid "complex division by zero" msgstr "" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "" @@ -1860,15 +1709,11 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "hanya antar pos atau kw args yang diperbolehkan" - #: py/objdeque.c msgid "empty" msgstr "" @@ -1918,10 +1763,6 @@ msgstr "" msgid "expecting a dict for keyword args" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "mengharapkan sebuah pin" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "sebuah instruksi assembler diharapkan" @@ -1942,10 +1783,6 @@ msgstr "argumen keyword ekstra telah diberikan" msgid "extra positional arguments given" msgstr "argumen posisi ekstra telah diberikan" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1962,10 +1799,6 @@ msgstr "" msgid "firstbit must be MSB" msgstr "bit pertama(firstbit) harus berupa MSB" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "alokasi flash harus dibawah 1MByte" - #: py/objint.c msgid "float too big" msgstr "" @@ -1978,10 +1811,6 @@ msgstr "" msgid "format requires a dict" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "frekuensi hanya bisa didefinisikan 80Mhz atau 160Mhz" - #: py/objdeque.c msgid "full" msgstr "" @@ -1995,7 +1824,7 @@ msgstr "fungsi tidak dapat mengambil argumen keyword" msgid "function expected at most %d arguments, got %d" msgstr "fungsi diharapkan setidaknya %d argumen, hanya mendapatkan %d" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "fungsi mendapatkan nilai ganda untuk argumen '%q'" @@ -2017,7 +1846,7 @@ msgstr "fungsi kehilangan argumen keyword '%q' yang dibutuhkan" msgid "function missing required positional argument #%d" msgstr "fungsi kehilangan argumen posisi #%d yang dibutuhkan" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "fungsi mengambil posisi argumen %d tapi %d yang diberikan" @@ -2050,10 +1879,6 @@ msgstr "identifier didefinisi ulang sebagai global" msgid "identifier redefined as nonlocal" msgstr "identifier didefinisi ulang sebagai nonlocal" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "baudrate tidak memungkinkan" - #: py/objstr.c msgid "incomplete format" msgstr "" @@ -2067,8 +1892,7 @@ msgid "incorrect padding" msgstr "lapisan (padding) tidak benar" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "index keluar dari jangkauan" @@ -2100,26 +1924,14 @@ msgstr "perangkat I2C tidak valid" msgid "invalid SPI peripheral" msgstr "perangkat SPI tidak valid" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarm tidak valid" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "argumen-argumen tidak valid" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "panjang buffer tidak valid" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "cert tidak valid" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "bit data tidak valid" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "indeks dupterm tidak valid" @@ -2140,19 +1952,11 @@ msgstr "key tidak valid" msgid "invalid micropython decorator" msgstr "micropython decorator tidak valid" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "pin tidak valid" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "stop bit tidak valid" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "syntax tidak valid" @@ -2197,10 +2001,6 @@ msgstr "" msgid "label redefined" msgstr "label didefinis ulang" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len harus kelipatan dari 4" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "" @@ -2229,7 +2029,7 @@ msgstr "" msgid "map buffer too small" msgstr "" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "" @@ -2242,11 +2042,6 @@ msgstr "" msgid "memory allocation failed, allocating %u bytes" msgstr "" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "alokasi memori gagal, mengalokasikan %u byte untuk kode native" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "" @@ -2305,7 +2100,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "" @@ -2329,7 +2124,7 @@ msgstr "tidak ada ikatan/bind pada temuan nonlocal" msgid "no module named '%q'" msgstr "tidak ada modul yang bernama '%q'" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "" @@ -2353,11 +2148,6 @@ msgstr "non-keyword arg setelah keyword arg" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "tidak valid channel ADC: %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2416,13 +2206,13 @@ msgstr "" msgid "odd-length string" msgstr "panjang data string memiliki keganjilan (odd-length)" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c #, fuzzy msgid "offset out of bounds" msgstr "modul tidak ditemukan" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2439,7 +2229,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "" @@ -2459,10 +2249,6 @@ msgstr "" msgid "parameters must be registers in sequence r0 to r3" msgstr "parameter harus menjadi register dalam urutan r0 sampai r3" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "pin tidak memiliki kemampuan IRQ" - #: shared-bindings/displayio/Bitmap.c msgid "pixel coordinates out of bounds" msgstr "" @@ -2477,7 +2263,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "Muncul dari PulseIn yang kosong" @@ -2548,10 +2333,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "nilai sampling keluar dari jangkauan" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "scan gagal" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2747,7 +2528,7 @@ msgstr "" msgid "unexpected keyword argument" msgstr "argumen keyword tidak diharapkan" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "keyword argumen '%q' tidak diharapkan" @@ -2759,10 +2540,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "konfigurasi param tidak diketahui" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2783,10 +2560,6 @@ msgstr "" msgid "unknown format code '%c' for object of type 'str'" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "status param tidak diketahui" - #: py/compile.c msgid "unknown type" msgstr "tipe tidak diketahui" @@ -2838,10 +2611,6 @@ msgstr "" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() gagal" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" @@ -2870,6 +2639,36 @@ msgstr "" msgid "zero step" msgstr "" +#~ msgid "AP required" +#~ msgstr "AP dibutuhkan" + +#~ msgid "C-level assert" +#~ msgstr "Dukungan C-level" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Tidak dapat menyambungkan ke AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Tidak dapat memutuskna dari AP" + +#~ msgid "Cannot set STA config" +#~ msgstr "Tidak dapat mengatur konfigurasi STA" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Tidak dapat memperbarui status i/f" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Tidak tahu cara meloloskan objek ke fungsi native" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8266 tidak mendukung safe mode" + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP866 tidak mendukung pull down" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Errod pada ffi_prep_cif" + #, fuzzy #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "Gagal untuk melaporkan nilai atribut, status: 0x%08lX" @@ -2877,3 +2676,138 @@ msgstr "" #, fuzzy #~ msgid "Failed to read attribute value, err %0x04x" #~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" + +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 tidak mendukung pull up" + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Nilai maksimum frekuensi PWM adalah %dhz" + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Nilai minimum frekuensi PWM is 1hz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Nilai Frekuensi PWM ganda tidak didukung. PWM sudah diatur pada %dhz" + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Tidak ada dukungan PulseIn untuk %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Tidak dukungan hardware untuk analog out." + +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Hanya tx yang mendukung pada UART1 (GPIO2)." + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM tidak didukung pada pin %d" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q tidak memiliki kemampuan ADC" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) tidak mendukung pull" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pin-pin tidak valid untuk SPI" + +#~ msgid "STA must be active" +#~ msgstr "STA harus aktif" + +#~ msgid "STA required" +#~ msgstr "STA dibutuhkan" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) tidak ada" + +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) tidak dapat dibaca" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Tidak dapat memasang filesystem kembali" + +#~ msgid "Unknown type" +#~ msgstr "Tipe tidak diketahui" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Gunakan esptool untuk menghapus flash dan upload ulang Python sebagai " +#~ "gantinya" + +#~ msgid "[addrinfo error %d]" +#~ msgstr "[addrinfo error %d]" + +#~ msgid "buffer too long" +#~ msgstr "buffer terlalu panjang" + +#~ msgid "can query only one param" +#~ msgstr "hanya bisa melakukan query satu param" + +#~ msgid "can't get AP config" +#~ msgstr "tidak bisa mendapatkan konfigurasi AP" + +#~ msgid "can't get STA config" +#~ msgstr "tidak bisa mendapatkan konfigurasi STA" + +#~ msgid "can't set AP config" +#~ msgstr "tidak bisa mendapatkan konfigurasi AP" + +#~ msgid "can't set STA config" +#~ msgstr "tidak bisa mendapatkan konfigurasi STA" + +#~ msgid "either pos or kw args are allowed" +#~ msgstr "hanya antar pos atau kw args yang diperbolehkan" + +#~ msgid "expecting a pin" +#~ msgstr "mengharapkan sebuah pin" + +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "alokasi flash harus dibawah 1MByte" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "frekuensi hanya bisa didefinisikan 80Mhz atau 160Mhz" + +#~ msgid "impossible baudrate" +#~ msgstr "baudrate tidak memungkinkan" + +#~ msgid "invalid alarm" +#~ msgstr "alarm tidak valid" + +#~ msgid "invalid buffer length" +#~ msgstr "panjang buffer tidak valid" + +#~ msgid "invalid data bits" +#~ msgstr "bit data tidak valid" + +#~ msgid "invalid pin" +#~ msgstr "pin tidak valid" + +#~ msgid "invalid stop bits" +#~ msgstr "stop bit tidak valid" + +#~ msgid "len must be multiple of 4" +#~ msgstr "len harus kelipatan dari 4" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "alokasi memori gagal, mengalokasikan %u byte untuk kode native" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "tidak valid channel ADC: %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "pin tidak memiliki kemampuan IRQ" + +#~ msgid "scan failed" +#~ msgstr "scan gagal" + +#~ msgid "unknown config param" +#~ msgstr "konfigurasi param tidak diketahui" + +#~ msgid "unknown status param" +#~ msgstr "status param tidak diketahui" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() gagal" diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index 645b2e4ad..37b158902 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,7 +52,7 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c msgid "%q must be >= 1" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "" @@ -217,10 +217,6 @@ msgstr "" msgid "A hardware interrupt channel is already in use" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -247,7 +243,7 @@ msgstr "" msgid "All event channels in use" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "" @@ -255,8 +251,8 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -326,7 +322,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -344,10 +340,6 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -369,18 +361,10 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -407,14 +391,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "" #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" @@ -431,10 +410,6 @@ msgstr "" msgid "Cannot unambiguously get sizeof scalar" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -467,7 +442,7 @@ msgstr "" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -505,8 +480,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c msgid "Data too large for advertisement packet" msgstr "" @@ -522,37 +497,22 @@ msgstr "" msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "" - #: extmod/modure.c msgid "Error in regex" msgstr "" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -599,7 +559,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "" @@ -675,8 +634,8 @@ msgstr "" msgid "Failed to start advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "" @@ -694,8 +653,8 @@ msgstr "" msgid "Failed to stop advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "" @@ -736,20 +695,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "" @@ -821,16 +776,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "" @@ -843,14 +798,15 @@ msgstr "" msgid "Invalid pin for right channel" msgstr "" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -897,11 +853,6 @@ msgstr "" msgid "MOSI pin init failed." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -919,15 +870,6 @@ msgstr "" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -941,10 +883,6 @@ msgstr "" msgid "No DMA channel found" msgstr "" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "" @@ -977,12 +915,8 @@ msgstr "" msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "" @@ -998,10 +932,6 @@ msgstr "" msgid "Not connected" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "" @@ -1040,10 +970,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "" - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "" @@ -1058,32 +984,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "" - #: py/moduerrno.c msgid "Permission denied" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1104,7 +1013,7 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" @@ -1144,14 +1053,6 @@ msgstr "" msgid "SDA or SCL needs a pull up" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "" @@ -1170,8 +1071,8 @@ msgstr "" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" @@ -1251,7 +1152,7 @@ msgstr "" msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1267,15 +1168,6 @@ msgstr "" msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "" @@ -1314,10 +1206,6 @@ msgstr "" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "" @@ -1326,10 +1214,6 @@ msgstr "" msgid "Unexpected nrfx uuid type" msgstr "" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1355,10 +1239,6 @@ msgstr "" msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "" @@ -1390,11 +1270,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "" -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "" @@ -1416,7 +1291,7 @@ msgstr "" msgid "abort() called" msgstr "" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "" @@ -1445,7 +1320,7 @@ msgstr "" msgid "argument should be a '%q' not a '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" @@ -1506,16 +1381,12 @@ msgstr "" msgid "buffer size must match format" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "" @@ -1568,10 +1439,6 @@ msgstr "" msgid "can only save bytecode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1643,14 +1510,6 @@ msgstr "" msgid "can't do truncated division of a complex number" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - #: py/compile.c msgid "can't have multiple **x" msgstr "" @@ -1679,14 +1538,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "" @@ -1773,7 +1624,7 @@ msgstr "" msgid "complex division by zero" msgstr "" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "" @@ -1814,15 +1665,11 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - #: py/objdeque.c msgid "empty" msgstr "" @@ -1872,10 +1719,6 @@ msgstr "" msgid "expecting a dict for keyword args" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "" @@ -1896,10 +1739,6 @@ msgstr "" msgid "extra positional arguments given" msgstr "" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1916,10 +1755,6 @@ msgstr "" msgid "firstbit must be MSB" msgstr "" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "" - #: py/objint.c msgid "float too big" msgstr "" @@ -1932,10 +1767,6 @@ msgstr "" msgid "format requires a dict" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "" - #: py/objdeque.c msgid "full" msgstr "" @@ -1949,7 +1780,7 @@ msgstr "" msgid "function expected at most %d arguments, got %d" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "" @@ -1971,7 +1802,7 @@ msgstr "" msgid "function missing required positional argument #%d" msgstr "" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "" @@ -2004,10 +1835,6 @@ msgstr "" msgid "identifier redefined as nonlocal" msgstr "" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "" - #: py/objstr.c msgid "incomplete format" msgstr "" @@ -2021,8 +1848,7 @@ msgid "incorrect padding" msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "" @@ -2054,26 +1880,14 @@ msgstr "" msgid "invalid SPI peripheral" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "" @@ -2094,19 +1908,11 @@ msgstr "" msgid "invalid micropython decorator" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "" @@ -2151,10 +1957,6 @@ msgstr "" msgid "label redefined" msgstr "" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "" @@ -2183,7 +1985,7 @@ msgstr "" msgid "map buffer too small" msgstr "" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "" @@ -2196,11 +1998,6 @@ msgstr "" msgid "memory allocation failed, allocating %u bytes" msgstr "" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "" @@ -2258,7 +2055,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "" @@ -2282,7 +2079,7 @@ msgstr "" msgid "no module named '%q'" msgstr "" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "" @@ -2306,11 +2103,6 @@ msgstr "" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2369,12 +2161,12 @@ msgstr "" msgid "odd-length string" msgstr "" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c msgid "offset out of bounds" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2391,7 +2183,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "" @@ -2411,10 +2203,6 @@ msgstr "" msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "" - #: shared-bindings/displayio/Bitmap.c msgid "pixel coordinates out of bounds" msgstr "" @@ -2429,7 +2217,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "" @@ -2500,10 +2287,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2698,7 +2481,7 @@ msgstr "" msgid "unexpected keyword argument" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "" @@ -2710,10 +2493,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2734,10 +2513,6 @@ msgstr "" msgid "unknown format code '%c' for object of type 'str'" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "" - #: py/compile.c msgid "unknown type" msgstr "" @@ -2789,10 +2564,6 @@ msgstr "" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" diff --git a/locale/de_DE.po b/locale/de_DE.po index 87e965914..26b519d4d 100644 --- a/locale/de_DE.po +++ b/locale/de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: Pascal Deneaux\n" "Language-Team: Sebastian Plamauer, Pascal Deneaux\n" @@ -54,7 +54,7 @@ msgstr "Der Index %q befindet sich außerhalb der Reihung" msgid "%q indices must be integers, not %s" msgstr "%q Indizes müssen ganze Zahlen sein, nicht %s" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c msgid "%q must be >= 1" msgstr "%q muss >= 1 sein" @@ -63,7 +63,7 @@ msgstr "%q muss >= 1 sein" msgid "%q should be an int" msgstr "%q sollte ein int sein" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" @@ -219,10 +219,6 @@ msgstr "3-arg pow() wird nicht unterstützt" msgid "A hardware interrupt channel is already in use" msgstr "Ein Hardware Interrupt Kanal wird schon benutzt" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP erforderlich" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -249,7 +245,7 @@ msgstr "Alle UART-Peripheriegeräte sind in Benutzung" msgid "All event channels in use" msgstr "Alle event Kanäle werden benutzt" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "Alle sync event Kanäle werden benutzt" @@ -257,8 +253,8 @@ msgstr "Alle sync event Kanäle werden benutzt" msgid "All timers for this pin are in use" msgstr "Alle timer für diesen Pin werden bereits benutzt" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -330,7 +326,7 @@ msgstr "Die Helligkeit ist nicht einstellbar" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Der Puffergröße ist inkorrekt. Sie sollte %d bytes haben." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Der Puffer muss eine Mindestenslänge von 1 haben" @@ -348,10 +344,6 @@ msgstr "Der Puffer muss 16 Bytes lang sein" msgid "Bytes must be between 0 and 255." msgstr "Ein Bytes kann nur Werte zwischen 0 und 255 annehmen." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "C-Level Assert" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -373,18 +365,10 @@ msgstr "Im Central mode kann name nicht geändert werden" msgid "Can't connect in Peripheral mode" msgstr "Im Peripheral mode kann keine Verbindung hergestellt werden" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Kann nicht zu AP verbinden" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Kann Werte nicht löschen" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Kann nicht trennen von AP" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -411,14 +395,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "Kann '/' nicht remounten when USB aktiv ist" #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden" -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Kann STA Konfiguration nicht setzen" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Der Wert kann nicht gesetzt werden, wenn die Richtung input ist." @@ -435,10 +414,6 @@ msgstr "Übertragung ohne MOSI- und MISO-Pins nicht möglich." msgid "Cannot unambiguously get sizeof scalar" msgstr "sizeof scalar kann nicht eindeutig bestimmt werden" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Kann i/f Status nicht updaten" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Kann nicht ohne MOSI-Pin schreiben." @@ -471,7 +446,7 @@ msgstr "Clock unit wird benutzt" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "Der Befehl muss ein int zwischen 0 und 255 sein" @@ -509,8 +484,8 @@ msgstr "Data 0 pin muss am Byte ausgerichtet sein" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c msgid "Data too large for advertisement packet" msgstr "Zu vielen Daten für das advertisement packet" @@ -526,38 +501,22 @@ msgstr "Die Zielkapazität ist kleiner als destination_length." msgid "Display rotation must be in 90 degree increments" msgstr "Die Rotation der Anzeige muss in 90-Grad-Schritten erfolgen" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" -"Ich weiß nicht, wie man das Objekt an die native Funktion übergeben kann" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Drive mode wird nicht verwendet, wenn die Richtung input ist." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8226 hat keinen Sicherheitsmodus" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 unterstützt pull down nicht" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "EXTINT Kanal ist schon in Benutzung" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Fehler in ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "Fehler in regex" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Erwartet ein(e) %q" @@ -604,7 +563,6 @@ msgstr "Konnte keinen RX Buffer allozieren" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Konnte keine RX Buffer mit %d allozieren" @@ -680,8 +638,8 @@ msgstr "Mutex konnte nicht freigegeben werden. Status: 0x%04x" msgid "Failed to start advertising" msgstr "Kann advertisement nicht starten" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Kann advertisement nicht starten. Status: 0x%04x" @@ -699,8 +657,8 @@ msgstr "Der Scanvorgang kann nicht gestartet werden. Status: 0x%04x" msgid "Failed to stop advertising" msgstr "Kann advertisement nicht stoppen" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Kann advertisement nicht stoppen. Status: 0x%04x" @@ -741,20 +699,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 unterstützt pull up nicht" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Gruppe voll" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "Lese/Schreibe-operation an geschlossener Datei" @@ -828,16 +782,16 @@ msgstr "Ungültige Datei" msgid "Invalid format chunk size" msgstr "Ungültige format chunk size" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Ungültige Anzahl von Bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Ungültige Phase" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Ungültiger Pin" @@ -850,14 +804,15 @@ msgstr "Ungültiger Pin für linken Kanal" msgid "Invalid pin for right channel" msgstr "Ungültiger Pin für rechten Kanal" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Ungültige Pins" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Ungültige Polarität" @@ -908,11 +863,6 @@ msgstr "MISO pin Initialisierung fehlgeschlagen" msgid "MOSI pin init failed." msgstr "MOSI pin Initialisierung fehlgeschlagen" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Maximale PWM Frequenz ist %dHz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -933,17 +883,6 @@ msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" "Die Startverzögerung des Mikrofons muss im Bereich von 0,0 bis 1,0 liegen" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Minimale PWM Frequenz ist %dHz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"Mehrere PWM Frequenzen werden nicht unterstützt. PWM wurde bereits auf %dHz " -"gesetzt." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -957,10 +896,6 @@ msgstr "Kein DAC im Chip vorhanden" msgid "No DMA channel found" msgstr "Kein DMA Kanal gefunden" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Keine PulseIn Unterstützung für %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Kein RX Pin" @@ -993,12 +928,8 @@ msgstr "Keine freien GCLKs" msgid "No hardware random available" msgstr "Kein hardware random verfügbar" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Keine Hardwareunterstützung für analog out" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Keine Hardwareunterstützung an diesem Pin" @@ -1014,10 +945,6 @@ msgstr "Keine solche Datei/Verzeichnis" msgid "Not connected" msgstr "Nicht verbunden" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "Nicht verbunden." - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "Spielt nicht" @@ -1059,10 +986,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "UART1 (GPIO2) unterstützt nur tx" - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "Oversample muss ein Vielfaches von 8 sein." @@ -1077,32 +1000,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "Die PWM-Frequenz ist nicht schreibbar wenn variable_Frequenz = False." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM nicht unterstützt an Pin %d" - #: py/moduerrno.c msgid "Permission denied" msgstr "Zugang verweigert" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pin %q hat keine ADC Funktion" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "Pin hat keine ADC Funktionalität" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) unterstützt kein pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pins nicht gültig für SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "Pixel außerhalb der Puffergrenzen" @@ -1125,7 +1031,7 @@ msgstr "Pull wird nicht verwendet, wenn die Richtung output ist." msgid "RTC calibration is not supported on this board" msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "Eine RTC wird auf diesem Board nicht unterstützt" @@ -1165,14 +1071,6 @@ msgstr "Sicherheitsmodus aktiv! Gespeicherter Code wird nicht ausgeführt\n" msgid "SDA or SCL needs a pull up" msgstr "SDA oder SCL brauchen pull up" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA muss aktiv sein" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA erforderlich" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "Abtastrate muss positiv sein" @@ -1191,8 +1089,8 @@ msgstr "Serializer wird benutzt" msgid "Slice and value different lengths." msgstr "Slice und Wert (value) haben unterschiedliche Längen." -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Slices werden nicht unterstützt" @@ -1284,7 +1182,7 @@ msgstr "Zum beenden, resette bitte das board ohne " msgid "Too many channels in sample." msgstr "Zu viele Kanäle im sample" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1300,15 +1198,6 @@ msgstr "Zurückverfolgung (jüngste Aufforderung zuletzt):\n" msgid "Tuple or struct_time argument required" msgstr "Tuple- oder struct_time-Argument erforderlich" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) existiert nicht" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) kann nicht lesen" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB beschäftigt" @@ -1347,10 +1236,6 @@ msgstr "Parser konnte nicht gestartet werden" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Dateisystem konnte nicht wieder eingebunden werden." - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Schreiben in nvm nicht möglich." @@ -1359,10 +1244,6 @@ msgstr "Schreiben in nvm nicht möglich." msgid "Unexpected nrfx uuid type" msgstr "Unerwarteter nrfx uuid-Typ" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Unbekannter Typ" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1390,11 +1271,6 @@ msgstr "Nicht unterstützte Operation" msgid "Unsupported pull value." msgstr "Nicht unterstützter Pull-Wert" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Benutze das esptool um den flash zu löschen und Python erneut hochzuladen" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "Viper-Funktionen unterstützen derzeit nicht mehr als 4 Argumente" @@ -1435,11 +1311,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Du hast das Starten im Sicherheitsmodus ausgelöst durch " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "__init__() sollte None zurückgeben" @@ -1461,7 +1332,7 @@ msgstr "ein Byte-ähnliches Objekt ist erforderlich" msgid "abort() called" msgstr "abort() wurde aufgerufen" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "Addresse %08x ist nicht an %d bytes ausgerichtet" @@ -1490,7 +1361,7 @@ msgstr "Anzahl/Type der Argumente passen nicht" msgid "argument should be a '%q' not a '%q'" msgstr "Argument sollte '%q' sein, nicht '%q'" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "Array/Bytes auf der rechten Seite erforderlich" @@ -1551,16 +1422,12 @@ msgstr "Puffer muss ein bytes-artiges Objekt sein" msgid "buffer size must match format" msgstr "Die Puffergröße muss zum Format passen" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "Puffersegmente müssen gleich lang sein" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "Buffer zu lang" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "Der Puffer ist zu klein" @@ -1613,10 +1480,6 @@ msgstr "kann nur bis zu 4 Parameter für die Xtensa assembly haben" msgid "can only save bytecode" msgstr "kann nur Bytecode speichern" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1688,14 +1551,6 @@ msgstr "Eine binäre Operation zwischen '%q' und '%q' ist nicht möglich" msgid "can't do truncated division of a complex number" msgstr "kann mit einer komplexen Zahl keine abgeschnittene Division ausführen" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - #: py/compile.c msgid "can't have multiple **x" msgstr "mehrere **x sind nicht gestattet" @@ -1724,14 +1579,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "" @@ -1818,7 +1665,7 @@ msgstr "" msgid "complex division by zero" msgstr "" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "" @@ -1859,15 +1706,11 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "Division durch Null" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - #: py/objdeque.c msgid "empty" msgstr "leer" @@ -1917,10 +1760,6 @@ msgstr "erwarte tuple/list" msgid "expecting a dict for keyword args" msgstr "erwarte ein dict als Keyword-Argumente" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "Ein Pin wird erwartet" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "erwartet eine Assembler-Anweisung" @@ -1941,10 +1780,6 @@ msgstr "Es wurden zusätzliche Keyword-Argumente angegeben" msgid "extra positional arguments given" msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "Die Datei muss eine im Byte-Modus geöffnete Datei sein" @@ -1961,10 +1796,6 @@ msgstr "Das erste Argument für super() muss type sein" msgid "firstbit must be MSB" msgstr "Erstes Bit muss das höchstwertigste Bit (MSB) sein" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "flash location muss unter 1MByte sein" - #: py/objint.c msgid "float too big" msgstr "float zu groß" @@ -1977,10 +1808,6 @@ msgstr "Die Schriftart (font) muss 2048 Byte lang sein" msgid "format requires a dict" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "Die Frequenz kann nur 80Mhz oder 160Mhz sein" - #: py/objdeque.c msgid "full" msgstr "voll" @@ -1994,7 +1821,7 @@ msgstr "Funktion akzeptiert keine Keyword-Argumente" msgid "function expected at most %d arguments, got %d" msgstr "Funktion erwartet maximal %d Argumente, aber hat %d erhalten" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "Funktion hat mehrere Werte für Argument '%q'" @@ -2016,7 +1843,7 @@ msgstr "Funktion vermisst benötigtes Keyword-Argumente '%q'" msgid "function missing required positional argument #%d" msgstr "Funktion vermisst benötigtes Argumente ohne Keyword #%d" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "" @@ -2050,10 +1877,6 @@ msgstr "Bezeichner als global neu definiert" msgid "identifier redefined as nonlocal" msgstr "Bezeichner als nonlocal definiert" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "Unmögliche Baudrate" - #: py/objstr.c msgid "incomplete format" msgstr "unvollständiges Format" @@ -2067,8 +1890,7 @@ msgid "incorrect padding" msgstr "padding ist inkorrekt" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "index außerhalb der Reichweite" @@ -2100,26 +1922,14 @@ msgstr "ungültige I2C Schnittstelle" msgid "invalid SPI peripheral" msgstr "ungültige SPI Schnittstelle" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "ungültiger Alarm" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "ungültige argumente" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "ungültige Pufferlänge" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "ungültiges cert" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "ungültige Datenbits" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "ungültiger dupterm index" @@ -2140,19 +1950,11 @@ msgstr "ungültiger Schlüssel" msgid "invalid micropython decorator" msgstr "ungültiger micropython decorator" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "ungültiger Pin" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "ungültiger Schritt (step)" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "ungültige Stopbits" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "ungültige Syntax" @@ -2201,10 +2003,6 @@ msgstr "Label '%q' nicht definiert" msgid "label redefined" msgstr "Label neu definiert" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len muss ein vielfaches von 4 sein" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "Für diesen Typ ist length nicht zulässig" @@ -2235,7 +2033,7 @@ msgstr "long int wird in diesem Build nicht unterstützt" msgid "map buffer too small" msgstr "map buffer zu klein" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "" @@ -2248,12 +2046,6 @@ msgstr "maximale Rekursionstiefe überschritten" msgid "memory allocation failed, allocating %u bytes" msgstr "Speicherzuordnung fehlgeschlagen, Zuweisung von %u Bytes" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"Speicherallozierung fehlgeschlagen, alloziere %u Bytes für nativen Code" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt" @@ -2311,7 +2103,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "" @@ -2335,7 +2127,7 @@ msgstr "" msgid "no module named '%q'" msgstr "Kein Modul mit dem Namen '%q'" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "" @@ -2359,11 +2151,6 @@ msgstr "" msgid "not a 128-bit UUID" msgstr "keine 128-bit UUID" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "Kein gültiger ADC Kanal: %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2422,12 +2209,12 @@ msgstr "Objekt mit Pufferprotokoll (buffer protocol) erforderlich" msgid "odd-length string" msgstr "String mit ungerader Länge" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c msgid "offset out of bounds" msgstr "offset außerhalb der Grenzen" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2446,7 +2233,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "" @@ -2466,10 +2253,6 @@ msgstr "Die Parameter müssen Register der Reihenfolge a2 bis a5 sein" msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "Pin hat keine IRQ Fähigkeiten" - #: shared-bindings/displayio/Bitmap.c msgid "pixel coordinates out of bounds" msgstr "Pixelkoordinaten außerhalb der Grenzen" @@ -2484,7 +2267,6 @@ msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "pop von einem leeren PulseIn" @@ -2557,10 +2339,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "Abtastrate außerhalb der Reichweite" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "Scan fehlgeschlagen" - #: py/modmicropython.c msgid "schedule stack full" msgstr "Der schedule stack ist voll" @@ -2758,7 +2536,7 @@ msgstr "" msgid "unexpected keyword argument" msgstr "unerwartetes Keyword-Argument" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "unerwartetes Keyword-Argument '%q'" @@ -2772,10 +2550,6 @@ msgstr "" "Einrückung entspricht keiner äußeren Einrückungsebene. Bitte Leerzeichen am " "Zeilenanfang kontrollieren!" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2796,10 +2570,6 @@ msgstr "" msgid "unknown format code '%c' for object of type 'str'" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "Unbekannter Statusparameter" - #: py/compile.c msgid "unknown type" msgstr "unbekannter Typ" @@ -2851,10 +2621,6 @@ msgstr "nicht unterstützte Typen für %q: '%s', '%s'" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() fehlgeschlagen" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "write_args muss eine Liste, ein Tupel oder None sein" @@ -2883,6 +2649,37 @@ msgstr "y Wert außerhalb der Grenzen" msgid "zero step" msgstr "" +#~ msgid "AP required" +#~ msgstr "AP erforderlich" + +#~ msgid "C-level assert" +#~ msgstr "C-Level Assert" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Kann nicht zu AP verbinden" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Kann nicht trennen von AP" + +#~ msgid "Cannot set STA config" +#~ msgstr "Kann STA Konfiguration nicht setzen" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Kann i/f Status nicht updaten" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "" +#~ "Ich weiß nicht, wie man das Objekt an die native Funktion übergeben kann" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8226 hat keinen Sicherheitsmodus" + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 unterstützt pull down nicht" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Fehler in ffi_prep_cif" + #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "Kann den Attributwert nicht mitteilen. Status: 0x%04x" @@ -2893,5 +2690,120 @@ msgstr "" #~ msgstr "" #~ "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 unterstützt pull up nicht" + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Maximale PWM Frequenz ist %dHz" + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Minimale PWM Frequenz ist %dHz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Mehrere PWM Frequenzen werden nicht unterstützt. PWM wurde bereits auf " +#~ "%dHz gesetzt." + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Keine PulseIn Unterstützung für %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Keine Hardwareunterstützung für analog out" + +#~ msgid "Not connected." +#~ msgstr "Nicht verbunden." + #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Nur unkomprimiertes Windows-Format (BMP) unterstützt %d" + +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "UART1 (GPIO2) unterstützt nur tx" + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM nicht unterstützt an Pin %d" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q hat keine ADC Funktion" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) unterstützt kein pull" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pins nicht gültig für SPI" + +#~ msgid "STA must be active" +#~ msgstr "STA muss aktiv sein" + +#~ msgid "STA required" +#~ msgstr "STA erforderlich" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) existiert nicht" + +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) kann nicht lesen" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Dateisystem konnte nicht wieder eingebunden werden." + +#~ msgid "Unknown type" +#~ msgstr "Unbekannter Typ" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Benutze das esptool um den flash zu löschen und Python erneut hochzuladen" + +#~ msgid "buffer too long" +#~ msgstr "Buffer zu lang" + +#~ msgid "expecting a pin" +#~ msgstr "Ein Pin wird erwartet" + +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "flash location muss unter 1MByte sein" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "Die Frequenz kann nur 80Mhz oder 160Mhz sein" + +#~ msgid "impossible baudrate" +#~ msgstr "Unmögliche Baudrate" + +#~ msgid "invalid alarm" +#~ msgstr "ungültiger Alarm" + +#~ msgid "invalid buffer length" +#~ msgstr "ungültige Pufferlänge" + +#~ msgid "invalid data bits" +#~ msgstr "ungültige Datenbits" + +#~ msgid "invalid pin" +#~ msgstr "ungültiger Pin" + +#~ msgid "invalid stop bits" +#~ msgstr "ungültige Stopbits" + +#~ msgid "len must be multiple of 4" +#~ msgstr "len muss ein vielfaches von 4 sein" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "Speicherallozierung fehlgeschlagen, alloziere %u Bytes für nativen Code" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "Kein gültiger ADC Kanal: %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "Pin hat keine IRQ Fähigkeiten" + +#~ msgid "scan failed" +#~ msgstr "Scan fehlgeschlagen" + +#~ msgid "unknown status param" +#~ msgstr "Unbekannter Statusparameter" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() fehlgeschlagen" diff --git a/locale/en_US.po b/locale/en_US.po index da189c661..b16d22b3b 100644 --- a/locale/en_US.po +++ b/locale/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: \n" @@ -52,7 +52,7 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c msgid "%q must be >= 1" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "" @@ -217,10 +217,6 @@ msgstr "" msgid "A hardware interrupt channel is already in use" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -247,7 +243,7 @@ msgstr "" msgid "All event channels in use" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "" @@ -255,8 +251,8 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -326,7 +322,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -344,10 +340,6 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -369,18 +361,10 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -407,14 +391,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "" #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" @@ -431,10 +410,6 @@ msgstr "" msgid "Cannot unambiguously get sizeof scalar" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -467,7 +442,7 @@ msgstr "" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -505,8 +480,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c msgid "Data too large for advertisement packet" msgstr "" @@ -522,37 +497,22 @@ msgstr "" msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "" - #: extmod/modure.c msgid "Error in regex" msgstr "" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -599,7 +559,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "" @@ -675,8 +634,8 @@ msgstr "" msgid "Failed to start advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "" @@ -694,8 +653,8 @@ msgstr "" msgid "Failed to stop advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "" @@ -736,20 +695,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "" @@ -821,16 +776,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "" @@ -843,14 +798,15 @@ msgstr "" msgid "Invalid pin for right channel" msgstr "" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -897,11 +853,6 @@ msgstr "" msgid "MOSI pin init failed." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -919,15 +870,6 @@ msgstr "" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -941,10 +883,6 @@ msgstr "" msgid "No DMA channel found" msgstr "" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "" @@ -977,12 +915,8 @@ msgstr "" msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "" @@ -998,10 +932,6 @@ msgstr "" msgid "Not connected" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "" @@ -1040,10 +970,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "" - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "" @@ -1058,32 +984,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "" - #: py/moduerrno.c msgid "Permission denied" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1104,7 +1013,7 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" @@ -1144,14 +1053,6 @@ msgstr "" msgid "SDA or SCL needs a pull up" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "" @@ -1170,8 +1071,8 @@ msgstr "" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" @@ -1251,7 +1152,7 @@ msgstr "" msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1267,15 +1168,6 @@ msgstr "" msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "" @@ -1314,10 +1206,6 @@ msgstr "" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "" @@ -1326,10 +1214,6 @@ msgstr "" msgid "Unexpected nrfx uuid type" msgstr "" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1355,10 +1239,6 @@ msgstr "" msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "" @@ -1390,11 +1270,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "" -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "" @@ -1416,7 +1291,7 @@ msgstr "" msgid "abort() called" msgstr "" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "" @@ -1445,7 +1320,7 @@ msgstr "" msgid "argument should be a '%q' not a '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" @@ -1506,16 +1381,12 @@ msgstr "" msgid "buffer size must match format" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "" @@ -1568,10 +1439,6 @@ msgstr "" msgid "can only save bytecode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1643,14 +1510,6 @@ msgstr "" msgid "can't do truncated division of a complex number" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - #: py/compile.c msgid "can't have multiple **x" msgstr "" @@ -1679,14 +1538,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "" @@ -1773,7 +1624,7 @@ msgstr "" msgid "complex division by zero" msgstr "" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "" @@ -1814,15 +1665,11 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - #: py/objdeque.c msgid "empty" msgstr "" @@ -1872,10 +1719,6 @@ msgstr "" msgid "expecting a dict for keyword args" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "" @@ -1896,10 +1739,6 @@ msgstr "" msgid "extra positional arguments given" msgstr "" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1916,10 +1755,6 @@ msgstr "" msgid "firstbit must be MSB" msgstr "" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "" - #: py/objint.c msgid "float too big" msgstr "" @@ -1932,10 +1767,6 @@ msgstr "" msgid "format requires a dict" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "" - #: py/objdeque.c msgid "full" msgstr "" @@ -1949,7 +1780,7 @@ msgstr "" msgid "function expected at most %d arguments, got %d" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "" @@ -1971,7 +1802,7 @@ msgstr "" msgid "function missing required positional argument #%d" msgstr "" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "" @@ -2004,10 +1835,6 @@ msgstr "" msgid "identifier redefined as nonlocal" msgstr "" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "" - #: py/objstr.c msgid "incomplete format" msgstr "" @@ -2021,8 +1848,7 @@ msgid "incorrect padding" msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "" @@ -2054,26 +1880,14 @@ msgstr "" msgid "invalid SPI peripheral" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "" @@ -2094,19 +1908,11 @@ msgstr "" msgid "invalid micropython decorator" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "" @@ -2151,10 +1957,6 @@ msgstr "" msgid "label redefined" msgstr "" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "" @@ -2183,7 +1985,7 @@ msgstr "" msgid "map buffer too small" msgstr "" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "" @@ -2196,11 +1998,6 @@ msgstr "" msgid "memory allocation failed, allocating %u bytes" msgstr "" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "" @@ -2258,7 +2055,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "" @@ -2282,7 +2079,7 @@ msgstr "" msgid "no module named '%q'" msgstr "" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "" @@ -2306,11 +2103,6 @@ msgstr "" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2369,12 +2161,12 @@ msgstr "" msgid "odd-length string" msgstr "" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c msgid "offset out of bounds" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2391,7 +2183,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "" @@ -2411,10 +2203,6 @@ msgstr "" msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "" - #: shared-bindings/displayio/Bitmap.c msgid "pixel coordinates out of bounds" msgstr "" @@ -2429,7 +2217,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "" @@ -2500,10 +2287,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2698,7 +2481,7 @@ msgstr "" msgid "unexpected keyword argument" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "" @@ -2710,10 +2493,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2734,10 +2513,6 @@ msgstr "" msgid "unknown format code '%c' for object of type 'str'" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "" - #: py/compile.c msgid "unknown type" msgstr "" @@ -2789,10 +2564,6 @@ msgstr "" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" diff --git a/locale/en_x_pirate.po b/locale/en_x_pirate.po index f9bb0f0ff..5c1d74722 100644 --- a/locale/en_x_pirate.po +++ b/locale/en_x_pirate.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: @sommersoft, @MrCertainly\n" @@ -54,7 +54,7 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c msgid "%q must be >= 1" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "" @@ -219,10 +219,6 @@ msgstr "" msgid "A hardware interrupt channel is already in use" msgstr "Avast! A hardware interrupt channel be used already" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -249,7 +245,7 @@ msgstr "" msgid "All event channels in use" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "" @@ -257,8 +253,8 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -330,7 +326,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -348,10 +344,6 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -373,18 +365,10 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -411,14 +395,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "" #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" @@ -435,10 +414,6 @@ msgstr "" msgid "Cannot unambiguously get sizeof scalar" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -471,7 +446,7 @@ msgstr "" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -509,8 +484,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c msgid "Data too large for advertisement packet" msgstr "" @@ -526,37 +501,22 @@ msgstr "" msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "Avast! EXTINT channel already in use" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "" - #: extmod/modure.c msgid "Error in regex" msgstr "" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -603,7 +563,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "" @@ -679,8 +638,8 @@ msgstr "" msgid "Failed to start advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "" @@ -698,8 +657,8 @@ msgstr "" msgid "Failed to stop advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "" @@ -740,20 +699,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "" @@ -825,16 +780,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "" @@ -847,14 +802,15 @@ msgstr "Belay that! Invalid pin for port-side channel" msgid "Invalid pin for right channel" msgstr "Belay that! Invalid pin for starboard-side channel" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -901,11 +857,6 @@ msgstr "" msgid "MOSI pin init failed." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -923,15 +874,6 @@ msgstr "" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -945,10 +887,6 @@ msgstr "Shiver me timbers! There be no DAC on this chip" msgid "No DMA channel found" msgstr "" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "" @@ -981,12 +919,8 @@ msgstr "" msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "" @@ -1002,10 +936,6 @@ msgstr "" msgid "Not connected" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "" @@ -1044,10 +974,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "" - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "" @@ -1062,32 +988,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "" - #: py/moduerrno.c msgid "Permission denied" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "Belay that! Th' Pin be not ADC capable" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1108,7 +1017,7 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" @@ -1148,14 +1057,6 @@ msgstr "Runnin' in safe mode! Nay runnin' saved code.\n" msgid "SDA or SCL needs a pull up" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "" @@ -1174,8 +1075,8 @@ msgstr "" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" @@ -1255,7 +1156,7 @@ msgstr "" msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1271,15 +1172,6 @@ msgstr "" msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "" @@ -1318,10 +1210,6 @@ msgstr "" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "" @@ -1330,10 +1218,6 @@ msgstr "" msgid "Unexpected nrfx uuid type" msgstr "" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1359,10 +1243,6 @@ msgstr "" msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "" @@ -1394,11 +1274,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "" -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "" @@ -1420,7 +1295,7 @@ msgstr "" msgid "abort() called" msgstr "" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "" @@ -1449,7 +1324,7 @@ msgstr "" msgid "argument should be a '%q' not a '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" @@ -1510,16 +1385,12 @@ msgstr "" msgid "buffer size must match format" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "" @@ -1572,10 +1443,6 @@ msgstr "" msgid "can only save bytecode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1647,14 +1514,6 @@ msgstr "" msgid "can't do truncated division of a complex number" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - #: py/compile.c msgid "can't have multiple **x" msgstr "" @@ -1683,14 +1542,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "" @@ -1777,7 +1628,7 @@ msgstr "" msgid "complex division by zero" msgstr "" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "" @@ -1818,15 +1669,11 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - #: py/objdeque.c msgid "empty" msgstr "" @@ -1876,10 +1723,6 @@ msgstr "" msgid "expecting a dict for keyword args" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "" @@ -1900,10 +1743,6 @@ msgstr "" msgid "extra positional arguments given" msgstr "" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1920,10 +1759,6 @@ msgstr "" msgid "firstbit must be MSB" msgstr "" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "" - #: py/objint.c msgid "float too big" msgstr "" @@ -1936,10 +1771,6 @@ msgstr "" msgid "format requires a dict" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "" - #: py/objdeque.c msgid "full" msgstr "" @@ -1953,7 +1784,7 @@ msgstr "" msgid "function expected at most %d arguments, got %d" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "" @@ -1975,7 +1806,7 @@ msgstr "" msgid "function missing required positional argument #%d" msgstr "" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "" @@ -2008,10 +1839,6 @@ msgstr "" msgid "identifier redefined as nonlocal" msgstr "" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "" - #: py/objstr.c msgid "incomplete format" msgstr "" @@ -2025,8 +1852,7 @@ msgid "incorrect padding" msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "" @@ -2058,26 +1884,14 @@ msgstr "Belay that! I2C peripheral be invalid" msgid "invalid SPI peripheral" msgstr "Arr! SPI peripheral be invalid" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "" @@ -2098,19 +1912,11 @@ msgstr "" msgid "invalid micropython decorator" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "" @@ -2155,10 +1961,6 @@ msgstr "" msgid "label redefined" msgstr "" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "" @@ -2187,7 +1989,7 @@ msgstr "" msgid "map buffer too small" msgstr "" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "" @@ -2200,11 +2002,6 @@ msgstr "" msgid "memory allocation failed, allocating %u bytes" msgstr "" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "" @@ -2262,7 +2059,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "" @@ -2286,7 +2083,7 @@ msgstr "" msgid "no module named '%q'" msgstr "" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "" @@ -2310,11 +2107,6 @@ msgstr "" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2373,12 +2165,12 @@ msgstr "" msgid "odd-length string" msgstr "" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c msgid "offset out of bounds" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2395,7 +2187,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "" @@ -2415,10 +2207,6 @@ msgstr "" msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "" - #: shared-bindings/displayio/Bitmap.c msgid "pixel coordinates out of bounds" msgstr "" @@ -2433,7 +2221,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "" @@ -2504,10 +2291,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2702,7 +2485,7 @@ msgstr "" msgid "unexpected keyword argument" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "" @@ -2714,10 +2497,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2738,10 +2517,6 @@ msgstr "" msgid "unknown format code '%c' for object of type 'str'" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "" - #: py/compile.c msgid "unknown type" msgstr "" @@ -2793,10 +2568,6 @@ msgstr "" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" diff --git a/locale/es.po b/locale/es.po index 9f71ac160..3d1d6a2a5 100644 --- a/locale/es.po +++ b/locale/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-08-24 22:56-0500\n" "Last-Translator: \n" "Language-Team: \n" @@ -53,7 +53,7 @@ msgstr "%w indice fuera de rango" msgid "%q indices must be integers, not %s" msgstr "%q indices deben ser enteros, no %s" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "%q must be >= 1" @@ -64,7 +64,7 @@ msgstr "los buffers deben de tener la misma longitud" msgid "%q should be an int" msgstr "y deberia ser un int" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "%q() toma %d argumentos posicionales pero %d fueron dados" @@ -221,10 +221,6 @@ msgstr "pow() con 3 argumentos no soportado" msgid "A hardware interrupt channel is already in use" msgstr "El canal EXTINT ya está siendo utilizado" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP requerido" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -252,7 +248,7 @@ msgstr "Todos los timers están siendo usados" msgid "All event channels in use" msgstr "Todos los canales de eventos en uso" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "" "Todos los canales de eventos de sincronización(sync event channels) están " @@ -262,8 +258,8 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "Todos los timers para este pin están siendo utilizados" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -335,7 +331,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Tamaño de buffer incorrecto. Debe ser de %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Buffer debe ser de longitud 1 como minimo" @@ -354,10 +350,6 @@ msgstr "buffer debe de ser un objeto bytes-like" msgid "Bytes must be between 0 and 255." msgstr "Bytes debe estar entre 0 y 255." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -379,18 +371,10 @@ msgstr "No se puede cambiar el nombre en modo Central" msgid "Can't connect in Peripheral mode" msgstr "No se puede conectar en modo Peripheral" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "No se puede conectar a AP" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "No se puede eliminar valores" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "No se puede desconectar de AP" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -418,14 +402,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "No se puede volver a montar '/' cuando el USB esta activo." #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "No se puede reiniciar a bootloader porque no hay bootloader presente." -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "No se puede establecer STA config" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "No se puede asignar un valor cuando la dirección es input." @@ -442,10 +421,6 @@ msgstr "No se puede transferir sin pines MOSI y MISO." msgid "Cannot unambiguously get sizeof scalar" msgstr "No se puede obtener inequívocamente sizeof escalar" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "No se puede actualizar i/f status" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "No se puede escribir sin pin MOSI." @@ -478,7 +453,7 @@ msgstr "Clock unit está siendo utilizado" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Bytes debe estar entre 0 y 255." @@ -518,8 +493,8 @@ msgstr "graphic debe ser 2048 bytes de largo" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Los datos no caben en el paquete de anuncio." @@ -537,37 +512,22 @@ msgstr "Capacidad de destino es mas pequeña que destination_length." msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "No se sabe cómo pasar objeto a función nativa" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Modo Drive no se usa cuando la dirección es input." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8226 no soporta modo seguro." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 no soporta pull down." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "El canal EXTINT ya está siendo utilizado" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Error en ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "Error en regex" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Se espera un %q" @@ -618,7 +578,6 @@ msgstr "Ha fallado la asignación del buffer RX" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Falló la asignación del buffer RX de %d bytes" @@ -703,8 +662,8 @@ msgstr "No se puede liberar el mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "No se puede inicar el anuncio. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "No se puede inicar el anuncio. status: 0x%02x" @@ -724,8 +683,8 @@ msgstr "No se puede iniciar el escaneo. status: 0x%02x" msgid "Failed to stop advertising" msgstr "No se puede detener el anuncio. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "No se puede detener el anuncio. status: 0x%02x" @@ -766,20 +725,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "La función requiere lock" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 no soporta pull up." - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Group lleno" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "Operación I/O en archivo cerrado" @@ -853,16 +808,16 @@ msgstr "Archivo inválido" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Numero inválido de bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Fase inválida" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin inválido" @@ -875,14 +830,15 @@ msgstr "Pin inválido para canal izquierdo" msgid "Invalid pin for right channel" msgstr "Pin inválido para canal derecho" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "pines inválidos" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Polaridad inválida" @@ -933,11 +889,6 @@ msgstr "MISO pin init fallido." msgid "MOSI pin init failed." msgstr "MOSI pin init fallido." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "La frecuencia máxima del PWM es %dhz." - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -955,16 +906,6 @@ msgstr "" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "La frecuencia mínima del PWM es 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"PWM de múltiples frecuencias no soportado. El PWM ya se estableció a %dhz" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -978,10 +919,6 @@ msgstr "El chip no tiene DAC" msgid "No DMA channel found" msgstr "No se encontró el canal DMA" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Sin soporte PulseIn para %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Sin pin RX" @@ -1014,12 +951,8 @@ msgstr "Sin GCLKs libres" msgid "No hardware random available" msgstr "No hay hardware random disponible" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Sin soporte de hardware para analog out" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Sin soporte de hardware en pin" @@ -1036,10 +969,6 @@ msgstr "No existe el archivo/directorio" msgid "Not connected" msgstr "No se puede conectar a AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "" @@ -1081,10 +1010,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "solo se admiten segmentos con step=1 (alias None)" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Solo tx soportada en UART1 (GPIO2)" - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "" @@ -1099,32 +1024,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "El pin %d no soporta PWM" - #: py/moduerrno.c msgid "Permission denied" msgstr "Permiso denegado" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pin %q no tiene capacidades de ADC" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "Pin no tiene capacidad ADC" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) no soporta para pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pines no válidos para SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1147,7 +1055,7 @@ msgstr "Pull no se usa cuando la dirección es output." msgid "RTC calibration is not supported on this board" msgstr "Calibración de RTC no es soportada en esta placa" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "RTC no soportado en esta placa" @@ -1189,14 +1097,6 @@ msgstr "Ejecutando en modo seguro! No se esta ejecutando el código guardado.\n" msgid "SDA or SCL needs a pull up" msgstr "SDA o SCL necesitan una pull up" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA debe estar activo" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA requerido" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "Sample rate debe ser positivo" @@ -1215,8 +1115,8 @@ msgstr "Serializer está siendo utilizado" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" @@ -1303,7 +1203,7 @@ msgstr "Para salir, por favor reinicia la tarjeta sin " msgid "Too many channels in sample." msgstr "Demasiados canales en sample." -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1319,15 +1219,6 @@ msgstr "Traceback (ultima llamada reciente):\n" msgid "Tuple or struct_time argument required" msgstr "Argumento tuple o struct_time requerido" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) no existe" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) no puede leer" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB ocupado" @@ -1366,10 +1257,6 @@ msgstr "Incapaz de inicializar el parser" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Incapaz de montar de nuevo el sistema de archivos" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Imposible escribir en nvm" @@ -1378,10 +1265,6 @@ msgstr "Imposible escribir en nvm" msgid "Unexpected nrfx uuid type" msgstr "" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipo desconocido" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1408,10 +1291,6 @@ msgstr "Operación no soportada" msgid "Unsupported pull value." msgstr "valor pull no soportado." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "Usa esptool para borrar la flash y vuelve a cargar Python en su lugar" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "funciones Viper actualmente no soportan más de 4 argumentos." @@ -1452,11 +1331,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Solicitaste iniciar en modo seguro por " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "__init__() deberia devolver None" @@ -1478,7 +1352,7 @@ msgstr "se requiere un objeto bytes-like" msgid "abort() called" msgstr "se llamó abort()" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "la dirección %08x no esta alineada a %d bytes" @@ -1507,7 +1381,7 @@ msgstr "argumento número/tipos no coinciden" msgid "argument should be a '%q' not a '%q'" msgstr "argumento deberia ser un '%q' no un '%q'" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "array/bytes requeridos en el lado derecho" @@ -1569,16 +1443,12 @@ msgstr "buffer debe de ser un objeto bytes-like" msgid "buffer size must match format" msgstr "los buffers deben de tener la misma longitud" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer demasiado largo" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "buffer demasiado pequeño" @@ -1631,10 +1501,6 @@ msgstr "solo puede tener hasta 4 parámetros para ensamblador Xtensa" msgid "can only save bytecode" msgstr "solo puede almacenar bytecode" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "puede consultar solo un param" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "no se puede agregar un método a una clase ya subclasificada" @@ -1706,14 +1572,6 @@ msgstr "no se puede hacer una operacion binaria entre '%q' y '%q'" msgid "can't do truncated division of a complex number" msgstr "no se puede hacer la división truncada de un número complejo" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "no se puede obtener AP config" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "no se puede obtener STA config" - #: py/compile.c msgid "can't have multiple **x" msgstr "no puede tener multiples *x" @@ -1743,14 +1601,6 @@ msgid "can't send non-None value to a just-started generator" msgstr "" "no se puede enviar un valor que no sea None a un generador recién iniciado" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "no se puede establecer AP config" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "no se puede establecer STA config" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "no se puede asignar el atributo" @@ -1841,7 +1691,7 @@ msgstr "color deberia ser un int" msgid "complex division by zero" msgstr "división compleja por cero" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "valores complejos no soportados" @@ -1884,15 +1734,11 @@ msgstr "destination_length debe ser un int >= 0" msgid "dict update sequence has wrong length" msgstr "la secuencia de actualizacion del dict tiene una longitud incorrecta" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "división por cero" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "ya sea pos o kw args son permitidos" - #: py/objdeque.c msgid "empty" msgstr "vacío" @@ -1943,10 +1789,6 @@ msgstr "tupla/lista esperada" msgid "expecting a dict for keyword args" msgstr "esperando un diccionario para argumentos por palabra clave" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "esperando un pin" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "esperando una instrucción de ensamblador" @@ -1967,10 +1809,6 @@ msgstr "argumento(s) por palabra clave adicionales fueron dados" msgid "extra positional arguments given" msgstr "argumento posicional adicional dado" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "el archivo deberia ser una archivo abierto en modo byte" @@ -1987,10 +1825,6 @@ msgstr "primer argumento para super() debe ser de tipo" msgid "firstbit must be MSB" msgstr "firstbit debe ser MSB" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "la ubicación de la flash debe estar debajo de 1MByte" - #: py/objint.c msgid "float too big" msgstr "" @@ -2003,10 +1837,6 @@ msgstr "font debe ser 2048 bytes de largo" msgid "format requires a dict" msgstr "format requiere un dict" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "la frecuencia solo puede ser 80MHz o 160MHz" - #: py/objdeque.c msgid "full" msgstr "lleno" @@ -2020,7 +1850,7 @@ msgstr "la función no tiene argumentos por palabra clave" msgid "function expected at most %d arguments, got %d" msgstr "la función esperaba minimo %d argumentos, tiene %d" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "la función tiene múltiples valores para el argumento '%q'" @@ -2042,7 +1872,7 @@ msgstr "la función requiere del argumento por palabra clave '%q'" msgid "function missing required positional argument #%d" msgstr "la función requiere del argumento posicional #%d" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "la función toma %d argumentos posicionales pero le fueron dados %d" @@ -2075,10 +1905,6 @@ msgstr "identificador redefinido como global" msgid "identifier redefined as nonlocal" msgstr "identificador redefinido como nonlocal" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "baudrate imposible" - #: py/objstr.c msgid "incomplete format" msgstr "formato incompleto" @@ -2092,8 +1918,7 @@ msgid "incorrect padding" msgstr "relleno (padding) incorrecto" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "index fuera de rango" @@ -2125,26 +1950,14 @@ msgstr "periférico I2C inválido" msgid "invalid SPI peripheral" msgstr "periférico SPI inválido" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarma inválida" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "argumentos inválidos" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "longitud de buffer inválida" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "certificado inválido" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "data bits inválidos" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "index dupterm inválido" @@ -2165,19 +1978,11 @@ msgstr "llave inválida" msgid "invalid micropython decorator" msgstr "decorador de micropython inválido" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "pin inválido" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "stop bits inválidos" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "sintaxis inválida" @@ -2225,10 +2030,6 @@ msgstr "etiqueta '%q' no definida" msgid "label redefined" msgstr "etiqueta redefinida" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len debe de ser múltiple de 4" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "argumento length no permitido para este tipo" @@ -2257,7 +2058,7 @@ msgstr "long int no soportado en esta compilación" msgid "map buffer too small" msgstr "map buffer muy pequeño" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "error de dominio matemático" @@ -2270,11 +2071,6 @@ msgstr "profundidad máxima de recursión excedida" msgid "memory allocation failed, allocating %u bytes" msgstr "la asignación de memoria falló, asignando %u bytes" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "falló la asignación de memoria, asignando %u bytes para código nativo" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "la asignación de memoria falló, el heap está bloqueado" @@ -2333,7 +2129,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "necesita más de %d valores para descomprimir" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "potencia negativa sin float support" @@ -2357,7 +2153,7 @@ msgstr "no se ha encontrado ningún enlace para nonlocal" msgid "no module named '%q'" msgstr "ningún módulo se llama '%q'" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "no hay tal atributo" @@ -2383,11 +2179,6 @@ msgstr "" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "no es un canal ADC válido: %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2447,13 +2238,13 @@ msgstr "objeto con protocolo de buffer requerido" msgid "odd-length string" msgstr "string de longitud impar" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c #, fuzzy msgid "offset out of bounds" msgstr "address fuera de límites" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "solo se admiten segmentos con step=1 (alias None)" @@ -2470,7 +2261,7 @@ msgstr "ord() espera un carácter, pero encontró un string de longitud %d" msgid "overflow converting long int to machine word" msgstr "desbordamiento convirtiendo long int a palabra de máquina" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "palette debe ser 32 bytes de largo" @@ -2490,10 +2281,6 @@ msgstr "los parámetros deben ser registros en secuencia de a2 a a5" msgid "parameters must be registers in sequence r0 to r3" msgstr "los parametros deben ser registros en secuencia del r0 al r3" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "pin sin capacidades IRQ" - #: shared-bindings/displayio/Bitmap.c #, fuzzy msgid "pixel coordinates out of bounds" @@ -2509,7 +2296,6 @@ msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "pop de un PulseIn vacío" @@ -2583,10 +2369,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "frecuencia de muestreo fuera de rango" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "scan ha fallado" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2783,7 +2565,7 @@ msgstr "sangría inesperada" msgid "unexpected keyword argument" msgstr "argumento por palabra clave inesperado" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "argumento por palabra clave inesperado '%q'" @@ -2795,10 +2577,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "sangría no coincide con ningún nivel exterior" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "parámetro config desconocido" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2819,10 +2597,6 @@ msgstr "codigo format desconocido '%c' para el typo de objeto 'float'" msgid "unknown format code '%c' for object of type 'str'" msgstr "codigo format desconocido '%c' para objeto de tipo 'str'" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "status param desconocido" - #: py/compile.c msgid "unknown type" msgstr "tipo desconocido" @@ -2874,10 +2648,6 @@ msgstr "tipos no soportados para %q: '%s', '%s'" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() ha fallado" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" @@ -2908,6 +2678,33 @@ msgstr "address fuera de límites" msgid "zero step" msgstr "paso cero" +#~ msgid "AP required" +#~ msgstr "AP requerido" + +#~ msgid "Cannot connect to AP" +#~ msgstr "No se puede conectar a AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "No se puede desconectar de AP" + +#~ msgid "Cannot set STA config" +#~ msgstr "No se puede establecer STA config" + +#~ msgid "Cannot update i/f status" +#~ msgstr "No se puede actualizar i/f status" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "No se sabe cómo pasar objeto a función nativa" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8226 no soporta modo seguro." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 no soporta pull down." + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Error en ffi_prep_cif" + #, fuzzy #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "No se puede notificar el valor del anuncio. status: 0x%02x" @@ -2919,11 +2716,143 @@ msgstr "paso cero" #~ msgid "Function requires lock." #~ msgstr "La función requiere lock" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 no soporta pull up." + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "La frecuencia máxima del PWM es %dhz." + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "La frecuencia mínima del PWM es 1hz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "PWM de múltiples frecuencias no soportado. El PWM ya se estableció a %dhz" + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Sin soporte PulseIn para %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Sin soporte de hardware para analog out" + #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Solo formato Windows, BMP sin comprimir soportado %d" #~ msgid "Only true color (24 bpp or higher) BMP supported %x" #~ msgstr "Solo color verdadero (24 bpp o superior) BMP admitido %x" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Solo tx soportada en UART1 (GPIO2)" + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "El pin %d no soporta PWM" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q no tiene capacidades de ADC" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) no soporta para pull" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pines no válidos para SPI" + +#~ msgid "STA must be active" +#~ msgstr "STA debe estar activo" + +#~ msgid "STA required" +#~ msgstr "STA requerido" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) no existe" + +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) no puede leer" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Incapaz de montar de nuevo el sistema de archivos" + +#~ msgid "Unknown type" +#~ msgstr "Tipo desconocido" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Usa esptool para borrar la flash y vuelve a cargar Python en su lugar" + +#~ msgid "buffer too long" +#~ msgstr "buffer demasiado largo" + +#~ msgid "can query only one param" +#~ msgstr "puede consultar solo un param" + +#~ msgid "can't get AP config" +#~ msgstr "no se puede obtener AP config" + +#~ msgid "can't get STA config" +#~ msgstr "no se puede obtener STA config" + +#~ msgid "can't set AP config" +#~ msgstr "no se puede establecer AP config" + +#~ msgid "can't set STA config" +#~ msgstr "no se puede establecer STA config" + +#~ msgid "either pos or kw args are allowed" +#~ msgstr "ya sea pos o kw args son permitidos" + +#~ msgid "expecting a pin" +#~ msgstr "esperando un pin" + +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "la ubicación de la flash debe estar debajo de 1MByte" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la frecuencia solo puede ser 80MHz o 160MHz" + +#~ msgid "impossible baudrate" +#~ msgstr "baudrate imposible" + +#~ msgid "invalid alarm" +#~ msgstr "alarma inválida" + +#~ msgid "invalid buffer length" +#~ msgstr "longitud de buffer inválida" + +#~ msgid "invalid data bits" +#~ msgstr "data bits inválidos" + +#~ msgid "invalid pin" +#~ msgstr "pin inválido" + +#~ msgid "invalid stop bits" +#~ msgstr "stop bits inválidos" + +#~ msgid "len must be multiple of 4" +#~ msgstr "len debe de ser múltiple de 4" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "falló la asignación de memoria, asignando %u bytes para código nativo" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "no es un canal ADC válido: %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "pin sin capacidades IRQ" + #~ msgid "position must be 2-tuple" #~ msgstr "posición debe ser 2-tuple" + +#~ msgid "scan failed" +#~ msgstr "scan ha fallado" + +#~ msgid "unknown config param" +#~ msgstr "parámetro config desconocido" + +#~ msgid "unknown status param" +#~ msgstr "status param desconocido" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() ha fallado" diff --git a/locale/fil.po b/locale/fil.po index 230a09597..c0aaf93bb 100644 --- a/locale/fil.po +++ b/locale/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-12-20 22:15-0800\n" "Last-Translator: Timothy \n" "Language-Team: fil\n" @@ -52,7 +52,7 @@ msgstr "%q indeks wala sa sakop" msgid "%q indices must be integers, not %s" msgstr "%q indeks ay dapat integers, hindi %s" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "%q must be >= 1" @@ -63,7 +63,7 @@ msgstr "aarehas na haba dapat ang buffer slices" msgid "%q should be an int" msgstr "y ay dapat int" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "" "Ang %q() ay kumukuha ng %d positional arguments pero %d lang ang binigay" @@ -220,10 +220,6 @@ msgstr "3-arg pow() hindi suportado" msgid "A hardware interrupt channel is already in use" msgstr "Isang channel ng hardware interrupt ay ginagamit na" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP kailangan" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -251,7 +247,7 @@ msgstr "Lahat ng I2C peripherals ginagamit" msgid "All event channels in use" msgstr "Lahat ng event channels ginagamit" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "Lahat ng sync event channels ay ginagamit" @@ -259,8 +255,8 @@ msgstr "Lahat ng sync event channels ay ginagamit" msgid "All timers for this pin are in use" msgstr "Lahat ng timers para sa pin na ito ay ginagamit" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -332,7 +328,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Mali ang size ng buffer. Dapat %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Buffer dapat ay hindi baba sa 1 na haba" @@ -351,10 +347,6 @@ msgstr "buffer ay dapat bytes-like object" msgid "Bytes must be between 0 and 255." msgstr "Sa gitna ng 0 o 255 dapat ang bytes." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "C-level assert" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -376,18 +368,10 @@ msgstr "Hindi mapalitan ang pangalan sa Central mode" msgid "Can't connect in Peripheral mode" msgstr "Hindi maconnect sa Peripheral mode" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Hindi maka connect sa AP" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Hindi mabura ang values" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Hindi ma disconnect sa AP" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -415,14 +399,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "Hindi ma-remount '/' kapag aktibo ang USB." #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "Hindi ma-reset sa bootloader dahil walang bootloader." -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Hindi ma-set ang STA Config" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Hindi ma i-set ang value kapag ang direksyon ay input." @@ -439,10 +418,6 @@ msgstr "Hindi maaaring ilipat kapag walang MOSI at MISO pin." msgid "Cannot unambiguously get sizeof scalar" msgstr "Hindi puedeng hindi sigurado ang get sizeof scalar" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Hindi ma-update i/f status" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Hindi maaring isulat kapag walang MOSI pin." @@ -475,7 +450,7 @@ msgstr "Clock unit ginagamit" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Sa gitna ng 0 o 255 dapat ang bytes." @@ -515,8 +490,8 @@ msgstr "graphic ay dapat 2048 bytes ang haba" msgid "Data chunk must follow fmt chunk" msgstr "Dapat sunurin ng Data chunk ang fmt chunk" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Hindi makasya ang data sa loob ng advertisement packet" @@ -535,37 +510,22 @@ msgstr "" msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Hindi alam ipasa ang object sa native function" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Drive mode ay hindi ginagamit kapag ang direksyon ay input." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "Walang safemode support ang ESP8266." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "Walang pull down support ang ESP8266." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "Ginagamit na ang EXTINT channel" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Pagkakamali sa ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "May pagkakamali sa REGEX" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Umasa ng %q" @@ -616,7 +576,6 @@ msgstr "Nabigong ilaan ang RX buffer" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Nabigong ilaan ang RX buffer ng %d bytes" @@ -701,8 +660,8 @@ msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" @@ -722,8 +681,8 @@ msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" msgid "Failed to stop advertising" msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" @@ -764,20 +723,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "Function nangangailangan ng lock" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "Walang pull down support ang GPI016." - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Puno ang group" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "I/O operasyon sa saradong file" @@ -851,16 +806,16 @@ msgstr "Mali ang file" msgid "Invalid format chunk size" msgstr "Mali ang format ng chunk size" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Mali ang bilang ng bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Mali ang phase" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Mali ang pin" @@ -873,14 +828,15 @@ msgstr "Mali ang pin para sa kaliwang channel" msgid "Invalid pin for right channel" msgstr "Mali ang pin para sa kanang channel" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Mali ang pins" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Mali ang polarity" @@ -931,11 +887,6 @@ msgstr "Hindi ma-initialize ang MISO pin." msgid "MOSI pin init failed." msgstr "Hindi ma-initialize ang MOSI pin." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Pinakamataas na PWM frequency ay %dhz." - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -953,16 +904,6 @@ msgstr "CircuitPython fatal na pagkakamali.\n" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "Ang delay ng startup ng mikropono ay dapat na nasa 0.0 hanggang 1.0" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Pinakamababang PWM frequency ay 1hz." - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"Hindi sinusuportahan ang maraming mga PWM frequency. PWM na naka-set sa %dhz." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -976,10 +917,6 @@ msgstr "Walang DAC sa chip" msgid "No DMA channel found" msgstr "Walang DMA channel na mahanap" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Walang PulseIn support sa %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Walang RX pin" @@ -1012,12 +949,8 @@ msgstr "Walang libreng GCLKs" msgid "No hardware random available" msgstr "Walang magagamit na hardware random" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Hindi supportado ng hardware ang analog out." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Walang support sa hardware ang pin" @@ -1034,10 +967,6 @@ msgstr "Walang file/directory" msgid "Not connected" msgstr "Hindi maka connect sa AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "Hindi playing" @@ -1079,10 +1008,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Tanging suportado ang TX sa UART1 (GPIO2)." - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "Oversample ay dapat multiple ng 8." @@ -1098,32 +1023,15 @@ msgid "" msgstr "" "PWM frequency hindi writable kapag variable_frequency ay False sa pag buo." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "Walang PWM support sa pin %d" - #: py/moduerrno.c msgid "Permission denied" msgstr "Walang pahintulot" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Walang kakayahang ADC ang pin %q" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "Ang pin ay walang kakayahan sa ADC" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Walang pull support ang Pin(16)" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Mali ang pins para sa SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1146,7 +1054,7 @@ msgstr "Pull hindi ginagamit kapag ang direksyon ay output." msgid "RTC calibration is not supported on this board" msgstr "RTC calibration ay hindi supportado ng board na ito" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "Hindi supportado ang RTC sa board na ito" @@ -1188,14 +1096,6 @@ msgstr "Tumatakbo sa safe mode! Hindi tumatakbo ang nai-save na code.\n" msgid "SDA or SCL needs a pull up" msgstr "Kailangan ng pull up resistors ang SDA o SCL" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "Dapat aktibo ang STA" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA kailangan" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "Sample rate ay dapat positibo" @@ -1214,8 +1114,8 @@ msgstr "Serializer ginagamit" msgid "Slice and value different lengths." msgstr "Slice at value iba't ibang haba." -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Hindi suportado ang Slices" @@ -1305,7 +1205,7 @@ msgstr "Para lumabas, paki-reset ang board na wala ang " msgid "Too many channels in sample." msgstr "Sobra ang channels sa sample." -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1321,15 +1221,6 @@ msgstr "Traceback (pinakahuling huling tawag): \n" msgid "Tuple or struct_time argument required" msgstr "Tuple o struct_time argument kailangan" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "Walang UART(%d)" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "Hindi mabasa ang UART(1)" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "Busy ang USB" @@ -1368,10 +1259,6 @@ msgstr "Hindi ma-init ang parser" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Hindi ma-remount ang filesystem" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Hindi ma i-sulat sa NVM." @@ -1381,10 +1268,6 @@ msgstr "Hindi ma i-sulat sa NVM." msgid "Unexpected nrfx uuid type" msgstr "hindi inaasahang indent" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Hindi alam ang type" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1411,11 +1294,6 @@ msgstr "Hindi sinusuportahang operasyon" msgid "Unsupported pull value." msgstr "Hindi suportado ang pull value." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Gamitin ang esptool upang burahin ang flash at muling i-upload ang Python" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "" @@ -1455,11 +1333,6 @@ msgstr "Ikaw ay tumatakbo sa safe mode dahil may masamang nangyari.\n" msgid "You requested starting safe mode by " msgstr "Ikaw ang humiling sa safe mode sa pamamagitan ng " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "[addrinfo error %d]" - #: py/objtype.c msgid "__init__() should return None" msgstr "__init __ () dapat magbalik na None" @@ -1481,7 +1354,7 @@ msgstr "a bytes-like object ay kailangan" msgid "abort() called" msgstr "abort() tinawag" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "address %08x ay hindi pantay sa %d bytes" @@ -1510,7 +1383,7 @@ msgstr "hindi tugma ang argument num/types" msgid "argument should be a '%q' not a '%q'" msgstr "argument ay dapat na '%q' hindi '%q'" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "array/bytes kinakailangan sa kanang bahagi" @@ -1572,16 +1445,12 @@ msgstr "buffer ay dapat bytes-like object" msgid "buffer size must match format" msgstr "aarehas na haba dapat ang buffer slices" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "aarehas na haba dapat ang buffer slices" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "masyadong mahaba ng buffer" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "masyadong maliit ang buffer" @@ -1634,10 +1503,6 @@ msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Xtensa assembly" msgid "can only save bytecode" msgstr "maaring i-save lamang ang bytecode" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "maaaring i-query lamang ang isang param" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1711,14 +1576,6 @@ msgid "can't do truncated division of a complex number" msgstr "" "hindi maaaring gawin ang truncated division ng isang kumplikadong numero" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "hindi makuha ang AP config" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "hindi makuha ang STA config" - #: py/compile.c msgid "can't have multiple **x" msgstr "hindi puede ang maraming **x" @@ -1747,14 +1604,6 @@ msgstr "hindi mapadala ang send throw sa isang kaka umpisang generator" msgid "can't send non-None value to a just-started generator" msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "hindi makuha ang AP config" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "hindi makuha ang STA config" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "hindi ma i-set ang attribute" @@ -1845,7 +1694,7 @@ msgstr "color ay dapat na int" msgid "complex division by zero" msgstr "kumplikadong dibisyon sa pamamagitan ng zero" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "kumplikadong values hindi sinusuportahan" @@ -1890,15 +1739,11 @@ msgstr "ang destination_length ay dapat na isang int >= 0" msgid "dict update sequence has wrong length" msgstr "may mali sa haba ng dict update sequence" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "dibisyon ng zero" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "pos o kw args ang pinahihintulutan" - #: py/objdeque.c msgid "empty" msgstr "walang laman" @@ -1949,10 +1794,6 @@ msgstr "umaasa ng tuple/list" msgid "expecting a dict for keyword args" msgstr "umaasa ng dict para sa keyword args" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "umaasa ng isang pin" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "umaasa ng assembler instruction" @@ -1973,10 +1814,6 @@ msgstr "dagdag na keyword argument na ibinigay" msgid "extra positional arguments given" msgstr "dagdag na positional argument na ibinigay" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "file ay dapat buksan sa byte mode" @@ -1993,10 +1830,6 @@ msgstr "unang argument ng super() ay dapat type" msgid "firstbit must be MSB" msgstr "firstbit ay dapat MSB" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "dapat na mas mababa sa 1MB ang lokasyon ng flash" - #: py/objint.c msgid "float too big" msgstr "masyadong malaki ang float" @@ -2009,10 +1842,6 @@ msgstr "font ay dapat 2048 bytes ang haba" msgid "format requires a dict" msgstr "kailangan ng format ng dict" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "ang frequency ay dapat 80Mhz or 160MHz lamang" - #: py/objdeque.c msgid "full" msgstr "puno" @@ -2026,7 +1855,7 @@ msgstr "ang function ay hindi kumukuha ng mga argumento ng keyword" msgid "function expected at most %d arguments, got %d" msgstr "function na inaasahang %d ang argumento, ngunit %d ang nakuha" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "ang function ay nakakuha ng maraming values para sa argument '%q'" @@ -2048,7 +1877,7 @@ msgstr "function nangangailangan ng keyword argument '%q'" msgid "function missing required positional argument #%d" msgstr "function nangangailangan ng positional argument #%d" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "" @@ -2082,10 +1911,6 @@ msgstr "identifier ginawang global" msgid "identifier redefined as nonlocal" msgstr "identifier ginawang nonlocal" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "impossibleng baudrate" - #: py/objstr.c msgid "incomplete format" msgstr "hindi kumpleto ang format" @@ -2099,8 +1924,7 @@ msgid "incorrect padding" msgstr "mali ang padding" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "index wala sa sakop" @@ -2132,26 +1956,14 @@ msgstr "maling I2C peripheral" msgid "invalid SPI peripheral" msgstr "hindi wastong SPI peripheral" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "mali ang alarm" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "mali ang mga argumento" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "mali ang buffer length" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "mali ang cert" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "mali ang data bits" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "mali ang dupterm index" @@ -2172,19 +1984,11 @@ msgstr "mali ang key" msgid "invalid micropython decorator" msgstr "mali ang micropython decorator" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "mali ang pin" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "mali ang step" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "mali ang stop bits" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "mali ang sintaks" @@ -2233,10 +2037,6 @@ msgstr "label '%d' kailangan na i-define" msgid "label redefined" msgstr "ang label ay na-define ulit" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len ay dapat multiple ng 4" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "length argument ay walang pahintulot sa ganitong type" @@ -2265,7 +2065,7 @@ msgstr "long int hindi sinusuportahan sa build na ito" msgid "map buffer too small" msgstr "masyadong maliit ang buffer map" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "may pagkakamali sa math domain" @@ -2278,12 +2078,6 @@ msgstr "lumagpas ang maximum recursion depth" msgid "memory allocation failed, allocating %u bytes" msgstr "nabigo ang paglalaan ng memorya, paglalaan ng %u bytes" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"nabigo ang paglalaan ng memorya, naglalaan ng %u bytes para sa native code" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock" @@ -2342,7 +2136,7 @@ msgstr "native yield" msgid "need more than %d values to unpack" msgstr "kailangan ng higit sa %d na halaga upang i-unpack" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "negatibong power na walang float support" @@ -2366,7 +2160,7 @@ msgstr "no binding para sa nonlocal, nahanap" msgid "no module named '%q'" msgstr "walang module na '%q'" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "walang ganoon na attribute" @@ -2390,11 +2184,6 @@ msgstr "non-keyword arg sa huli ng keyword arg" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "hindi tamang ADC Channel: %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "hindi lahat ng arguments na i-convert habang string formatting" @@ -2453,13 +2242,13 @@ msgstr "object na may buffer protocol kinakailangan" msgid "odd-length string" msgstr "odd-length string" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c #, fuzzy msgid "offset out of bounds" msgstr "wala sa sakop ang address" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" @@ -2476,7 +2265,7 @@ msgstr "ord() umaasa ng character pero string ng %d haba ang nakita" msgid "overflow converting long int to machine word" msgstr "overflow nagcoconvert ng long int sa machine word" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "ang palette ay dapat 32 bytes ang haba" @@ -2496,10 +2285,6 @@ msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence a2 hanggang a5" msgid "parameters must be registers in sequence r0 to r3" msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence r0 hanggang r3" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "walang IRQ capabilities ang pin" - #: shared-bindings/displayio/Bitmap.c #, fuzzy msgid "pixel coordinates out of bounds" @@ -2515,7 +2300,6 @@ msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "pop mula sa walang laman na PulseIn" @@ -2589,10 +2373,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "pagpili ng rate wala sa sakop" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "nabigo ang pag-scan" - #: py/modmicropython.c msgid "schedule stack full" msgstr "puno na ang schedule stack" @@ -2789,7 +2569,7 @@ msgstr "hindi inaasahang indent" msgid "unexpected keyword argument" msgstr "hindi inaasahang argumento ng keyword" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "hindi inaasahang argumento ng keyword na '%q'" @@ -2801,10 +2581,6 @@ msgstr "unicode name escapes" msgid "unindent does not match any outer indentation level" msgstr "unindent hindi tugma sa indentation level sa labas" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "hindi alam na config param" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2825,10 +2601,6 @@ msgstr "hindi alam ang format code '%c' sa object na ang type ay 'float'" msgid "unknown format code '%c' for object of type 'str'" msgstr "hindi alam ang format ng code na '%c' para sa object ng type ay 'str'" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "hindi alam na status param" - #: py/compile.c msgid "unknown type" msgstr "hindi malaman ang type (unknown type)" @@ -2880,10 +2652,6 @@ msgstr "hindi sinusuportahang type para sa %q: '%s', '%s'" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "nabigo ang wifi_set_ip_info()" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" @@ -2914,6 +2682,36 @@ msgstr "wala sa sakop ang address" msgid "zero step" msgstr "zero step" +#~ msgid "AP required" +#~ msgstr "AP kailangan" + +#~ msgid "C-level assert" +#~ msgstr "C-level assert" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Hindi maka connect sa AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Hindi ma disconnect sa AP" + +#~ msgid "Cannot set STA config" +#~ msgstr "Hindi ma-set ang STA Config" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Hindi ma-update i/f status" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Hindi alam ipasa ang object sa native function" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "Walang safemode support ang ESP8266." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "Walang pull down support ang ESP8266." + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Pagkakamali sa ffi_prep_cif" + #, fuzzy #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "Hindi mabalitaan ang attribute value, status: 0x%08lX" @@ -2925,11 +2723,147 @@ msgstr "zero step" #~ msgid "Function requires lock." #~ msgstr "Kailangan ng lock ang function." +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "Walang pull down support ang GPI016." + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Pinakamataas na PWM frequency ay %dhz." + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Pinakamababang PWM frequency ay 1hz." + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Hindi sinusuportahan ang maraming mga PWM frequency. PWM na naka-set sa " +#~ "%dhz." + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Walang PulseIn support sa %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Hindi supportado ng hardware ang analog out." + #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Tanging Windows format, uncompressed BMP lamang ang supportado %d" #~ msgid "Only true color (24 bpp or higher) BMP supported %x" #~ msgstr "Dapat true color (24 bpp o mas mataas) BMP lamang ang supportado %x" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Tanging suportado ang TX sa UART1 (GPIO2)." + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "Walang PWM support sa pin %d" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Walang kakayahang ADC ang pin %q" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Walang pull support ang Pin(16)" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Mali ang pins para sa SPI" + +#~ msgid "STA must be active" +#~ msgstr "Dapat aktibo ang STA" + +#~ msgid "STA required" +#~ msgstr "STA kailangan" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "Walang UART(%d)" + +#~ msgid "UART(1) can't read" +#~ msgstr "Hindi mabasa ang UART(1)" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Hindi ma-remount ang filesystem" + +#~ msgid "Unknown type" +#~ msgstr "Hindi alam ang type" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Gamitin ang esptool upang burahin ang flash at muling i-upload ang Python" + +#~ msgid "[addrinfo error %d]" +#~ msgstr "[addrinfo error %d]" + +#~ msgid "buffer too long" +#~ msgstr "masyadong mahaba ng buffer" + +#~ msgid "can query only one param" +#~ msgstr "maaaring i-query lamang ang isang param" + +#~ msgid "can't get AP config" +#~ msgstr "hindi makuha ang AP config" + +#~ msgid "can't get STA config" +#~ msgstr "hindi makuha ang STA config" + +#~ msgid "can't set AP config" +#~ msgstr "hindi makuha ang AP config" + +#~ msgid "can't set STA config" +#~ msgstr "hindi makuha ang STA config" + +#~ msgid "either pos or kw args are allowed" +#~ msgstr "pos o kw args ang pinahihintulutan" + +#~ msgid "expecting a pin" +#~ msgstr "umaasa ng isang pin" + +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "dapat na mas mababa sa 1MB ang lokasyon ng flash" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "ang frequency ay dapat 80Mhz or 160MHz lamang" + +#~ msgid "impossible baudrate" +#~ msgstr "impossibleng baudrate" + +#~ msgid "invalid alarm" +#~ msgstr "mali ang alarm" + +#~ msgid "invalid buffer length" +#~ msgstr "mali ang buffer length" + +#~ msgid "invalid data bits" +#~ msgstr "mali ang data bits" + +#~ msgid "invalid pin" +#~ msgstr "mali ang pin" + +#~ msgid "invalid stop bits" +#~ msgstr "mali ang stop bits" + +#~ msgid "len must be multiple of 4" +#~ msgstr "len ay dapat multiple ng 4" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "nabigo ang paglalaan ng memorya, naglalaan ng %u bytes para sa native code" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "hindi tamang ADC Channel: %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "walang IRQ capabilities ang pin" + #~ msgid "position must be 2-tuple" #~ msgstr "position ay dapat 2-tuple" + +#~ msgid "scan failed" +#~ msgstr "nabigo ang pag-scan" + +#~ msgid "unknown config param" +#~ msgstr "hindi alam na config param" + +#~ msgid "unknown status param" +#~ msgstr "hindi alam na status param" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "nabigo ang wifi_set_ip_info()" diff --git a/locale/fr.po b/locale/fr.po index f9c007825..f117b3e30 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-12-23 20:05+0100\n" "Last-Translator: Pierrick Couturier \n" "Language-Team: fr\n" @@ -51,7 +51,7 @@ msgstr "index %q hors gamme" msgid "%q indices must be integers, not %s" msgstr "les indices %q doivent être des entiers, pas %s" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "%q must be >= 1" @@ -62,7 +62,7 @@ msgstr "les slices de tampon doivent être de longueurs égales" msgid "%q should be an int" msgstr "y doit être un entier (int)" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "%q() prend %d arguments mais %d ont été donnés" @@ -218,10 +218,6 @@ msgstr "pow() avec 3 arguments non supporté" msgid "A hardware interrupt channel is already in use" msgstr "Un canal d'interruptions est déjà utilisé" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "'AP' requis" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -251,7 +247,7 @@ msgstr "Tous les périphériques I2C sont utilisés" msgid "All event channels in use" msgstr "Tous les canaux d'événements sont utilisés" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "Tous les canaux d'événements de synchro sont utilisés" @@ -259,8 +255,8 @@ msgstr "Tous les canaux d'événements de synchro sont utilisés" msgid "All timers for this pin are in use" msgstr "Tous les timers pour cette broche sont utilisés" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -333,7 +329,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Tampon de taille incorrect. Devrait être de %d octets." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Le tampon doit être de longueur au moins 1" @@ -352,10 +348,6 @@ msgstr "le tampon doit être un objet bytes-like" msgid "Bytes must be between 0 and 255." msgstr "Les octets 'bytes' doivent être entre 0 et 255" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -377,18 +369,10 @@ msgstr "Modification du nom impossible en mode Central" msgid "Can't connect in Peripheral mode" msgstr "Impossible de se connecter en mode Peripheral" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Impossible de se connecter à 'AP'" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Impossible de supprimer les valeurs" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Impossible de se déconnecter de 'AP'" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -416,15 +400,10 @@ msgid "Cannot remount '/' when USB is active." msgstr "'/' ne peut être remonté quand l'USB est actif." #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" "Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader." -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Impossible de configurer STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Impossible d'affecter une valeur quand la direction est 'input'." @@ -441,10 +420,6 @@ msgstr "Pas de transfert sans broches MOSI et MISO" msgid "Cannot unambiguously get sizeof scalar" msgstr "Impossible d'obtenir la taille du scalaire sans ambigüité" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "le status i/f ne peut être mis à jour" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Impossible d'écrire sans broche MOSI." @@ -477,7 +452,7 @@ msgstr "Horloge en cours d'utilisation" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Les octets 'bytes' doivent être entre 0 et 255" @@ -517,8 +492,8 @@ msgstr "le graphic doit être long de 2048 octets" msgid "Data chunk must follow fmt chunk" msgstr "Un bloc de données doit suivre un bloc de format" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c msgid "Data too large for advertisement packet" msgstr "" @@ -534,37 +509,22 @@ msgstr "La capacité de la cible est plus petite que destination_length." msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Ne sais pas comment passer l'objet à une fonction native" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Le mode Drive n'est pas utilisé quand la direction est 'input'." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "l'ESP8266 ne supporte pas le mode sans-échec" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "L'ESP8266 ne supporte pas le rappel (pull-down)" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "Canal EXTINT déjà utilisé" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Erreur dans ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "Erreur dans l'expression régulière" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Attendu : %q" @@ -615,7 +575,6 @@ msgstr "Echec de l'allocation du tampon RX" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Echec de l'allocation de %d octets du tampon RX" @@ -700,8 +659,8 @@ msgstr "Impossible de libérer mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "Echec de l'ajout de service, statut: 0x%08lX" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" @@ -721,8 +680,8 @@ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" msgid "Failed to stop advertising" msgstr "Echec de l'ajout de service, statut: 0x%08lX" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Echec de l'ajout de service, statut: 0x%08lX" @@ -763,20 +722,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "La fonction nécessite un verrou" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "le GPIO16 ne supporte pas le tirage (pull-up)" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Groupe plein" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "opération d'E/S sur un fichier fermé" @@ -853,16 +808,16 @@ msgstr "Fichier invalide" msgid "Invalid format chunk size" msgstr "Taille de bloc de formatage invalide" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Nombre de bits invalide" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Phase invalide" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Broche invalide" @@ -875,14 +830,15 @@ msgstr "Broche invalide pour le canal gauche" msgid "Invalid pin for right channel" msgstr "Broche invalide pour le canal droit" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Broches invalides" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Polarité invalide" @@ -934,11 +890,6 @@ msgstr "Echec de l'init. de la broche MISO" msgid "MOSI pin init failed." msgstr "Echec de l'init. de la broche MOSI" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "La fréquence de PWM maximale est %dHz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -956,16 +907,6 @@ msgstr "Erreur fatale de MicroPython.\n" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "Le délais au démarrage du micro doit être entre 0.0 et 1.0" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "La fréquence de PWM minimale est 1Hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"Les fréquences de PWM multiples ne sont pas supportées. PWM réglé à %dHz" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -979,10 +920,6 @@ msgstr "Pas de DAC sur la puce" msgid "No DMA channel found" msgstr "Aucun canal DMA trouvé" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Pas de support de PulseIn pour %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Pas de broche RX" @@ -1015,12 +952,8 @@ msgstr "Pas de GCLK libre" msgid "No hardware random available" msgstr "Pas de source matérielle d'aléa disponible" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Pas de support matériel pour une sortie analogique" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Pas de support matériel pour cette broche" @@ -1037,10 +970,6 @@ msgstr "Fichier/dossier introuvable" msgid "Not connected" msgstr "Impossible de se connecter à 'AP'" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "Ne joue pas" @@ -1083,10 +1012,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Seul le tx est supporté sur l'UART1 (GPIO2)." - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "Le sur-échantillonage doit être un multiple de 8." @@ -1106,32 +1031,15 @@ msgstr "" "La fréquence de PWM n'est pas modifiable quand variable_frequency est False " "à la construction." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "La broche %d ne supporte pas le PWM" - #: py/moduerrno.c msgid "Permission denied" msgstr "Permission refusée" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "La broche %q n'a pas de convertisseur analogique-digital" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "la broche ne peut être utilisé pour l'ADC" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) ne supporte pas le tirage (pull)" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Broche invalide pour le SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1153,7 +1061,7 @@ msgstr "Le tirage 'pull' n'est pas utilisé quand la direction est 'output'." msgid "RTC calibration is not supported on this board" msgstr "calibration de la RTC non supportée sur cette carte" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "RTC non supportée sur cette carte" @@ -1195,14 +1103,6 @@ msgstr "Mode sans-échec! Le code sauvegardé ne s'éxecute pas.\n" msgid "SDA or SCL needs a pull up" msgstr "SDA ou SCL a besoin d'une résistance de tirage ('pull up')" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "'STA' doit être actif" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "'STA' requis" - #: shared-bindings/audioio/Mixer.c #, fuzzy msgid "Sample rate must be positive" @@ -1222,8 +1122,8 @@ msgstr "Sérialiseur en cours d'utilisation" msgid "Slice and value different lengths." msgstr "Slice et valeur de tailles différentes" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Slices non supportées" @@ -1316,7 +1216,7 @@ msgstr "Pour quitter, redémarrez la carte SVP sans " msgid "Too many channels in sample." msgstr "Trop de canaux dans l'échantillon." -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1332,15 +1232,6 @@ msgstr "Trace (appels les plus récents en dernier):\n" msgid "Tuple or struct_time argument required" msgstr "Argument de type tuple ou struct_time nécessaire" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) n'existe pas" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) ne peut pas lire" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB occupé" @@ -1379,10 +1270,6 @@ msgstr "Impossible d'initialiser le parser" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Impossible de remonter le système de fichiers" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Impossible d'écrire sur la nvm." @@ -1392,10 +1279,6 @@ msgstr "Impossible d'écrire sur la nvm." msgid "Unexpected nrfx uuid type" msgstr "indentation inattendue" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Type inconnu" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1422,11 +1305,6 @@ msgstr "Opération non supportée" msgid "Unsupported pull value." msgstr "Valeur de tirage 'pull' non supportée." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Utilisez 'esptool' pour effacer la flash et rechargez Python à la place" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "les fonctions Viper ne supportent pas plus de 4 arguments actuellement" @@ -1465,11 +1343,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Vous avez demandé à démarrer en mode sans-échec par " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "__init__() doit retourner None" @@ -1491,7 +1364,7 @@ msgstr "un objet 'bytes-like' est requis" msgid "abort() called" msgstr "abort() appelé" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "l'adresse %08x n'est pas alignée sur %d octets" @@ -1520,7 +1393,7 @@ msgstr "argument num/types ne correspond pas" msgid "argument should be a '%q' not a '%q'" msgstr "l'argument devrait être un(e) '%q', pas '%q'" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "tableau/octets requis à droite" @@ -1584,16 +1457,12 @@ msgstr "le tampon doit être un objet bytes-like" msgid "buffer size must match format" msgstr "les slices de tampon doivent être de longueurs égales" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "les slices de tampon doivent être de longueurs égales" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "tampon trop long" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "tampon trop petit" @@ -1646,10 +1515,6 @@ msgstr "Maximum 4 paramètres pour l'assembleur Xtensa" msgid "can only save bytecode" msgstr "ne peut sauvegarder que du bytecode" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "ne peut demander qu'un seul paramètre" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1723,14 +1588,6 @@ msgstr "opération binaire impossible entre '%q' et '%q'" msgid "can't do truncated division of a complex number" msgstr "on ne peut pas faire de division tronquée de nombres complexes" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "impossible de récupérer la config de 'AP'" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "impossible de récupérer la config de 'STA'" - #: py/compile.c msgid "can't have multiple **x" msgstr "il ne peut y avoir de **x multiples" @@ -1761,14 +1618,6 @@ msgstr "" "on ne peut envoyer une valeur autre que None à un générateur fraîchement " "démarré" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "impossible de régler la config de 'AP'" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "impossible de régler la config de 'STA'" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "attribut non modifiable" @@ -1864,7 +1713,7 @@ msgstr "la couleur doit être un entier (int)" msgid "complex division by zero" msgstr "division complexe par zéro" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "valeurs complexes non supportées" @@ -1907,15 +1756,11 @@ msgstr "destination_length doit être un entier >= 0" msgid "dict update sequence has wrong length" msgstr "la séquence de mise à jour de dict a une mauvaise longueur" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "division par zéro" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "soit 'pos', soit 'kw' est permis en argument" - #: py/objdeque.c msgid "empty" msgstr "vide" @@ -1966,10 +1811,6 @@ msgstr "un tuple ou une liste est attendu" msgid "expecting a dict for keyword args" msgstr "un dict est attendu pour les arguments nommés" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "une broche (Pin) est attendue" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "une instruction assembleur est attendue" @@ -1990,10 +1831,6 @@ msgstr "argument nommé donné en plus" msgid "extra positional arguments given" msgstr "argument positionnel donné en plus" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "le fichier doit être un fichier ouvert en mode 'byte'" @@ -2010,10 +1847,6 @@ msgstr "le premier argument de super() doit être un type" msgid "firstbit must be MSB" msgstr "le 1er bit doit être le MSB" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "l'emplacement en mémoire flash doit être inférieure à 1Mo" - #: py/objint.c msgid "float too big" msgstr "nombre flottant trop grand" @@ -2026,10 +1859,6 @@ msgstr "la fonte doit être longue de 2048 octets" msgid "format requires a dict" msgstr "le format nécessite un dict" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "la fréquence doit être soit 80MHz soit 160MHz" - #: py/objdeque.c msgid "full" msgstr "plein" @@ -2043,7 +1872,7 @@ msgstr "la fonction ne prend pas d'arguments nommés" msgid "function expected at most %d arguments, got %d" msgstr "la fonction attendait au plus %d arguments, reçu %d" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "la fonction a reçu plusieurs valeurs pour l'argument '%q'" @@ -2065,7 +1894,7 @@ msgstr "il manque l'argument nommé obligatoire '%q'" msgid "function missing required positional argument #%d" msgstr "il manque l'argument obligatoire #%d" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "la fonction prend %d argument(s) mais %d ont été donné(s)" @@ -2098,10 +1927,6 @@ msgstr "identifiant redéfini comme global" msgid "identifier redefined as nonlocal" msgstr "identifiant redéfini comme nonlocal" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "débit impossible" - #: py/objstr.c msgid "incomplete format" msgstr "format incomplet" @@ -2115,8 +1940,7 @@ msgid "incorrect padding" msgstr "espacement incorrect" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "index hors gamme" @@ -2148,26 +1972,14 @@ msgstr "périphérique I2C invalide" msgid "invalid SPI peripheral" msgstr "périphérique SPI invalide" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarme invalide" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "arguments invalides" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "longueur de tampon invalide" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "certificat invalide" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "bits de données invalides" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "index invalide pour dupterm" @@ -2188,19 +2000,11 @@ msgstr "clé invalide" msgid "invalid micropython decorator" msgstr "décorateur micropython invalide" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "broche invalide" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "pas invalide" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "bits d'arrêt invalides" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "syntaxe invalide" @@ -2247,10 +2051,6 @@ msgstr "label '%q' non supporté" msgid "label redefined" msgstr "label redéfini" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "'len' doit être un multiple de 4" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "argument lenght non permis pour ce type" @@ -2279,7 +2079,7 @@ msgstr "entiers longs non supportés dans cette build" msgid "map buffer too small" msgstr "tampon trop petit" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "erreur de domaine math" @@ -2292,12 +2092,6 @@ msgstr "profondeur maximale de récursivité dépassée" msgid "memory allocation failed, allocating %u bytes" msgstr "l'allocation de mémoire a échoué en allouant %u octets" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"l'allocation de mémoire a échoué en allouant %u octets pour un code natif" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "l'allocation de mémoire a échoué, la pile est vérrouillé" @@ -2356,7 +2150,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "nécessite plus de %d valeur à dégrouper" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "puissance négative sans support des nombres flottants" @@ -2381,7 +2175,7 @@ msgstr "pas de lien trouvé pour nonlocal" msgid "no module named '%q'" msgstr "pas de module '%q'" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "pas de tel attribut" @@ -2406,11 +2200,6 @@ msgstr "argument non-nommé après argument nommé" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "canal ADC non valide : %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2470,13 +2259,13 @@ msgstr "un objet avec un protocol de tampon est nécessaire" msgid "odd-length string" msgstr "chaîne de longueur impaire" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c #, fuzzy msgid "offset out of bounds" msgstr "adresse hors limites" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" @@ -2493,7 +2282,7 @@ msgstr "ord() attend un caractère mais une chaîne de longueur %d a été trouv msgid "overflow converting long int to machine word" msgstr "dépassement de capacité en convertissant un entier long en mot machine" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "la palette doit être longue de 32 octets" @@ -2515,10 +2304,6 @@ msgstr "les paramètres doivent être des registres dans la séquence a2 à a5" msgid "parameters must be registers in sequence r0 to r3" msgstr "les paramètres doivent être des registres dans la séquence r0 à r3" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "la broche ne supporte pas les interruptions (IRQ)" - #: shared-bindings/displayio/Bitmap.c #, fuzzy msgid "pixel coordinates out of bounds" @@ -2535,7 +2320,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "'pop' d'une entrée PulseIn vide" @@ -2609,10 +2393,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "taux d'échantillonage hors gamme" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "échec du scan" - #: py/modmicropython.c msgid "schedule stack full" msgstr "pile de plannification pleine" @@ -2810,7 +2590,7 @@ msgstr "indentation inattendue" msgid "unexpected keyword argument" msgstr "argument nommé imprévu" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "argument nommé '%q' imprévu" @@ -2822,10 +2602,6 @@ msgstr "échappements de nom unicode" msgid "unindent does not match any outer indentation level" msgstr "la désindentation ne correspond à aucune indentation" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "paramètre de config. inconnu" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2846,10 +2622,6 @@ msgstr "code de format '%c' inconnu pour un objet de type 'float'" msgid "unknown format code '%c' for object of type 'str'" msgstr "code de format '%c' inconnu pour un objet de type 'str'" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "paramètre de status inconnu" - #: py/compile.c msgid "unknown type" msgstr "type inconnu" @@ -2902,10 +2674,6 @@ msgstr "type non supporté pour %q: '%s', '%s'" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() a échoué" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" @@ -2937,6 +2705,33 @@ msgstr "adresse hors limites" msgid "zero step" msgstr "'step' nul" +#~ msgid "AP required" +#~ msgstr "'AP' requis" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Impossible de se connecter à 'AP'" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Impossible de se déconnecter de 'AP'" + +#~ msgid "Cannot set STA config" +#~ msgstr "Impossible de configurer STA" + +#~ msgid "Cannot update i/f status" +#~ msgstr "le status i/f ne peut être mis à jour" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Ne sais pas comment passer l'objet à une fonction native" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "l'ESP8266 ne supporte pas le mode sans-échec" + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "L'ESP8266 ne supporte pas le rappel (pull-down)" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Erreur dans ffi_prep_cif" + #, fuzzy #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "Impossible de notifier la valeur de l'attribut. status: 0x%08lX" @@ -2948,12 +2743,141 @@ msgstr "'step' nul" #~ msgid "Function requires lock." #~ msgstr "La fonction nécessite un verrou." +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "le GPIO16 ne supporte pas le tirage (pull-up)" + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "La fréquence de PWM maximale est %dHz" + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "La fréquence de PWM minimale est 1Hz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Les fréquences de PWM multiples ne sont pas supportées. PWM réglé à %dHz" + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Pas de support de PulseIn pour %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Pas de support matériel pour une sortie analogique" + #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Seul les BMP non-compressé au format Windows sont supportés %d" #~ msgid "Only true color (24 bpp or higher) BMP supported %x" #~ msgstr "Seul les BMP 24bits ou plus sont supportés %x" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Seul le tx est supporté sur l'UART1 (GPIO2)." + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "La broche %d ne supporte pas le PWM" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "La broche %q n'a pas de convertisseur analogique-digital" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) ne supporte pas le tirage (pull)" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Broche invalide pour le SPI" + +#~ msgid "STA must be active" +#~ msgstr "'STA' doit être actif" + +#~ msgid "STA required" +#~ msgstr "'STA' requis" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) n'existe pas" + +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) ne peut pas lire" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Impossible de remonter le système de fichiers" + +#~ msgid "Unknown type" +#~ msgstr "Type inconnu" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Utilisez 'esptool' pour effacer la flash et rechargez Python à la place" + +#~ msgid "buffer too long" +#~ msgstr "tampon trop long" + +#~ msgid "can query only one param" +#~ msgstr "ne peut demander qu'un seul paramètre" + +#~ msgid "can't get AP config" +#~ msgstr "impossible de récupérer la config de 'AP'" + +#~ msgid "can't get STA config" +#~ msgstr "impossible de récupérer la config de 'STA'" + +#~ msgid "can't set AP config" +#~ msgstr "impossible de régler la config de 'AP'" + +#~ msgid "can't set STA config" +#~ msgstr "impossible de régler la config de 'STA'" + +#~ msgid "either pos or kw args are allowed" +#~ msgstr "soit 'pos', soit 'kw' est permis en argument" + +#~ msgid "expecting a pin" +#~ msgstr "une broche (Pin) est attendue" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "l'emplacement en mémoire flash doit être inférieure à 1Mo" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la fréquence doit être soit 80MHz soit 160MHz" + +#~ msgid "impossible baudrate" +#~ msgstr "débit impossible" + +#~ msgid "invalid alarm" +#~ msgstr "alarme invalide" + +#~ msgid "invalid buffer length" +#~ msgstr "longueur de tampon invalide" + +#~ msgid "invalid data bits" +#~ msgstr "bits de données invalides" + +#~ msgid "invalid pin" +#~ msgstr "broche invalide" + +#~ msgid "invalid stop bits" +#~ msgstr "bits d'arrêt invalides" + +#~ msgid "len must be multiple of 4" +#~ msgstr "'len' doit être un multiple de 4" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "l'allocation de mémoire a échoué en allouant %u octets pour un code natif" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "canal ADC non valide : %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "la broche ne supporte pas les interruptions (IRQ)" + #, fuzzy #~ msgid "position must be 2-tuple" #~ msgstr "position doit être un 2-tuple" + +#~ msgid "scan failed" +#~ msgstr "échec du scan" + +#~ msgid "unknown config param" +#~ msgstr "paramètre de config. inconnu" + +#~ msgid "unknown status param" +#~ msgstr "paramètre de status inconnu" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() a échoué" diff --git a/locale/it_IT.po b/locale/it_IT.po index 693f8a03c..c443d600a 100644 --- a/locale/it_IT.po +++ b/locale/it_IT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-10-02 16:27+0200\n" "Last-Translator: Enrico Paganin \n" "Language-Team: \n" @@ -52,7 +52,7 @@ msgstr "indice %q fuori intervallo" msgid "%q indices must be integers, not %s" msgstr "gli indici %q devono essere interi, non %s" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "%q must be >= 1" @@ -63,7 +63,7 @@ msgstr "slice del buffer devono essere della stessa lunghezza" msgid "%q should be an int" msgstr "y dovrebbe essere un int" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "%q() prende %d argomenti posizionali ma ne sono stati forniti %d" @@ -219,10 +219,6 @@ msgstr "pow() con tre argmomenti non supportata" msgid "A hardware interrupt channel is already in use" msgstr "Un canale di interrupt hardware è già in uso" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP richiesto" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -250,7 +246,7 @@ msgstr "Tutte le periferiche I2C sono in uso" msgid "All event channels in use" msgstr "Tutti i canali eventi utilizati" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "Tutti i canali di eventi sincronizzati in uso" @@ -258,8 +254,8 @@ msgstr "Tutti i canali di eventi sincronizzati in uso" msgid "All timers for this pin are in use" msgstr "Tutti i timer per questo pin sono in uso" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -332,7 +328,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Buffer di lunghezza non valida. Dovrebbe essere di %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Il buffer deve essere lungo almeno 1" @@ -351,10 +347,6 @@ msgstr "i buffer devono essere della stessa lunghezza" msgid "Bytes must be between 0 and 255." msgstr "I byte devono essere compresi tra 0 e 255" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "assert a livello C" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -376,18 +368,10 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Impossible connettersi all'AP" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Impossibile cancellare valori" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Impossible disconnettersi all'AP" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -415,15 +399,10 @@ msgid "Cannot remount '/' when USB is active." msgstr "Non è possibile rimontare '/' mentre l'USB è attiva." #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" "Impossibile resettare nel bootloader poiché nessun bootloader è presente." -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Impossibile impostare la configurazione della STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" @@ -440,10 +419,6 @@ msgstr "Impossibile trasferire senza i pin MOSI e MISO." msgid "Cannot unambiguously get sizeof scalar" msgstr "Impossibile ricavare la grandezza scalare di sizeof inequivocabilmente" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Impossibile aggiornare status di i/f" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Impossibile scrivere senza pin MOSI." @@ -476,7 +451,7 @@ msgstr "Unità di clock in uso" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "I byte devono essere compresi tra 0 e 255" @@ -516,8 +491,8 @@ msgstr "graphic deve essere lunga 2048 byte" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Impossibile inserire dati nel pacchetto di advertisement." @@ -535,37 +510,22 @@ msgstr "La capacità di destinazione è più piccola di destination_length." msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Non so come passare l'oggetto alla funzione nativa" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8266 non supporta la modalità sicura." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 non supporta pull-down" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "Canale EXTINT già in uso" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Errore in ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "Errore nella regex" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Atteso un %q" @@ -616,7 +576,6 @@ msgstr "Impossibile allocare buffer RX" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Fallita allocazione del buffer RX di %d byte" @@ -700,8 +659,8 @@ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" msgid "Failed to start advertising" msgstr "Impossibile avviare advertisement. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Impossibile avviare advertisement. status: 0x%02x" @@ -721,8 +680,8 @@ msgstr "Impossible iniziare la scansione. status: 0x%02x" msgid "Failed to stop advertising" msgstr "Impossibile fermare advertisement. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Impossibile fermare advertisement. status: 0x%02x" @@ -763,20 +722,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 non supporta pull-up" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Gruppo pieno" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "operazione I/O su file chiuso" @@ -852,16 +807,16 @@ msgstr "File non valido" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Numero di bit non valido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Fase non valida" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin non valido" @@ -874,14 +829,15 @@ msgstr "Pin non valido per il canale sinistro" msgid "Invalid pin for right channel" msgstr "Pin non valido per il canale destro" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Pin non validi" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Polarità non valida" @@ -929,11 +885,6 @@ msgstr "inizializzazione del pin MISO fallita." msgid "MOSI pin init failed." msgstr "inizializzazione del pin MOSI fallita." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Frequenza massima su PWM è %dhz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -952,15 +903,6 @@ msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" "Il ritardo di avvio del microfono deve essere nell'intervallo tra 0.0 e 1.0" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Frequenza minima su PWM è 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "Frequenze PWM multiple non supportate. PWM già impostato a %shz." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -974,10 +916,6 @@ msgstr "Nessun DAC sul chip" msgid "No DMA channel found" msgstr "Nessun canale DMA trovato" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Nessun supporto per PulseIn per %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Nessun pin RX" @@ -1010,12 +948,8 @@ msgstr "Nessun GCLK libero" msgid "No hardware random available" msgstr "Nessun generatore hardware di numeri casuali disponibile" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Nessun supporto hardware per l'uscita analogica." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Nessun supporto hardware sul pin" @@ -1032,10 +966,6 @@ msgstr "Nessun file/directory esistente" msgid "Not connected" msgstr "Impossible connettersi all'AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "In pausa" @@ -1078,10 +1008,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "solo slice con step=1 (aka None) sono supportate" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Solo tx supportato su UART1 (GPIO2)." - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "L'oversampling deve essere multiplo di 8." @@ -1101,32 +1027,15 @@ msgstr "" "frequenza PWM frequency non è scrivibile quando variable_frequency è " "impostato nel costruttore a False." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM non è supportato sul pin %d" - #: py/moduerrno.c msgid "Permission denied" msgstr "Permesso negato" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Il pin %q non ha capacità ADC" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "Il pin non ha capacità di ADC" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) non supporta pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pin non validi per SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1149,7 +1058,7 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "calibrazione RTC non supportata su questa scheda" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "RTC non supportato su questa scheda" @@ -1191,14 +1100,6 @@ msgstr "Modalità sicura in esecuzione! Codice salvato non in esecuzione.\n" msgid "SDA or SCL needs a pull up" msgstr "SDA o SCL necessitano un pull-up" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA deve essere attiva" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA richiesta" - #: shared-bindings/audioio/Mixer.c #, fuzzy msgid "Sample rate must be positive" @@ -1219,8 +1120,8 @@ msgstr "Serializer in uso" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Slice non supportate" @@ -1303,7 +1204,7 @@ msgstr "Per uscire resettare la scheda senza " msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1319,15 +1220,6 @@ msgstr "Traceback (chiamata più recente per ultima):\n" msgid "Tuple or struct_time argument required" msgstr "Tupla o struct_time richiesto come argomento" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) non esistente" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) non leggibile" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB occupata" @@ -1366,10 +1258,6 @@ msgstr "Inizilizzazione del parser non possibile" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Imposssibile rimontare il filesystem" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Imposibile scrivere su nvm." @@ -1379,10 +1267,6 @@ msgstr "Imposibile scrivere su nvm." msgid "Unexpected nrfx uuid type" msgstr "indentazione inaspettata" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipo sconosciuto" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1409,10 +1293,6 @@ msgstr "Operazione non supportata" msgid "Unsupported pull value." msgstr "Valore di pull non supportato." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "Usa esptool per cancellare la flash e ricaricare Python invece" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "Le funzioni Viper non supportano più di 4 argomenti al momento" @@ -1447,11 +1327,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "È stato richiesto l'avvio in modalità sicura da " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "[errore addrinfo %d]" - #: py/objtype.c msgid "__init__() should return None" msgstr "__init__() deve ritornare None" @@ -1473,7 +1348,7 @@ msgstr "un oggetto byte-like è richiesto" msgid "abort() called" msgstr "abort() chiamato" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "l'indirizzo %08x non è allineato a %d bytes" @@ -1502,7 +1377,7 @@ msgstr "discrepanza di numero/tipo di argomenti" msgid "argument should be a '%q' not a '%q'" msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" @@ -1566,16 +1441,12 @@ msgstr "" msgid "buffer size must match format" msgstr "slice del buffer devono essere della stessa lunghezza" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "slice del buffer devono essere della stessa lunghezza" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer troppo lungo" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "buffer troppo piccolo" @@ -1629,10 +1500,6 @@ msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" msgid "can only save bytecode" msgstr "È possibile salvare solo bytecode" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "è possibile interrogare solo un parametro" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1704,14 +1571,6 @@ msgstr "impossibile eseguire operazione binaria tra '%q' e '%q'" msgid "can't do truncated division of a complex number" msgstr "impossibile fare il modulo di un numero complesso" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "impossibile recuperare le configurazioni dell'AP" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "impossibile recuperare la configurazione della STA" - #: py/compile.c msgid "can't have multiple **x" msgstr "impossibile usare **x multipli" @@ -1740,14 +1599,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "impossibile impostare le configurazioni dell'AP" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "impossibile impostare le configurazioni della STA" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "impossibile impostare attributo" @@ -1836,7 +1687,7 @@ msgstr "il colore deve essere un int" msgid "complex division by zero" msgstr "complex divisione per zero" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "valori complessi non supportai" @@ -1880,15 +1731,11 @@ msgstr "destination_length deve essere un int >= 0" msgid "dict update sequence has wrong length" msgstr "sequanza di aggiornamento del dizionario ha la lunghezza errata" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "divisione per zero" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "sono permesse solo gli argomenti pos o kw" - #: py/objdeque.c msgid "empty" msgstr "vuoto" @@ -1939,10 +1786,6 @@ msgstr "lista/tupla prevista" msgid "expecting a dict for keyword args" msgstr "argomenti nominati necessitano un dizionario" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "pin atteso" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "istruzione assembler attesa" @@ -1963,10 +1806,6 @@ msgstr "argomento nominato aggiuntivo fornito" msgid "extra positional arguments given" msgstr "argomenti posizonali extra dati" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1983,10 +1822,6 @@ msgstr "" msgid "firstbit must be MSB" msgstr "il primo bit deve essere il più significativo (MSB)" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "Locazione della flash deve essere inferiore a 1mb" - #: py/objint.c msgid "float too big" msgstr "float troppo grande" @@ -1999,10 +1834,6 @@ msgstr "il font deve essere lungo 2048 byte" msgid "format requires a dict" msgstr "la formattazione richiede un dict" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "la frequenza può essere o 80Mhz o 160Mhz" - #: py/objdeque.c msgid "full" msgstr "pieno" @@ -2016,7 +1847,7 @@ msgstr "la funzione non prende argomenti nominati" msgid "function expected at most %d arguments, got %d" msgstr "la funzione prevede al massimo %d argmoneti, ma ne ha ricevuti %d" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "la funzione ha ricevuto valori multipli per l'argomento '%q'" @@ -2038,7 +1869,7 @@ msgstr "argomento nominato '%q' mancante alla funzione" msgid "function missing required positional argument #%d" msgstr "mancante il #%d argomento posizonale obbligatorio della funzione" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "" @@ -2072,10 +1903,6 @@ msgstr "identificatore ridefinito come globale" msgid "identifier redefined as nonlocal" msgstr "identificatore ridefinito come nonlocal" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "baudrate impossibile" - #: py/objstr.c msgid "incomplete format" msgstr "formato incompleto" @@ -2089,8 +1916,7 @@ msgid "incorrect padding" msgstr "padding incorretto" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "indice fuori intervallo" @@ -2122,26 +1948,14 @@ msgstr "periferica I2C invalida" msgid "invalid SPI peripheral" msgstr "periferica SPI invalida" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarm non valido" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "argomenti non validi" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "lunghezza del buffer non valida" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "certificato non valido" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "bit dati invalidi" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "indice dupterm non valido" @@ -2162,19 +1976,11 @@ msgstr "chiave non valida" msgid "invalid micropython decorator" msgstr "decoratore non valido in micropython" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "pin non valido" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "step non valida" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "bit di stop invalidi" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "sintassi non valida" @@ -2224,10 +2030,6 @@ msgstr "etichetta '%q' non definita" msgid "label redefined" msgstr "etichetta ridefinita" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len deve essere multiplo di 4" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "" @@ -2256,7 +2058,7 @@ msgstr "long int non supportata in questa build" msgid "map buffer too small" msgstr "map buffer troppo piccolo" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "errore di dominio matematico" @@ -2269,12 +2071,6 @@ msgstr "profondità massima di ricorsione superata" msgid "memory allocation failed, allocating %u bytes" msgstr "allocazione di memoria fallita, allocando %u byte" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"allocazione di memoria fallita, allocazione di %d byte per codice nativo" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "allocazione di memoria fallita, l'heap è bloccato" @@ -2333,7 +2129,7 @@ msgstr "yield nativo" msgid "need more than %d values to unpack" msgstr "necessari più di %d valori da scompattare" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "potenza negativa senza supporto per float" @@ -2358,7 +2154,7 @@ msgstr "nessun binding per nonlocal trovato" msgid "no module named '%q'" msgstr "nessun modulo chiamato '%q'" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "attributo inesistente" @@ -2382,11 +2178,6 @@ msgstr "argomento non nominato seguito da argomento nominato" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "canale ADC non valido: %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2447,13 +2238,13 @@ msgstr "" msgid "odd-length string" msgstr "stringa di lunghezza dispari" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c #, fuzzy msgid "offset out of bounds" msgstr "indirizzo fuori limite" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "solo slice con step=1 (aka None) sono supportate" @@ -2471,7 +2262,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "overflow convertendo long int in parola" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "la palette deve essere lunga 32 byte" @@ -2492,10 +2283,6 @@ msgstr "parametri devono essere i registri in sequenza da a2 a a5" msgid "parameters must be registers in sequence r0 to r3" msgstr "parametri devono essere i registri in sequenza da a2 a a5" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "il pin non implementa IRQ" - #: shared-bindings/displayio/Bitmap.c #, fuzzy msgid "pixel coordinates out of bounds" @@ -2511,7 +2298,6 @@ msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "pop sun un PulseIn vuoto" @@ -2585,10 +2371,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "frequenza di campionamento fuori intervallo" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "scansione fallita" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2785,7 +2567,7 @@ msgstr "indentazione inaspettata" msgid "unexpected keyword argument" msgstr "argomento nominato inaspettato" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "argomento nominato '%q' inaspettato" @@ -2797,10 +2579,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "parametro di configurazione sconosciuto" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2821,10 +2599,6 @@ msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'float'" msgid "unknown format code '%c' for object of type 'str'" msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'str'" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "prametro di stato sconosciuto" - #: py/compile.c msgid "unknown type" msgstr "tipo sconosciuto" @@ -2876,10 +2650,6 @@ msgstr "tipi non supportati per %q: '%s', '%s'" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() faillito" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" @@ -2910,6 +2680,36 @@ msgstr "indirizzo fuori limite" msgid "zero step" msgstr "zero step" +#~ msgid "AP required" +#~ msgstr "AP richiesto" + +#~ msgid "C-level assert" +#~ msgstr "assert a livello C" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Impossible connettersi all'AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Impossible disconnettersi all'AP" + +#~ msgid "Cannot set STA config" +#~ msgstr "Impossibile impostare la configurazione della STA" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Impossibile aggiornare status di i/f" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Non so come passare l'oggetto alla funzione nativa" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8266 non supporta la modalità sicura." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 non supporta pull-down" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Errore in ffi_prep_cif" + #, fuzzy #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "Impossibile notificare valore dell'attributo. status: 0x%02x" @@ -2918,11 +2718,144 @@ msgstr "zero step" #~ msgid "Failed to read attribute value, err %0x04x" #~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 non supporta pull-up" + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Frequenza massima su PWM è %dhz" + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Frequenza minima su PWM è 1hz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "Frequenze PWM multiple non supportate. PWM già impostato a %shz." + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Nessun supporto per PulseIn per %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Nessun supporto hardware per l'uscita analogica." + #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Formato solo di Windows, BMP non compresso supportato %d" #~ msgid "Only true color (24 bpp or higher) BMP supported %x" #~ msgstr "Solo BMP true color (24 bpp o superiore) sono supportati %x" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Solo tx supportato su UART1 (GPIO2)." + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM non è supportato sul pin %d" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Il pin %q non ha capacità ADC" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) non supporta pull" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pin non validi per SPI" + +#~ msgid "STA must be active" +#~ msgstr "STA deve essere attiva" + +#~ msgid "STA required" +#~ msgstr "STA richiesta" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) non esistente" + +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) non leggibile" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Imposssibile rimontare il filesystem" + +#~ msgid "Unknown type" +#~ msgstr "Tipo sconosciuto" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "Usa esptool per cancellare la flash e ricaricare Python invece" + +#~ msgid "[addrinfo error %d]" +#~ msgstr "[errore addrinfo %d]" + +#~ msgid "buffer too long" +#~ msgstr "buffer troppo lungo" + +#~ msgid "can query only one param" +#~ msgstr "è possibile interrogare solo un parametro" + +#~ msgid "can't get AP config" +#~ msgstr "impossibile recuperare le configurazioni dell'AP" + +#~ msgid "can't get STA config" +#~ msgstr "impossibile recuperare la configurazione della STA" + +#~ msgid "can't set AP config" +#~ msgstr "impossibile impostare le configurazioni dell'AP" + +#~ msgid "can't set STA config" +#~ msgstr "impossibile impostare le configurazioni della STA" + +#~ msgid "either pos or kw args are allowed" +#~ msgstr "sono permesse solo gli argomenti pos o kw" + +#~ msgid "expecting a pin" +#~ msgstr "pin atteso" + +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "Locazione della flash deve essere inferiore a 1mb" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la frequenza può essere o 80Mhz o 160Mhz" + +#~ msgid "impossible baudrate" +#~ msgstr "baudrate impossibile" + +#~ msgid "invalid alarm" +#~ msgstr "alarm non valido" + +#~ msgid "invalid buffer length" +#~ msgstr "lunghezza del buffer non valida" + +#~ msgid "invalid data bits" +#~ msgstr "bit dati invalidi" + +#~ msgid "invalid pin" +#~ msgstr "pin non valido" + +#~ msgid "invalid stop bits" +#~ msgstr "bit di stop invalidi" + +#~ msgid "len must be multiple of 4" +#~ msgstr "len deve essere multiplo di 4" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "allocazione di memoria fallita, allocazione di %d byte per codice nativo" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "canale ADC non valido: %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "il pin non implementa IRQ" + #~ msgid "position must be 2-tuple" #~ msgstr "position deve essere una 2-tuple" + +#~ msgid "scan failed" +#~ msgstr "scansione fallita" + +#~ msgid "unknown config param" +#~ msgstr "parametro di configurazione sconosciuto" + +#~ msgid "unknown status param" +#~ msgstr "prametro di stato sconosciuto" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() faillito" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 587ed00ba..546d9e73f 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-10-02 21:14-0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -52,7 +52,7 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "%q must be >= 1" @@ -63,7 +63,7 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "%q should be an int" msgstr "y deve ser um int" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "%q() takes %d positional arguments but %d were given" msgstr "" @@ -219,10 +219,6 @@ msgstr "" msgid "A hardware interrupt channel is already in use" msgstr "Um canal de interrupção de hardware já está em uso" -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP requerido" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -250,7 +246,7 @@ msgstr "Todos os periféricos I2C estão em uso" msgid "All event channels in use" msgstr "Todos os canais de eventos em uso" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c msgid "All sync event channels in use" msgstr "" @@ -258,8 +254,8 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "Todos os temporizadores para este pino estão em uso" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c @@ -329,7 +325,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Buffer de tamanho incorreto. Deve ser %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -348,10 +344,6 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "Bytes must be between 0 and 255." msgstr "Os bytes devem estar entre 0 e 255." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Can not use dotstar with %s" @@ -373,18 +365,10 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Não é possível conectar-se ao AP" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Não é possível excluir valores" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Não é possível desconectar do AP" - #: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c #: ports/nrf/common-hal/digitalio/DigitalInOut.c msgid "Cannot get pull while in output mode" @@ -412,14 +396,9 @@ msgid "Cannot remount '/' when USB is active." msgstr "Não é possível remontar '/' enquanto o USB estiver ativo." #: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c msgid "Cannot reset into bootloader because no bootloader is present." msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Não é possível definir a configuração STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" @@ -436,10 +415,6 @@ msgstr "Não é possível transferir sem os pinos MOSI e MISO." msgid "Cannot unambiguously get sizeof scalar" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Não é possível atualizar o status i/f" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Não é possível ler sem um pino MOSI" @@ -472,7 +447,7 @@ msgstr "Unidade de Clock em uso" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Os bytes devem estar entre 0 e 255." @@ -511,8 +486,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "Pedaço de dados deve seguir o pedaço de cortes" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Não é possível ajustar dados no pacote de anúncios." @@ -530,37 +505,22 @@ msgstr "" msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Não sabe como passar o objeto para a função nativa" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "O ESP8226 não suporta o modo de segurança." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 não suporta pull down." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "EXTINT channel already in use" msgstr "Canal EXTINT em uso" -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Erro no ffi_prep_cif" - #: extmod/modure.c msgid "Error in regex" msgstr "Erro no regex" -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Esperado um" @@ -611,7 +571,6 @@ msgstr "Falha ao alocar buffer RX" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c #, c-format msgid "Failed to allocate RX buffer of %d bytes" msgstr "Falha ao alocar buffer RX de %d bytes" @@ -693,8 +652,8 @@ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" msgid "Failed to start advertising" msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Não é possível iniciar o anúncio. status: 0x%02x" @@ -714,8 +673,8 @@ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" msgid "Failed to stop advertising" msgstr "Não pode parar propaganda. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Broadcaster.c #: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Não pode parar propaganda. status: 0x%02x" @@ -756,20 +715,16 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 não suporta pull up." - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Grupo cheio" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c +#: extmod/vfs_posix_file.c py/objstringio.c msgid "I/O operation on closed file" msgstr "Operação I/O no arquivo fechado" @@ -843,16 +798,16 @@ msgstr "Arquivo inválido" msgid "Invalid format chunk size" msgstr "Tamanho do pedaço de formato inválido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Número inválido de bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Fase Inválida" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pino inválido" @@ -865,14 +820,15 @@ msgstr "Pino inválido para canal esquerdo" msgid "Invalid pin for right channel" msgstr "Pino inválido para canal direito" -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/I2C.c #: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Pinos inválidos" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -920,11 +876,6 @@ msgstr "Inicialização do pino MISO falhou" msgid "MOSI pin init failed." msgstr "Inicialização do pino MOSI falhou." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "A frequência máxima PWM é de %dhz." - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -942,15 +893,6 @@ msgstr "" msgid "Microphone startup delay must be in range 0.0 to 1.0" msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "A frequência mínima PWM é de 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "Múltiplas frequências PWM não suportadas. PWM já definido para %dhz." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" @@ -964,10 +906,6 @@ msgstr "Nenhum DAC no chip" msgid "No DMA channel found" msgstr "Nenhum canal DMA encontrado" -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Não há suporte para PulseIn no pino %q" - #: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c msgid "No RX pin" msgstr "Nenhum pino RX" @@ -1000,12 +938,8 @@ msgstr "Não há GCLKs livre" msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Nenhum suporte de hardware para saída analógica." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c #: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c msgid "No hardware support on pin" msgstr "Nenhum suporte de hardware no pino" @@ -1022,10 +956,6 @@ msgstr "" msgid "Not connected" msgstr "Não é possível conectar-se ao AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - #: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c msgid "Not playing" msgstr "" @@ -1066,10 +996,6 @@ msgstr "" msgid "Only slices with step=1 (aka None) are supported" msgstr "" -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Apenas TX suportado no UART1 (GPIO2)." - #: shared-bindings/audiobusio/PDMIn.c msgid "Oversample must be multiple of 8." msgstr "" @@ -1084,32 +1010,15 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM não suportado no pino %d" - #: py/moduerrno.c msgid "Permission denied" msgstr "Permissão negada" -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pino %q não tem recursos de ADC" - #: ports/atmel-samd/common-hal/analogio/AnalogIn.c #: ports/nrf/common-hal/analogio/AnalogIn.c msgid "Pin does not have ADC capabilities" msgstr "O pino não tem recursos de ADC" -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pino (16) não suporta pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pinos não válidos para SPI" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Pixel beyond bounds of buffer" msgstr "" @@ -1131,7 +1040,7 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "A calibração RTC não é suportada nesta placa" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "O RTC não é suportado nesta placa" @@ -1172,14 +1081,6 @@ msgstr "Rodando em modo seguro! Não está executando o código salvo.\n" msgid "SDA or SCL needs a pull up" msgstr "SDA ou SCL precisa de um pull up" -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA deve estar ativo" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA requerido" - #: shared-bindings/audioio/Mixer.c msgid "Sample rate must be positive" msgstr "" @@ -1198,8 +1099,8 @@ msgstr "Serializer em uso" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" @@ -1279,7 +1180,7 @@ msgstr "Para sair, por favor, reinicie a placa sem " msgid "Too many channels in sample." msgstr "Muitos canais na amostra." -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1295,15 +1196,6 @@ msgstr "" msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) não existe" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) não pode ler" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB ocupada" @@ -1342,10 +1234,6 @@ msgstr "" msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Não é possível remontar o sistema de arquivos" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Não é possível gravar no nvm." @@ -1354,10 +1242,6 @@ msgstr "Não é possível gravar no nvm." msgid "Unexpected nrfx uuid type" msgstr "" -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipo desconhecido" - #: shared-bindings/_pixelbuf/PixelBuf.c #, c-format msgid "Unmatched number of items on RHS (expected %d, got %d)." @@ -1384,10 +1268,6 @@ msgstr "" msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "Use o esptool para apagar o flash e recarregar o Python" - #: py/emitnative.c msgid "Viper functions don't currently support more than 4 arguments" msgstr "" @@ -1419,11 +1299,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Você solicitou o início do modo de segurança" -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - #: py/objtype.c msgid "__init__() should return None" msgstr "" @@ -1445,7 +1320,7 @@ msgstr "" msgid "abort() called" msgstr "abort() chamado" -#: ports/unix/modmachine.c extmod/machine_mem.c +#: extmod/machine_mem.c #, c-format msgid "address %08x is not aligned to %d bytes" msgstr "endereço %08x não está alinhado com %d bytes" @@ -1474,7 +1349,7 @@ msgstr "" msgid "argument should be a '%q' not a '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" @@ -1538,16 +1413,12 @@ msgstr "" msgid "buffer size must match format" msgstr "buffers devem ser o mesmo tamanho" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer muito longo" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "" @@ -1600,10 +1471,6 @@ msgstr "" msgid "can only save bytecode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "pode consultar apenas um parâmetro" - #: py/objtype.c msgid "can't add special method to already-subclassed class" msgstr "" @@ -1675,14 +1542,6 @@ msgstr "" msgid "can't do truncated division of a complex number" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "não pode obter configuração de AP" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "não pode obter a configuração STA" - #: py/compile.c msgid "can't have multiple **x" msgstr "" @@ -1711,14 +1570,6 @@ msgstr "" msgid "can't send non-None value to a just-started generator" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "não é possível definir a configuração do AP" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "não é possível definir a configuração STA" - #: py/objnamedtuple.c msgid "can't set attribute" msgstr "" @@ -1805,7 +1656,7 @@ msgstr "cor deve ser um int" msgid "complex division by zero" msgstr "" -#: py/parsenum.c py/objfloat.c +#: py/objfloat.c py/parsenum.c msgid "complex values not supported" msgstr "" @@ -1846,15 +1697,11 @@ msgstr "destination_length deve ser um int >= 0" msgid "dict update sequence has wrong length" msgstr "" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c msgid "division by zero" msgstr "divisão por zero" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "pos ou kw args são permitidos" - #: py/objdeque.c msgid "empty" msgstr "vazio" @@ -1905,10 +1752,6 @@ msgstr "" msgid "expecting a dict for keyword args" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "esperando um pino" - #: py/compile.c msgid "expecting an assembler instruction" msgstr "" @@ -1929,10 +1772,6 @@ msgstr "argumentos extras de palavras-chave passados" msgid "extra positional arguments given" msgstr "argumentos extra posicionais passados" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - #: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1949,10 +1788,6 @@ msgstr "" msgid "firstbit must be MSB" msgstr "firstbit devem ser MSB" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "o local do flash deve estar abaixo de 1 MByte" - #: py/objint.c msgid "float too big" msgstr "float muito grande" @@ -1965,10 +1800,6 @@ msgstr "" msgid "format requires a dict" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "A frequência só pode ser 80Mhz ou 160MHz" - #: py/objdeque.c msgid "full" msgstr "cheio" @@ -1982,7 +1813,7 @@ msgstr "função não aceita argumentos de palavras-chave" msgid "function expected at most %d arguments, got %d" msgstr "função esperada na maioria dos %d argumentos, obteve %d" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "function got multiple values for argument '%q'" msgstr "" @@ -2004,7 +1835,7 @@ msgstr "" msgid "function missing required positional argument #%d" msgstr "" -#: py/argcheck.c py/objnamedtuple.c py/bc.c +#: py/argcheck.c py/bc.c py/objnamedtuple.c #, c-format msgid "function takes %d positional arguments but %d were given" msgstr "função leva %d argumentos posicionais, mas apenas %d foram passadas" @@ -2037,10 +1868,6 @@ msgstr "" msgid "identifier redefined as nonlocal" msgstr "" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "taxa de transmissão impossível" - #: py/objstr.c msgid "incomplete format" msgstr "formato incompleto" @@ -2054,8 +1881,7 @@ msgid "incorrect padding" msgstr "preenchimento incorreto" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c msgid "index out of range" msgstr "Índice fora do intervalo" @@ -2087,26 +1913,14 @@ msgstr "periférico I2C inválido" msgid "invalid SPI peripheral" msgstr "periférico SPI inválido" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "Alarme inválido" - #: lib/netutils/netutils.c msgid "invalid arguments" msgstr "argumentos inválidos" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "comprimento de buffer inválido" - #: extmod/modussl_axtls.c msgid "invalid cert" msgstr "certificado inválido" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "Bits de dados inválidos" - #: extmod/uos_dupterm.c msgid "invalid dupterm index" msgstr "Índice de dupterm inválido" @@ -2127,19 +1941,11 @@ msgstr "chave inválida" msgid "invalid micropython decorator" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "Pino inválido" - #: shared-bindings/random/__init__.c msgid "invalid step" msgstr "passo inválido" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "Bits de parada inválidos" - -#: py/compile.c py/parse.c +#: py/parse.c py/compile.c msgid "invalid syntax" msgstr "" @@ -2184,10 +1990,6 @@ msgstr "" msgid "label redefined" msgstr "" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len deve ser múltiplo de 4" - #: py/stream.c msgid "length argument not allowed for this type" msgstr "" @@ -2216,7 +2018,7 @@ msgstr "" msgid "map buffer too small" msgstr "" -#: shared-bindings/math/__init__.c py/modmath.c +#: py/modmath.c shared-bindings/math/__init__.c msgid "math domain error" msgstr "" @@ -2229,11 +2031,6 @@ msgstr "" msgid "memory allocation failed, allocating %u bytes" msgstr "" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "alocação de memória falhou, alocando %u bytes para código nativo" - #: py/runtime.c msgid "memory allocation failed, heap is locked" msgstr "" @@ -2292,7 +2089,7 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "precisa de mais de %d valores para desempacotar" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c msgid "negative power with no float support" msgstr "" @@ -2316,7 +2113,7 @@ msgstr "" msgid "no module named '%q'" msgstr "" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c msgid "no such attribute" msgstr "" @@ -2340,11 +2137,6 @@ msgstr "" msgid "not a 128-bit UUID" msgstr "" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "não é um canal ADC válido: %d" - #: py/objstr.c msgid "not all arguments converted during string formatting" msgstr "" @@ -2403,12 +2195,12 @@ msgstr "" msgid "odd-length string" msgstr "" -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objstrunicode.c msgid "offset out of bounds" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2425,7 +2217,7 @@ msgstr "" msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c msgid "palette must be 32 bytes long" msgstr "" @@ -2445,10 +2237,6 @@ msgstr "" msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "Pino não tem recursos de IRQ" - #: shared-bindings/displayio/Bitmap.c msgid "pixel coordinates out of bounds" msgstr "" @@ -2463,7 +2251,6 @@ msgstr "" #: ports/atmel-samd/common-hal/pulseio/PulseIn.c #: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c msgid "pop from an empty PulseIn" msgstr "" @@ -2535,10 +2322,6 @@ msgstr "" msgid "sampling rate out of range" msgstr "Taxa de amostragem fora do intervalo" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "varredura falhou" - #: py/modmicropython.c msgid "schedule stack full" msgstr "" @@ -2735,7 +2518,7 @@ msgstr "" msgid "unexpected keyword argument" msgstr "" -#: py/objnamedtuple.c py/bc.c +#: py/bc.c py/objnamedtuple.c msgid "unexpected keyword argument '%q'" msgstr "" @@ -2747,10 +2530,6 @@ msgstr "" msgid "unindent does not match any outer indentation level" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "parâmetro configuração desconhecido" - #: py/objstr.c #, c-format msgid "unknown conversion specifier %c" @@ -2771,10 +2550,6 @@ msgstr "" msgid "unknown format code '%c' for object of type 'str'" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "parâmetro de status desconhecido" - #: py/compile.c msgid "unknown type" msgstr "" @@ -2826,10 +2601,6 @@ msgstr "" msgid "value_count must be > 0" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() falhou" - #: shared-bindings/_pixelbuf/PixelBuf.c msgid "write_args must be a list, tuple, or None" msgstr "" @@ -2858,6 +2629,33 @@ msgstr "" msgid "zero step" msgstr "passo zero" +#~ msgid "AP required" +#~ msgstr "AP requerido" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Não é possível conectar-se ao AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Não é possível desconectar do AP" + +#~ msgid "Cannot set STA config" +#~ msgstr "Não é possível definir a configuração STA" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Não é possível atualizar o status i/f" + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Não sabe como passar o objeto para a função nativa" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "O ESP8226 não suporta o modo de segurança." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 não suporta pull down." + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Erro no ffi_prep_cif" + #, fuzzy #~ msgid "Failed to notify or indicate attribute value, err %0x04x" #~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" @@ -2866,8 +2664,138 @@ msgstr "passo zero" #~ msgid "Failed to read attribute value, err %0x04x" #~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 não suporta pull up." + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "A frequência máxima PWM é de %dhz." + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "A frequência mínima PWM é de 1hz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Múltiplas frequências PWM não suportadas. PWM já definido para %dhz." + +#~ msgid "No PulseIn support for %q" +#~ msgstr "Não há suporte para PulseIn no pino %q" + +#~ msgid "No hardware support for analog out." +#~ msgstr "Nenhum suporte de hardware para saída analógica." + #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Apenas formato Windows, BMP descomprimido suportado" #~ msgid "Only true color (24 bpp or higher) BMP supported %x" #~ msgstr "Apenas cores verdadeiras (24 bpp ou maior) BMP suportadas" + +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Apenas TX suportado no UART1 (GPIO2)." + +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM não suportado no pino %d" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pino %q não tem recursos de ADC" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pino (16) não suporta pull" + +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pinos não válidos para SPI" + +#~ msgid "STA must be active" +#~ msgstr "STA deve estar ativo" + +#~ msgid "STA required" +#~ msgstr "STA requerido" + +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) não existe" + +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) não pode ler" + +#~ msgid "Unable to remount filesystem" +#~ msgstr "Não é possível remontar o sistema de arquivos" + +#~ msgid "Unknown type" +#~ msgstr "Tipo desconhecido" + +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "Use o esptool para apagar o flash e recarregar o Python" + +#~ msgid "buffer too long" +#~ msgstr "buffer muito longo" + +#~ msgid "can query only one param" +#~ msgstr "pode consultar apenas um parâmetro" + +#~ msgid "can't get AP config" +#~ msgstr "não pode obter configuração de AP" + +#~ msgid "can't get STA config" +#~ msgstr "não pode obter a configuração STA" + +#~ msgid "can't set AP config" +#~ msgstr "não é possível definir a configuração do AP" + +#~ msgid "can't set STA config" +#~ msgstr "não é possível definir a configuração STA" + +#~ msgid "either pos or kw args are allowed" +#~ msgstr "pos ou kw args são permitidos" + +#~ msgid "expecting a pin" +#~ msgstr "esperando um pino" + +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" + +#~ msgid "flash location must be below 1MByte" +#~ msgstr "o local do flash deve estar abaixo de 1 MByte" + +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "A frequência só pode ser 80Mhz ou 160MHz" + +#~ msgid "impossible baudrate" +#~ msgstr "taxa de transmissão impossível" + +#~ msgid "invalid alarm" +#~ msgstr "Alarme inválido" + +#~ msgid "invalid buffer length" +#~ msgstr "comprimento de buffer inválido" + +#~ msgid "invalid data bits" +#~ msgstr "Bits de dados inválidos" + +#~ msgid "invalid pin" +#~ msgstr "Pino inválido" + +#~ msgid "invalid stop bits" +#~ msgstr "Bits de parada inválidos" + +#~ msgid "len must be multiple of 4" +#~ msgstr "len deve ser múltiplo de 4" + +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "alocação de memória falhou, alocando %u bytes para código nativo" + +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "não é um canal ADC válido: %d" + +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "Pino não tem recursos de IRQ" + +#~ msgid "scan failed" +#~ msgstr "varredura falhou" + +#~ msgid "unknown config param" +#~ msgstr "parâmetro configuração desconhecido" + +#~ msgid "unknown status param" +#~ msgstr "parâmetro de status desconhecido" + +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() falhou" diff --git a/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk b/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk index 418f70d92..58af499e8 100644 --- a/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk +++ b/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk @@ -22,7 +22,7 @@ CIRCUITPY_FREQUENCYIO = 0 CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 -CFLAGS_INLINE_LIMIT = 45 +CFLAGS_INLINE_LIMIT = 35 # Include these Python libraries in firmware. FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DotStar -- cgit v1.2.3 From 35ab1a1983e6889e1a808b52f9bdaae7047e1a06 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Wed, 27 Mar 2019 16:57:35 -0400 Subject: Turn on frequencyio only on CIRCUITPY_FULL_BUILD --- py/circuitpy_mpconfig.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/circuitpy_mpconfig.mk b/py/circuitpy_mpconfig.mk index 0df6fff06..8ea72f0bf 100644 --- a/py/circuitpy_mpconfig.mk +++ b/py/circuitpy_mpconfig.mk @@ -93,7 +93,7 @@ endif CFLAGS += -DCIRCUITPY_DISPLAYIO=$(CIRCUITPY_DISPLAYIO) ifndef CIRCUITPY_FREQUENCYIO -CIRCUITPY_FREQUENCYIO = 1 +CIRCUITPY_FREQUENCYIO = $(CIRCUITPY_FULL_BUILD) endif CFLAGS += -DCIRCUITPY_FREQUENCYIO=$(CIRCUITPY_FREQUENCYIO) -- cgit v1.2.3 From 88068876ed00d8838666e19d93ebd08a9b9a6750 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Wed, 27 Mar 2019 17:54:36 -0400 Subject: turn off frequencyio for all SAMD21 builds --- ports/atmel-samd/boards/arduino_mkr1300/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/arduino_mkrzero/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/arduino_zero/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/catwan_usbstick/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/feather_m0_express/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/feather_m0_rfm69/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/feather_m0_rfm9x/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/gemma_m0/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/meowmeow/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/metro_m0_express/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/pewpew10/mpconfigboard.mk | 1 - ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk | 3 +-- ports/atmel-samd/boards/sparkfun_samd21_dev/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/sparkfun_samd21_mini/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/trinket_m0/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/trinket_m0_haxpress/mpconfigboard.mk | 2 -- ports/atmel-samd/boards/uchip/mpconfigboard.mk | 2 -- ports/atmel-samd/mpconfigport.mk | 6 ++++++ 20 files changed, 7 insertions(+), 37 deletions(-) diff --git a/ports/atmel-samd/boards/arduino_mkr1300/mpconfigboard.mk b/ports/atmel-samd/boards/arduino_mkr1300/mpconfigboard.mk index b1b127ced..bafb8a96c 100644 --- a/ports/atmel-samd/boards/arduino_mkr1300/mpconfigboard.mk +++ b/ports/atmel-samd/boards/arduino_mkr1300/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/arduino_mkrzero/mpconfigboard.mk b/ports/atmel-samd/boards/arduino_mkrzero/mpconfigboard.mk index 0e6fb612e..b6df8d6e2 100644 --- a/ports/atmel-samd/boards/arduino_mkrzero/mpconfigboard.mk +++ b/ports/atmel-samd/boards/arduino_mkrzero/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/arduino_zero/mpconfigboard.mk b/ports/atmel-samd/boards/arduino_zero/mpconfigboard.mk index 26f771b50..af953e8c2 100644 --- a/ports/atmel-samd/boards/arduino_zero/mpconfigboard.mk +++ b/ports/atmel-samd/boards/arduino_zero/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/catwan_usbstick/mpconfigboard.mk b/ports/atmel-samd/boards/catwan_usbstick/mpconfigboard.mk index 3059eb704..bb567ddd4 100644 --- a/ports/atmel-samd/boards/catwan_usbstick/mpconfigboard.mk +++ b/ports/atmel-samd/boards/catwan_usbstick/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.mk b/ports/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.mk index 0b9995583..26e3b7d4d 100644 --- a/ports/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.mk +++ b/ports/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk b/ports/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk index a469dcf1d..102cb656f 100644 --- a/ports/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk +++ b/ports/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.mk b/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.mk index 03a89f5f5..301e7419f 100644 --- a/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.mk +++ b/ports/atmel-samd/boards/feather_m0_express/mpconfigboard.mk @@ -11,5 +11,3 @@ LONGINT_IMPL = MPZ CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/feather_m0_rfm69/mpconfigboard.mk b/ports/atmel-samd/boards/feather_m0_rfm69/mpconfigboard.mk index 16696297d..ce3f8668c 100644 --- a/ports/atmel-samd/boards/feather_m0_rfm69/mpconfigboard.mk +++ b/ports/atmel-samd/boards/feather_m0_rfm69/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/feather_m0_rfm9x/mpconfigboard.mk b/ports/atmel-samd/boards/feather_m0_rfm9x/mpconfigboard.mk index 39fdc591d..282977338 100644 --- a/ports/atmel-samd/boards/feather_m0_rfm9x/mpconfigboard.mk +++ b/ports/atmel-samd/boards/feather_m0_rfm9x/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/gemma_m0/mpconfigboard.mk b/ports/atmel-samd/boards/gemma_m0/mpconfigboard.mk index d44f2feb9..9f4a9fe83 100644 --- a/ports/atmel-samd/boards/gemma_m0/mpconfigboard.mk +++ b/ports/atmel-samd/boards/gemma_m0/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/meowmeow/mpconfigboard.mk b/ports/atmel-samd/boards/meowmeow/mpconfigboard.mk index 3547235dd..a620f2919 100644 --- a/ports/atmel-samd/boards/meowmeow/mpconfigboard.mk +++ b/ports/atmel-samd/boards/meowmeow/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.mk b/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.mk index 5104b601b..4ed26e6b2 100644 --- a/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.mk +++ b/ports/atmel-samd/boards/metro_m0_express/mpconfigboard.mk @@ -12,5 +12,3 @@ LONGINT_IMPL = MPZ CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/pewpew10/mpconfigboard.mk b/ports/atmel-samd/boards/pewpew10/mpconfigboard.mk index 92f8cff52..983e48e21 100644 --- a/ports/atmel-samd/boards/pewpew10/mpconfigboard.mk +++ b/ports/atmel-samd/boards/pewpew10/mpconfigboard.mk @@ -20,4 +20,3 @@ CIRCUITPY_RTC = 0 CIRCUITPY_SAMD = 0 CIRCUITPY_USB_MIDI = 0 CIRCUITPY_SMALL_BUILD = 1 -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk b/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk index 418f70d92..017510be8 100644 --- a/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk +++ b/ports/atmel-samd/boards/pirkey_m0/mpconfigboard.mk @@ -17,12 +17,11 @@ CIRCUITPY_RTC = 0 CIRCUITPY_SAMD = 0 CIRCUITPY_USB_MIDI = 0 CIRCUITPY_SMALL_BUILD = 1 -CIRCUITPY_FREQUENCYIO = 0 CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 -CFLAGS_INLINE_LIMIT = 45 +CFLAGS_INLINE_LIMIT = 35 # Include these Python libraries in firmware. FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_DotStar diff --git a/ports/atmel-samd/boards/sparkfun_samd21_dev/mpconfigboard.mk b/ports/atmel-samd/boards/sparkfun_samd21_dev/mpconfigboard.mk index ec627b523..c0238ce80 100644 --- a/ports/atmel-samd/boards/sparkfun_samd21_dev/mpconfigboard.mk +++ b/ports/atmel-samd/boards/sparkfun_samd21_dev/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/sparkfun_samd21_mini/mpconfigboard.mk b/ports/atmel-samd/boards/sparkfun_samd21_mini/mpconfigboard.mk index 8d2f35a69..462e3e2ca 100644 --- a/ports/atmel-samd/boards/sparkfun_samd21_mini/mpconfigboard.mk +++ b/ports/atmel-samd/boards/sparkfun_samd21_mini/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21G18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/trinket_m0/mpconfigboard.mk b/ports/atmel-samd/boards/trinket_m0/mpconfigboard.mk index b3448cf49..1c6f6db05 100644 --- a/ports/atmel-samd/boards/trinket_m0/mpconfigboard.mk +++ b/ports/atmel-samd/boards/trinket_m0/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/trinket_m0_haxpress/mpconfigboard.mk b/ports/atmel-samd/boards/trinket_m0_haxpress/mpconfigboard.mk index 5975ad1ba..c9c196da7 100644 --- a/ports/atmel-samd/boards/trinket_m0_haxpress/mpconfigboard.mk +++ b/ports/atmel-samd/boards/trinket_m0_haxpress/mpconfigboard.mk @@ -11,5 +11,3 @@ LONGINT_IMPL = MPZ CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/boards/uchip/mpconfigboard.mk b/ports/atmel-samd/boards/uchip/mpconfigboard.mk index 53b8c2771..bd05152a2 100644 --- a/ports/atmel-samd/boards/uchip/mpconfigboard.mk +++ b/ports/atmel-samd/boards/uchip/mpconfigboard.mk @@ -10,5 +10,3 @@ CIRCUITPY_SMALL_BUILD = 1 CHIP_VARIANT = SAMD21E18A CHIP_FAMILY = samd21 - -CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/atmel-samd/mpconfigport.mk b/ports/atmel-samd/mpconfigport.mk index bb5e222f0..5291e6f01 100644 --- a/ports/atmel-samd/mpconfigport.mk +++ b/ports/atmel-samd/mpconfigport.mk @@ -14,6 +14,12 @@ ifeq ($(LONGINT_IMPL),LONGLONG) MPY_TOOL_LONGINT_IMPL = -mlongint-impl=longlong endif +# Put samd21-only choices here. +ifeq ($(CHIP_FAMILY),samd51) +# frequencyio not yet verified as working on SAMD21. +CIRCUITPY_FRQUENCYIO = 0 +endif + # Put samd51-only choices here. ifeq ($(CHIP_FAMILY),samd51) CIRCUITPY_SAMD = 1 -- cgit v1.2.3 From f118aef2838443b4cb51cf35e695303b7c24cb30 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Wed, 27 Mar 2019 18:19:39 -0400 Subject: copy/paste error --- ports/atmel-samd/mpconfigport.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/atmel-samd/mpconfigport.mk b/ports/atmel-samd/mpconfigport.mk index 5291e6f01..66ee92e6b 100644 --- a/ports/atmel-samd/mpconfigport.mk +++ b/ports/atmel-samd/mpconfigport.mk @@ -15,7 +15,7 @@ MPY_TOOL_LONGINT_IMPL = -mlongint-impl=longlong endif # Put samd21-only choices here. -ifeq ($(CHIP_FAMILY),samd51) +ifeq ($(CHIP_FAMILY),samd21) # frequencyio not yet verified as working on SAMD21. CIRCUITPY_FRQUENCYIO = 0 endif -- cgit v1.2.3 From 9232ec50f1adcc9d192b6fdda2746c0305c9ced5 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Wed, 27 Mar 2019 15:23:20 -0700 Subject: Fix HID buffer lookup The previous code assumed HID report ids were consecutive. This is not true in the CircuitPython descriptor where report ids are fixed for each report type. Fixes #1617 --- shared-module/usb_hid/Device.c | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/shared-module/usb_hid/Device.c b/shared-module/usb_hid/Device.c index 820e14ad0..0e256cb5e 100644 --- a/shared-module/usb_hid/Device.c +++ b/shared-module/usb_hid/Device.c @@ -60,27 +60,33 @@ void common_hal_usb_hid_device_send_report(usb_hid_device_obj_t *self, uint8_t* } } +static usb_hid_device_obj_t* get_hid_device(uint8_t report_id) { + for (uint8_t i = 0; i < USB_HID_NUM_DEVICES; i++) { + if (usb_hid_devices[i].report_id == report_id) { + return &usb_hid_devices[i]; + } + } + return NULL; +} + // Callbacks invoked when receive Get_Report request through control endpoint uint16_t tud_hid_generic_get_report_cb(uint8_t report_id, hid_report_type_t report_type, uint8_t* buffer, uint16_t reqlen) { // only support Input Report if ( report_type != HID_REPORT_TYPE_INPUT ) return 0; - // index is ID-1 - uint8_t idx = ( report_id ? (report_id-1) : 0 ); - // fill buffer with current report - memcpy(buffer, usb_hid_devices[idx].report_buffer, reqlen); + memcpy(buffer, get_hid_device(report_id)->report_buffer, reqlen); return reqlen; } // Callbacks invoked when receive Set_Report request through control endpoint void tud_hid_generic_set_report_cb(uint8_t report_id, hid_report_type_t report_type, uint8_t const* buffer, uint16_t bufsize) { - // index is ID-1 - uint8_t idx = ( report_id ? (report_id-1) : 0 ); + usb_hid_device_obj_t* hid_device = get_hid_device(report_id); if ( report_type == HID_REPORT_TYPE_OUTPUT ) { // Check if it is Keyboard device - if ( (usb_hid_devices[idx].usage_page == HID_USAGE_PAGE_DESKTOP) && (usb_hid_devices[idx].usage == HID_USAGE_DESKTOP_KEYBOARD) ) { + if (hid_device->usage_page == HID_USAGE_PAGE_DESKTOP && + hid_device->usage == HID_USAGE_DESKTOP_KEYBOARD) { // This is LED indicator (CapsLock, NumLock) // TODO Light up some LED here } -- cgit v1.2.3 From 77f307c64274e5b10b5030f67b5c07d1993ec42e Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Sat, 2 Feb 2019 18:38:10 +1100 Subject: starting on #1046 rtc for nRF --- ports/nrf/common-hal/rtc/RTC.c | 58 +++++++++++++++++++++++++++++++++++++ ports/nrf/common-hal/rtc/RTC.h | 32 ++++++++++++++++++++ ports/nrf/common-hal/rtc/__init__.c | 0 ports/nrf/mpconfigport.h | 1 - ports/nrf/mpconfigport.mk | 2 +- ports/nrf/supervisor/port.c | 5 ++++ 6 files changed, 96 insertions(+), 2 deletions(-) create mode 100644 ports/nrf/common-hal/rtc/RTC.c create mode 100644 ports/nrf/common-hal/rtc/RTC.h create mode 100644 ports/nrf/common-hal/rtc/__init__.c diff --git a/ports/nrf/common-hal/rtc/RTC.c b/ports/nrf/common-hal/rtc/RTC.c new file mode 100644 index 000000000..871fddc9d --- /dev/null +++ b/ports/nrf/common-hal/rtc/RTC.c @@ -0,0 +1,58 @@ +/* + * This file is part of the MicroPython project, http://micropython.org/ + * + * The MIT License (MIT) + * + * Copyright (c) 2019 Nick Moore 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 + +#include "py/obj.h" +#include "py/runtime.h" +#include "lib/timeutils/timeutils.h" +#include "shared-bindings/rtc/__init__.h" +#include "supervisor/shared/translate.h" + +void rtc_init(void) { +} + +void common_hal_rtc_get_time(timeutils_struct_time_t *tm) { + tm->tm_year = 2000; + tm->tm_mon = 1; + tm->tm_mday = 2; + tm->tm_hour = 3; + tm->tm_min = 4; + tm->tm_sec = 5; + tm->tm_wday = 6; + tm->tm_yday = 2; +} + +void common_hal_rtc_set_time(timeutils_struct_time_t *tm) { +} + +// A positive value speeds up the clock by removing clock cycles. +int common_hal_rtc_get_calibration(void) { + return 0; +} + +void common_hal_rtc_set_calibration(int calibration) { +} diff --git a/ports/nrf/common-hal/rtc/RTC.h b/ports/nrf/common-hal/rtc/RTC.h new file mode 100644 index 000000000..5374fa2c8 --- /dev/null +++ b/ports/nrf/common-hal/rtc/RTC.h @@ -0,0 +1,32 @@ +/* + * This file is part of the MicroPython project, http://micropython.org/ + * + * The MIT License (MIT) + * + * Copyright (c) 2018 Noralf Trønnes + * + * 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. + */ + +#ifndef MICROPY_INCLUDED_NRF_COMMON_HAL_RTC_RTC_H +#define MICROPY_INCLUDED_NRF_COMMON_HAL_RTC_RTC_H + +extern void rtc_init(void); + +#endif // MICROPY_INCLUDED_NRF_COMMON_HAL_RTC_RTC_H diff --git a/ports/nrf/common-hal/rtc/__init__.c b/ports/nrf/common-hal/rtc/__init__.c new file mode 100644 index 000000000..e69de29bb diff --git a/ports/nrf/mpconfigport.h b/ports/nrf/mpconfigport.h index 1b2d8ea12..5ed521e85 100644 --- a/ports/nrf/mpconfigport.h +++ b/ports/nrf/mpconfigport.h @@ -57,5 +57,4 @@ CIRCUITPY_COMMON_ROOT_POINTERS \ ble_drv_evt_handler_entry_t* ble_drv_evt_handler_entries; \ - #endif // NRF5_MPCONFIGPORT_H__ diff --git a/ports/nrf/mpconfigport.mk b/ports/nrf/mpconfigport.mk index badfb6735..75acb40d9 100644 --- a/ports/nrf/mpconfigport.mk +++ b/ports/nrf/mpconfigport.mk @@ -23,7 +23,7 @@ CIRCUITPY_I2CSLAVE = 0 CIRCUITPY_NVM = 0 # rtc not yet implemented -CIRCUITPY_RTC = 0 +CIRCUITPY_RTC = 1 # frequencyio not yet implemented CIRCUITPY_FREQUENCYIO = 0 diff --git a/ports/nrf/supervisor/port.c b/ports/nrf/supervisor/port.c index fd077a46a..3d20e94ae 100644 --- a/ports/nrf/supervisor/port.c +++ b/ports/nrf/supervisor/port.c @@ -45,8 +45,11 @@ #include "common-hal/pulseio/PWMOut.h" #include "common-hal/pulseio/PulseOut.h" #include "common-hal/pulseio/PulseIn.h" +#include "common-hal/rtc/RTC.h" #include "tick.h" +#include "shared-bindings/rtc/__init__.h" + static void power_warning_handler(void) { reset_into_safe_mode(BROWNOUT); } @@ -71,6 +74,7 @@ safe_mode_t port_init(void) { // Configure millisecond timer initialization. tick_init(); + rtc_init(); // Will do usb_init() if chip supports USB. board_init(); @@ -90,6 +94,7 @@ void reset_port(void) { pulseout_reset(); pulsein_reset(); timers_reset(); + rtc_reset(); bleio_reset(); -- cgit v1.2.3 From 69cf33e6a11e16433c16845cbf90a6b4748ad200 Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Thu, 7 Feb 2019 22:51:23 +1100 Subject: more fake RTC code ... adafruit/circuitpython#1046 (works if MP_WEAK common_hal_rtc_get_time is removed) --- ports/nrf/common-hal/rtc/RTC.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/ports/nrf/common-hal/rtc/RTC.c b/ports/nrf/common-hal/rtc/RTC.c index 871fddc9d..7690b3bd3 100644 --- a/ports/nrf/common-hal/rtc/RTC.c +++ b/ports/nrf/common-hal/rtc/RTC.c @@ -32,21 +32,25 @@ #include "shared-bindings/rtc/__init__.h" #include "supervisor/shared/translate.h" +#include "nrfx_rtc.h" + +static uint32_t _rtc_seconds = 0; + +void rtc_handler(nrfx_rtc_int_type_t int_type) { + +} + void rtc_init(void) { } void common_hal_rtc_get_time(timeutils_struct_time_t *tm) { - tm->tm_year = 2000; - tm->tm_mon = 1; - tm->tm_mday = 2; - tm->tm_hour = 3; - tm->tm_min = 4; - tm->tm_sec = 5; - tm->tm_wday = 6; - tm->tm_yday = 2; + timeutils_seconds_since_2000_to_struct_time(_rtc_seconds, tm); } void common_hal_rtc_set_time(timeutils_struct_time_t *tm) { + _rtc_seconds = timeutils_seconds_since_2000( + tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec + ); } // A positive value speeds up the clock by removing clock cycles. -- cgit v1.2.3 From b09d2c3c625340476aad6f8ce7be1f6426ff2594 Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Thu, 7 Feb 2019 23:50:14 +1100 Subject: enable NRFX RTC adafruit/circuitpython#1046 --- ports/nrf/Makefile | 1 + ports/nrf/common-hal/rtc/RTC.c | 28 ++++++++++++++++++++++++---- ports/nrf/nrfx_config.h | 3 +++ shared-bindings/rtc/RTC.c | 2 ++ 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/ports/nrf/Makefile b/ports/nrf/Makefile index 3681ac49e..3cb4b52aa 100755 --- a/ports/nrf/Makefile +++ b/ports/nrf/Makefile @@ -140,6 +140,7 @@ SRC_NRFX = $(addprefix nrfx/,\ drivers/src/nrfx_twim.c \ drivers/src/nrfx_uarte.c \ drivers/src/nrfx_gpiote.c \ + drivers/src/nrfx_rtc.c \ ) ifdef EXTERNAL_FLASH_DEVICES diff --git a/ports/nrf/common-hal/rtc/RTC.c b/ports/nrf/common-hal/rtc/RTC.c index 7690b3bd3..85cdb4c37 100644 --- a/ports/nrf/common-hal/rtc/RTC.c +++ b/ports/nrf/common-hal/rtc/RTC.c @@ -33,24 +33,44 @@ #include "supervisor/shared/translate.h" #include "nrfx_rtc.h" +#include "nrf_clock.h" -static uint32_t _rtc_seconds = 0; +#define RTC_CLOCK_HZ (8) -void rtc_handler(nrfx_rtc_int_type_t int_type) { +static uint32_t rtc_offset = 0; + +const nrfx_rtc_t rtc_instance = NRFX_RTC_INSTANCE(0); +const nrfx_rtc_config_t rtc_config = { + .prescaler = RTC_FREQ_TO_PRESCALER(RTC_CLOCK_HZ), + .reliable = 0, + .tick_latency = 0, + .interrupt_priority = 6 +}; + +void rtc_handler(nrfx_rtc_int_type_t int_type) { + // do nothing } void rtc_init(void) { + if (!nrf_clock_lf_is_running()) { + nrf_clock_task_trigger(NRF_CLOCK_TASK_LFCLKSTART); + } + nrfx_rtc_counter_clear(&rtc_instance); + nrfx_rtc_init(&rtc_instance, &rtc_config, rtc_handler); + nrfx_rtc_enable(&rtc_instance); } void common_hal_rtc_get_time(timeutils_struct_time_t *tm) { - timeutils_seconds_since_2000_to_struct_time(_rtc_seconds, tm); + uint32_t t = rtc_offset + (nrfx_rtc_counter_get(&rtc_instance) / RTC_CLOCK_HZ ); + timeutils_seconds_since_2000_to_struct_time(t, tm); } void common_hal_rtc_set_time(timeutils_struct_time_t *tm) { - _rtc_seconds = timeutils_seconds_since_2000( + rtc_offset = timeutils_seconds_since_2000( tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec ); + nrfx_rtc_counter_clear(&rtc_instance); } // A positive value speeds up the clock by removing clock cycles. diff --git a/ports/nrf/nrfx_config.h b/ports/nrf/nrfx_config.h index 57a2727aa..b8a0a7f60 100644 --- a/ports/nrf/nrfx_config.h +++ b/ports/nrf/nrfx_config.h @@ -70,6 +70,9 @@ #define NRFX_PWM3_ENABLED 0 #endif +#define NRFX_RTC_ENABLED 1 +#define NRFX_RTC0_ENABLED 1 + // TIMERS #define NRFX_TIMER_ENABLED 1 // Don't enable TIMER0: it's used by the SoftDevice. diff --git a/shared-bindings/rtc/RTC.c b/shared-bindings/rtc/RTC.c index 474d4a399..97265d601 100644 --- a/shared-bindings/rtc/RTC.c +++ b/shared-bindings/rtc/RTC.c @@ -36,6 +36,7 @@ #include "shared-bindings/time/__init__.h" #include "supervisor/shared/translate.h" +/* void MP_WEAK common_hal_rtc_get_time(timeutils_struct_time_t *tm) { mp_raise_NotImplementedError(translate("RTC is not supported on this board")); } @@ -51,6 +52,7 @@ int MP_WEAK common_hal_rtc_get_calibration(void) { void MP_WEAK common_hal_rtc_set_calibration(int calibration) { mp_raise_NotImplementedError(translate("RTC calibration is not supported on this board")); } +*/ const rtc_rtc_obj_t rtc_rtc_obj = {{&rtc_rtc_type}}; -- cgit v1.2.3 From ff6395fa4eaf531abdf68719663895f4f2bf1870 Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Tue, 12 Feb 2019 13:09:39 +1100 Subject: workaround for problem with adafruit/circuitpython#1046 the __weak linking works fine so long as these functions are not identical. I have not yet worked out why. --- shared-bindings/rtc/RTC.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/shared-bindings/rtc/RTC.c b/shared-bindings/rtc/RTC.c index 97265d601..7c85f328c 100644 --- a/shared-bindings/rtc/RTC.c +++ b/shared-bindings/rtc/RTC.c @@ -36,13 +36,12 @@ #include "shared-bindings/time/__init__.h" #include "supervisor/shared/translate.h" -/* void MP_WEAK common_hal_rtc_get_time(timeutils_struct_time_t *tm) { - mp_raise_NotImplementedError(translate("RTC is not supported on this board")); + mp_raise_NotImplementedError(translate("RTC get is not supported on this board")); } void MP_WEAK common_hal_rtc_set_time(timeutils_struct_time_t *tm) { - mp_raise_NotImplementedError(translate("RTC is not supported on this board")); + mp_raise_NotImplementedError(translate("RTC set is not supported on this board")); } int MP_WEAK common_hal_rtc_get_calibration(void) { @@ -52,7 +51,7 @@ int MP_WEAK common_hal_rtc_get_calibration(void) { void MP_WEAK common_hal_rtc_set_calibration(int calibration) { mp_raise_NotImplementedError(translate("RTC calibration is not supported on this board")); } -*/ + const rtc_rtc_obj_t rtc_rtc_obj = {{&rtc_rtc_type}}; -- cgit v1.2.3 From 28254def0bf10ecb2690a9eb3af6efe4e515eea6 Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Tue, 12 Feb 2019 13:11:08 +1100 Subject: adafruit/circuitpython#1046 handle overflows in the RTC counter --- ports/nrf/common-hal/rtc/RTC.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/ports/nrf/common-hal/rtc/RTC.c b/ports/nrf/common-hal/rtc/RTC.c index 85cdb4c37..d62815b5a 100644 --- a/ports/nrf/common-hal/rtc/RTC.c +++ b/ports/nrf/common-hal/rtc/RTC.c @@ -35,9 +35,14 @@ #include "nrfx_rtc.h" #include "nrf_clock.h" +// We clock the RTC very slowly (8Hz) so that it won't overflow often. +// But the counter is only 24 bits, so overflow is about every 24 days ... +// For testing, set this to 32768 and it'll overflow every few minutes + #define RTC_CLOCK_HZ (8) -static uint32_t rtc_offset = 0; +volatile static uint32_t rtc_offset = 0; +int8_t rtc_calibration = 0; const nrfx_rtc_t rtc_instance = NRFX_RTC_INSTANCE(0); @@ -49,7 +54,9 @@ const nrfx_rtc_config_t rtc_config = { }; void rtc_handler(nrfx_rtc_int_type_t int_type) { - // do nothing + if (int_type == NRFX_RTC_INT_OVERFLOW) { + rtc_offset += (1L<<24) / RTC_CLOCK_HZ; + } } void rtc_init(void) { @@ -59,6 +66,7 @@ void rtc_init(void) { nrfx_rtc_counter_clear(&rtc_instance); nrfx_rtc_init(&rtc_instance, &rtc_config, rtc_handler); nrfx_rtc_enable(&rtc_instance); + nrfx_rtc_overflow_enable(&rtc_instance, 1); } void common_hal_rtc_get_time(timeutils_struct_time_t *tm) { @@ -75,8 +83,11 @@ void common_hal_rtc_set_time(timeutils_struct_time_t *tm) { // A positive value speeds up the clock by removing clock cycles. int common_hal_rtc_get_calibration(void) { - return 0; + return rtc_calibration; } void common_hal_rtc_set_calibration(int calibration) { + if (calibration > 127 || calibration < -127) + mp_raise_ValueError(translate("calibration value out of range +/-127")); + rtc_calibration = calibration; } -- cgit v1.2.3 From 71622a45155f8082d56e379c9f3e5b3e4645c09e Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Tue, 12 Feb 2019 13:36:24 +1100 Subject: There isn't really a good way to calibrate this RTC adafruit/circuitpython#1046 --- ports/nrf/common-hal/rtc/RTC.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ports/nrf/common-hal/rtc/RTC.c b/ports/nrf/common-hal/rtc/RTC.c index d62815b5a..d807d7b03 100644 --- a/ports/nrf/common-hal/rtc/RTC.c +++ b/ports/nrf/common-hal/rtc/RTC.c @@ -42,7 +42,6 @@ #define RTC_CLOCK_HZ (8) volatile static uint32_t rtc_offset = 0; -int8_t rtc_calibration = 0; const nrfx_rtc_t rtc_instance = NRFX_RTC_INSTANCE(0); @@ -80,14 +79,3 @@ void common_hal_rtc_set_time(timeutils_struct_time_t *tm) { ); nrfx_rtc_counter_clear(&rtc_instance); } - -// A positive value speeds up the clock by removing clock cycles. -int common_hal_rtc_get_calibration(void) { - return rtc_calibration; -} - -void common_hal_rtc_set_calibration(int calibration) { - if (calibration > 127 || calibration < -127) - mp_raise_ValueError(translate("calibration value out of range +/-127")); - rtc_calibration = calibration; -} -- cgit v1.2.3 From 93684737eb9a85aca1972ed53f5ec908c51e2401 Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Sat, 2 Mar 2019 22:19:47 +1100 Subject: Fix up messages & wild stab at translations for adafruit/circuitpython#1046 The mysterious MP_WEAK linking bug still exists, thus the new message for 'set'. --- locale/ID.po | 3 + locale/circuitpython.pot | 2606 +++++--------------------------------------- locale/de_DE.po | 5 +- locale/en_US.po | 5 +- locale/en_x_pirate.po | 2642 ++++++--------------------------------------- locale/es.po | 5 +- locale/fil.po | 5 +- locale/fr.po | 3 + locale/it_IT.po | 5 +- locale/pt_BR.po | 5 +- shared-bindings/rtc/RTC.c | 2 +- 11 files changed, 614 insertions(+), 4672 deletions(-) diff --git a/locale/ID.po b/locale/ID.po index 1df86a7d2..63b121bcd 100644 --- a/locale/ID.po +++ b/locale/ID.po @@ -1136,6 +1136,9 @@ msgstr "" msgid "RTC is not supported on this board" msgstr "" +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index 645b2e4ad..c6bd8f4b1 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-28 09:50+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,37 +23,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr "" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr "" - #: main.c msgid " output:\n" msgstr "" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" -#: py/obj.c -msgid "%q index out of range" -msgstr "" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "" @@ -61,166 +40,10 @@ msgstr "" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'await' outside function" -msgstr "" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'return' outside function" -msgstr "" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "" - -#: py/obj.c -msgid ", in %q\n" -msgstr "" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -231,54 +54,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "All UART peripherals are in use" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -301,18 +84,6 @@ msgid "" "disable.\n" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -330,12 +101,6 @@ msgstr "" msgid "Buffer must be at least length 1" msgstr "" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, c-format -msgid "Bus pin %d is already in use" -msgstr "" - #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "" @@ -344,15 +109,6 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -369,72 +125,26 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "" - -#: ports/nrf/common-hal/microcontroller/Processor.c -msgid "Cannot get temperature" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -443,10 +153,6 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -459,27 +165,14 @@ msgstr "" msgid "Clock stretch too long" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -492,67 +185,21 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -msgid "Data 0 pin must be byte aligned" -msgstr "" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -msgid "Data too large for advertisement packet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Data too large for the advertisement packet" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -560,8 +207,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -570,440 +217,117 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to acquire mutex" +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +msgid "Function requires lock" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to acquire mutex, err 0x%04x" +#: shared-module/displayio/Group.c +msgid "Group full" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -#, c-format -msgid "Failed to add characteristic, err 0x%04x" +#: shared-bindings/_pew/PewPew.c +msgid "Incorrect buffer size" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to add service" +#: shared-module/displayio/OnDiskBitmap.c +msgid "Invalid BMP file" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to add service, err 0x%04x" +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid PWM frequency" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Invalid direction." msgstr "" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" +#: shared-module/audioio/WaveFile.c +msgid "Invalid file" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to change softdevice state" +#: shared-module/audioio/WaveFile.c +msgid "Invalid format chunk size" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to connect:" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid number of bits" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to continue scanning" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid phase" msgstr "" -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to continue scanning, err 0x%04x" +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid pin" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to create mutex" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid polarity" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to discover services" +#: shared-bindings/microcontroller/__init__.c +msgid "Invalid run mode." msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get local address" +#: shared-module/audioio/WaveFile.c +msgid "Invalid wave file" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get softdevice state" +#: shared-module/displayio/Group.c +msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" +#: supervisor/shared/safe_mode.c +msgid "" +"Looks like our core CircuitPython code crashed hard. Whoops!\n" +"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" +" with the contents of your CIRCUITPY drive and this message:\n" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read CCCD value, err 0x%04x" +#: shared-module/bitbangio/SPI.c +msgid "MISO pin init failed." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" +#: shared-module/bitbangio/SPI.c +msgid "MOSI pin init failed." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c +#: shared-module/displayio/Shape.c #, c-format -msgid "Failed to read gatts value, err 0x%04x" +msgid "Maximum x value when mirrored is %d" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#: supervisor/shared/safe_mode.c +msgid "MicroPython NLR jump failed. Likely memory corruption.\n" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to release mutex" +#: supervisor/shared/safe_mode.c +msgid "MicroPython fatal error.\n" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to release mutex, err 0x%04x" +#: shared-bindings/displayio/Display.c +msgid "Must be a Group subclass." msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start advertising" +#: supervisor/shared/board_busses.c +msgid "No default I2C bus" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to start advertising, err 0x%04x" +#: supervisor/shared/board_busses.c +msgid "No default SPI bus" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start scanning" +#: supervisor/shared/board_busses.c +msgid "No default UART bus" msgstr "" -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to start scanning, err 0x%04x" +#: shared-bindings/os/__init__.c +msgid "No hardware random available" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to stop advertising" -msgstr "" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "" - -#: py/moduerrno.c -msgid "File exists" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c -msgid "Function requires lock" -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Group full" -msgstr "" - -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "Incorrect buffer size" -msgstr "" - -#: py/moduerrno.c -msgid "Input/output error" -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c -msgid "Invalid BMP file" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c -msgid "Invalid PWM frequency" -msgstr "" - -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Invalid direction." -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid file" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid format chunk size" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid number of bits" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid phase" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid pin" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid polarity" -msgstr "" - -#: shared-bindings/microcontroller/__init__.c -msgid "Invalid run mode." -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid wave file" -msgstr "" - -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Layer must be a Group or TileGrid subclass." -msgstr "" - -#: py/objslice.c -msgid "Length must be an int" -msgstr "" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"Looks like our core CircuitPython code crashed hard. Whoops!\n" -"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" -" with the contents of your CIRCUITPY drive and this message:\n" -msgstr "" - -#: shared-module/bitbangio/SPI.c -msgid "MISO pin init failed." -msgstr "" - -#: shared-module/bitbangio/SPI.c -msgid "MOSI pin init failed." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "" - -#: shared-module/displayio/Shape.c -#, c-format -msgid "Maximum x value when mirrored is %d" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "MicroPython NLR jump failed. Likely memory corruption.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "MicroPython fatal error.\n" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" - -#: shared-bindings/displayio/Display.c -msgid "Must be a Group subclass." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default I2C bus" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default SPI bus" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default UART bus" -msgstr "" - -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "" - -#: shared-bindings/os/__init__.c -msgid "No hardware random available" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "" - -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected" -msgstr "" - -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "Not connected" msgstr "" #: shared-bindings/util.c @@ -1011,14 +335,6 @@ msgid "" "Object has been deinitialized and can no longer be used. Create a new object." msgstr "" -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1032,1777 +348,403 @@ msgstr "" #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" -"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " -"given" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Only slices with step=1 (aka None) are supported" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "" - -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" -msgstr "" - -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM frequency not writable when variable_frequency is False on construction." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -msgid "Plus any modules on the filesystem\n" -msgstr "" - -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." -msgstr "" - -#: shared-bindings/rtc/RTC.c -msgid "RTC calibration is not supported on this board" -msgstr "" - -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c -msgid "RTC is not supported on this board" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Range out of bounds" -msgstr "" - -#: shared-bindings/pulseio/PulseIn.c -msgid "Read-only" -msgstr "" - -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "" - -#: shared-module/displayio/Bitmap.c -msgid "Read-only object" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "Row entry must be digitalio.DigitalInOut" -msgstr "" - -#: main.c -msgid "Running in safe mode! Auto-reload is off.\n" -msgstr "" - -#: main.c -msgid "Running in safe mode! Not running saved code.\n" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "Slice and value different lengths." -msgstr "" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c -msgid "Slices not supported" -msgstr "" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "" - -#: shared-bindings/supervisor/__init__.c -msgid "Stack size must be at least 256" -msgstr "" - -#: shared-bindings/multiterminal/__init__.c -msgid "Stream missing readinto() or write() method." -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The CircuitPython heap was corrupted because the stack was too small.\n" -"Please increase stack size limits and press reset (after ejecting " -"CIRCUITPY).\n" -"If you didn't change the stack, then file an issue here with the contents of " -"your CIRCUITPY drive:\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The microcontroller's power dipped. Please make sure your power supply " -"provides\n" -"enough power for the whole circuit and press reset (after ejecting " -"CIRCUITPY).\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The reset button was pressed while booting CircuitPython. Press again to " -"exit safe mode.\n" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's bits_per_sample does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's channel count does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's sample rate does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's signedness does not match the mixer's" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile height must exactly divide bitmap height" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile indices must be 0 - 255" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile width must exactly divide bitmap width" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "To exit, please reset the board without " -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "" - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c -msgid "Too many display busses" -msgstr "" - -#: shared-bindings/displayio/Display.c -msgid "Too many displays" -msgstr "" - -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "Tuple or struct_time argument required" -msgstr "" - -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "" - -#: shared-module/usb_hid/Device.c -msgid "USB Busy" -msgstr "" - -#: shared-module/usb_hid/Device.c -msgid "USB Error" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID integer value not in range 0 to 0xffff" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID value is not str, int or byte buffer" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c -msgid "Unable to read color palette data" -msgstr "" - -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "Unable to write to nvm." -msgstr "" - -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "" - -#: shared-module/displayio/Display.c -msgid "Unsupported display bus type" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Unsupported format" -msgstr "" - -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Unsupported pull value." -msgstr "" - -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "Voice index too high" -msgstr "" - -#: main.c -msgid "WARNING: Your code filename has two extensions\n" -msgstr "" - -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"You are running in safe mode which means something unanticipated happened.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " -msgstr "" - -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - -#: py/objtype.c -msgid "__init__() should return None" -msgstr "" - -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "" - -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "" - -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "" - -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "" - -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "" - -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "" - -#: py/runtime.c -msgid "argument has wrong type" -msgstr "" - -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "" - -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "" - -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" -msgstr "" - -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "" - -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "" - -#: py/objstr.c -msgid "bad format string" -msgstr "" - -#: py/binary.c -msgid "bad typecode" -msgstr "" - -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "" - -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "" - -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" -msgstr "" - -#: py/emitinlinethumb.c -msgid "branch not in range" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" - -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "" - -#: shared-module/struct/__init__.c -msgid "buffer size must match format" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "" - -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "" - -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" - -#: py/vm.c -msgid "byte code not implemented" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "" - -#: py/objstr.c -msgid "bytes value out of range" -msgstr "" - -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "" - -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "" - -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "" - -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "" - -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "" - -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "" - -#: py/compile.c -msgid "can't assign to expression" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "" - -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "" - -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "" - -#: py/objint.c -msgid "can't convert inf to int" -msgstr "" - -#: py/obj.c -msgid "can't convert to complex" -msgstr "" - -#: py/obj.c -msgid "can't convert to float" -msgstr "" - -#: py/obj.c -msgid "can't convert to int" -msgstr "" - -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "" - -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "" - -#: py/compile.c -msgid "can't delete expression" -msgstr "" - -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "" - -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - -#: py/compile.c -msgid "can't have multiple **x" -msgstr "" - -#: py/compile.c -msgid "can't have multiple *x" -msgstr "" - -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "" - -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "" - -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" - -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "" - -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" - -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "" - -#: py/objtype.c -msgid "cannot create instance" -msgstr "" - -#: py/runtime.c -msgid "cannot import name %q" -msgstr "" - -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "" - -#: py/emitnative.c -msgid "casting" -msgstr "" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "" - -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "" - -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "" - -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "" - -#: extmod/moduzlib.c -msgid "compression header" -msgstr "" - -#: py/parse.c -msgid "constant must be an integer" -msgstr "" - -#: py/emitnative.c -msgid "conversion to object" -msgstr "" - -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "" - -#: py/compile.c -msgid "default 'except' must be last" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "" - -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "" - -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - -#: py/objdeque.c -msgid "empty" -msgstr "" - -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "" - -#: py/objstr.c -msgid "empty separator" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "" - -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "" - -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "" - -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "" - -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "" - -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "" - -#: py/obj.c -msgid "expected tuple/list" -msgstr "" - -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "" - -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "" - -#: py/compile.c -msgid "expecting just a value for set" -msgstr "" - -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "" - -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "" - -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "" - -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "" - -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "" - -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "" - -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "" - -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "" - -#: py/objint.c -msgid "float too big" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "" - -#: py/objstr.c -msgid "format requires a dict" -msgstr "" - -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "" - -#: py/objdeque.c -msgid "full" -msgstr "" - -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "" - -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "" - -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "" - -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "" - -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "" - -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "" - -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "" - -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "" - -#: py/objgenerator.c -msgid "generator already executing" -msgstr "" - -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "" - -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "" - -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "" - -#: py/compile.c -msgid "identifier redefined as global" -msgstr "" - -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "" - -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "" - -#: py/objstr.c -msgid "incomplete format" -msgstr "" - -#: py/objstr.c -msgid "incomplete format key" -msgstr "" - -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "" - -#: py/obj.c -msgid "indices must be integers" -msgstr "" - -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "" - -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "" - -#: py/objstr.c -msgid "integer required" -msgstr "" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" - -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "" - -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "" - -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "" - -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "" - -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "" - -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "" - -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "" - -#: py/objstr.c -msgid "invalid format specifier" -msgstr "" - -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "" - -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "" - -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "" - -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "" - -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "" - -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "" - -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "" - -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" - -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" - -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" - -#: py/bc.c -msgid "keywords must be strings" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "" - -#: py/compile.c -msgid "label redefined" -msgstr "" - -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "" - -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "" - -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "" - -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "" - -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "" - -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "" - -#: py/objint.c -msgid "long int not supported in this build" -msgstr "" - -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "" - -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "" - -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "" - -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" - -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "" - -#: py/builtinimport.c -msgid "module not found" -msgstr "" - -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "" - -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" - -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "" - -#: py/emitnative.c -msgid "must raise an object" -msgstr "" - -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "" - -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "" - -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "" - -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" -msgstr "" - -#: py/runtime.c -msgid "name not defined" -msgstr "" - -#: py/compile.c -msgid "name reused for argument" -msgstr "" - -#: py/emitnative.c -msgid "native yield" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "" - -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "" - -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" - -#: py/vm.c -msgid "no active exception to reraise" -msgstr "" - -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" - -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "" - -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "" - -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "" - -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "" - -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "" - -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "" - -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" - -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "" - -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" - -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "" - -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "" - -#: py/obj.c -msgid "object does not support item assignment" -msgstr "" - -#: py/obj.c -msgid "object does not support item deletion" -msgstr "" - -#: py/obj.c -msgid "object has no len" -msgstr "" - -#: py/obj.c -msgid "object is not subscriptable" -msgstr "" - -#: py/runtime.c -msgid "object not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" - -#: py/sequence.c -msgid "object not in sequence" -msgstr "" - -#: py/runtime.c -msgid "object not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "" - -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "" - -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "" - -#: py/objstrunicode.c py/objstr.c -msgid "offset out of bounds" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" - -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "" - -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" - -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "" - -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" - -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "" - -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" +"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " +"given" msgstr "" -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: shared-bindings/rtc/RTC.c +msgid "RTC calibration is not supported on this board" msgstr "" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +msgid "RTC is not supported on this board" msgstr "" -#: py/objset.c -msgid "pop from an empty set" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" msgstr "" -#: py/objlist.c -msgid "pop from empty list" +#: shared-bindings/pulseio/PulseIn.c +msgid "Read-only" msgstr "" -#: py/objdict.c -msgid "popitem(): dictionary is empty" +#: shared-module/displayio/Bitmap.c +msgid "Read-only object" msgstr "" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" +#: shared-bindings/_pew/PewPew.c +msgid "Row entry must be digitalio.DigitalInOut" msgstr "" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" +#: main.c +msgid "Running in safe mode! Auto-reload is off.\n" msgstr "" -#: extmod/modutimeq.c -msgid "queue overflow" +#: main.c +msgid "Running in safe mode! Not running saved code.\n" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" +#: shared-bindings/nvm/ByteArray.c +msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/_pixelbuf/__init__.c -msgid "readonly attribute" +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +msgid "Slices not supported" msgstr "" -#: py/builtinimport.c -msgid "relative import" +#: shared-bindings/supervisor/__init__.c +msgid "Stack size must be at least 256" msgstr "" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" +#: shared-bindings/multiterminal/__init__.c +msgid "Stream missing readinto() or write() method." msgstr "" -#: py/compile.c -msgid "return annotation must be an identifier" +#: supervisor/shared/safe_mode.c +msgid "" +"The CircuitPython heap was corrupted because the stack was too small.\n" +"Please increase stack size limits and press reset (after ejecting " +"CIRCUITPY).\n" +"If you didn't change the stack, then file an issue here with the contents of " +"your CIRCUITPY drive:\n" msgstr "" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" +#: supervisor/shared/safe_mode.c +msgid "" +"The microcontroller's power dipped. Please make sure your power supply " +"provides\n" +"enough power for the whole circuit and press reset (after ejecting " +"CIRCUITPY).\n" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: supervisor/shared/safe_mode.c +msgid "" +"The reset button was pressed while booting CircuitPython. Press again to " +"exit safe mode.\n" msgstr "" -#: py/objstr.c -msgid "rsplit(None,n)" +#: shared-module/audioio/Mixer.c +msgid "The sample's bits_per_sample does not match the mixer's" msgstr "" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" +#: shared-module/audioio/Mixer.c +msgid "The sample's channel count does not match the mixer's" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" +#: shared-module/audioio/Mixer.c +msgid "The sample's sample rate does not match the mixer's" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "scan failed" +#: shared-module/audioio/Mixer.c +msgid "The sample's signedness does not match the mixer's" msgstr "" -#: py/modmicropython.c -msgid "schedule stack full" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile height must exactly divide bitmap height" msgstr "" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile indices must be 0 - 255" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile width must exactly divide bitmap width" msgstr "" -#: py/objstr.c -msgid "sign not allowed in string format specifier" +#: supervisor/shared/safe_mode.c +msgid "To exit, please reset the board without " msgstr "" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +msgid "Too many display busses" msgstr "" -#: py/objstr.c -msgid "single '}' encountered in format string" +#: shared-bindings/displayio/Display.c +msgid "Too many displays" msgstr "" #: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "" - -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" +msgid "Tuple or struct_time argument required" msgstr "" -#: py/sequence.c py/objint.c -msgid "small int overflow" +#: shared-module/usb_hid/Device.c +msgid "USB Busy" msgstr "" -#: main.c -msgid "soft reboot\n" +#: shared-module/usb_hid/Device.c +msgid "USB Error" msgstr "" -#: py/objstr.c -msgid "start/end indices" +#: shared-bindings/bleio/UUID.c +msgid "UUID integer value not in range 0 to 0xffff" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" +#: shared-bindings/bleio/UUID.c +msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" msgstr "" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" +#: shared-bindings/bleio/UUID.c +msgid "UUID value is not str, int or byte buffer" msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" +#: shared-module/displayio/OnDiskBitmap.c +msgid "Unable to read color palette data" msgstr "" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" +#: shared-bindings/nvm/ByteArray.c +msgid "Unable to write to nvm." msgstr "" -#: py/stream.c -msgid "stream operation not supported" +#: shared-module/displayio/Display.c +msgid "Unsupported display bus type" msgstr "" -#: py/objstrunicode.c -msgid "string index out of range" +#: shared-module/audioio/WaveFile.c +msgid "Unsupported format" msgstr "" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Unsupported pull value." msgstr "" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" +#: shared-module/audioio/Mixer.c +msgid "Voice index too high" msgstr "" -#: extmod/moductypes.c -msgid "struct: cannot index" +#: main.c +msgid "WARNING: Your code filename has two extensions\n" msgstr "" -#: extmod/moductypes.c -msgid "struct: index out of range" +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" msgstr "" -#: extmod/moductypes.c -msgid "struct: no fields" +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " msgstr "" -#: py/objstr.c -msgid "substring not found" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" msgstr "" -#: py/compile.c -msgid "super() can't find self" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" msgstr "" -#: extmod/modujson.c -msgid "syntax error in JSON" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" msgstr "" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" msgstr "" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" +#: shared-module/struct/__init__.c +msgid "buffer size must match format" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "timeout must be >= 0.0" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" msgstr "" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" msgstr "" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" msgstr "" -#: py/objstr.c -msgid "tuple index out of range" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" msgstr "" -#: py/obj.c -msgid "tuple/list has wrong length" +#: shared-bindings/math/__init__.c +msgid "division by zero" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" +#: shared-bindings/random/__init__.c +msgid "empty sequence" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" msgstr "" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" msgstr "" -#: py/objtype.c -msgid "type is not an acceptable base type" +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" msgstr "" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" msgstr "" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" msgstr "" -#: py/objint_longlong.c -msgid "ulonglong too large" +#: shared-bindings/random/__init__.c +msgid "invalid step" msgstr "" -#: py/emitnative.c -msgid "unary op %q not implemented" +#: shared-bindings/math/__init__.c +msgid "math domain error" msgstr "" -#: py/parse.c -msgid "unexpected indent" +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" msgstr "" -#: py/bc.c -msgid "unexpected keyword argument" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: py/lexer.c -msgid "unicode name escapes" +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: py/parse.c -msgid "unindent does not match any outer indentation level" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" msgstr "" -#: py/compile.c -msgid "unknown type" +#: main.c +msgid "soft reboot\n" msgstr "" -#: py/emitnative.c -msgid "unknown type '%q'" +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" msgstr "" -#: py/objstr.c -msgid "unmatched '{' in format" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" msgstr "" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" msgstr "" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" msgstr "" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" msgstr "" #: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" +msgid "tile index out of bounds" msgstr "" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" msgstr "" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" msgstr "" -#: py/runtime.c -msgid "unsupported type for operator" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" msgstr "" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "timeout must be >= 0.0" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" msgstr "" -#: py/objstr.c -msgid "wrong number of arguments" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" msgstr "" -#: py/runtime.c -msgid "wrong number of values to unpack" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" msgstr "" #: shared-module/displayio/Shape.c @@ -2816,7 +758,3 @@ msgstr "" #: shared-module/displayio/Shape.c msgid "y value out of bounds" msgstr "" - -#: py/objrange.c -msgid "zero step" -msgstr "" diff --git a/locale/de_DE.po b/locale/de_DE.po index 87e965914..175efaf80 100644 --- a/locale/de_DE.po +++ b/locale/de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-02 22:09+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: Pascal Deneaux\n" "Language-Team: Sebastian Plamauer, Pascal Deneaux\n" @@ -1129,6 +1129,9 @@ msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt" msgid "RTC is not supported on this board" msgstr "Eine RTC wird auf diesem Board nicht unterstützt" +msgid "RTC set is not supported on this board" +msgstr "Die RTC-Änderung wird auf diesem Board nicht unterstützt" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" diff --git a/locale/en_US.po b/locale/en_US.po index da189c661..14e202d05 100644 --- a/locale/en_US.po +++ b/locale/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-02 22:09+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: \n" @@ -1108,6 +1108,9 @@ msgstr "" msgid "RTC is not supported on this board" msgstr "" +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" diff --git a/locale/en_x_pirate.po b/locale/en_x_pirate.po index f9bb0f0ff..bf6c925e6 100644 --- a/locale/en_x_pirate.po +++ b/locale/en_x_pirate.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-28 09:50+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: @sommersoft, @MrCertainly\n" @@ -25,37 +25,16 @@ msgstr "" "\n" "Captin's orders are complete. Holdin' fast fer reload.\n" -#: py/obj.c -msgid " File \"%q\"" -msgstr "" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr "" - #: main.c msgid " output:\n" msgstr "" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" -#: py/obj.c -msgid "%q index out of range" -msgstr "" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "" @@ -63,166 +42,10 @@ msgstr "" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'await' outside function" -msgstr "" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'return' outside function" -msgstr "" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "" - -#: py/obj.c -msgid ", in %q\n" -msgstr "" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Avast! A hardware interrupt channel be used already" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -233,54 +56,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "All UART peripherals are in use" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Belay that! thar be another active send" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -305,18 +88,6 @@ msgstr "" "Auto-reload be on. Put yer files on USB to weigh anchor, er' bring'er about " "t' the REPL t' scuttle.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -334,12 +105,6 @@ msgstr "" msgid "Buffer must be at least length 1" msgstr "" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, c-format -msgid "Bus pin %d is already in use" -msgstr "Belay that! Bus pin %d already be in use" - #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "" @@ -348,15 +113,6 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -373,72 +129,26 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "" - -#: ports/nrf/common-hal/microcontroller/Processor.c -msgid "Cannot get temperature" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -447,10 +157,6 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -463,27 +169,14 @@ msgstr "" msgid "Clock stretch too long" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -496,67 +189,21 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -msgid "Data 0 pin must be byte aligned" -msgstr "" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -msgid "Data too large for advertisement packet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Data too large for the advertisement packet" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "Avast! EXTINT channel already in use" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -564,8 +211,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -574,456 +221,125 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to acquire mutex" +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +msgid "Function requires lock" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to acquire mutex, err 0x%04x" +#: shared-module/displayio/Group.c +msgid "Group full" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -#, c-format -msgid "Failed to add characteristic, err 0x%04x" +#: shared-bindings/_pew/PewPew.c +msgid "Incorrect buffer size" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to add service" +#: shared-module/displayio/OnDiskBitmap.c +msgid "Invalid BMP file" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to add service, err 0x%04x" +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid PWM frequency" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Invalid direction." msgstr "" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" +#: shared-module/audioio/WaveFile.c +msgid "Invalid file" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to change softdevice state" +#: shared-module/audioio/WaveFile.c +msgid "Invalid format chunk size" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to connect:" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid number of bits" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to continue scanning" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid phase" msgstr "" -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to continue scanning, err 0x%04x" +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid pin" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to create mutex" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid polarity" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to discover services" +#: shared-bindings/microcontroller/__init__.c +msgid "Invalid run mode." msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get local address" +#: shared-module/audioio/WaveFile.c +msgid "Invalid wave file" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get softdevice state" +#: shared-module/displayio/Group.c +msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" +#: supervisor/shared/safe_mode.c +msgid "" +"Looks like our core CircuitPython code crashed hard. Whoops!\n" +"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" +" with the contents of your CIRCUITPY drive and this message:\n" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read CCCD value, err 0x%04x" +#: shared-module/bitbangio/SPI.c +msgid "MISO pin init failed." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" +#: shared-module/bitbangio/SPI.c +msgid "MOSI pin init failed." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c +#: shared-module/displayio/Shape.c #, c-format -msgid "Failed to read gatts value, err 0x%04x" +msgid "Maximum x value when mirrored is %d" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#: supervisor/shared/safe_mode.c +msgid "MicroPython NLR jump failed. Likely memory corruption.\n" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to release mutex" +#: supervisor/shared/safe_mode.c +msgid "MicroPython fatal error.\n" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to release mutex, err 0x%04x" +#: shared-bindings/displayio/Display.c +msgid "Must be a Group subclass." msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start advertising" +#: supervisor/shared/board_busses.c +msgid "No default I2C bus" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to start advertising, err 0x%04x" +#: supervisor/shared/board_busses.c +msgid "No default SPI bus" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start scanning" +#: supervisor/shared/board_busses.c +msgid "No default UART bus" msgstr "" -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to start scanning, err 0x%04x" +#: shared-bindings/os/__init__.c +msgid "No hardware random available" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to stop advertising" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "Not connected" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to stop advertising, err 0x%04x" +#: shared-bindings/util.c +msgid "" +"Object has been deinitialized and can no longer be used. Create a new object." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "" - -#: py/moduerrno.c -msgid "File exists" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c -msgid "Function requires lock" -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Group full" -msgstr "" - -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "Incorrect buffer size" -msgstr "" - -#: py/moduerrno.c -msgid "Input/output error" -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c -msgid "Invalid BMP file" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c -msgid "Invalid PWM frequency" -msgstr "" - -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Avast! Clock pin be invalid" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Invalid direction." -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid file" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid format chunk size" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid number of bits" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid phase" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid pin" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Belay that! Invalid pin for port-side channel" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Belay that! Invalid pin for starboard-side channel" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid polarity" -msgstr "" - -#: shared-bindings/microcontroller/__init__.c -msgid "Invalid run mode." -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid wave file" -msgstr "" - -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Layer must be a Group or TileGrid subclass." -msgstr "" - -#: py/objslice.c -msgid "Length must be an int" -msgstr "" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"Looks like our core CircuitPython code crashed hard. Whoops!\n" -"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" -" with the contents of your CIRCUITPY drive and this message:\n" -msgstr "" - -#: shared-module/bitbangio/SPI.c -msgid "MISO pin init failed." -msgstr "" - -#: shared-module/bitbangio/SPI.c -msgid "MOSI pin init failed." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "" - -#: shared-module/displayio/Shape.c -#, c-format -msgid "Maximum x value when mirrored is %d" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "MicroPython NLR jump failed. Likely memory corruption.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "MicroPython fatal error.\n" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" - -#: shared-bindings/displayio/Display.c -msgid "Must be a Group subclass." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Shiver me timbers! There be no DAC on this chip" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default I2C bus" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default SPI bus" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default UART bus" -msgstr "" - -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "" - -#: shared-bindings/os/__init__.c -msgid "No hardware random available" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "" - -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected" -msgstr "" - -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "" - -#: shared-bindings/util.c -msgid "" -"Object has been deinitialized and can no longer be used. Create a new object." -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c +#: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" "Only Windows format, uncompressed BMP supported: given header size is %d" @@ -1040,18 +356,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Only slices with step=1 (aka None) are supported" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1062,1751 +366,389 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "Belay that! Th' Pin be not ADC capable" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -msgid "Plus any modules on the filesystem\n" -msgstr "" - #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." -msgstr "" - -#: shared-bindings/rtc/RTC.c -msgid "RTC calibration is not supported on this board" -msgstr "" - -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c -msgid "RTC is not supported on this board" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Range out of bounds" -msgstr "" - -#: shared-bindings/pulseio/PulseIn.c -msgid "Read-only" -msgstr "" - -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "" - -#: shared-module/displayio/Bitmap.c -msgid "Read-only object" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "Row entry must be digitalio.DigitalInOut" -msgstr "" - -#: main.c -msgid "Running in safe mode! Auto-reload is off.\n" -msgstr "Runnin' in safe mode! Auto-reload be off.\n" - -#: main.c -msgid "Running in safe mode! Not running saved code.\n" -msgstr "Runnin' in safe mode! Nay runnin' saved code.\n" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "Slice and value different lengths." -msgstr "" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c -msgid "Slices not supported" -msgstr "" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "" - -#: shared-bindings/supervisor/__init__.c -msgid "Stack size must be at least 256" -msgstr "" - -#: shared-bindings/multiterminal/__init__.c -msgid "Stream missing readinto() or write() method." -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The CircuitPython heap was corrupted because the stack was too small.\n" -"Please increase stack size limits and press reset (after ejecting " -"CIRCUITPY).\n" -"If you didn't change the stack, then file an issue here with the contents of " -"your CIRCUITPY drive:\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The microcontroller's power dipped. Please make sure your power supply " -"provides\n" -"enough power for the whole circuit and press reset (after ejecting " -"CIRCUITPY).\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The reset button was pressed while booting CircuitPython. Press again to " -"exit safe mode.\n" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's bits_per_sample does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's channel count does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's sample rate does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's signedness does not match the mixer's" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile height must exactly divide bitmap height" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile indices must be 0 - 255" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile width must exactly divide bitmap width" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "To exit, please reset the board without " -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "" - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c -msgid "Too many display busses" -msgstr "" - -#: shared-bindings/displayio/Display.c -msgid "Too many displays" -msgstr "" - -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "Tuple or struct_time argument required" -msgstr "" - -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "" - -#: shared-module/usb_hid/Device.c -msgid "USB Busy" -msgstr "" - -#: shared-module/usb_hid/Device.c -msgid "USB Error" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID integer value not in range 0 to 0xffff" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID value is not str, int or byte buffer" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Arr! No free GCLK be in sight" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c -msgid "Unable to read color palette data" -msgstr "" - -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "Unable to write to nvm." -msgstr "" - -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "" - -#: shared-module/displayio/Display.c -msgid "Unsupported display bus type" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Unsupported format" -msgstr "" - -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Unsupported pull value." -msgstr "" - -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "Voice index too high" -msgstr "" - -#: main.c -msgid "WARNING: Your code filename has two extensions\n" -msgstr "Blimey! Yer code filename has two extensions\n" - -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"You are running in safe mode which means something unanticipated happened.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " -msgstr "" - -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - -#: py/objtype.c -msgid "__init__() should return None" -msgstr "" - -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "" - -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "" - -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "" - -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "" - -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "" - -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "" - -#: py/runtime.c -msgid "argument has wrong type" -msgstr "" - -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "" - -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "" - -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" -msgstr "" - -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "" - -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "" - -#: py/objstr.c -msgid "bad format string" -msgstr "" - -#: py/binary.c -msgid "bad typecode" -msgstr "" - -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "" - -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "" - -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "pieces must be of 8" - -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" -msgstr "" - -#: py/emitinlinethumb.c -msgid "branch not in range" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" - -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "" - -#: shared-module/struct/__init__.c -msgid "buffer size must match format" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "" - -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "" - -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "yer buffers must be of the same length" - -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" - -#: py/vm.c -msgid "byte code not implemented" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "" - -#: py/objstr.c -msgid "bytes value out of range" -msgstr "" - -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "" - -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "" - -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "" - -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "" - -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "" - -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "" - -#: py/compile.c -msgid "can't assign to expression" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "" - -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "" - -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "" - -#: py/objint.c -msgid "can't convert inf to int" -msgstr "" - -#: py/obj.c -msgid "can't convert to complex" -msgstr "" - -#: py/obj.c -msgid "can't convert to float" -msgstr "" - -#: py/obj.c -msgid "can't convert to int" -msgstr "" - -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "" - -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "" - -#: py/compile.c -msgid "can't delete expression" -msgstr "" - -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "" - -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - -#: py/compile.c -msgid "can't have multiple **x" -msgstr "" - -#: py/compile.c -msgid "can't have multiple *x" -msgstr "" - -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "" - -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "" - -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" - -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "" - -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" - -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "" - -#: py/objtype.c -msgid "cannot create instance" -msgstr "" - -#: py/runtime.c -msgid "cannot import name %q" -msgstr "" - -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "" - -#: py/emitnative.c -msgid "casting" -msgstr "" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "" - -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "" - -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "" - -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "" - -#: extmod/moduzlib.c -msgid "compression header" -msgstr "" - -#: py/parse.c -msgid "constant must be an integer" -msgstr "" - -#: py/emitnative.c -msgid "conversion to object" -msgstr "" - -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "" - -#: py/compile.c -msgid "default 'except' must be last" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "" - -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "" - -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - -#: py/objdeque.c -msgid "empty" -msgstr "" - -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "" - -#: py/objstr.c -msgid "empty separator" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "" - -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "" - -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "" - -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "" - -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "" - -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "" - -#: py/obj.c -msgid "expected tuple/list" -msgstr "" - -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "" - -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "" - -#: py/compile.c -msgid "expecting just a value for set" -msgstr "" - -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "" - -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "" - -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "" - -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "" - -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "" - -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "" - -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "" - -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "" - -#: py/objint.c -msgid "float too big" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "" - -#: py/objstr.c -msgid "format requires a dict" -msgstr "" - -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "" - -#: py/objdeque.c -msgid "full" -msgstr "" - -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "" - -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "" - -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "" - -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "" - -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "" - -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "" - -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "" - -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "" - -#: py/objgenerator.c -msgid "generator already executing" -msgstr "" - -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "" - -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "" - -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "" - -#: py/compile.c -msgid "identifier redefined as global" -msgstr "" - -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "" - -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "" - -#: py/objstr.c -msgid "incomplete format" -msgstr "" - -#: py/objstr.c -msgid "incomplete format key" -msgstr "" - -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "" - -#: py/obj.c -msgid "indices must be integers" -msgstr "" - -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "" - -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "" - -#: py/objstr.c -msgid "integer required" -msgstr "" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" - -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "Belay that! I2C peripheral be invalid" - -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "Arr! SPI peripheral be invalid" - -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "" - -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "" - -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "" - -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "" - -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "" - -#: py/objstr.c -msgid "invalid format specifier" -msgstr "" - -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "" - -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "" - -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "" - -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "" - -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "" - -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "" - -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "" - -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" - -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" - -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" - -#: py/bc.c -msgid "keywords must be strings" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "" - -#: py/compile.c -msgid "label redefined" -msgstr "" - -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "" - -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "" - -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "" - -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "" - -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "" - -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "" - -#: py/objint.c -msgid "long int not supported in this build" -msgstr "" - -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "" - -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "" - -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "" - -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" - -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "" - -#: py/builtinimport.c -msgid "module not found" -msgstr "" - -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "" - -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" - -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "" - -#: py/emitnative.c -msgid "must raise an object" -msgstr "" - -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "" - -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "" - -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "" - -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" -msgstr "" - -#: py/runtime.c -msgid "name not defined" -msgstr "" - -#: py/compile.c -msgid "name reused for argument" -msgstr "" - -#: py/emitnative.c -msgid "native yield" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "" - -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "" - -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" - -#: py/vm.c -msgid "no active exception to reraise" -msgstr "" - -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" - -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "" - -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "" - -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "" - -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "" - -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "" - -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "" - -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" - -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "" - -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" - -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "" - -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "" - -#: py/obj.c -msgid "object does not support item assignment" -msgstr "" - -#: py/obj.c -msgid "object does not support item deletion" -msgstr "" - -#: py/obj.c -msgid "object has no len" -msgstr "" - -#: py/obj.c -msgid "object is not subscriptable" -msgstr "" - -#: py/runtime.c -msgid "object not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" - -#: py/sequence.c -msgid "object not in sequence" -msgstr "" - -#: py/runtime.c -msgid "object not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "" - -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "" - -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "" - -#: py/objstrunicode.c py/objstr.c -msgid "offset out of bounds" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" - -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "" - -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" - -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "" - -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" - -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "" - -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "" - -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." msgstr "" -#: py/objset.c -msgid "pop from an empty set" +#: shared-bindings/rtc/RTC.c +msgid "RTC calibration is not supported on this board" msgstr "" -#: py/objlist.c -msgid "pop from empty list" +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +msgid "RTC is not supported on this board" msgstr "" -#: py/objdict.c -msgid "popitem(): dictionary is empty" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" msgstr "" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" +#: shared-bindings/pulseio/PulseIn.c +msgid "Read-only" msgstr "" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" +#: shared-module/displayio/Bitmap.c +msgid "Read-only object" msgstr "" -#: extmod/modutimeq.c -msgid "queue overflow" +#: shared-bindings/_pew/PewPew.c +msgid "Row entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#: main.c +msgid "Running in safe mode! Auto-reload is off.\n" +msgstr "Runnin' in safe mode! Auto-reload be off.\n" -#: shared-bindings/_pixelbuf/__init__.c -msgid "readonly attribute" -msgstr "" +#: main.c +msgid "Running in safe mode! Not running saved code.\n" +msgstr "Runnin' in safe mode! Nay runnin' saved code.\n" -#: py/builtinimport.c -msgid "relative import" +#: shared-bindings/nvm/ByteArray.c +msgid "Slice and value different lengths." msgstr "" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +msgid "Slices not supported" msgstr "" -#: py/compile.c -msgid "return annotation must be an identifier" +#: shared-bindings/supervisor/__init__.c +msgid "Stack size must be at least 256" msgstr "" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" +#: shared-bindings/multiterminal/__init__.c +msgid "Stream missing readinto() or write() method." msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: supervisor/shared/safe_mode.c +msgid "" +"The CircuitPython heap was corrupted because the stack was too small.\n" +"Please increase stack size limits and press reset (after ejecting " +"CIRCUITPY).\n" +"If you didn't change the stack, then file an issue here with the contents of " +"your CIRCUITPY drive:\n" msgstr "" -#: py/objstr.c -msgid "rsplit(None,n)" +#: supervisor/shared/safe_mode.c +msgid "" +"The microcontroller's power dipped. Please make sure your power supply " +"provides\n" +"enough power for the whole circuit and press reset (after ejecting " +"CIRCUITPY).\n" msgstr "" -#: shared-bindings/audioio/RawSample.c +#: supervisor/shared/safe_mode.c msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" +"The reset button was pressed while booting CircuitPython. Press again to " +"exit safe mode.\n" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" +#: shared-module/audioio/Mixer.c +msgid "The sample's bits_per_sample does not match the mixer's" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "scan failed" +#: shared-module/audioio/Mixer.c +msgid "The sample's channel count does not match the mixer's" msgstr "" -#: py/modmicropython.c -msgid "schedule stack full" +#: shared-module/audioio/Mixer.c +msgid "The sample's sample rate does not match the mixer's" msgstr "" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" +#: shared-module/audioio/Mixer.c +msgid "The sample's signedness does not match the mixer's" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile height must exactly divide bitmap height" msgstr "" -#: py/objstr.c -msgid "sign not allowed in string format specifier" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile indices must be 0 - 255" msgstr "" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile width must exactly divide bitmap width" msgstr "" -#: py/objstr.c -msgid "single '}' encountered in format string" +#: supervisor/shared/safe_mode.c +msgid "To exit, please reset the board without " msgstr "" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +msgid "Too many display busses" msgstr "" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" +#: shared-bindings/displayio/Display.c +msgid "Too many displays" msgstr "" -#: py/sequence.c py/objint.c -msgid "small int overflow" +#: shared-bindings/time/__init__.c +msgid "Tuple or struct_time argument required" msgstr "" -#: main.c -msgid "soft reboot\n" +#: shared-module/usb_hid/Device.c +msgid "USB Busy" msgstr "" -#: py/objstr.c -msgid "start/end indices" +#: shared-module/usb_hid/Device.c +msgid "USB Error" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" +#: shared-bindings/bleio/UUID.c +msgid "UUID integer value not in range 0 to 0xffff" msgstr "" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" +#: shared-bindings/bleio/UUID.c +msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" +#: shared-bindings/bleio/UUID.c +msgid "UUID value is not str, int or byte buffer" msgstr "" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" +#: shared-module/displayio/OnDiskBitmap.c +msgid "Unable to read color palette data" msgstr "" -#: py/stream.c -msgid "stream operation not supported" +#: shared-bindings/nvm/ByteArray.c +msgid "Unable to write to nvm." msgstr "" -#: py/objstrunicode.c -msgid "string index out of range" +#: shared-module/displayio/Display.c +msgid "Unsupported display bus type" msgstr "" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" +#: shared-module/audioio/WaveFile.c +msgid "Unsupported format" msgstr "" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Unsupported pull value." msgstr "" -#: extmod/moductypes.c -msgid "struct: cannot index" +#: shared-module/audioio/Mixer.c +msgid "Voice index too high" msgstr "" -#: extmod/moductypes.c -msgid "struct: index out of range" +#: main.c +msgid "WARNING: Your code filename has two extensions\n" +msgstr "Blimey! Yer code filename has two extensions\n" + +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" msgstr "" -#: extmod/moductypes.c -msgid "struct: no fields" +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " msgstr "" -#: py/objstr.c -msgid "substring not found" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" msgstr "" -#: py/compile.c -msgid "super() can't find self" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" msgstr "" -#: extmod/modujson.c -msgid "syntax error in JSON" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" msgstr "" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" msgstr "" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" +#: shared-module/struct/__init__.c +msgid "buffer size must match format" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "timeout must be >= 0.0" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" msgstr "" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" msgstr "" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" msgstr "" -#: py/objstr.c -msgid "tuple index out of range" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" msgstr "" -#: py/obj.c -msgid "tuple/list has wrong length" +#: shared-bindings/math/__init__.c +msgid "division by zero" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" +#: shared-bindings/random/__init__.c +msgid "empty sequence" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" msgstr "" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" msgstr "" -#: py/objtype.c -msgid "type is not an acceptable base type" +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" msgstr "" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" msgstr "" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" msgstr "" -#: py/objint_longlong.c -msgid "ulonglong too large" +#: shared-bindings/random/__init__.c +msgid "invalid step" msgstr "" -#: py/emitnative.c -msgid "unary op %q not implemented" +#: shared-bindings/math/__init__.c +msgid "math domain error" msgstr "" -#: py/parse.c -msgid "unexpected indent" +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" msgstr "" -#: py/bc.c -msgid "unexpected keyword argument" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: py/lexer.c -msgid "unicode name escapes" +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: py/parse.c -msgid "unindent does not match any outer indentation level" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" msgstr "" -#: py/compile.c -msgid "unknown type" +#: main.c +msgid "soft reboot\n" msgstr "" -#: py/emitnative.c -msgid "unknown type '%q'" +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" msgstr "" -#: py/objstr.c -msgid "unmatched '{' in format" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" msgstr "" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" msgstr "" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" msgstr "" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" msgstr "" #: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" +msgid "tile index out of bounds" msgstr "" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" msgstr "" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" msgstr "" -#: py/runtime.c -msgid "unsupported type for operator" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" msgstr "" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "timeout must be >= 0.0" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" msgstr "" -#: py/objstr.c -msgid "wrong number of arguments" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" msgstr "" -#: py/runtime.c -msgid "wrong number of values to unpack" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" msgstr "" #: shared-module/displayio/Shape.c @@ -2821,9 +763,8 @@ msgstr "" msgid "y value out of bounds" msgstr "" -#: py/objrange.c -msgid "zero step" -msgstr "" +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Avast! A hardware interrupt channel be used already" #~ msgid "All event channels " #~ msgstr "Avast! All th' event channels " @@ -2831,8 +772,47 @@ msgstr "" #~ msgid "All timers " #~ msgstr "Heave-to! All th' timers be used" +#~ msgid "Another send is already active" +#~ msgstr "Belay that! thar be another active send" + +#~ msgid "Bus pin %d is already in use" +#~ msgstr "Belay that! Bus pin %d already be in use" + #~ msgid "Clock unit " #~ msgstr "Blimey! Clock unit " #~ msgid "DAC already " #~ msgstr "Blimey! DAC already under sail" + +#~ msgid "EXTINT channel already in use" +#~ msgstr "Avast! EXTINT channel already in use" + +#~ msgid "Invalid clock pin" +#~ msgstr "Avast! Clock pin be invalid" + +#~ msgid "Invalid pin for left channel" +#~ msgstr "Belay that! Invalid pin for port-side channel" + +#~ msgid "Invalid pin for right channel" +#~ msgstr "Belay that! Invalid pin for starboard-side channel" + +#~ msgid "No DAC on chip" +#~ msgstr "Shiver me timbers! There be no DAC on this chip" + +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "Belay that! Th' Pin be not ADC capable" + +#~ msgid "Unable to find free GCLK" +#~ msgstr "Arr! No free GCLK be in sight" + +#~ msgid "bits must be 8" +#~ msgstr "pieces must be of 8" + +#~ msgid "buffers must be the same length" +#~ msgstr "yer buffers must be of the same length" + +#~ msgid "invalid I2C peripheral" +#~ msgstr "Belay that! I2C peripheral be invalid" + +#~ msgid "invalid SPI peripheral" +#~ msgstr "Arr! SPI peripheral be invalid" diff --git a/locale/es.po b/locale/es.po index 9f71ac160..6b5351fcb 100644 --- a/locale/es.po +++ b/locale/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-02 22:09+1100\n" "PO-Revision-Date: 2018-08-24 22:56-0500\n" "Last-Translator: \n" "Language-Team: \n" @@ -1151,6 +1151,9 @@ msgstr "Calibración de RTC no es soportada en esta placa" msgid "RTC is not supported on this board" msgstr "RTC no soportado en esta placa" +msgid "RTC set is not supported on this board" +msgstr "El cambio de RTC no soportado en esta placa" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" diff --git a/locale/fil.po b/locale/fil.po index 230a09597..c3a1f613f 100644 --- a/locale/fil.po +++ b/locale/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-02 22:09+1100\n" "PO-Revision-Date: 2018-12-20 22:15-0800\n" "Last-Translator: Timothy \n" "Language-Team: fil\n" @@ -1150,6 +1150,9 @@ msgstr "RTC calibration ay hindi supportado ng board na ito" msgid "RTC is not supported on this board" msgstr "Hindi supportado ang RTC sa board na ito" +msgid "RTC set is not supported on this board" +msgstr "Hindi sinusuportahan ang pagbabago ng RTC sa board na ito" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" diff --git a/locale/fr.po b/locale/fr.po index f9c007825..7918f0f71 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -1157,6 +1157,9 @@ msgstr "calibration de la RTC non supportée sur cette carte" msgid "RTC is not supported on this board" msgstr "RTC non supportée sur cette carte" +msgid "RTC set is not supported on this board" +msgstr "Le changement de RTC non supportée sur cette carte" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" diff --git a/locale/it_IT.po b/locale/it_IT.po index 693f8a03c..cd0da30f1 100644 --- a/locale/it_IT.po +++ b/locale/it_IT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-02 22:09+1100\n" "PO-Revision-Date: 2018-10-02 16:27+0200\n" "Last-Translator: Enrico Paganin \n" "Language-Team: \n" @@ -1153,6 +1153,9 @@ msgstr "calibrazione RTC non supportata su questa scheda" msgid "RTC is not supported on this board" msgstr "RTC non supportato su questa scheda" +msgid "RTC set is not supported on this board" +msgstr "La modifica RTC non è supportata su questa scheda" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 587ed00ba..1cd3fac2a 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-02 22:09+1100\n" "PO-Revision-Date: 2018-10-02 21:14-0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -1135,6 +1135,9 @@ msgstr "A calibração RTC não é suportada nesta placa" msgid "RTC is not supported on this board" msgstr "O RTC não é suportado nesta placa" +msgid "RTC set is not supported on this board" +msgstr "A mudança de RTC não é suportada nesta placa" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" diff --git a/shared-bindings/rtc/RTC.c b/shared-bindings/rtc/RTC.c index 7c85f328c..d9153781e 100644 --- a/shared-bindings/rtc/RTC.c +++ b/shared-bindings/rtc/RTC.c @@ -37,7 +37,7 @@ #include "supervisor/shared/translate.h" void MP_WEAK common_hal_rtc_get_time(timeutils_struct_time_t *tm) { - mp_raise_NotImplementedError(translate("RTC get is not supported on this board")); + mp_raise_NotImplementedError(translate("RTC is not supported on this board")); } void MP_WEAK common_hal_rtc_set_time(timeutils_struct_time_t *tm) { -- cgit v1.2.3 From a06ce33472637171c4c77cc862945048538d51aa Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Thu, 28 Mar 2019 09:57:35 +1100 Subject: Update translations (again) --- locale/ID.po | 2679 +++++++++--------------------------- locale/circuitpython.pot | 2 +- locale/de_DE.po | 3066 +++++++++++++++-------------------------- locale/en_US.po | 2607 ++++------------------------------- locale/es.po | 3366 ++++++++++++++++++--------------------------- locale/fil.po | 3415 +++++++++++++++++++-------------------------- locale/fr.po | 3418 +++++++++++++++++++--------------------------- locale/it_IT.po | 3242 +++++++++++++++++-------------------------- locale/pt_BR.po | 2592 ++++++++--------------------------- 9 files changed, 7929 insertions(+), 16458 deletions(-) diff --git a/locale/ID.po b/locale/ID.po index 63b121bcd..f858bf605 100644 --- a/locale/ID.po +++ b/locale/ID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,37 +23,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr "" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr "" - #: main.c msgid " output:\n" msgstr "output:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" -#: py/obj.c -msgid "%q index out of range" -msgstr "" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "buffers harus mempunyai panjang yang sama" @@ -62,166 +41,10 @@ msgstr "buffers harus mempunyai panjang yang sama" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "%q() mengambil posisi argumen %d tapi %d yang diberikan" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "'%q' argumen dibutuhkan" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "'%s' mengharapkan sebuah register" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "'%s' mengharapkan sebuah register spesial" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "'%s' mengharapkan sebuah FPU register" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "'%s' mengharapkan sebuah alamat dengan bentuk [a, b]" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "'%s' mengharapkan integer" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "'%s' mengharapkan setidaknya r%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "'%s' mengharapkan {r0, r1, ...}" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "'%s' integer 0x%x tidak cukup didalam mask 0x%x" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "'align' membutuhkan 1 argumen" - -#: py/compile.c -msgid "'await' outside function" -msgstr "'await' diluar fungsi" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "'break' diluar loop" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "'continue' diluar loop" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "'data' membutuhkan setidaknya 2 argumen" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "'data' membutuhkan argumen integer" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "'label' membutuhkan 1 argumen" - -#: py/compile.c -msgid "'return' outside function" -msgstr "'return' diluar fungsi" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "'yield' diluar fungsi" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "*x harus menjadi target assignment" - -#: py/obj.c -msgid ", in %q\n" -msgstr "" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Sebuah channel hardware interrupt sedang digunakan" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP dibutuhkan" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -232,55 +55,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "buffers harus mempunyai panjang yang sama" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "Semua perangkat I2C sedang digunakan" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "Semua perangkat SPI sedang digunakan" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "All UART peripherals are in use" -msgstr "Semua perangkat I2C sedang digunakan" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Semua channel event sedang digunakan" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "Semua channel event yang disinkronisasi sedang digunakan" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Semua timer untuk pin ini sedang digunakan" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Semua timer sedang digunakan" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "fungsionalitas AnalogOut tidak didukung" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "pin yang dipakai tidak mendukung AnalogOut" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Send yang lain sudah aktif" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -305,18 +87,6 @@ msgstr "" "Auto-reload aktif. Silahkan simpan data-data (files) melalui USB untuk " "menjalankannya atau masuk ke REPL untukmenonaktifkan.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "Bit clock dan word harus memiliki kesamaan pada clock unit" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Kedua pin harus mendukung hardware interrut" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -334,12 +104,6 @@ msgstr "" msgid "Buffer must be at least length 1" msgstr "" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy, c-format -msgid "Bus pin %d is already in use" -msgstr "DAC sudah digunakan" - #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -349,15 +113,6 @@ msgstr "buffers harus mempunyai panjang yang sama" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "Dukungan C-level" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -374,77 +129,26 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Tidak dapat menyambungkan ke AP" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Tidak dapat memutuskna dari AP" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "Tidak bisa mendapatkan pull pada saat mode output" - -#: ports/nrf/common-hal/microcontroller/Processor.c -#, fuzzy -msgid "Cannot get temperature" -msgstr "Tidak bisa mendapatkan temperatur. status: 0x%02x" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "" -"Tidak dapat menggunakan output di kedua channel dengan menggunakan pin yang " -"sama" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" -"Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader yang " -"terisi" - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Tidak dapat mengatur konfigurasi STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "tidak dapat mendapatkan ukuran scalar secara tidak ambigu" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Tidak dapat memperbarui status i/f" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -453,10 +157,6 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -469,27 +169,14 @@ msgstr "" msgid "Clock stretch too long" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Clock unit sedang digunakan" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "Tidak dapat menginisialisasi UART" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -502,69 +189,21 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "DAC sudah digunakan" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -msgid "Data 0 pin must be byte aligned" -msgstr "" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy -msgid "Data too large for advertisement packet" -msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Data too large for the advertisement packet" -msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Tidak tahu cara meloloskan objek ke fungsi native" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8266 tidak mendukung safe mode" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP866 tidak mendukung pull down" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "Channel EXTINT sedang digunakan" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Errod pada ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "Error pada regex" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -572,8 +211,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -582,258 +221,27 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to acquire mutex" -msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Service.c -#, fuzzy, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "Gagal untuk menambahkan karakteristik, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to add service" -msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Gagal untuk mengalokasikan buffer RX" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Gagal untuk megalokasikan buffer RX dari %d byte" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to change softdevice state" -msgstr "Gagal untuk merubah status softdevice, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to connect:" -msgstr "Gagal untuk menyambungkan, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to continue scanning" -msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to create mutex" -msgstr "Gagal untuk membuat mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to discover services" -msgstr "Gagal untuk menemukan layanan, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get local address" -msgstr "Gagal untuk mendapatkan alamat lokal, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get softdevice state" -msgstr "Gagal untuk mendapatkan status softdevice, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "Gagal untuk menambahkan Vendor Spesific UUID, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to release mutex" -msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start advertising" -msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start scanning" -msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to stop advertising" -msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "Gagal untuk menulis nilai atribut, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" - -#: py/moduerrno.c -msgid "File exists" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 tidak mendukung pull up" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "operasi I/O pada file tertutup" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "operasi I2C tidak didukung" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frekuensi PWM tidak valid" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Bit clock pada pin tidak valid" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "Ukuran buffer tidak valid" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Clock pada pin tidak valid" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "data pin tidak valid" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "" @@ -854,27 +262,10 @@ msgstr "" msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin tidak valid" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Pin untuk channel kiri tidak valid" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Pin untuk channel kanan tidak valid" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "Pin-pin tidak valid" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -883,30 +274,14 @@ msgstr "" msgid "Invalid run mode." msgstr "" -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "LHS dari keyword arg harus menjadi sebuah id" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: py/objslice.c -msgid "Length must be an int" -msgstr "" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -922,11 +297,6 @@ msgstr "" msgid "MOSI pin init failed." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Nilai maksimum frekuensi PWM adalah %dhz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -940,48 +310,10 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Nilai minimum frekuensi PWM is 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "Nilai Frekuensi PWM ganda tidak didukung. PWM sudah diatur pada %dhz" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "tidak ada channel DMA ditemukan" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Tidak ada dukungan PulseIn untuk %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Tidak pin RX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Tidak ada pin TX" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Tidak ada standar bus I2C" @@ -994,57 +326,20 @@ msgstr "Tidak ada standar bus SPI" msgid "No default UART bus" msgstr "Tidak ada standar bus UART" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Tidak ada GCLK yang kosong" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Tidak dukungan hardware untuk analog out." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Tidak ada dukungan hardware untuk pin" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Tidak dapat menyambungkan ke AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." msgstr "" -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "Parity ganjil tidak didukung" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "Hanya 8 atau 16 bit mono dengan " - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1062,18 +357,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Only slices with step=1 (aka None) are supported" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Hanya tx yang mendukung pada UART1 (GPIO2)." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1084,40 +367,6 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM tidak didukung pada pin %d" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pin %q tidak memiliki kemampuan ADC" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) tidak mendukung pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pin-pin tidak valid untuk SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -msgid "Plus any modules on the filesystem\n" -msgstr "Tambahkan module apapun pada filesystem\n" - #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -1136,30 +385,19 @@ msgstr "" msgid "RTC is not supported on this board" msgstr "" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Range out of bounds" -msgstr "" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "sistem file (filesystem) bersifat Read-only" - #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "sistem file (filesystem) bersifat Read-only" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Channel Kanan tidak didukung" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1173,50 +411,15 @@ msgid "Running in safe mode! Not running saved code.\n" msgstr "" "Berjalan di mode aman(safe mode)! tidak menjalankan kode yang tersimpan.\n" -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "SDA atau SCL membutuhkan pull up" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA harus aktif" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA dibutuhkan" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "Nilai sampel terlalu tinggi. Nilai harus kurang dari %d" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Serializer sedang digunakan" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "Dukungan soft device, id: 0x%08lX, pc: 0x%08l" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "Memisahkan dengan menggunakan sub-captures" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -1283,11 +486,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Untuk keluar, silahkan reset board tanpa " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "Terlalu banyak channel dalam sampel" - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1295,23 +494,10 @@ msgstr "" msgid "Too many displays" msgstr "" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) tidak ada" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) tidak dapat dibaca" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "" @@ -1332,49 +518,14 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Tidak dapat menemukan GCLK yang kosong" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Tidak dapat memasang filesystem kembali" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipe tidak diketahui" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "Baudrate tidak didukung" - #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -1384,24 +535,10 @@ msgstr "Baudrate tidak didukung" msgid "Unsupported format" msgstr "" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Gunakan esptool untuk menghapus flash dan upload ulang Python sebagai " -"gantinya" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "" - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "" @@ -1410,22 +547,6 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "PERINGATAN: Nama file kode anda mempunyai dua ekstensi\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" -"Selamat datang ke Adafruit CircuitPython %s!\n" -"\n" -"Silahkan kunjungi learn.adafruit.com/category/circuitpython untuk panduan " -"project.\n" -"\n" -"Untuk menampilkan modul built-in silahkan ketik `help(\"modules\")`.\n" - #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -1438,1445 +559,1009 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Anda mengajukan untuk memulai mode aman pada (safe mode) pada " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "[addrinfo error %d]" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "" -#: py/objtype.c -msgid "__init__() should return None" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" msgstr "" -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" msgstr "" -#: py/objobject.c -msgid "__new__ arg must be a user-type" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" msgstr "" -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "sebuah objek menyerupai byte (bytes-like) dibutuhkan" +#: shared-module/struct/__init__.c +#, fuzzy +msgid "buffer size must match format" +msgstr "buffers harus mempunyai panjang yang sama" -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "abort() dipanggil" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "" -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "alamat %08x tidak selaras dengan %d bytes" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" msgstr "" #: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" +msgid "can't convert address to int" msgstr "" -#: py/modbuiltins.c -msgid "arg is an empty sequence" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: py/runtime.c -msgid "argument has wrong type" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "argumen num/types tidak cocok" - -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" msgstr "" -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" msgstr "" -#: py/objstr.c -msgid "attributes not supported yet" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" msgstr "" -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "mode compile buruk" - -#: py/objstr.c -msgid "bad conversion specifier" +#: shared-bindings/math/__init__.c +msgid "division by zero" msgstr "" -#: py/objstr.c -msgid "bad format string" +#: shared-bindings/random/__init__.c +msgid "empty sequence" msgstr "" -#: py/binary.c -msgid "bad typecode" -msgstr "typecode buruk" - -#: py/emitnative.c -msgid "binary op %q not implemented" +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" msgstr "" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" msgstr "" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "bits harus memilki nilai 8" +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" +msgstr "" -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" msgstr "" -#: py/emitinlinethumb.c -msgid "branch not in range" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" +#: shared-bindings/random/__init__.c +msgid "invalid step" msgstr "" -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" +#: shared-bindings/math/__init__.c +msgid "math domain error" msgstr "" -#: shared-module/struct/__init__.c +#: shared-bindings/bleio/Peripheral.c #, fuzzy -msgid "buffer size must match format" -msgstr "buffers harus mempunyai panjang yang sama" +msgid "name must be a string" +msgstr "keyword harus berupa string" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer terlalu panjang" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "buffers harus mempunyai panjang yang sama" +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: py/vm.c -msgid "byte code not implemented" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "byte > 8 bit tidak didukung" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "" -#: py/objstr.c -msgid "bytes value out of range" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "kalibrasi keluar dari jangkauan" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "kalibrasi adalah read only" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "nilai kalibrasi keluar dari jangkauan +/-127" +#: main.c +msgid "soft reboot\n" +msgstr "memulai ulang software(soft reboot)\n" -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "hanya mampu memiliki hingga 4 parameter untuk Thumb assembly" +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" +msgstr "" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" msgstr "" -#: py/persistentcode.c -msgid "can only save bytecode" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "hanya bisa melakukan query satu param" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" msgstr "" -#: py/compile.c -msgid "can't assign to expression" -msgstr "tidak dapat menetapkan ke ekspresi" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" msgstr "" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" msgstr "" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" msgstr "" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "bits harus memilki nilai 8" + +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" msgstr "" -#: py/objint.c -msgid "can't convert NaN to int" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" msgstr "" -#: py/objint.c -msgid "can't convert inf to int" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" msgstr "" -#: py/obj.c -msgid "can't convert to complex" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" msgstr "" -#: py/obj.c -msgid "can't convert to float" +#: shared-module/displayio/Shape.c +msgid "x value out of bounds" msgstr "" -#: py/obj.c -msgid "can't convert to int" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" msgstr "" -#: py/objstr.c -msgid "can't convert to str implicitly" +#: shared-module/displayio/Shape.c +msgid "y value out of bounds" msgstr "" -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "tidak dapat mendeklarasikan nonlocal diluar jangkauan kode" +#~ msgid "%q() takes %d positional arguments but %d were given" +#~ msgstr "%q() mengambil posisi argumen %d tapi %d yang diberikan" -#: py/compile.c -msgid "can't delete expression" -msgstr "tidak bisa menghapus ekspresi" +#~ msgid "'%q' argument required" +#~ msgstr "'%q' argumen dibutuhkan" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "" +#~ msgid "'%s' expects a register" +#~ msgstr "'%s' mengharapkan sebuah register" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "" +#~ msgid "'%s' expects a special register" +#~ msgstr "'%s' mengharapkan sebuah register spesial" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "tidak bisa mendapatkan konfigurasi AP" +#~ msgid "'%s' expects an FPU register" +#~ msgstr "'%s' mengharapkan sebuah FPU register" -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "tidak bisa mendapatkan konfigurasi STA" +#~ msgid "'%s' expects an address of the form [a, b]" +#~ msgstr "'%s' mengharapkan sebuah alamat dengan bentuk [a, b]" -#: py/compile.c -msgid "can't have multiple **x" -msgstr "tidak bisa memiliki **x ganda" +#~ msgid "'%s' expects an integer" +#~ msgstr "'%s' mengharapkan integer" -#: py/compile.c -msgid "can't have multiple *x" -msgstr "tidak bisa memiliki *x ganda" +#~ msgid "'%s' expects at most r%d" +#~ msgstr "'%s' mengharapkan setidaknya r%d" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "" +#~ msgid "'%s' expects {r0, r1, ...}" +#~ msgstr "'%s' mengharapkan {r0, r1, ...}" -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "" +#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" +#~ msgstr "'%s' integer 0x%x tidak cukup didalam mask 0x%x" -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "" +#~ msgid "'align' requires 1 argument" +#~ msgstr "'align' membutuhkan 1 argumen" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" +#~ msgid "'await' outside function" +#~ msgstr "'await' diluar fungsi" -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" +#~ msgid "'break' outside loop" +#~ msgstr "'break' diluar loop" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "tidak bisa mendapatkan konfigurasi AP" +#~ msgid "'continue' outside loop" +#~ msgstr "'continue' diluar loop" -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "tidak bisa mendapatkan konfigurasi STA" +#~ msgid "'data' requires at least 2 arguments" +#~ msgstr "'data' membutuhkan setidaknya 2 argumen" -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "" +#~ msgid "'data' requires integer arguments" +#~ msgstr "'data' membutuhkan argumen integer" -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "" +#~ msgid "'label' requires 1 argument" +#~ msgstr "'label' membutuhkan 1 argumen" -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "" +#~ msgid "'return' outside function" +#~ msgstr "'return' diluar fungsi" -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "" +#~ msgid "'yield' outside function" +#~ msgstr "'yield' diluar fungsi" -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" +#~ msgid "*x must be assignment target" +#~ msgstr "*x harus menjadi target assignment" -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Sebuah channel hardware interrupt sedang digunakan" -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "" +#~ msgid "AP required" +#~ msgstr "AP dibutuhkan" -#: py/objtype.c -msgid "cannot create instance" -msgstr "" +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Semua perangkat I2C sedang digunakan" -#: py/runtime.c -msgid "cannot import name %q" -msgstr "" +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Semua perangkat SPI sedang digunakan" -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "tidak dapat melakukan relative import" +#, fuzzy +#~ msgid "All UART peripherals are in use" +#~ msgstr "Semua perangkat I2C sedang digunakan" -#: py/emitnative.c -msgid "casting" -msgstr "" +#~ msgid "All event channels in use" +#~ msgstr "Semua channel event sedang digunakan" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" +#~ msgid "All sync event channels in use" +#~ msgstr "Semua channel event yang disinkronisasi sedang digunakan" -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "" +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "fungsionalitas AnalogOut tidak didukung" -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "" +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "pin yang dipakai tidak mendukung AnalogOut" -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "" +#~ msgid "Another send is already active" +#~ msgstr "Send yang lain sudah aktif" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" +#~ msgid "Bit clock and word select must share a clock unit" +#~ msgstr "Bit clock dan word harus memiliki kesamaan pada clock unit" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Kedua pin harus mendukung hardware interrut" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" +#, fuzzy +#~ msgid "Bus pin %d is already in use" +#~ msgstr "DAC sudah digunakan" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "" +#~ msgid "C-level assert" +#~ msgstr "Dukungan C-level" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "" +#~ msgid "Cannot connect to AP" +#~ msgstr "Tidak dapat menyambungkan ke AP" -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Tidak dapat memutuskna dari AP" -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "" +#~ msgid "Cannot get pull while in output mode" +#~ msgstr "Tidak bisa mendapatkan pull pada saat mode output" -#: extmod/moduzlib.c -msgid "compression header" -msgstr "kompresi header" +#, fuzzy +#~ msgid "Cannot get temperature" +#~ msgstr "Tidak bisa mendapatkan temperatur. status: 0x%02x" -#: py/parse.c -msgid "constant must be an integer" -msgstr "" +#~ msgid "Cannot output both channels on the same pin" +#~ msgstr "" +#~ "Tidak dapat menggunakan output di kedua channel dengan menggunakan pin " +#~ "yang sama" -#: py/emitnative.c -msgid "conversion to object" -msgstr "" +#~ msgid "Cannot reset into bootloader because no bootloader is present." +#~ msgstr "" +#~ "Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader " +#~ "yang terisi" -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "" +#~ msgid "Cannot set STA config" +#~ msgstr "Tidak dapat mengatur konfigurasi STA" -#: py/compile.c -msgid "default 'except' must be last" -msgstr "'except' standar harus terakhir" +#~ msgid "Cannot unambiguously get sizeof scalar" +#~ msgstr "tidak dapat mendapatkan ukuran scalar secara tidak ambigu" -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" +#~ msgid "Cannot update i/f status" +#~ msgstr "Tidak dapat memperbarui status i/f" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" +#~ msgid "Clock unit in use" +#~ msgstr "Clock unit sedang digunakan" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "" +#~ msgid "Could not initialize UART" +#~ msgstr "Tidak dapat menginisialisasi UART" -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "" +#~ msgid "DAC already in use" +#~ msgstr "DAC sudah digunakan" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "" +#, fuzzy +#~ msgid "Data too large for advertisement packet" +#~ msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "hanya antar pos atau kw args yang diperbolehkan" +#, fuzzy +#~ msgid "Data too large for the advertisement packet" +#~ msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" -#: py/objdeque.c -msgid "empty" -msgstr "" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Tidak tahu cara meloloskan objek ke fungsi native" -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "heap kosong" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8266 tidak mendukung safe mode" -#: py/objstr.c -msgid "empty separator" -msgstr "" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP866 tidak mendukung pull down" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "" +#~ msgid "EXTINT channel already in use" +#~ msgstr "Channel EXTINT sedang digunakan" -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Errod pada ffi_prep_cif" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" -msgstr "" +#~ msgid "Error in regex" +#~ msgstr "Error pada regex" -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "error = 0x%08lX" +#, fuzzy +#~ msgid "Failed to acquire mutex" +#~ msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "" +#, fuzzy +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "" +#, fuzzy +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "Gagal untuk menambahkan karakteristik, status: 0x%08lX" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "" +#, fuzzy +#~ msgid "Failed to add service" +#~ msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" -#: py/obj.c -msgid "expected tuple/list" -msgstr "" +#, fuzzy +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "" +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Gagal untuk mengalokasikan buffer RX" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "mengharapkan sebuah pin" +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Gagal untuk megalokasikan buffer RX dari %d byte" -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "sebuah instruksi assembler diharapkan" +#, fuzzy +#~ msgid "Failed to change softdevice state" +#~ msgstr "Gagal untuk merubah status softdevice, error: 0x%08lX" -#: py/compile.c -msgid "expecting just a value for set" -msgstr "hanya mengharapkan sebuah nilai (value) untuk set" +#, fuzzy +#~ msgid "Failed to connect:" +#~ msgstr "Gagal untuk menyambungkan, status: 0x%08lX" -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "key:value diharapkan untuk dict" +#, fuzzy +#~ msgid "Failed to continue scanning" +#~ msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "argumen keyword ekstra telah diberikan" +#, fuzzy +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "argumen posisi ekstra telah diberikan" +#, fuzzy +#~ msgid "Failed to create mutex" +#~ msgstr "Gagal untuk membuat mutex, status: 0x%08lX" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" +#, fuzzy +#~ msgid "Failed to discover services" +#~ msgstr "Gagal untuk menemukan layanan, status: 0x%08lX" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "" +#, fuzzy +#~ msgid "Failed to get local address" +#~ msgstr "Gagal untuk mendapatkan alamat lokal, error: 0x%08lX" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "" +#, fuzzy +#~ msgid "Failed to get softdevice state" +#~ msgstr "Gagal untuk mendapatkan status softdevice, error: 0x%08lX" -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "" +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Gagal untuk melaporkan nilai atribut, status: 0x%08lX" -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "bit pertama(firstbit) harus berupa MSB" +#, fuzzy +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "alokasi flash harus dibawah 1MByte" +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" -#: py/objint.c -msgid "float too big" -msgstr "" +#, fuzzy +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "" +#, fuzzy +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "Gagal untuk menambahkan Vendor Spesific UUID, status: 0x%08lX" -#: py/objstr.c -msgid "format requires a dict" -msgstr "" +#, fuzzy +#~ msgid "Failed to release mutex" +#~ msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "frekuensi hanya bisa didefinisikan 80Mhz atau 160Mhz" +#, fuzzy +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" -#: py/objdeque.c -msgid "full" -msgstr "" +#, fuzzy +#~ msgid "Failed to start advertising" +#~ msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "fungsi tidak dapat mengambil argumen keyword" +#, fuzzy +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "fungsi diharapkan setidaknya %d argumen, hanya mendapatkan %d" +#, fuzzy +#~ msgid "Failed to start scanning" +#~ msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "fungsi mendapatkan nilai ganda untuk argumen '%q'" +#, fuzzy +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "fungsi kehilangan %d argumen posisi yang dibutuhkan" +#, fuzzy +#~ msgid "Failed to stop advertising" +#~ msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "fungsi kehilangan argumen keyword-only" +#, fuzzy +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "fungsi kehilangan argumen keyword '%q' yang dibutuhkan" +#, fuzzy +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "Gagal untuk menulis nilai atribut, status: 0x%08lX" -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "fungsi kehilangan argumen posisi #%d yang dibutuhkan" +#, fuzzy +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "fungsi mengambil posisi argumen %d tapi %d yang diberikan" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 tidak mendukung pull up" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "" +#~ msgid "I/O operation on closed file" +#~ msgstr "operasi I/O pada file tertutup" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "" +#~ msgid "I2C operation not supported" +#~ msgstr "operasi I2C tidak didukung" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "" +#~ msgid "Invalid bit clock pin" +#~ msgstr "Bit clock pada pin tidak valid" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "" +#~ msgid "Invalid buffer size" +#~ msgstr "Ukuran buffer tidak valid" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "heap harus berupa sebuah list" +#~ msgid "Invalid clock pin" +#~ msgstr "Clock pada pin tidak valid" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "identifier didefinisi ulang sebagai global" +#~ msgid "Invalid data pin" +#~ msgstr "data pin tidak valid" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "identifier didefinisi ulang sebagai nonlocal" +#~ msgid "Invalid pin for left channel" +#~ msgstr "Pin untuk channel kiri tidak valid" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "baudrate tidak memungkinkan" +#~ msgid "Invalid pin for right channel" +#~ msgstr "Pin untuk channel kanan tidak valid" -#: py/objstr.c -msgid "incomplete format" -msgstr "" +#~ msgid "Invalid pins" +#~ msgstr "Pin-pin tidak valid" -#: py/objstr.c -msgid "incomplete format key" -msgstr "" +#~ msgid "LHS of keyword arg must be an id" +#~ msgstr "LHS dari keyword arg harus menjadi sebuah id" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "lapisan (padding) tidak benar" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Nilai maksimum frekuensi PWM adalah %dhz" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "index keluar dari jangkauan" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Nilai minimum frekuensi PWM is 1hz" -#: py/obj.c -msgid "indices must be integers" -msgstr "" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Nilai Frekuensi PWM ganda tidak didukung. PWM sudah diatur pada %dhz" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "inline assembler harus sebuah fungsi" +#~ msgid "No DAC on chip" +#~ msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "" +#~ msgid "No DMA channel found" +#~ msgstr "tidak ada channel DMA ditemukan" -#: py/objstr.c -msgid "integer required" -msgstr "" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Tidak ada dukungan PulseIn untuk %q" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" +#~ msgid "No RX pin" +#~ msgstr "Tidak pin RX" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "perangkat I2C tidak valid" +#~ msgid "No TX pin" +#~ msgstr "Tidak ada pin TX" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "perangkat SPI tidak valid" +#~ msgid "No free GCLKs" +#~ msgstr "Tidak ada GCLK yang kosong" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarm tidak valid" +#~ msgid "No hardware support for analog out." +#~ msgstr "Tidak dukungan hardware untuk analog out." -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "argumen-argumen tidak valid" +#~ msgid "No hardware support on pin" +#~ msgstr "Tidak ada dukungan hardware untuk pin" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "panjang buffer tidak valid" +#~ msgid "Odd parity is not supported" +#~ msgstr "Parity ganjil tidak didukung" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "cert tidak valid" +#~ msgid "Only 8 or 16 bit mono with " +#~ msgstr "Hanya 8 atau 16 bit mono dengan " -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "bit data tidak valid" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Hanya tx yang mendukung pada UART1 (GPIO2)." -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "indeks dupterm tidak valid" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM tidak didukung pada pin %d" -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "format tidak valid" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q tidak memiliki kemampuan ADC" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)" -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "key tidak valid" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) tidak mendukung pull" -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "micropython decorator tidak valid" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pin-pin tidak valid untuk SPI" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "pin tidak valid" +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "Tambahkan module apapun pada filesystem\n" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "" +#~ msgid "Read-only filesystem" +#~ msgstr "sistem file (filesystem) bersifat Read-only" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "stop bit tidak valid" +#~ msgid "Right channel unsupported" +#~ msgstr "Channel Kanan tidak didukung" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "syntax tidak valid" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "SDA atau SCL membutuhkan pull up" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "" +#~ msgid "STA must be active" +#~ msgstr "STA harus aktif" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "" +#~ msgid "STA required" +#~ msgstr "STA dibutuhkan" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "Nilai sampel terlalu tinggi. Nilai harus kurang dari %d" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "" +#~ msgid "Serializer in use" +#~ msgstr "Serializer sedang digunakan" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" +#~ msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +#~ msgstr "Dukungan soft device, id: 0x%08lX, pc: 0x%08l" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" +#~ msgid "Splitting with sub-captures" +#~ msgstr "Memisahkan dengan menggunakan sub-captures" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "argumen keyword belum diimplementasi - gunakan args normal" +#~ msgid "Too many channels in sample." +#~ msgstr "Terlalu banyak channel dalam sampel" -#: py/bc.c -msgid "keywords must be strings" -msgstr "keyword harus berupa string" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) tidak ada" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) tidak dapat dibaca" -#: py/compile.c -msgid "label redefined" -msgstr "label didefinis ulang" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len harus kelipatan dari 4" +#~ msgid "Unable to find free GCLK" +#~ msgstr "Tidak dapat menemukan GCLK yang kosong" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Tidak dapat memasang filesystem kembali" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "" +#~ msgid "Unknown type" +#~ msgstr "Tipe tidak diketahui" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "" +#~ msgid "Unsupported baudrate" +#~ msgstr "Baudrate tidak didukung" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Gunakan esptool untuk menghapus flash dan upload ulang Python sebagai " +#~ "gantinya" -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "" +#~ msgid "" +#~ "Welcome to Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Please visit learn.adafruit.com/category/circuitpython for project " +#~ "guides.\n" +#~ "\n" +#~ "To list built-in modules please do `help(\"modules\")`.\n" +#~ msgstr "" +#~ "Selamat datang ke Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Silahkan kunjungi learn.adafruit.com/category/circuitpython untuk panduan " +#~ "project.\n" +#~ "\n" +#~ "Untuk menampilkan modul built-in silahkan ketik `help(\"modules\")`.\n" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "" +#~ msgid "[addrinfo error %d]" +#~ msgstr "[addrinfo error %d]" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "" +#~ msgid "a bytes-like object is required" +#~ msgstr "sebuah objek menyerupai byte (bytes-like) dibutuhkan" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "" +#~ msgid "abort() called" +#~ msgstr "abort() dipanggil" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "alamat %08x tidak selaras dengan %d bytes" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "" +#~ msgid "argument num/types mismatch" +#~ msgstr "argumen num/types tidak cocok" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "alokasi memori gagal, mengalokasikan %u byte untuk kode native" +#~ msgid "bad compile mode" +#~ msgstr "mode compile buruk" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "" +#~ msgid "bad typecode" +#~ msgstr "typecode buruk" -#: py/builtinimport.c -msgid "module not found" -msgstr "modul tidak ditemukan" +#~ msgid "bits must be 8" +#~ msgstr "bits harus memilki nilai 8" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "perkalian *x dalam assignment" +#~ msgid "buffer too long" +#~ msgstr "buffer terlalu panjang" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" +#~ msgid "buffers must be the same length" +#~ msgstr "buffers harus mempunyai panjang yang sama" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "byte > 8 bit tidak didukung" -#: py/emitnative.c -msgid "must raise an object" -msgstr "" +#~ msgid "calibration is out of range" +#~ msgstr "kalibrasi keluar dari jangkauan" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "harus menentukan semua pin sck/mosi/miso" +#~ msgid "calibration is read only" +#~ msgstr "kalibrasi adalah read only" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "nilai kalibrasi keluar dari jangkauan +/-127" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "" +#~ msgid "can only have up to 4 parameters to Thumb assembly" +#~ msgstr "hanya mampu memiliki hingga 4 parameter untuk Thumb assembly" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "keyword harus berupa string" +#~ msgid "can query only one param" +#~ msgstr "hanya bisa melakukan query satu param" -#: py/runtime.c -msgid "name not defined" -msgstr "" +#~ msgid "can't assign to expression" +#~ msgstr "tidak dapat menetapkan ke ekspresi" -#: py/compile.c -msgid "name reused for argument" -msgstr "nama digunakan kembali untuk argumen" +#~ msgid "can't declare nonlocal in outer code" +#~ msgstr "tidak dapat mendeklarasikan nonlocal diluar jangkauan kode" -#: py/emitnative.c -msgid "native yield" -msgstr "" +#~ msgid "can't delete expression" +#~ msgstr "tidak bisa menghapus ekspresi" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "" +#~ msgid "can't get AP config" +#~ msgstr "tidak bisa mendapatkan konfigurasi AP" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "" +#~ msgid "can't get STA config" +#~ msgstr "tidak bisa mendapatkan konfigurasi STA" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" +#~ msgid "can't have multiple **x" +#~ msgstr "tidak bisa memiliki **x ganda" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "" +#~ msgid "can't have multiple *x" +#~ msgstr "tidak bisa memiliki *x ganda" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" +#~ msgid "can't set AP config" +#~ msgstr "tidak bisa mendapatkan konfigurasi AP" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "tidak ada ikatan/bind pada temuan nonlocal" +#~ msgid "can't set STA config" +#~ msgstr "tidak bisa mendapatkan konfigurasi STA" -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "tidak ada modul yang bernama '%q'" +#~ msgid "cannot perform relative import" +#~ msgstr "tidak dapat melakukan relative import" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "" +#~ msgid "compression header" +#~ msgstr "kompresi header" -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "argumen non-default mengikuti argumen standar(default)" +#~ msgid "default 'except' must be last" +#~ msgstr "'except' standar harus terakhir" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "digit non-hex ditemukan" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "hanya antar pos atau kw args yang diperbolehkan" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "non-keyword arg setelah */**" +#~ msgid "empty heap" +#~ msgstr "heap kosong" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "non-keyword arg setelah keyword arg" +#~ msgid "error = 0x%08lX" +#~ msgstr "error = 0x%08lX" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#~ msgid "expecting a pin" +#~ msgstr "mengharapkan sebuah pin" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "tidak valid channel ADC: %d" +#~ msgid "expecting an assembler instruction" +#~ msgstr "sebuah instruksi assembler diharapkan" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" +#~ msgid "expecting just a value for set" +#~ msgstr "hanya mengharapkan sebuah nilai (value) untuk set" -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "" +#~ msgid "expecting key:value for dict" +#~ msgstr "key:value diharapkan untuk dict" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "" +#~ msgid "extra keyword arguments given" +#~ msgstr "argumen keyword ekstra telah diberikan" -#: py/obj.c -msgid "object does not support item assignment" -msgstr "" +#~ msgid "extra positional arguments given" +#~ msgstr "argumen posisi ekstra telah diberikan" -#: py/obj.c -msgid "object does not support item deletion" -msgstr "" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#: py/obj.c -msgid "object has no len" -msgstr "" +#~ msgid "firstbit must be MSB" +#~ msgstr "bit pertama(firstbit) harus berupa MSB" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "alokasi flash harus dibawah 1MByte" -#: py/runtime.c -msgid "object not an iterator" -msgstr "" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "frekuensi hanya bisa didefinisikan 80Mhz atau 160Mhz" -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" +#~ msgid "function does not take keyword arguments" +#~ msgstr "fungsi tidak dapat mengambil argumen keyword" -#: py/sequence.c -msgid "object not in sequence" -msgstr "" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "fungsi diharapkan setidaknya %d argumen, hanya mendapatkan %d" -#: py/runtime.c -msgid "object not iterable" -msgstr "" +#~ msgid "function got multiple values for argument '%q'" +#~ msgstr "fungsi mendapatkan nilai ganda untuk argumen '%q'" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "fungsi kehilangan %d argumen posisi yang dibutuhkan" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "" +#~ msgid "function missing keyword-only argument" +#~ msgstr "fungsi kehilangan argumen keyword-only" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "panjang data string memiliki keganjilan (odd-length)" +#~ msgid "function missing required keyword argument '%q'" +#~ msgstr "fungsi kehilangan argumen keyword '%q' yang dibutuhkan" -#: py/objstrunicode.c py/objstr.c -#, fuzzy -msgid "offset out of bounds" -msgstr "modul tidak ditemukan" +#~ msgid "function missing required positional argument #%d" +#~ msgstr "fungsi kehilangan argumen posisi #%d yang dibutuhkan" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "fungsi mengambil posisi argumen %d tapi %d yang diberikan" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "" +#~ msgid "heap must be a list" +#~ msgstr "heap harus berupa sebuah list" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" +#~ msgid "identifier redefined as global" +#~ msgstr "identifier didefinisi ulang sebagai global" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "" +#~ msgid "identifier redefined as nonlocal" +#~ msgstr "identifier didefinisi ulang sebagai nonlocal" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "" +#~ msgid "impossible baudrate" +#~ msgstr "baudrate tidak memungkinkan" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" +#~ msgid "incorrect padding" +#~ msgstr "lapisan (padding) tidak benar" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "anotasi parameter haruse sebuah identifier" +#~ msgid "index out of range" +#~ msgstr "index keluar dari jangkauan" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "" +#~ msgid "inline assembler must be a function" +#~ msgstr "inline assembler harus sebuah fungsi" -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" -msgstr "parameter harus menjadi register dalam urutan r0 sampai r3" +#~ msgid "invalid I2C peripheral" +#~ msgstr "perangkat I2C tidak valid" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "pin tidak memiliki kemampuan IRQ" +#~ msgid "invalid SPI peripheral" +#~ msgstr "perangkat SPI tidak valid" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "Muncul dari PulseIn yang kosong" - -#: py/objset.c -msgid "pop from an empty set" -msgstr "" +#~ msgid "invalid alarm" +#~ msgstr "alarm tidak valid" -#: py/objlist.c -msgid "pop from empty list" -msgstr "" - -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "" +#~ msgid "invalid arguments" +#~ msgstr "argumen-argumen tidak valid" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "" +#~ msgid "invalid buffer length" +#~ msgstr "panjang buffer tidak valid" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "" +#~ msgid "invalid cert" +#~ msgstr "cert tidak valid" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "antrian meluap (overflow)" +#~ msgid "invalid data bits" +#~ msgstr "bit data tidak valid" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#~ msgid "invalid dupterm index" +#~ msgstr "indeks dupterm tidak valid" -#: shared-bindings/_pixelbuf/__init__.c -msgid "readonly attribute" -msgstr "" +#~ msgid "invalid format" +#~ msgstr "format tidak valid" -#: py/builtinimport.c -msgid "relative import" -msgstr "relative import" +#~ msgid "invalid key" +#~ msgstr "key tidak valid" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "" +#~ msgid "invalid micropython decorator" +#~ msgstr "micropython decorator tidak valid" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "anotasi return harus sebuah identifier" +#~ msgid "invalid pin" +#~ msgstr "pin tidak valid" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "" +#~ msgid "invalid stop bits" +#~ msgstr "stop bit tidak valid" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "" +#~ msgid "invalid syntax" +#~ msgstr "syntax tidak valid" -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "" +#~ msgid "keyword argument(s) not yet implemented - use normal args instead" +#~ msgstr "argumen keyword belum diimplementasi - gunakan args normal" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" +#~ msgid "keywords must be strings" +#~ msgstr "keyword harus berupa string" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "nilai sampling keluar dari jangkauan" +#~ msgid "label redefined" +#~ msgstr "label didefinis ulang" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "scan gagal" +#~ msgid "len must be multiple of 4" +#~ msgstr "len harus kelipatan dari 4" -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "alokasi memori gagal, mengalokasikan %u byte untuk kode native" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "kompilasi script tidak didukung" +#~ msgid "module not found" +#~ msgstr "modul tidak ditemukan" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#~ msgid "multiple *x in assignment" +#~ msgstr "perkalian *x dalam assignment" -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "harus menentukan semua pin sck/mosi/miso" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "" +#~ msgid "name reused for argument" +#~ msgstr "nama digunakan kembali untuk argumen" -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "" +#~ msgid "no binding for nonlocal found" +#~ msgstr "tidak ada ikatan/bind pada temuan nonlocal" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "" +#~ msgid "no module named '%q'" +#~ msgstr "tidak ada modul yang bernama '%q'" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "" +#~ msgid "non-default argument follows default argument" +#~ msgstr "argumen non-default mengikuti argumen standar(default)" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "" +#~ msgid "non-hex digit found" +#~ msgstr "digit non-hex ditemukan" -#: main.c -msgid "soft reboot\n" -msgstr "memulai ulang software(soft reboot)\n" +#~ msgid "non-keyword arg after */**" +#~ msgstr "non-keyword arg setelah */**" -#: py/objstr.c -msgid "start/end indices" -msgstr "" +#~ msgid "non-keyword arg after keyword arg" +#~ msgstr "non-keyword arg setelah keyword arg" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" -msgstr "" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "tidak valid channel ADC: %d" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "" - -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "" - -#: py/stream.c -msgid "stream operation not supported" -msgstr "" - -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "" - -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "" - -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "" - -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: tidak bisa melakukan index" - -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: index keluar dari jangkauan" - -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: tidak ada fields" - -#: py/objstr.c -msgid "substring not found" -msgstr "" - -#: py/compile.c -msgid "super() can't find self" -msgstr "super() tidak dapat menemukan dirinya sendiri" - -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "sintaksis error pada JSON" - -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "sintaksis error pada pendeskripsi uctypes" - -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "" - -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "" +#~ msgid "odd-length string" +#~ msgstr "panjang data string memiliki keganjilan (odd-length)" -#: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits harus memilki nilai 8" - -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "" - -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "" - -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "" - -#: py/objstr.c -msgid "tuple index out of range" -msgstr "" - -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "offset out of bounds" +#~ msgstr "modul tidak ditemukan" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "tx dan rx keduanya tidak boleh kosong" +#~ msgid "parameter annotation must be an identifier" +#~ msgstr "anotasi parameter haruse sebuah identifier" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "" - -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "" +#~ msgid "parameters must be registers in sequence r0 to r3" +#~ msgstr "parameter harus menjadi register dalam urutan r0 sampai r3" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "pin tidak memiliki kemampuan IRQ" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "" +#~ msgid "pop from an empty PulseIn" +#~ msgstr "Muncul dari PulseIn yang kosong" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "" +#~ msgid "queue overflow" +#~ msgstr "antrian meluap (overflow)" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "" +#~ msgid "relative import" +#~ msgstr "relative import" -#: py/parse.c -msgid "unexpected indent" -msgstr "" +#~ msgid "return annotation must be an identifier" +#~ msgstr "anotasi return harus sebuah identifier" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "argumen keyword tidak diharapkan" +#~ msgid "sampling rate out of range" +#~ msgstr "nilai sampling keluar dari jangkauan" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "keyword argumen '%q' tidak diharapkan" +#~ msgid "scan failed" +#~ msgstr "scan gagal" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "" +#~ msgid "script compilation not supported" +#~ msgstr "kompilasi script tidak didukung" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "" +#~ msgid "struct: cannot index" +#~ msgstr "struct: tidak bisa melakukan index" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "konfigurasi param tidak diketahui" +#~ msgid "struct: index out of range" +#~ msgstr "struct: index keluar dari jangkauan" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "" +#~ msgid "struct: no fields" +#~ msgstr "struct: tidak ada fields" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "" +#~ msgid "super() can't find self" +#~ msgstr "super() tidak dapat menemukan dirinya sendiri" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "" +#~ msgid "syntax error in JSON" +#~ msgstr "sintaksis error pada JSON" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "" +#~ msgid "syntax error in uctypes descriptor" +#~ msgstr "sintaksis error pada pendeskripsi uctypes" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "status param tidak diketahui" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "tx dan rx keduanya tidak boleh kosong" -#: py/compile.c -msgid "unknown type" -msgstr "tipe tidak diketahui" +#~ msgid "unexpected keyword argument" +#~ msgstr "argumen keyword tidak diharapkan" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "" +#~ msgid "unexpected keyword argument '%q'" +#~ msgstr "keyword argumen '%q' tidak diharapkan" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "" +#~ msgid "unknown config param" +#~ msgstr "konfigurasi param tidak diketahui" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "" +#~ msgid "unknown status param" +#~ msgstr "status param tidak diketahui" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "" +#~ msgid "unknown type" +#~ msgstr "tipe tidak diketahui" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "" - -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "" - -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "" - -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "" - -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "" - -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() gagal" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "" - -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "" - -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "" - -#: shared-module/displayio/Shape.c -msgid "x value out of bounds" -msgstr "" - -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "" - -#: shared-module/displayio/Shape.c -msgid "y value out of bounds" -msgstr "" - -#: py/objrange.c -msgid "zero step" -msgstr "" - -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Gagal untuk melaporkan nilai atribut, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() gagal" diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index c6bd8f4b1..c8a883554 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:50+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/de_DE.po b/locale/de_DE.po index 175efaf80..1485878e2 100644 --- a/locale/de_DE.po +++ b/locale/de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-02 22:09+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: Pascal Deneaux\n" "Language-Team: Sebastian Plamauer, Pascal Deneaux\n" @@ -25,37 +25,16 @@ msgstr "" "\n" "Der Code wurde ausgeführt. Warte auf reload.\n" -#: py/obj.c -msgid " File \"%q\"" -msgstr " Datei \"%q\"" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr " Datei \"%q\", Zeile %d" - #: main.c msgid " output:\n" msgstr " Ausgabe:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "%%c erwartet int oder char" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q in Benutzung" -#: py/obj.c -msgid "%q index out of range" -msgstr "Der Index %q befindet sich außerhalb der Reihung" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "%q Indizes müssen ganze Zahlen sein, nicht %s" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "%q muss >= 1 sein" @@ -63,166 +42,10 @@ msgstr "%q muss >= 1 sein" msgid "%q should be an int" msgstr "%q sollte ein int sein" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "'%q' Argument erforderlich" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "'%s' erwartet ein Label" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "'%s' erwartet ein Register" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "'%s' erwartet ein Spezialregister" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "'%s' erwartet ein FPU-Register" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "'%s' erwartet eine Adresse in der Form [a, b]" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "'%s' erwartet ein Integer" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "'%s' erwartet höchstens r%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "'%s' erwartet {r0, r1, ...}" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "'%s' integer %d ist nicht im Bereich %d..%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "'%s' Integer 0x%x passt nicht in Maske 0x%x" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "'%s' Objekt unterstützt keine item assignment" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "'%s' Objekt unterstützt das Löschen von Elementen nicht" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "'%s' Objekt hat kein Attribut '%q'" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "'%s' Objekt ist kein Iterator" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "'%s' object ist nicht callable" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "'%s' Objekt nicht iterierbar" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "'%s' Objekt hat keine '__getitem__'-Methode (not subscriptable)" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "'='-Ausrichtung ist im String-Formatbezeichner nicht zulässig" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' und 'O' sind keine unterstützten Formattypen" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "'align' erfordert genau ein Argument" - -#: py/compile.c -msgid "'await' outside function" -msgstr "'await' außerhalb einer Funktion" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "'break' außerhalb einer Schleife" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "'continue' außerhalb einer Schleife" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "'data' erfordert mindestens zwei Argumente" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "'data' erfordert Integer-Argumente" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "'label' erfordert genau ein Argument" - -#: py/compile.c -msgid "'return' outside function" -msgstr "'return' außerhalb einer Funktion" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "'yield' außerhalb einer Funktion" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "*x muss Zuordnungsziel sein" - -#: py/obj.c -msgid ", in %q\n" -msgstr "" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "3-arg pow() wird nicht unterstützt" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Ein Hardware Interrupt Kanal wird schon benutzt" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP erforderlich" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -233,54 +56,14 @@ msgstr "Die Adresse ist nicht %d Bytes lang oder das Format ist falsch" msgid "Address must be %d bytes long" msgstr "Die Adresse muss %d Bytes lang sein" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "Alle I2C-Peripheriegeräte sind in Benutzung" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "Alle SPI-Peripheriegeräte sind in Benutzung" - -#: ports/nrf/common-hal/busio/UART.c -msgid "All UART peripherals are in use" -msgstr "Alle UART-Peripheriegeräte sind in Benutzung" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Alle event Kanäle werden benutzt" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "Alle sync event Kanäle werden benutzt" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Alle timer für diesen Pin werden bereits benutzt" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Alle timer werden benutzt" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "AnalogOut-Funktion wird nicht unterstützt" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "AnalogOut kann nur 16 Bit. Der Wert muss unter 65536 liegen." - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "AnalogOut ist an diesem Pin nicht unterstützt" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Ein anderer Sendevorgang ist schon aktiv" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "Array muss Halbwörter enthalten (type 'H')" @@ -305,18 +88,6 @@ msgstr "" "Automatisches Neuladen ist aktiv. Speichere Dateien über USB um sie " "auszuführen oder verbinde dich mit der REPL zum Deaktivieren.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "Bit clock und word select müssen eine clock unit teilen" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "Bit depth muss ein Vielfaches von 8 sein." - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Beide pins müssen Hardware Interrupts unterstützen" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "Die Helligkeit muss zwischen 0 und 255 liegen" @@ -334,12 +105,6 @@ msgstr "Der Puffergröße ist inkorrekt. Sie sollte %d bytes haben." msgid "Buffer must be at least length 1" msgstr "Der Puffer muss eine Mindestenslänge von 1 haben" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, c-format -msgid "Bus pin %d is already in use" -msgstr "Bus pin %d wird schon benutzt" - #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "Der Puffer muss 16 Bytes lang sein" @@ -348,15 +113,6 @@ msgstr "Der Puffer muss 16 Bytes lang sein" msgid "Bytes must be between 0 and 255." msgstr "Ein Bytes kann nur Werte zwischen 0 und 255 annehmen." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "C-Level Assert" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "Kann dotstar nicht mit %s verwenden" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "Im Central mode können Dienste nicht hinzugefügt werden" @@ -373,72 +129,26 @@ msgstr "Im Central mode kann name nicht geändert werden" msgid "Can't connect in Peripheral mode" msgstr "Im Peripheral mode kann keine Verbindung hergestellt werden" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Kann nicht zu AP verbinden" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Kann Werte nicht löschen" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Kann nicht trennen von AP" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "Pull up im Ausgabemodus nicht möglich" - -#: ports/nrf/common-hal/microcontroller/Processor.c -msgid "Cannot get temperature" -msgstr "Kann Temperatur nicht holen" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "Kann nicht beite Kanäle auf dem gleichen Pin ausgeben" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Kann ohne MISO-Pin nicht lesen." -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "Aufnahme in eine Datei nicht möglich" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Kann '/' nicht remounten when USB aktiv ist" -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden" - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Kann STA Konfiguration nicht setzen" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Der Wert kann nicht gesetzt werden, wenn die Richtung input ist." -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Übertragung ohne MOSI- und MISO-Pins nicht möglich." -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "sizeof scalar kann nicht eindeutig bestimmt werden" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Kann i/f Status nicht updaten" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Kann nicht ohne MOSI-Pin schreiben." @@ -447,10 +157,6 @@ msgstr "Kann nicht ohne MOSI-Pin schreiben." msgid "Characteristic UUID doesn't match Service UUID" msgstr "Characteristic UUID stimmt nicht mit der Service-UUID überein" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "Characteristic wird bereits von einem anderen Dienst verwendet." - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "Schreiben von CharacteristicBuffer ist nicht vorgesehen" @@ -463,27 +169,14 @@ msgstr "Clock pin init fehlgeschlagen." msgid "Clock stretch too long" msgstr "Clock stretch zu lang" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Clock unit wird benutzt" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "Der Befehl muss ein int zwischen 0 und 255 sein" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "Konnte ble_uuid nicht decodieren. Status: 0x%04x" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "Konnte UART nicht initialisieren" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Konnte first buffer nicht zuteilen" @@ -496,68 +189,21 @@ msgstr "Konnte second buffer nicht zuteilen" msgid "Crash into the HardFault_Handler.\n" msgstr "Absturz in HardFault_Handler.\n" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "DAC wird schon benutzt" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -msgid "Data 0 pin must be byte aligned" -msgstr "Data 0 pin muss am Byte ausgerichtet sein" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -msgid "Data too large for advertisement packet" -msgstr "Zu vielen Daten für das advertisement packet" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Data too large for the advertisement packet" -msgstr "Daten sind zu groß für das advertisement packet" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "Die Zielkapazität ist kleiner als destination_length." - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "Die Rotation der Anzeige muss in 90-Grad-Schritten erfolgen" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" -"Ich weiß nicht, wie man das Objekt an die native Funktion übergeben kann" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Drive mode wird nicht verwendet, wenn die Richtung input ist." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8226 hat keinen Sicherheitsmodus" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 unterstützt pull down nicht" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "EXTINT Kanal ist schon in Benutzung" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Fehler in ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "Fehler in regex" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Erwartet ein(e) %q" @@ -565,8 +211,8 @@ msgstr "Erwartet ein(e) %q" msgid "Expected a Characteristic" msgstr "Characteristic wird erwartet" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "Eine UUID wird erwartet" @@ -575,247 +221,27 @@ msgstr "Eine UUID wird erwartet" msgid "Expected tuple of length %d, got %d" msgstr "Habe ein Tupel der Länge %d erwartet aber %d erhalten" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to acquire mutex" -msgstr "Akquirieren des Mutex gescheitert" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "Mutex konnte nicht akquiriert werden. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Service.c -#, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "Hinzufügen des Characteristic ist gescheitert. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to add service" -msgstr "Dienst konnte nicht hinzugefügt werden" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "Dienst konnte nicht hinzugefügt werden. Status: 0x%04x" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Konnte keinen RX Buffer allozieren" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Konnte keine RX Buffer mit %d allozieren" - -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to change softdevice state" -msgstr "Fehler beim Ändern des Softdevice-Status" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to connect:" -msgstr "Verbindung fehlgeschlagen:" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to continue scanning" -msgstr "Der Scanvorgang kann nicht fortgesetzt werden" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "Der Scanvorgang kann nicht fortgesetzt werden. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to create mutex" -msgstr "Erstellen des Mutex ist fehlgeschlagen" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to discover services" -msgstr "Es konnten keine Dienste gefunden werden" - -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get local address" -msgstr "Lokale Adresse konnte nicht abgerufen werden" - -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get softdevice state" -msgstr "Fehler beim Abrufen des Softdevice-Status" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "Kann CCCD value nicht lesen. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "gatts value konnte nicht gelesen werden. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "Kann keine herstellerspezifische UUID hinzufügen. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to release mutex" -msgstr "Loslassen des Mutex gescheitert" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "Mutex konnte nicht freigegeben werden. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start advertising" -msgstr "Kann advertisement nicht starten" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "Kann advertisement nicht starten. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start scanning" -msgstr "Der Scanvorgang kann nicht gestartet werden" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "Der Scanvorgang kann nicht gestartet werden. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to stop advertising" -msgstr "Kann advertisement nicht stoppen" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "Kann advertisement nicht stoppen. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "Kann den Attributwert nicht schreiben. Status: 0x%04x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "gatts value konnte nicht geschrieben werden. Status: 0x%04x" - -#: py/moduerrno.c -msgid "File exists" -msgstr "Datei existiert" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 unterstützt pull up nicht" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Gruppe voll" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "Lese/Schreibe-operation an geschlossener Datei" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "I2C-operation nicht unterstützt" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" -"Inkompatible mpy-Datei. Bitte aktualisieren Sie alle mpy-Dateien. Siehe " -"http://adafru.it/mpy-update für weitere Informationen." - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "Eingabe-/Ausgabefehler" - #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Ungültige BMP-Datei" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Ungültige PWM Frequenz" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "Ungültiges Argument" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Ungültiges bit clock pin" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "Ungültige Puffergröße" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "Ungültige Anzahl von Kanälen" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Ungültiger clock pin" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "Ungültiger data pin" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Ungültige Richtung" @@ -836,27 +262,10 @@ msgstr "Ungültige Anzahl von Bits" msgid "Invalid phase" msgstr "Ungültige Phase" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Ungültiger Pin" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Ungültiger Pin für linken Kanal" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Ungültiger Pin für rechten Kanal" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "Ungültige Pins" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Ungültige Polarität" @@ -865,30 +274,14 @@ msgstr "Ungültige Polarität" msgid "Invalid run mode." msgstr "Ungültiger Ausführungsmodus" -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "Ungültige Anzahl von Stimmen" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Ungültige wave Datei" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "LHS des Schlüsselwortarguments muss eine id sein" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "Layer muss eine Group- oder TileGrid-Unterklasse sein." -#: py/objslice.c -msgid "Length must be an int" -msgstr "Länge muss ein int sein" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "Länge darf nicht negativ sein" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -908,11 +301,6 @@ msgstr "MISO pin Initialisierung fehlgeschlagen" msgid "MOSI pin init failed." msgstr "MOSI pin Initialisierung fehlgeschlagen" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Maximale PWM Frequenz ist %dHz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -928,51 +316,10 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "Schwerwiegender MicroPython-Fehler\n" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" -"Die Startverzögerung des Mikrofons muss im Bereich von 0,0 bis 1,0 liegen" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Minimale PWM Frequenz ist %dHz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"Mehrere PWM Frequenzen werden nicht unterstützt. PWM wurde bereits auf %dHz " -"gesetzt." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Kein DAC im Chip vorhanden" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "Kein DMA Kanal gefunden" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Keine PulseIn Unterstützung für %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Kein RX Pin" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Kein TX Pin" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Kein Standard I2C Bus" @@ -985,43 +332,14 @@ msgstr "Kein Standard SPI Bus" msgid "No default UART bus" msgstr "Kein Standard UART Bus" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Keine freien GCLKs" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Kein hardware random verfügbar" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Keine Hardwareunterstützung für analog out" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Keine Hardwareunterstützung an diesem Pin" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "Kein Speicherplatz auf Gerät" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "Keine solche Datei/Verzeichnis" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "Not connected" msgstr "Nicht verbunden" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "Nicht verbunden." - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "Spielt nicht" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -1029,14 +347,6 @@ msgstr "" "Objekt wurde deinitialisiert und kann nicht mehr verwendet werden. Erstelle " "ein neues Objekt." -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "Eine ungerade Parität wird nicht unterstützt" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "Nur 8 oder 16 bit mono mit " - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1055,18 +365,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Only slices with step=1 (aka None) are supported" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "UART1 (GPIO2) unterstützt nur tx" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "Oversample muss ein Vielfaches von 8 sein." - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1077,40 +375,6 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "Die PWM-Frequenz ist nicht schreibbar wenn variable_Frequenz = False." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM nicht unterstützt an Pin %d" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "Zugang verweigert" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pin %q hat keine ADC Funktion" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "Pin hat keine ADC Funktionalität" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) unterstützt kein pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pins nicht gültig für SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "Pixel außerhalb der Puffergrenzen" - -#: py/builtinhelp.c -msgid "Plus any modules on the filesystem\n" -msgstr "und alle Module im Dateisystem \n" - #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -1129,29 +393,18 @@ msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt" msgid "RTC is not supported on this board" msgstr "Eine RTC wird auf diesem Board nicht unterstützt" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "Die RTC-Änderung wird auf diesem Board nicht unterstützt" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Range out of bounds" -msgstr "" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Nur lesen möglich, da Schreibgeschützt" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "Schreibgeschützte Dateisystem" - #: shared-module/displayio/Bitmap.c msgid "Read-only object" msgstr "Schreibgeschützte Objekt" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Rechter Kanal wird nicht unterstützt" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1164,50 +417,15 @@ msgstr "Sicherheitsmodus aktiv! Automatisches Neuladen ist deaktiviert.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Sicherheitsmodus aktiv! Gespeicherter Code wird nicht ausgeführt\n" -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "SDA oder SCL brauchen pull up" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA muss aktiv sein" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA erforderlich" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "Abtastrate muss positiv sein" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "Abtastrate zu hoch. Wert muss unter %d liegen" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Serializer wird benutzt" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "Slice und Wert (value) haben unterschiedliche Längen." -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Slices werden nicht unterstützt" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "Splitting mit sub-captures" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "Die Stackgröße sollte mindestens 256 sein" @@ -1283,11 +501,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Zum beenden, resette bitte das board ohne " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "Zu viele Kanäle im sample" - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1295,23 +509,10 @@ msgstr "" msgid "Too many displays" msgstr "Zu viele displays" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "Zurückverfolgung (jüngste Aufforderung zuletzt):\n" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Tuple- oder struct_time-Argument erforderlich" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) existiert nicht" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) kann nicht lesen" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB beschäftigt" @@ -1332,51 +533,14 @@ msgstr "UUID Zeichenfolge ist nicht 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" msgid "UUID value is not str, int or byte buffer" msgstr "Der UUID-Wert ist kein str-, int- oder Byte-Puffer" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Konnte keinen freien GCLK finden" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "Parser konnte nicht gestartet werden" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Dateisystem konnte nicht wieder eingebunden werden." - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Schreiben in nvm nicht möglich." -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "Unerwarteter nrfx uuid-Typ" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Unbekannter Typ" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" -"Nicht übereinstimmende Anzahl von Elementen auf der rechten Seite (erwartet " -"%d, %d erhalten)." - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "Baudrate wird nicht unterstützt" - #: shared-module/displayio/Display.c msgid "Unsupported display bus type" msgstr "Nicht unterstützter display bus type" @@ -1385,23 +549,10 @@ msgstr "Nicht unterstützter display bus type" msgid "Unsupported format" msgstr "Nicht unterstütztes Format" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "Nicht unterstützte Operation" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Nicht unterstützter Pull-Wert" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Benutze das esptool um den flash zu löschen und Python erneut hochzuladen" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "Viper-Funktionen unterstützen derzeit nicht mehr als 4 Argumente" - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Voice index zu hoch" @@ -1411,22 +562,6 @@ msgid "WARNING: Your code filename has two extensions\n" msgstr "" "WARNUNG: Der Dateiname deines Programms hat zwei Dateityperweiterungen\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" -"Willkommen bei Adafruit CircuitPython %s!\n" -"\n" -"Projektleitfäden findest du auf learn.adafruit.com/category/circuitpython \n" -"\n" -"Um die integrierten Module aufzulisten, führe bitte `help(\"modules\")` " -"aus.\n" - #: supervisor/shared/safe_mode.c msgid "" "You are running in safe mode which means something unanticipated happened.\n" @@ -1438,37 +573,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Du hast das Starten im Sicherheitsmodus ausgelöst durch " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - -#: py/objtype.c -msgid "__init__() should return None" -msgstr "__init__() sollte None zurückgeben" - -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "__init__() sollte None zurückgeben, nicht '%s'" - -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "__new__ arg muss user-type sein" - -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "ein Byte-ähnliches Objekt ist erforderlich" - -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "abort() wurde aufgerufen" - -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "Addresse %08x ist nicht an %d bytes ausgerichtet" - #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "Adresse außerhalb der Grenzen" @@ -1477,1424 +581,1428 @@ msgstr "Adresse außerhalb der Grenzen" msgid "addresses is empty" msgstr "adresses ist leer" -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "arg ist eine leere Sequenz" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "Array/Bytes auf der rechten Seite erforderlich" -#: py/runtime.c -msgid "argument has wrong type" -msgstr "Argument hat falschen Typ" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits muss 7, 8 oder 9 sein" -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "Anzahl/Type der Argumente passen nicht" +#: shared-module/struct/__init__.c +msgid "buffer size must match format" +msgstr "Die Puffergröße muss zum Format passen" -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "Argument sollte '%q' sein, nicht '%q'" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "Puffersegmente müssen gleich lang sein" -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "Array/Bytes auf der rechten Seite erforderlich" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "Der Puffer ist zu klein" + +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "Attribute werden noch nicht unterstützt" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "kann Adresse nicht in int konvertieren" -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: py/builtinevex.c -msgid "bad compile mode" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: py/objstr.c -msgid "bad conversion specifier" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" msgstr "" -#: py/objstr.c -msgid "bad format string" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" msgstr "" -#: py/binary.c -msgid "bad typecode" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" msgstr "" -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "Der binäre Operator %q ist nicht implementiert" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits muss 7, 8 oder 9 sein" +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "Division durch Null" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "leere Sequenz" + +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" +msgstr "" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "bits müssen 8 sein" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "erwarte DigitalInOut" -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" -msgstr "Es müssen 8 oder 16 bits_per_sample sein" +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" +msgstr "Die Datei muss eine im Byte-Modus geöffnete Datei sein" -#: py/emitinlinethumb.c -msgid "branch not in range" -msgstr "Zweig ist außerhalb der Reichweite" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "Das Dateisystem muss eine Mount-Methode bereitstellen" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "buf ist zu klein. brauche %d Bytes" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "Funktion benötigt genau 9 Argumente" -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "Puffer muss ein bytes-artiges Objekt sein" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "ungültiger Schritt (step)" -#: shared-module/struct/__init__.c -msgid "buffer size must match format" -msgstr "Die Puffergröße muss zum Format passen" +#: shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "Puffersegmente müssen gleich lang sein" +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" +msgstr "name muss ein String sein" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "Buffer zu lang" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "Der Puffer ist zu klein" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "keine 128-bit UUID" -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "Buffer müssen gleich lang sein" +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: py/vm.c -msgid "byte code not implemented" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" +msgstr "Pixelkoordinaten außerhalb der Grenzen" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein" + +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "bytes mit mehr als 8 bits werden nicht unterstützt" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#: py/objstr.c -msgid "bytes value out of range" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" msgstr "" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "Kalibrierung ist außerhalb der Reichweite" +#: main.c +msgid "soft reboot\n" +msgstr "weicher reboot\n" + +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "Schritt (step) darf nicht Null sein" + +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop muss 1 oder 2 sein" + +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop ist von start aus nicht erreichbar" + +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "threshold muss im Intervall 0-65536 liegen" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "Kalibrierung ist Schreibgeschützt" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "Kalibrierwert nicht im Bereich von +/-127" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" msgstr "" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "kann nur bis zu 4 Parameter für die Xtensa assembly haben" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "kann nur Bytecode speichern" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "timeout must be >= 0.0" +msgstr "timeout muss >= 0.0 sein" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" msgstr "" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "zu viele Argumente" + +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" msgstr "" -#: py/compile.c -msgid "can't assign to expression" -msgstr "kann keinem Ausdruck zuweisen" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "Nicht unterstützter Bitmap-Typ" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "kann %s nicht nach complex konvertieren" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "kann %s nicht nach float konvertieren" +#: shared-module/displayio/Shape.c +msgid "x value out of bounds" +msgstr "x Wert außerhalb der Grenzen" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "kann %s nicht nach int konvertieren" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y sollte ein int sein" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren" +#: shared-module/displayio/Shape.c +msgid "y value out of bounds" +msgstr "y Wert außerhalb der Grenzen" -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "kann NaN nicht nach int konvertieren" +#~ msgid " File \"%q\"" +#~ msgstr " Datei \"%q\"" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "kann Adresse nicht in int konvertieren" +#~ msgid " File \"%q\", line %d" +#~ msgstr " Datei \"%q\", Zeile %d" -#: py/objint.c -msgid "can't convert inf to int" -msgstr "kann inf nicht nach int konvertieren" +#~ msgid "%%c requires int or char" +#~ msgstr "%%c erwartet int oder char" -#: py/obj.c -msgid "can't convert to complex" -msgstr "kann nicht nach complex konvertieren" +#~ msgid "%q index out of range" +#~ msgstr "Der Index %q befindet sich außerhalb der Reihung" -#: py/obj.c -msgid "can't convert to float" -msgstr "kann nicht nach float konvertieren" +#~ msgid "%q indices must be integers, not %s" +#~ msgstr "%q Indizes müssen ganze Zahlen sein, nicht %s" -#: py/obj.c -msgid "can't convert to int" -msgstr "kann nicht nach int konvertieren" +#~ msgid "%q() takes %d positional arguments but %d were given" +#~ msgstr "" +#~ "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "Kann nicht implizit nach str konvertieren" +#~ msgid "'%q' argument required" +#~ msgstr "'%q' Argument erforderlich" -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "kann im äußeren Code nicht als nonlocal deklarieren" +#~ msgid "'%s' expects a label" +#~ msgstr "'%s' erwartet ein Label" -#: py/compile.c -msgid "can't delete expression" -msgstr "Ausdruck kann nicht gelöscht werden" +#~ msgid "'%s' expects a register" +#~ msgstr "'%s' erwartet ein Register" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "Eine binäre Operation zwischen '%q' und '%q' ist nicht möglich" +#~ msgid "'%s' expects a special register" +#~ msgstr "'%s' erwartet ein Spezialregister" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "kann mit einer komplexen Zahl keine abgeschnittene Division ausführen" +#~ msgid "'%s' expects an FPU register" +#~ msgstr "'%s' erwartet ein FPU-Register" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" +#~ msgid "'%s' expects an address of the form [a, b]" +#~ msgstr "'%s' erwartet eine Adresse in der Form [a, b]" -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" +#~ msgid "'%s' expects an integer" +#~ msgstr "'%s' erwartet ein Integer" -#: py/compile.c -msgid "can't have multiple **x" -msgstr "mehrere **x sind nicht gestattet" +#~ msgid "'%s' expects at most r%d" +#~ msgstr "'%s' erwartet höchstens r%d" -#: py/compile.c -msgid "can't have multiple *x" -msgstr "mehrere *x sind nicht gestattet" +#~ msgid "'%s' expects {r0, r1, ...}" +#~ msgstr "'%s' erwartet {r0, r1, ...}" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "Kann '%q' nicht implizit nach 'bool' konvertieren" +#~ msgid "'%s' integer %d is not within range %d..%d" +#~ msgstr "'%s' integer %d ist nicht im Bereich %d..%d" -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "Laden von '%q' nicht möglich" +#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" +#~ msgstr "'%s' Integer 0x%x passt nicht in Maske 0x%x" -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "" +#~ msgid "'%s' object does not support item assignment" +#~ msgstr "'%s' Objekt unterstützt keine item assignment" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" +#~ msgid "'%s' object does not support item deletion" +#~ msgstr "'%s' Objekt unterstützt das Löschen von Elementen nicht" -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" +#~ msgid "'%s' object has no attribute '%q'" +#~ msgstr "'%s' Objekt hat kein Attribut '%q'" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" +#~ msgid "'%s' object is not an iterator" +#~ msgstr "'%s' Objekt ist kein Iterator" -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" +#~ msgid "'%s' object is not callable" +#~ msgstr "'%s' object ist nicht callable" -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "" +#~ msgid "'%s' object is not iterable" +#~ msgstr "'%s' Objekt nicht iterierbar" -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "Speichern von '%q' nicht möglich" +#~ msgid "'%s' object is not subscriptable" +#~ msgstr "'%s' Objekt hat keine '__getitem__'-Methode (not subscriptable)" -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "Speichern in/nach '%q' nicht möglich" +#~ msgid "'=' alignment not allowed in string format specifier" +#~ msgstr "'='-Ausrichtung ist im String-Formatbezeichner nicht zulässig" -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "Speichern mit '%q' Index nicht möglich" +#~ msgid "'align' requires 1 argument" +#~ msgstr "'align' erfordert genau ein Argument" -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" +#~ msgid "'await' outside function" +#~ msgstr "'await' außerhalb einer Funktion" -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" +#~ msgid "'break' outside loop" +#~ msgstr "'break' außerhalb einer Schleife" -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "" +#~ msgid "'continue' outside loop" +#~ msgstr "'continue' außerhalb einer Schleife" -#: py/objtype.c -msgid "cannot create instance" -msgstr "" +#~ msgid "'data' requires at least 2 arguments" +#~ msgstr "'data' erfordert mindestens zwei Argumente" + +#~ msgid "'data' requires integer arguments" +#~ msgstr "'data' erfordert Integer-Argumente" + +#~ msgid "'label' requires 1 argument" +#~ msgstr "'label' erfordert genau ein Argument" + +#~ msgid "'return' outside function" +#~ msgstr "'return' außerhalb einer Funktion" + +#~ msgid "'yield' outside function" +#~ msgstr "'yield' außerhalb einer Funktion" + +#~ msgid "*x must be assignment target" +#~ msgstr "*x muss Zuordnungsziel sein" + +#~ msgid "3-arg pow() not supported" +#~ msgstr "3-arg pow() wird nicht unterstützt" + +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Ein Hardware Interrupt Kanal wird schon benutzt" + +#~ msgid "AP required" +#~ msgstr "AP erforderlich" + +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Alle I2C-Peripheriegeräte sind in Benutzung" + +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Alle SPI-Peripheriegeräte sind in Benutzung" + +#~ msgid "All UART peripherals are in use" +#~ msgstr "Alle UART-Peripheriegeräte sind in Benutzung" + +#~ msgid "All event channels in use" +#~ msgstr "Alle event Kanäle werden benutzt" + +#~ msgid "All sync event channels in use" +#~ msgstr "Alle sync event Kanäle werden benutzt" + +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "AnalogOut-Funktion wird nicht unterstützt" + +#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." +#~ msgstr "AnalogOut kann nur 16 Bit. Der Wert muss unter 65536 liegen." + +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "AnalogOut ist an diesem Pin nicht unterstützt" + +#~ msgid "Another send is already active" +#~ msgstr "Ein anderer Sendevorgang ist schon aktiv" + +#~ msgid "Bit clock and word select must share a clock unit" +#~ msgstr "Bit clock und word select müssen eine clock unit teilen" + +#~ msgid "Bit depth must be multiple of 8." +#~ msgstr "Bit depth muss ein Vielfaches von 8 sein." + +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Beide pins müssen Hardware Interrupts unterstützen" + +#~ msgid "Bus pin %d is already in use" +#~ msgstr "Bus pin %d wird schon benutzt" + +#~ msgid "C-level assert" +#~ msgstr "C-Level Assert" + +#~ msgid "Can not use dotstar with %s" +#~ msgstr "Kann dotstar nicht mit %s verwenden" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Kann nicht zu AP verbinden" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Kann nicht trennen von AP" + +#~ msgid "Cannot get pull while in output mode" +#~ msgstr "Pull up im Ausgabemodus nicht möglich" + +#~ msgid "Cannot get temperature" +#~ msgstr "Kann Temperatur nicht holen" + +#~ msgid "Cannot output both channels on the same pin" +#~ msgstr "Kann nicht beite Kanäle auf dem gleichen Pin ausgeben" + +#~ msgid "Cannot record to a file" +#~ msgstr "Aufnahme in eine Datei nicht möglich" + +#~ msgid "Cannot reset into bootloader because no bootloader is present." +#~ msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden" + +#~ msgid "Cannot set STA config" +#~ msgstr "Kann STA Konfiguration nicht setzen" + +#~ msgid "Cannot unambiguously get sizeof scalar" +#~ msgstr "sizeof scalar kann nicht eindeutig bestimmt werden" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Kann i/f Status nicht updaten" + +#~ msgid "Characteristic already in use by another Service." +#~ msgstr "Characteristic wird bereits von einem anderen Dienst verwendet." + +#~ msgid "Clock unit in use" +#~ msgstr "Clock unit wird benutzt" + +#~ msgid "Could not decode ble_uuid, err 0x%04x" +#~ msgstr "Konnte ble_uuid nicht decodieren. Status: 0x%04x" + +#~ msgid "Could not initialize UART" +#~ msgstr "Konnte UART nicht initialisieren" + +#~ msgid "DAC already in use" +#~ msgstr "DAC wird schon benutzt" + +#~ msgid "Data 0 pin must be byte aligned" +#~ msgstr "Data 0 pin muss am Byte ausgerichtet sein" + +#~ msgid "Data too large for advertisement packet" +#~ msgstr "Zu vielen Daten für das advertisement packet" + +#~ msgid "Data too large for the advertisement packet" +#~ msgstr "Daten sind zu groß für das advertisement packet" + +#~ msgid "Destination capacity is smaller than destination_length." +#~ msgstr "Die Zielkapazität ist kleiner als destination_length." + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "" +#~ "Ich weiß nicht, wie man das Objekt an die native Funktion übergeben kann" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8226 hat keinen Sicherheitsmodus" + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 unterstützt pull down nicht" + +#~ msgid "EXTINT channel already in use" +#~ msgstr "EXTINT Kanal ist schon in Benutzung" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Fehler in ffi_prep_cif" + +#~ msgid "Error in regex" +#~ msgstr "Fehler in regex" + +#~ msgid "Failed to acquire mutex" +#~ msgstr "Akquirieren des Mutex gescheitert" + +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "Mutex konnte nicht akquiriert werden. Status: 0x%04x" + +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "Hinzufügen des Characteristic ist gescheitert. Status: 0x%04x" + +#~ msgid "Failed to add service" +#~ msgstr "Dienst konnte nicht hinzugefügt werden" + +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "Dienst konnte nicht hinzugefügt werden. Status: 0x%04x" + +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Konnte keinen RX Buffer allozieren" + +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Konnte keine RX Buffer mit %d allozieren" + +#~ msgid "Failed to change softdevice state" +#~ msgstr "Fehler beim Ändern des Softdevice-Status" + +#~ msgid "Failed to connect:" +#~ msgstr "Verbindung fehlgeschlagen:" + +#~ msgid "Failed to continue scanning" +#~ msgstr "Der Scanvorgang kann nicht fortgesetzt werden" + +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "Der Scanvorgang kann nicht fortgesetzt werden. Status: 0x%04x" + +#~ msgid "Failed to create mutex" +#~ msgstr "Erstellen des Mutex ist fehlgeschlagen" + +#~ msgid "Failed to discover services" +#~ msgstr "Es konnten keine Dienste gefunden werden" + +#~ msgid "Failed to get local address" +#~ msgstr "Lokale Adresse konnte nicht abgerufen werden" + +#~ msgid "Failed to get softdevice state" +#~ msgstr "Fehler beim Abrufen des Softdevice-Status" + +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Kann den Attributwert nicht mitteilen. Status: 0x%04x" + +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "Kann CCCD value nicht lesen. Status: 0x%04x" + +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Kann den Attributwert nicht lesen. Status: 0x%04x" + +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "gatts value konnte nicht gelesen werden. Status: 0x%04x" + +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "Kann keine herstellerspezifische UUID hinzufügen. Status: 0x%04x" + +#~ msgid "Failed to release mutex" +#~ msgstr "Loslassen des Mutex gescheitert" + +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "Mutex konnte nicht freigegeben werden. Status: 0x%04x" + +#~ msgid "Failed to start advertising" +#~ msgstr "Kann advertisement nicht starten" + +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "Kann advertisement nicht starten. Status: 0x%04x" + +#~ msgid "Failed to start scanning" +#~ msgstr "Der Scanvorgang kann nicht gestartet werden" + +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "Der Scanvorgang kann nicht gestartet werden. Status: 0x%04x" + +#~ msgid "Failed to stop advertising" +#~ msgstr "Kann advertisement nicht stoppen" + +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "Kann advertisement nicht stoppen. Status: 0x%04x" + +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "Kann den Attributwert nicht schreiben. Status: 0x%04x" + +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "gatts value konnte nicht geschrieben werden. Status: 0x%04x" + +#~ msgid "File exists" +#~ msgstr "Datei existiert" + +#~ msgid "Function requires lock." +#~ msgstr "" +#~ "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" + +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 unterstützt pull up nicht" + +#~ msgid "I/O operation on closed file" +#~ msgstr "Lese/Schreibe-operation an geschlossener Datei" + +#~ msgid "I2C operation not supported" +#~ msgstr "I2C-operation nicht unterstützt" + +#~ msgid "" +#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." +#~ "it/mpy-update for more info." +#~ msgstr "" +#~ "Inkompatible mpy-Datei. Bitte aktualisieren Sie alle mpy-Dateien. Siehe " +#~ "http://adafru.it/mpy-update für weitere Informationen." + +#~ msgid "Input/output error" +#~ msgstr "Eingabe-/Ausgabefehler" + +#~ msgid "Invalid argument" +#~ msgstr "Ungültiges Argument" + +#~ msgid "Invalid bit clock pin" +#~ msgstr "Ungültiges bit clock pin" -#: py/runtime.c -msgid "cannot import name %q" -msgstr "Name %q kann nicht importiert werden" +#~ msgid "Invalid buffer size" +#~ msgstr "Ungültige Puffergröße" -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "kann keinen relativen Import durchführen" +#~ msgid "Invalid channel count" +#~ msgstr "Ungültige Anzahl von Kanälen" -#: py/emitnative.c -msgid "casting" -msgstr "" +#~ msgid "Invalid clock pin" +#~ msgstr "Ungültiger clock pin" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" +#~ msgid "Invalid data pin" +#~ msgstr "Ungültiger data pin" -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "" +#~ msgid "Invalid pin for left channel" +#~ msgstr "Ungültiger Pin für linken Kanal" -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "chr() arg ist nicht in range(0x110000)" +#~ msgid "Invalid pin for right channel" +#~ msgstr "Ungültiger Pin für rechten Kanal" -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "chr() arg ist nicht in range(256)" +#~ msgid "Invalid pins" +#~ msgstr "Ungültige Pins" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" +#~ msgid "Invalid voice count" +#~ msgstr "Ungültige Anzahl von Stimmen" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" +#~ msgid "LHS of keyword arg must be an id" +#~ msgstr "LHS des Schlüsselwortarguments muss eine id sein" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" +#~ msgid "Length must be an int" +#~ msgstr "Länge muss ein int sein" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "" +#~ msgid "Length must be non-negative" +#~ msgstr "Länge darf nicht negativ sein" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Maximale PWM Frequenz ist %dHz" -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "" +#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" +#~ msgstr "" +#~ "Die Startverzögerung des Mikrofons muss im Bereich von 0,0 bis 1,0 liegen" -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Minimale PWM Frequenz ist %dHz" -#: extmod/moduzlib.c -msgid "compression header" -msgstr "kompression header" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Mehrere PWM Frequenzen werden nicht unterstützt. PWM wurde bereits auf " +#~ "%dHz gesetzt." -#: py/parse.c -msgid "constant must be an integer" -msgstr "" +#~ msgid "No DAC on chip" +#~ msgstr "Kein DAC im Chip vorhanden" -#: py/emitnative.c -msgid "conversion to object" -msgstr "" +#~ msgid "No DMA channel found" +#~ msgstr "Kein DMA Kanal gefunden" -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Keine PulseIn Unterstützung für %q" -#: py/compile.c -msgid "default 'except' must be last" -msgstr "Die Standart-Ausnahmebehandlung muss als letztes sein" +#~ msgid "No RX pin" +#~ msgstr "Kein RX Pin" -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" +#~ msgid "No TX pin" +#~ msgstr "Kein TX Pin" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" +#~ msgid "No free GCLKs" +#~ msgstr "Keine freien GCLKs" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "" +#~ msgid "No hardware support for analog out." +#~ msgstr "Keine Hardwareunterstützung für analog out" -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "" +#~ msgid "No hardware support on pin" +#~ msgstr "Keine Hardwareunterstützung an diesem Pin" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "Division durch Null" +#~ msgid "No space left on device" +#~ msgstr "Kein Speicherplatz auf Gerät" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" +#~ msgid "No such file/directory" +#~ msgstr "Keine solche Datei/Verzeichnis" -#: py/objdeque.c -msgid "empty" -msgstr "leer" +#~ msgid "Not connected." +#~ msgstr "Nicht verbunden." -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "leerer heap" +#~ msgid "Not playing" +#~ msgstr "Spielt nicht" -#: py/objstr.c -msgid "empty separator" -msgstr "leeres Trennzeichen" +#~ msgid "Odd parity is not supported" +#~ msgstr "Eine ungerade Parität wird nicht unterstützt" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "leere Sequenz" +#~ msgid "Only 8 or 16 bit mono with " +#~ msgstr "Nur 8 oder 16 bit mono mit " -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Nur unkomprimiertes Windows-Format (BMP) unterstützt %d" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" -msgstr "" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "UART1 (GPIO2) unterstützt nur tx" -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "" +#~ msgid "Oversample must be multiple of 8." +#~ msgstr "Oversample muss ein Vielfaches von 8 sein." -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "Exceptions müssen von BaseException abgeleitet sein" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM nicht unterstützt an Pin %d" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "erwarte ':' nach format specifier" +#~ msgid "Permission denied" +#~ msgstr "Zugang verweigert" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "erwarte DigitalInOut" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q hat keine ADC Funktion" -#: py/obj.c -msgid "expected tuple/list" -msgstr "erwarte tuple/list" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "Pin hat keine ADC Funktionalität" -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "erwarte ein dict als Keyword-Argumente" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) unterstützt kein pull" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "Ein Pin wird erwartet" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pins nicht gültig für SPI" -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "erwartet eine Assembler-Anweisung" +#~ msgid "Pixel beyond bounds of buffer" +#~ msgstr "Pixel außerhalb der Puffergrenzen" -#: py/compile.c -msgid "expecting just a value for set" -msgstr "Erwarte nur einen Wert für set" +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "und alle Module im Dateisystem \n" -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "Erwarte key:value für dict" +#~ msgid "Read-only filesystem" +#~ msgstr "Schreibgeschützte Dateisystem" -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "Es wurden zusätzliche Keyword-Argumente angegeben" +#~ msgid "Right channel unsupported" +#~ msgstr "Rechter Kanal wird nicht unterstützt" -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "SDA oder SCL brauchen pull up" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" +#~ msgid "STA must be active" +#~ msgstr "STA muss aktiv sein" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "Die Datei muss eine im Byte-Modus geöffnete Datei sein" +#~ msgid "STA required" +#~ msgstr "STA erforderlich" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "Das Dateisystem muss eine Mount-Methode bereitstellen" +#~ msgid "Sample rate must be positive" +#~ msgstr "Abtastrate muss positiv sein" -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "Das erste Argument für super() muss type sein" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "Abtastrate zu hoch. Wert muss unter %d liegen" -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "Erstes Bit muss das höchstwertigste Bit (MSB) sein" +#~ msgid "Serializer in use" +#~ msgstr "Serializer wird benutzt" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "flash location muss unter 1MByte sein" +#~ msgid "Splitting with sub-captures" +#~ msgstr "Splitting mit sub-captures" -#: py/objint.c -msgid "float too big" -msgstr "float zu groß" +#~ msgid "Too many channels in sample." +#~ msgstr "Zu viele Kanäle im sample" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "Die Schriftart (font) muss 2048 Byte lang sein" +#~ msgid "Traceback (most recent call last):\n" +#~ msgstr "Zurückverfolgung (jüngste Aufforderung zuletzt):\n" -#: py/objstr.c -msgid "format requires a dict" -msgstr "" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) existiert nicht" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "Die Frequenz kann nur 80Mhz oder 160Mhz sein" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) kann nicht lesen" -#: py/objdeque.c -msgid "full" -msgstr "voll" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren" -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "Funktion akzeptiert keine Keyword-Argumente" +#~ msgid "Unable to find free GCLK" +#~ msgstr "Konnte keinen freien GCLK finden" -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "Funktion erwartet maximal %d Argumente, aber hat %d erhalten" +#~ msgid "Unable to init parser" +#~ msgstr "Parser konnte nicht gestartet werden" -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "Funktion hat mehrere Werte für Argument '%q'" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Dateisystem konnte nicht wieder eingebunden werden." -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "Funktion vermisst %d benötigte Argumente ohne Keyword" +#~ msgid "Unexpected nrfx uuid type" +#~ msgstr "Unerwarteter nrfx uuid-Typ" -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "Funktion vermisst Keyword-only-Argument" +#~ msgid "Unknown type" +#~ msgstr "Unbekannter Typ" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "Funktion vermisst benötigtes Keyword-Argumente '%q'" +#~ msgid "Unmatched number of items on RHS (expected %d, got %d)." +#~ msgstr "" +#~ "Nicht übereinstimmende Anzahl von Elementen auf der rechten Seite " +#~ "(erwartet %d, %d erhalten)." -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "Funktion vermisst benötigtes Argumente ohne Keyword #%d" +#~ msgid "Unsupported baudrate" +#~ msgstr "Baudrate wird nicht unterstützt" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "" -"Funktion nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" +#~ msgid "Unsupported operation" +#~ msgstr "Nicht unterstützte Operation" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "Funktion benötigt genau 9 Argumente" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Benutze das esptool um den flash zu löschen und Python erneut hochzuladen" + +#~ msgid "Viper functions don't currently support more than 4 arguments" +#~ msgstr "Viper-Funktionen unterstützen derzeit nicht mehr als 4 Argumente" + +#~ msgid "" +#~ "Welcome to Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Please visit learn.adafruit.com/category/circuitpython for project " +#~ "guides.\n" +#~ "\n" +#~ "To list built-in modules please do `help(\"modules\")`.\n" +#~ msgstr "" +#~ "Willkommen bei Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Projektleitfäden findest du auf learn.adafruit.com/category/" +#~ "circuitpython \n" +#~ "\n" +#~ "Um die integrierten Module aufzulisten, führe bitte `help(\"modules\")` " +#~ "aus.\n" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "Generator läuft bereits" +#~ msgid "__init__() should return None" +#~ msgstr "__init__() sollte None zurückgeben" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "Generator ignoriert GeneratorExit" +#~ msgid "__init__() should return None, not '%s'" +#~ msgstr "__init__() sollte None zurückgeben, nicht '%s'" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "graphic muss 2048 Byte lang sein" +#~ msgid "__new__ arg must be a user-type" +#~ msgstr "__new__ arg muss user-type sein" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "heap muss eine Liste sein" +#~ msgid "a bytes-like object is required" +#~ msgstr "ein Byte-ähnliches Objekt ist erforderlich" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "Bezeichner als global neu definiert" +#~ msgid "abort() called" +#~ msgstr "abort() wurde aufgerufen" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "Bezeichner als nonlocal definiert" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "Addresse %08x ist nicht an %d bytes ausgerichtet" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "Unmögliche Baudrate" +#~ msgid "arg is an empty sequence" +#~ msgstr "arg ist eine leere Sequenz" -#: py/objstr.c -msgid "incomplete format" -msgstr "unvollständiges Format" +#~ msgid "argument has wrong type" +#~ msgstr "Argument hat falschen Typ" -#: py/objstr.c -msgid "incomplete format key" -msgstr "unvollständiger Formatschlüssel" +#~ msgid "argument num/types mismatch" +#~ msgstr "Anzahl/Type der Argumente passen nicht" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "padding ist inkorrekt" +#~ msgid "argument should be a '%q' not a '%q'" +#~ msgstr "Argument sollte '%q' sein, nicht '%q'" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "index außerhalb der Reichweite" +#~ msgid "attributes not supported yet" +#~ msgstr "Attribute werden noch nicht unterstützt" -#: py/obj.c -msgid "indices must be integers" -msgstr "Indizes müssen ganze Zahlen sein" +#~ msgid "binary op %q not implemented" +#~ msgstr "Der binäre Operator %q ist nicht implementiert" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "inline assembler muss eine function sein" +#~ msgid "bits must be 8" +#~ msgstr "bits müssen 8 sein" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "int() arg 2 muss >= 2 und <= 36 sein" +#~ msgid "bits_per_sample must be 8 or 16" +#~ msgstr "Es müssen 8 oder 16 bits_per_sample sein" -#: py/objstr.c -msgid "integer required" -msgstr "integer erforderlich" +#~ msgid "branch not in range" +#~ msgstr "Zweig ist außerhalb der Reichweite" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "Das Interval ist nicht im Bereich 0.0020 bis 10.24" +#~ msgid "buf is too small. need %d bytes" +#~ msgstr "buf ist zu klein. brauche %d Bytes" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "ungültige I2C Schnittstelle" +#~ msgid "buffer must be a bytes-like object" +#~ msgstr "Puffer muss ein bytes-artiges Objekt sein" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "ungültige SPI Schnittstelle" +#~ msgid "buffer too long" +#~ msgstr "Buffer zu lang" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "ungültiger Alarm" +#~ msgid "buffers must be the same length" +#~ msgstr "Buffer müssen gleich lang sein" -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "ungültige argumente" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "bytes mit mehr als 8 bits werden nicht unterstützt" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "ungültige Pufferlänge" +#~ msgid "calibration is out of range" +#~ msgstr "Kalibrierung ist außerhalb der Reichweite" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "ungültiges cert" +#~ msgid "calibration is read only" +#~ msgstr "Kalibrierung ist Schreibgeschützt" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "ungültige Datenbits" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "Kalibrierwert nicht im Bereich von +/-127" -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "ungültiger dupterm index" +#~ msgid "can only have up to 4 parameters to Xtensa assembly" +#~ msgstr "kann nur bis zu 4 Parameter für die Xtensa assembly haben" -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "ungültiges Format" +#~ msgid "can only save bytecode" +#~ msgstr "kann nur Bytecode speichern" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "ungültiger Formatbezeichner" +#~ msgid "can't assign to expression" +#~ msgstr "kann keinem Ausdruck zuweisen" -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "ungültiger Schlüssel" +#~ msgid "can't convert %s to complex" +#~ msgstr "kann %s nicht nach complex konvertieren" -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "ungültiger micropython decorator" +#~ msgid "can't convert %s to float" +#~ msgstr "kann %s nicht nach float konvertieren" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "ungültiger Pin" +#~ msgid "can't convert %s to int" +#~ msgstr "kann %s nicht nach int konvertieren" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "ungültiger Schritt (step)" +#~ msgid "can't convert '%q' object to %q implicitly" +#~ msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "ungültige Stopbits" +#~ msgid "can't convert NaN to int" +#~ msgstr "kann NaN nicht nach int konvertieren" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "ungültige Syntax" +#~ msgid "can't convert inf to int" +#~ msgstr "kann inf nicht nach int konvertieren" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "ungültige Syntax für integer" +#~ msgid "can't convert to complex" +#~ msgstr "kann nicht nach complex konvertieren" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "ungültige Syntax für integer mit Basis %d" +#~ msgid "can't convert to float" +#~ msgstr "kann nicht nach float konvertieren" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "ungültige Syntax für number" +#~ msgid "can't convert to int" +#~ msgstr "kann nicht nach int konvertieren" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "issubclass() arg 1 muss eine Klasse sein" +#~ msgid "can't convert to str implicitly" +#~ msgstr "Kann nicht implizit nach str konvertieren" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "issubclass() arg 2 muss eine Klasse oder ein Tupel von Klassen sein" +#~ msgid "can't declare nonlocal in outer code" +#~ msgstr "kann im äußeren Code nicht als nonlocal deklarieren" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" -"join erwartet eine Liste von str/bytes-Objekten, die mit dem self-Objekt " -"übereinstimmen" +#~ msgid "can't delete expression" +#~ msgstr "Ausdruck kann nicht gelöscht werden" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" -"Keyword-Argument(e) noch nicht implementiert - verwenden Sie stattdessen " -"normale Argumente" +#~ msgid "can't do binary op between '%q' and '%q'" +#~ msgstr "Eine binäre Operation zwischen '%q' und '%q' ist nicht möglich" -#: py/bc.c -msgid "keywords must be strings" -msgstr "Schlüsselwörter müssen Zeichenfolgen sein" +#~ msgid "can't do truncated division of a complex number" +#~ msgstr "" +#~ "kann mit einer komplexen Zahl keine abgeschnittene Division ausführen" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "Label '%q' nicht definiert" +#~ msgid "can't have multiple **x" +#~ msgstr "mehrere **x sind nicht gestattet" -#: py/compile.c -msgid "label redefined" -msgstr "Label neu definiert" +#~ msgid "can't have multiple *x" +#~ msgstr "mehrere *x sind nicht gestattet" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len muss ein vielfaches von 4 sein" +#~ msgid "can't implicitly convert '%q' to 'bool'" +#~ msgstr "Kann '%q' nicht implizit nach 'bool' konvertieren" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "Für diesen Typ ist length nicht zulässig" +#~ msgid "can't load from '%q'" +#~ msgstr "Laden von '%q' nicht möglich" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "lhs und rhs sollten kompatibel sein" +#~ msgid "can't store '%q'" +#~ msgstr "Speichern von '%q' nicht möglich" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "Lokales '%q' hat den Typ '%q', aber die Quelle ist '%q'" +#~ msgid "can't store to '%q'" +#~ msgstr "Speichern in/nach '%q' nicht möglich" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "Lokales '%q' verwendet bevor Typ bekannt" +#~ msgid "can't store with '%q' index" +#~ msgstr "Speichern mit '%q' Index nicht möglich" -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "" -"Es wurde versucht auf eine Variable zuzugreifen, die es (noch) nicht gibt. " -"Variablen immer zuerst Zuweisen!" +#~ msgid "cannot import name %q" +#~ msgstr "Name %q kann nicht importiert werden" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "long int wird in diesem Build nicht unterstützt" +#~ msgid "cannot perform relative import" +#~ msgstr "kann keinen relativen Import durchführen" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "map buffer zu klein" +#~ msgid "chr() arg not in range(0x110000)" +#~ msgstr "chr() arg ist nicht in range(0x110000)" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "" +#~ msgid "chr() arg not in range(256)" +#~ msgstr "chr() arg ist nicht in range(256)" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "maximale Rekursionstiefe überschritten" +#~ msgid "compression header" +#~ msgstr "kompression header" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "Speicherzuordnung fehlgeschlagen, Zuweisung von %u Bytes" +#~ msgid "default 'except' must be last" +#~ msgstr "Die Standart-Ausnahmebehandlung muss als letztes sein" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"Speicherallozierung fehlgeschlagen, alloziere %u Bytes für nativen Code" +#~ msgid "empty" +#~ msgstr "leer" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt" +#~ msgid "empty heap" +#~ msgstr "leerer heap" -#: py/builtinimport.c -msgid "module not found" -msgstr "Modul nicht gefunden" +#~ msgid "empty separator" +#~ msgstr "leeres Trennzeichen" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "mehrere *x in Zuordnung" +#~ msgid "exceptions must derive from BaseException" +#~ msgstr "Exceptions müssen von BaseException abgeleitet sein" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" +#~ msgid "expected ':' after format specifier" +#~ msgstr "erwarte ':' nach format specifier" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "" +#~ msgid "expected tuple/list" +#~ msgstr "erwarte tuple/list" -#: py/emitnative.c -msgid "must raise an object" -msgstr "" +#~ msgid "expecting a dict for keyword args" +#~ msgstr "erwarte ein dict als Keyword-Argumente" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "sck/mosi/miso müssen alle spezifiziert sein" +#~ msgid "expecting a pin" +#~ msgstr "Ein Pin wird erwartet" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "muss Schlüsselwortargument für key function verwenden" +#~ msgid "expecting an assembler instruction" +#~ msgstr "erwartet eine Assembler-Anweisung" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "Name '%q' ist nirgends definiert worden (Schreibweise kontrollieren)" +#~ msgid "expecting just a value for set" +#~ msgstr "Erwarte nur einen Wert für set" -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" -msgstr "name muss ein String sein" +#~ msgid "expecting key:value for dict" +#~ msgstr "Erwarte key:value für dict" -#: py/runtime.c -msgid "name not defined" -msgstr "Dieser Name ist nirgends definiert worden (Schreibweise kontrollieren)" +#~ msgid "extra keyword arguments given" +#~ msgstr "Es wurden zusätzliche Keyword-Argumente angegeben" -#: py/compile.c -msgid "name reused for argument" -msgstr "Name für Argumente wiederverwendet" +#~ msgid "extra positional arguments given" +#~ msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben" -#: py/emitnative.c -msgid "native yield" -msgstr "" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "" +#~ msgid "first argument to super() must be type" +#~ msgstr "Das erste Argument für super() muss type sein" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "" +#~ msgid "firstbit must be MSB" +#~ msgstr "Erstes Bit muss das höchstwertigste Bit (MSB) sein" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "flash location muss unter 1MByte sein" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "" +#~ msgid "float too big" +#~ msgstr "float zu groß" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" +#~ msgid "font must be 2048 bytes long" +#~ msgstr "Die Schriftart (font) muss 2048 Byte lang sein" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "Die Frequenz kann nur 80Mhz oder 160Mhz sein" -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "Kein Modul mit dem Namen '%q'" +#~ msgid "full" +#~ msgstr "voll" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "" +#~ msgid "function does not take keyword arguments" +#~ msgstr "Funktion akzeptiert keine Keyword-Argumente" -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "ein non-default argument folgt auf ein default argument" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "Funktion erwartet maximal %d Argumente, aber hat %d erhalten" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "eine nicht-hex zahl wurde gefunden" +#~ msgid "function got multiple values for argument '%q'" +#~ msgstr "Funktion hat mehrere Werte für Argument '%q'" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "Funktion vermisst %d benötigte Argumente ohne Keyword" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "" +#~ msgid "function missing keyword-only argument" +#~ msgstr "Funktion vermisst Keyword-only-Argument" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "keine 128-bit UUID" +#~ msgid "function missing required keyword argument '%q'" +#~ msgstr "Funktion vermisst benötigtes Keyword-Argumente '%q'" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "Kein gültiger ADC Kanal: %d" +#~ msgid "function missing required positional argument #%d" +#~ msgstr "Funktion vermisst benötigtes Argumente ohne Keyword #%d" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "" +#~ "Funktion nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "" +#~ msgid "generator already executing" +#~ msgstr "Generator läuft bereits" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "Objekt '%s' ist weder tupel noch list" +#~ msgid "generator ignored GeneratorExit" +#~ msgstr "Generator ignoriert GeneratorExit" -#: py/obj.c -msgid "object does not support item assignment" -msgstr "Objekt unterstützt keine item assignment" +#~ msgid "graphic must be 2048 bytes long" +#~ msgstr "graphic muss 2048 Byte lang sein" -#: py/obj.c -msgid "object does not support item deletion" -msgstr "Objekt unterstützt das Löschen von Elementen nicht" +#~ msgid "heap must be a list" +#~ msgstr "heap muss eine Liste sein" -#: py/obj.c -msgid "object has no len" -msgstr "Objekt hat keine len" +#~ msgid "identifier redefined as global" +#~ msgstr "Bezeichner als global neu definiert" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "Objekt hat keine '__getitem__'-Methode (not subscriptable)" +#~ msgid "identifier redefined as nonlocal" +#~ msgstr "Bezeichner als nonlocal definiert" -#: py/runtime.c -msgid "object not an iterator" -msgstr "Objekt ist kein Iterator" +#~ msgid "impossible baudrate" +#~ msgstr "Unmögliche Baudrate" -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" +#~ msgid "incomplete format" +#~ msgstr "unvollständiges Format" -#: py/sequence.c -msgid "object not in sequence" -msgstr "Objekt ist nicht in sequence" +#~ msgid "incomplete format key" +#~ msgstr "unvollständiger Formatschlüssel" -#: py/runtime.c -msgid "object not iterable" -msgstr "Objekt nicht iterierbar" +#~ msgid "incorrect padding" +#~ msgstr "padding ist inkorrekt" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "Objekt vom Typ '%s' hat keine len()" +#~ msgid "index out of range" +#~ msgstr "index außerhalb der Reichweite" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "Objekt mit Pufferprotokoll (buffer protocol) erforderlich" +#~ msgid "indices must be integers" +#~ msgstr "Indizes müssen ganze Zahlen sein" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "String mit ungerader Länge" +#~ msgid "inline assembler must be a function" +#~ msgstr "inline assembler muss eine function sein" -#: py/objstrunicode.c py/objstr.c -msgid "offset out of bounds" -msgstr "offset außerhalb der Grenzen" +#~ msgid "int() arg 2 must be >= 2 and <= 36" +#~ msgstr "int() arg 2 muss >= 2 und <= 36 sein" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" +#~ msgid "integer required" +#~ msgstr "integer erforderlich" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "ord erwartet ein Zeichen" +#~ msgid "interval not in range 0.0020 to 10.24" +#~ msgstr "Das Interval ist nicht im Bereich 0.0020 bis 10.24" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" -"ord() erwartet ein Zeichen aber es wurde eine Zeichenfolge mit Länge %d " -"gefunden" +#~ msgid "invalid I2C peripheral" +#~ msgstr "ungültige I2C Schnittstelle" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "" +#~ msgid "invalid SPI peripheral" +#~ msgstr "ungültige SPI Schnittstelle" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "" +#~ msgid "invalid alarm" +#~ msgstr "ungültiger Alarm" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" +#~ msgid "invalid arguments" +#~ msgstr "ungültige argumente" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "parameter annotation muss ein identifier sein" +#~ msgid "invalid buffer length" +#~ msgstr "ungültige Pufferlänge" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "Die Parameter müssen Register der Reihenfolge a2 bis a5 sein" +#~ msgid "invalid cert" +#~ msgstr "ungültiges cert" -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" -msgstr "" +#~ msgid "invalid data bits" +#~ msgstr "ungültige Datenbits" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "Pin hat keine IRQ Fähigkeiten" +#~ msgid "invalid dupterm index" +#~ msgstr "ungültiger dupterm index" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" -msgstr "Pixelkoordinaten außerhalb der Grenzen" +#~ msgid "invalid format" +#~ msgstr "ungültiges Format" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#~ msgid "invalid format specifier" +#~ msgstr "ungültiger Formatbezeichner" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein" +#~ msgid "invalid key" +#~ msgstr "ungültiger Schlüssel" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "pop von einem leeren PulseIn" +#~ msgid "invalid micropython decorator" +#~ msgstr "ungültiger micropython decorator" -#: py/objset.c -msgid "pop from an empty set" -msgstr "pop von einer leeren Menge (set)" +#~ msgid "invalid pin" +#~ msgstr "ungültiger Pin" -#: py/objlist.c -msgid "pop from empty list" -msgstr "pop von einer leeren Liste" +#~ msgid "invalid stop bits" +#~ msgstr "ungültige Stopbits" -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "popitem(): dictionary ist leer" +#~ msgid "invalid syntax" +#~ msgstr "ungültige Syntax" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "pow() drittes Argument darf nicht 0 sein" +#~ msgid "invalid syntax for integer" +#~ msgstr "ungültige Syntax für integer" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "" +#~ msgid "invalid syntax for integer with base %d" +#~ msgstr "ungültige Syntax für integer mit Basis %d" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "Warteschlangenüberlauf" +#~ msgid "invalid syntax for number" +#~ msgstr "ungültige Syntax für number" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "rawbuf hat nicht die gleiche Größe wie buf" +#~ msgid "issubclass() arg 1 must be a class" +#~ msgstr "issubclass() arg 1 muss eine Klasse sein" -#: shared-bindings/_pixelbuf/__init__.c -msgid "readonly attribute" -msgstr "Readonly-Attribut" +#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" +#~ msgstr "issubclass() arg 2 muss eine Klasse oder ein Tupel von Klassen sein" -#: py/builtinimport.c -msgid "relative import" -msgstr "relativer Import" +#~ msgid "join expects a list of str/bytes objects consistent with self object" +#~ msgstr "" +#~ "join erwartet eine Liste von str/bytes-Objekten, die mit dem self-Objekt " +#~ "übereinstimmen" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "die ersuchte Länge ist %d, aber das Objekt hat eine Länge von %d" +#~ msgid "keyword argument(s) not yet implemented - use normal args instead" +#~ msgstr "" +#~ "Keyword-Argument(e) noch nicht implementiert - verwenden Sie stattdessen " +#~ "normale Argumente" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "return annotation muss ein identifier sein" +#~ msgid "keywords must be strings" +#~ msgstr "Schlüsselwörter müssen Zeichenfolgen sein" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "" +#~ msgid "label '%q' not defined" +#~ msgstr "Label '%q' nicht definiert" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "" +#~ msgid "label redefined" +#~ msgstr "Label neu definiert" -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "" +#~ msgid "len must be multiple of 4" +#~ msgstr "len muss ein vielfaches von 4 sein" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" -"sample_source buffer muss ein Bytearray oder ein Array vom Typ 'h', 'H', 'b' " -"oder 'B' sein" +#~ msgid "length argument not allowed for this type" +#~ msgstr "Für diesen Typ ist length nicht zulässig" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "Abtastrate außerhalb der Reichweite" +#~ msgid "lhs and rhs should be compatible" +#~ msgstr "lhs und rhs sollten kompatibel sein" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "Scan fehlgeschlagen" +#~ msgid "local '%q' has type '%q' but source is '%q'" +#~ msgstr "Lokales '%q' hat den Typ '%q', aber die Quelle ist '%q'" -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "Der schedule stack ist voll" +#~ msgid "local '%q' used before type known" +#~ msgstr "Lokales '%q' verwendet bevor Typ bekannt" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "kompilieren von Skripten ist nicht unterstützt" +#~ msgid "local variable referenced before assignment" +#~ msgstr "" +#~ "Es wurde versucht auf eine Variable zuzugreifen, die es (noch) nicht " +#~ "gibt. Variablen immer zuerst Zuweisen!" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#~ msgid "long int not supported in this build" +#~ msgstr "long int wird in diesem Build nicht unterstützt" -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "" +#~ msgid "map buffer too small" +#~ msgstr "map buffer zu klein" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "" +#~ msgid "maximum recursion depth exceeded" +#~ msgstr "maximale Rekursionstiefe überschritten" -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "" +#~ msgid "memory allocation failed, allocating %u bytes" +#~ msgstr "Speicherzuordnung fehlgeschlagen, Zuweisung von %u Bytes" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "Speicherallozierung fehlgeschlagen, alloziere %u Bytes für nativen Code" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "" +#~ msgid "memory allocation failed, heap is locked" +#~ msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "small int Überlauf" +#~ msgid "module not found" +#~ msgstr "Modul nicht gefunden" -#: main.c -msgid "soft reboot\n" -msgstr "weicher reboot\n" +#~ msgid "multiple *x in assignment" +#~ msgstr "mehrere *x in Zuordnung" -#: py/objstr.c -msgid "start/end indices" -msgstr "" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "sck/mosi/miso müssen alle spezifiziert sein" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" -msgstr "" +#~ msgid "must use keyword argument for key function" +#~ msgstr "muss Schlüsselwortargument für key function verwenden" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "Schritt (step) darf nicht Null sein" +#~ msgid "name '%q' is not defined" +#~ msgstr "" +#~ "Name '%q' ist nirgends definiert worden (Schreibweise kontrollieren)" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop muss 1 oder 2 sein" +#~ msgid "name not defined" +#~ msgstr "" +#~ "Dieser Name ist nirgends definiert worden (Schreibweise kontrollieren)" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop ist von start aus nicht erreichbar" +#~ msgid "name reused for argument" +#~ msgstr "Name für Argumente wiederverwendet" -#: py/stream.c -msgid "stream operation not supported" -msgstr "stream operation ist nicht unterstützt" +#~ msgid "no module named '%q'" +#~ msgstr "Kein Modul mit dem Namen '%q'" -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "" +#~ msgid "non-default argument follows default argument" +#~ msgstr "ein non-default argument folgt auf ein default argument" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "" +#~ msgid "non-hex digit found" +#~ msgstr "eine nicht-hex zahl wurde gefunden" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "" -"Zeichenfolgen werden nicht unterstützt; Verwenden Sie bytes oder bytearray" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "Kein gültiger ADC Kanal: %d" -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: kann nicht indexieren" +#~ msgid "object '%s' is not a tuple or list" +#~ msgstr "Objekt '%s' ist weder tupel noch list" -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: index außerhalb gültigen Bereichs" +#~ msgid "object does not support item assignment" +#~ msgstr "Objekt unterstützt keine item assignment" -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: keine Felder" +#~ msgid "object does not support item deletion" +#~ msgstr "Objekt unterstützt das Löschen von Elementen nicht" -#: py/objstr.c -msgid "substring not found" -msgstr "substring nicht gefunden" +#~ msgid "object has no len" +#~ msgstr "Objekt hat keine len" -#: py/compile.c -msgid "super() can't find self" -msgstr "super() kann self nicht finden" +#~ msgid "object is not subscriptable" +#~ msgstr "Objekt hat keine '__getitem__'-Methode (not subscriptable)" -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "Syntaxfehler in JSON" +#~ msgid "object not an iterator" +#~ msgstr "Objekt ist kein Iterator" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "Syntaxfehler in uctypes Deskriptor" +#~ msgid "object not in sequence" +#~ msgstr "Objekt ist nicht in sequence" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "threshold muss im Intervall 0-65536 liegen" +#~ msgid "object not iterable" +#~ msgstr "Objekt nicht iterierbar" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#~ msgid "object of type '%s' has no len()" +#~ msgstr "Objekt vom Typ '%s' hat keine len()" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "" +#~ msgid "object with buffer protocol required" +#~ msgstr "Objekt mit Pufferprotokoll (buffer protocol) erforderlich" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "" +#~ msgid "odd-length string" +#~ msgstr "String mit ungerader Länge" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "" +#~ msgid "offset out of bounds" +#~ msgstr "offset außerhalb der Grenzen" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "timeout must be >= 0.0" -msgstr "timeout muss >= 0.0 sein" +#~ msgid "ord expects a character" +#~ msgstr "ord erwartet ein Zeichen" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "" +#~ msgid "ord() expected a character, but string of length %d found" +#~ msgstr "" +#~ "ord() erwartet ein Zeichen aber es wurde eine Zeichenfolge mit Länge %d " +#~ "gefunden" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "zu viele Argumente" +#~ msgid "parameter annotation must be an identifier" +#~ msgstr "parameter annotation muss ein identifier sein" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "" +#~ msgid "parameters must be registers in sequence a2 to a5" +#~ msgstr "Die Parameter müssen Register der Reihenfolge a2 bis a5 sein" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "Pin hat keine IRQ Fähigkeiten" -#: py/objstr.c -msgid "tuple index out of range" -msgstr "" +#~ msgid "pop from an empty PulseIn" +#~ msgstr "pop von einem leeren PulseIn" -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "tupel/list hat falsche Länge" +#~ msgid "pop from an empty set" +#~ msgstr "pop von einer leeren Menge (set)" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "pop from empty list" +#~ msgstr "pop von einer leeren Liste" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "tx und rx können nicht beide None sein" +#~ msgid "popitem(): dictionary is empty" +#~ msgstr "popitem(): dictionary ist leer" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "" +#~ msgid "pow() 3rd argument cannot be 0" +#~ msgstr "pow() drittes Argument darf nicht 0 sein" -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "" +#~ msgid "queue overflow" +#~ msgstr "Warteschlangenüberlauf" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "" +#~ msgid "rawbuf is not the same size as buf" +#~ msgstr "rawbuf hat nicht die gleiche Größe wie buf" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "" +#~ msgid "readonly attribute" +#~ msgstr "Readonly-Attribut" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "" +#~ msgid "relative import" +#~ msgstr "relativer Import" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "Der unäre Operator %q ist nicht implementiert" +#~ msgid "requested length %d but object has length %d" +#~ msgstr "die ersuchte Länge ist %d, aber das Objekt hat eine Länge von %d" -#: py/parse.c -msgid "unexpected indent" -msgstr "" -"unerwarteter Einzug (Einrückung) Bitte Leerzeichen am Zeilenanfang " -"kontrollieren!" +#~ msgid "return annotation must be an identifier" +#~ msgstr "return annotation muss ein identifier sein" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "unerwartetes Keyword-Argument" +#~ msgid "" +#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " +#~ "or 'B'" +#~ msgstr "" +#~ "sample_source buffer muss ein Bytearray oder ein Array vom Typ 'h', 'H', " +#~ "'b' oder 'B' sein" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "unerwartetes Keyword-Argument '%q'" +#~ msgid "sampling rate out of range" +#~ msgstr "Abtastrate außerhalb der Reichweite" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "" +#~ msgid "scan failed" +#~ msgstr "Scan fehlgeschlagen" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "" -"Einrückung entspricht keiner äußeren Einrückungsebene. Bitte Leerzeichen am " -"Zeilenanfang kontrollieren!" +#~ msgid "schedule stack full" +#~ msgstr "Der schedule stack ist voll" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "" +#~ msgid "script compilation not supported" +#~ msgstr "kompilieren von Skripten ist nicht unterstützt" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "" +#~ msgid "small int overflow" +#~ msgstr "small int Überlauf" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "" +#~ msgid "stream operation not supported" +#~ msgstr "stream operation ist nicht unterstützt" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "" +#~ msgid "string not supported; use bytes or bytearray" +#~ msgstr "" +#~ "Zeichenfolgen werden nicht unterstützt; Verwenden Sie bytes oder bytearray" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "" +#~ msgid "struct: cannot index" +#~ msgstr "struct: kann nicht indexieren" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "Unbekannter Statusparameter" +#~ msgid "struct: index out of range" +#~ msgstr "struct: index außerhalb gültigen Bereichs" -#: py/compile.c -msgid "unknown type" -msgstr "unbekannter Typ" +#~ msgid "struct: no fields" +#~ msgstr "struct: keine Felder" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "unbekannter Typ '%q'" +#~ msgid "substring not found" +#~ msgstr "substring nicht gefunden" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "" +#~ msgid "super() can't find self" +#~ msgstr "super() kann self nicht finden" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "nicht lesbares Attribut" +#~ msgid "syntax error in JSON" +#~ msgstr "Syntaxfehler in JSON" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "nicht unterstützter Thumb-Befehl '%s' mit %d Argumenten" +#~ msgid "syntax error in uctypes descriptor" +#~ msgstr "Syntaxfehler in uctypes Deskriptor" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "" +#~ msgid "tuple/list has wrong length" +#~ msgstr "tupel/list hat falsche Länge" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "Nicht unterstützter Bitmap-Typ" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "tx und rx können nicht beide None sein" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "" +#~ msgid "unary op %q not implemented" +#~ msgstr "Der unäre Operator %q ist nicht implementiert" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "nicht unterstützter Type für %q: '%s'" +#~ msgid "unexpected indent" +#~ msgstr "" +#~ "unerwarteter Einzug (Einrückung) Bitte Leerzeichen am Zeilenanfang " +#~ "kontrollieren!" -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "nicht unterstützter Typ für Operator" +#~ msgid "unexpected keyword argument" +#~ msgstr "unerwartetes Keyword-Argument" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "nicht unterstützte Typen für %q: '%s', '%s'" +#~ msgid "unexpected keyword argument '%q'" +#~ msgstr "unerwartetes Keyword-Argument '%q'" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" +#~ msgid "unindent does not match any outer indentation level" +#~ msgstr "" +#~ "Einrückung entspricht keiner äußeren Einrückungsebene. Bitte Leerzeichen " +#~ "am Zeilenanfang kontrollieren!" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() fehlgeschlagen" +#~ msgid "unknown status param" +#~ msgstr "Unbekannter Statusparameter" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "write_args muss eine Liste, ein Tupel oder None sein" +#~ msgid "unknown type" +#~ msgstr "unbekannter Typ" -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "falsche Anzahl an Argumenten" +#~ msgid "unknown type '%q'" +#~ msgstr "unbekannter Typ '%q'" -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "falsche Anzahl zu entpackender Werte" +#~ msgid "unreadable attribute" +#~ msgstr "nicht lesbares Attribut" -#: shared-module/displayio/Shape.c -msgid "x value out of bounds" -msgstr "x Wert außerhalb der Grenzen" +#~ msgid "unsupported Thumb instruction '%s' with %d arguments" +#~ msgstr "nicht unterstützter Thumb-Befehl '%s' mit %d Argumenten" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y sollte ein int sein" +#~ msgid "unsupported type for %q: '%s'" +#~ msgstr "nicht unterstützter Type für %q: '%s'" -#: shared-module/displayio/Shape.c -msgid "y value out of bounds" -msgstr "y Wert außerhalb der Grenzen" +#~ msgid "unsupported type for operator" +#~ msgstr "nicht unterstützter Typ für Operator" -#: py/objrange.c -msgid "zero step" -msgstr "" +#~ msgid "unsupported types for %q: '%s', '%s'" +#~ msgstr "nicht unterstützte Typen für %q: '%s', '%s'" -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Kann den Attributwert nicht mitteilen. Status: 0x%04x" +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() fehlgeschlagen" -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Kann den Attributwert nicht lesen. Status: 0x%04x" +#~ msgid "write_args must be a list, tuple, or None" +#~ msgstr "write_args muss eine Liste, ein Tupel oder None sein" -#~ msgid "Function requires lock." -#~ msgstr "" -#~ "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" +#~ msgid "wrong number of arguments" +#~ msgstr "falsche Anzahl an Argumenten" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Nur unkomprimiertes Windows-Format (BMP) unterstützt %d" +#~ msgid "wrong number of values to unpack" +#~ msgstr "falsche Anzahl zu entpackender Werte" diff --git a/locale/en_US.po b/locale/en_US.po index 14e202d05..50cb385cc 100644 --- a/locale/en_US.po +++ b/locale/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-02 22:09+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,37 +23,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr "" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr "" - #: main.c msgid " output:\n" msgstr "" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" -#: py/obj.c -msgid "%q index out of range" -msgstr "" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "" @@ -61,166 +40,10 @@ msgstr "" msgid "%q should be an int" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'await' outside function" -msgstr "" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'return' outside function" -msgstr "" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "" - -#: py/obj.c -msgid ", in %q\n" -msgstr "" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -231,54 +54,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "All UART peripherals are in use" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -301,18 +84,6 @@ msgid "" "disable.\n" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -330,12 +101,6 @@ msgstr "" msgid "Buffer must be at least length 1" msgstr "" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, c-format -msgid "Bus pin %d is already in use" -msgstr "" - #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "" @@ -344,15 +109,6 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -369,72 +125,26 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "" - -#: ports/nrf/common-hal/microcontroller/Processor.c -msgid "Cannot get temperature" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -443,10 +153,6 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -459,27 +165,14 @@ msgstr "" msgid "Clock stretch too long" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Command must be an int between 0 and 255" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -492,67 +185,21 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -msgid "Data 0 pin must be byte aligned" -msgstr "" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -msgid "Data too large for advertisement packet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Data too large for the advertisement packet" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -560,8 +207,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -570,440 +217,117 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to acquire mutex" +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c +msgid "Function requires lock" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to acquire mutex, err 0x%04x" +#: shared-module/displayio/Group.c +msgid "Group full" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -#, c-format -msgid "Failed to add characteristic, err 0x%04x" +#: shared-bindings/_pew/PewPew.c +msgid "Incorrect buffer size" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to add service" +#: shared-module/displayio/OnDiskBitmap.c +msgid "Invalid BMP file" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to add service, err 0x%04x" +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid PWM frequency" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Invalid direction." msgstr "" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" +#: shared-module/audioio/WaveFile.c +msgid "Invalid file" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to change softdevice state" +#: shared-module/audioio/WaveFile.c +msgid "Invalid format chunk size" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to connect:" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid number of bits" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to continue scanning" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid phase" msgstr "" -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to continue scanning, err 0x%04x" +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid pin" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to create mutex" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "Invalid polarity" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to discover services" +#: shared-bindings/microcontroller/__init__.c +msgid "Invalid run mode." msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get local address" +#: shared-module/audioio/WaveFile.c +msgid "Invalid wave file" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get softdevice state" +#: shared-module/displayio/Group.c +msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" +#: supervisor/shared/safe_mode.c +msgid "" +"Looks like our core CircuitPython code crashed hard. Whoops!\n" +"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" +" with the contents of your CIRCUITPY drive and this message:\n" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read CCCD value, err 0x%04x" +#: shared-module/bitbangio/SPI.c +msgid "MISO pin init failed." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" +#: shared-module/bitbangio/SPI.c +msgid "MOSI pin init failed." msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c +#: shared-module/displayio/Shape.c #, c-format -msgid "Failed to read gatts value, err 0x%04x" +msgid "Maximum x value when mirrored is %d" msgstr "" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#: supervisor/shared/safe_mode.c +msgid "MicroPython NLR jump failed. Likely memory corruption.\n" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to release mutex" +#: supervisor/shared/safe_mode.c +msgid "MicroPython fatal error.\n" msgstr "" -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, c-format -msgid "Failed to release mutex, err 0x%04x" +#: shared-bindings/displayio/Display.c +msgid "Must be a Group subclass." msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start advertising" +#: supervisor/shared/board_busses.c +msgid "No default I2C bus" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to start advertising, err 0x%04x" +#: supervisor/shared/board_busses.c +msgid "No default SPI bus" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to start scanning" +#: supervisor/shared/board_busses.c +msgid "No default UART bus" msgstr "" -#: ports/nrf/common-hal/bleio/Scanner.c -#, c-format -msgid "Failed to start scanning, err 0x%04x" +#: shared-bindings/os/__init__.c +msgid "No hardware random available" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to stop advertising" -msgstr "" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "" - -#: py/moduerrno.c -msgid "File exists" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c -msgid "Function requires lock" -msgstr "" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Group full" -msgstr "" - -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "Incorrect buffer size" -msgstr "" - -#: py/moduerrno.c -msgid "Input/output error" -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c -msgid "Invalid BMP file" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c -msgid "Invalid PWM frequency" -msgstr "" - -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Invalid direction." -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid file" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid format chunk size" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid number of bits" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid phase" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid pin" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid polarity" -msgstr "" - -#: shared-bindings/microcontroller/__init__.c -msgid "Invalid run mode." -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Invalid wave file" -msgstr "" - -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Layer must be a Group or TileGrid subclass." -msgstr "" - -#: py/objslice.c -msgid "Length must be an int" -msgstr "" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"Looks like our core CircuitPython code crashed hard. Whoops!\n" -"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" -" with the contents of your CIRCUITPY drive and this message:\n" -msgstr "" - -#: shared-module/bitbangio/SPI.c -msgid "MISO pin init failed." -msgstr "" - -#: shared-module/bitbangio/SPI.c -msgid "MOSI pin init failed." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "" - -#: shared-module/displayio/Shape.c -#, c-format -msgid "Maximum x value when mirrored is %d" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "MicroPython NLR jump failed. Likely memory corruption.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "MicroPython fatal error.\n" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" - -#: shared-bindings/displayio/Display.c -msgid "Must be a Group subclass." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default I2C bus" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default SPI bus" -msgstr "" - -#: supervisor/shared/board_busses.c -msgid "No default UART bus" -msgstr "" - -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "" - -#: shared-bindings/os/__init__.c -msgid "No hardware random available" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "" - -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected" -msgstr "" - -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "Not connected" msgstr "" #: shared-bindings/util.c @@ -1011,14 +335,6 @@ msgid "" "Object has been deinitialized and can no longer be used. Create a new object." msgstr "" -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1033,1779 +349,402 @@ msgstr "" #, c-format msgid "" "Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " -"given" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Only slices with step=1 (aka None) are supported" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "" - -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" -msgstr "" - -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM frequency not writable when variable_frequency is False on construction." -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -msgid "Plus any modules on the filesystem\n" -msgstr "" - -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." -msgstr "" - -#: shared-bindings/rtc/RTC.c -msgid "RTC calibration is not supported on this board" -msgstr "" - -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c -msgid "RTC is not supported on this board" -msgstr "" - -msgid "RTC set is not supported on this board" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Range out of bounds" -msgstr "" - -#: shared-bindings/pulseio/PulseIn.c -msgid "Read-only" -msgstr "" - -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "" - -#: shared-module/displayio/Bitmap.c -msgid "Read-only object" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "Row entry must be digitalio.DigitalInOut" -msgstr "" - -#: main.c -msgid "Running in safe mode! Auto-reload is off.\n" -msgstr "" - -#: main.c -msgid "Running in safe mode! Not running saved code.\n" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "Slice and value different lengths." -msgstr "" - -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c -msgid "Slices not supported" -msgstr "" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "" - -#: shared-bindings/supervisor/__init__.c -msgid "Stack size must be at least 256" -msgstr "" - -#: shared-bindings/multiterminal/__init__.c -msgid "Stream missing readinto() or write() method." -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The CircuitPython heap was corrupted because the stack was too small.\n" -"Please increase stack size limits and press reset (after ejecting " -"CIRCUITPY).\n" -"If you didn't change the stack, then file an issue here with the contents of " -"your CIRCUITPY drive:\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The microcontroller's power dipped. Please make sure your power supply " -"provides\n" -"enough power for the whole circuit and press reset (after ejecting " -"CIRCUITPY).\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"The reset button was pressed while booting CircuitPython. Press again to " -"exit safe mode.\n" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's bits_per_sample does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's channel count does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's sample rate does not match the mixer's" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "The sample's signedness does not match the mixer's" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile height must exactly divide bitmap height" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile indices must be 0 - 255" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "Tile width must exactly divide bitmap width" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "To exit, please reset the board without " -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "" - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c -msgid "Too many display busses" -msgstr "" - -#: shared-bindings/displayio/Display.c -msgid "Too many displays" -msgstr "" - -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "Tuple or struct_time argument required" -msgstr "" - -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "" - -#: shared-module/usb_hid/Device.c -msgid "USB Busy" -msgstr "" - -#: shared-module/usb_hid/Device.c -msgid "USB Error" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID integer value not in range 0 to 0xffff" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "UUID value is not str, int or byte buffer" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "" - -#: shared-module/displayio/OnDiskBitmap.c -msgid "Unable to read color palette data" -msgstr "" - -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "Unable to write to nvm." -msgstr "" - -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "" - -#: shared-module/displayio/Display.c -msgid "Unsupported display bus type" -msgstr "" - -#: shared-module/audioio/WaveFile.c -msgid "Unsupported format" -msgstr "" - -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "" - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Unsupported pull value." -msgstr "" - -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "" - -#: shared-module/audioio/Mixer.c -msgid "Voice index too high" -msgstr "" - -#: main.c -msgid "WARNING: Your code filename has two extensions\n" -msgstr "" - -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "" -"You are running in safe mode which means something unanticipated happened.\n" -msgstr "" - -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " -msgstr "" - -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - -#: py/objtype.c -msgid "__init__() should return None" -msgstr "" - -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "" - -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "" - -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "" - -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "" - -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "" - -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "" - -#: py/runtime.c -msgid "argument has wrong type" -msgstr "" - -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "" - -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "" - -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" -msgstr "" - -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "" - -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "" - -#: py/objstr.c -msgid "bad format string" -msgstr "" - -#: py/binary.c -msgid "bad typecode" -msgstr "" - -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "" - -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "" - -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" -msgstr "" - -#: py/emitinlinethumb.c -msgid "branch not in range" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" - -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "" - -#: shared-module/struct/__init__.c -msgid "buffer size must match format" -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "" - -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "" - -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "" - -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" - -#: py/vm.c -msgid "byte code not implemented" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "" - -#: py/objstr.c -msgid "bytes value out of range" -msgstr "" - -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "" - -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "" - -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "" - -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "" - -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "" - -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "" - -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "" - -#: py/compile.c -msgid "can't assign to expression" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "" - -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "" - -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "" - -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "" - -#: py/objint.c -msgid "can't convert inf to int" -msgstr "" - -#: py/obj.c -msgid "can't convert to complex" -msgstr "" - -#: py/obj.c -msgid "can't convert to float" -msgstr "" - -#: py/obj.c -msgid "can't convert to int" -msgstr "" - -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "" - -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "" - -#: py/compile.c -msgid "can't delete expression" -msgstr "" - -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "" - -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "" - -#: py/compile.c -msgid "can't have multiple **x" -msgstr "" - -#: py/compile.c -msgid "can't have multiple *x" -msgstr "" - -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "" - -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "" - -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" - -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "" - -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "" - -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" - -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "" - -#: py/objtype.c -msgid "cannot create instance" -msgstr "" - -#: py/runtime.c -msgid "cannot import name %q" -msgstr "" - -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "" - -#: py/emitnative.c -msgid "casting" -msgstr "" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "" - -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "" - -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "" - -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "" - -#: extmod/moduzlib.c -msgid "compression header" -msgstr "" - -#: py/parse.c -msgid "constant must be an integer" -msgstr "" - -#: py/emitnative.c -msgid "conversion to object" -msgstr "" - -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "" - -#: py/compile.c -msgid "default 'except' must be last" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "" - -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "" - -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "" - -#: py/objdeque.c -msgid "empty" -msgstr "" - -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "" - -#: py/objstr.c -msgid "empty separator" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "" - -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "" - -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" -msgstr "" - -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "" - -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "" - -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "" - -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "" - -#: py/obj.c -msgid "expected tuple/list" -msgstr "" - -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "" - -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "" - -#: py/compile.c -msgid "expecting just a value for set" -msgstr "" - -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "" - -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "" - -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "" - -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" - -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "" - -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "" - -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "" - -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "" - -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "" - -#: py/objint.c -msgid "float too big" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "" - -#: py/objstr.c -msgid "format requires a dict" -msgstr "" - -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "" - -#: py/objdeque.c -msgid "full" -msgstr "" - -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "" - -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "" - -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "" - -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "" - -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "" - -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "" - -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "" - -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "" - -#: py/objgenerator.c -msgid "generator already executing" -msgstr "" - -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "" - -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "" - -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "" - -#: py/compile.c -msgid "identifier redefined as global" -msgstr "" - -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "" - -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "" - -#: py/objstr.c -msgid "incomplete format" -msgstr "" - -#: py/objstr.c -msgid "incomplete format key" -msgstr "" - -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "" - -#: py/obj.c -msgid "indices must be integers" -msgstr "" - -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "" - -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "" - -#: py/objstr.c -msgid "integer required" -msgstr "" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" - -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "" - -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "" - -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "" - -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "" - -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "" - -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "" - -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "" - -#: py/objstr.c -msgid "invalid format specifier" -msgstr "" - -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "" - -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "" - -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "" - -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "" - -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "" - -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "" - -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "" - -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" - -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" - -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" - -#: py/bc.c -msgid "keywords must be strings" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "" - -#: py/compile.c -msgid "label redefined" -msgstr "" - -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "" - -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "" - -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "" - -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "" - -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "" - -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "" - -#: py/objint.c -msgid "long int not supported in this build" -msgstr "" - -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "" - -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "" - -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "" - -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" - -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "" - -#: py/builtinimport.c -msgid "module not found" -msgstr "" - -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "" - -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" - -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "" - -#: py/emitnative.c -msgid "must raise an object" -msgstr "" - -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "" - -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "" - -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "" - -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" -msgstr "" - -#: py/runtime.c -msgid "name not defined" -msgstr "" - -#: py/compile.c -msgid "name reused for argument" -msgstr "" - -#: py/emitnative.c -msgid "native yield" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "" - -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "" - -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" - -#: py/vm.c -msgid "no active exception to reraise" -msgstr "" - -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" - -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "" - -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "" - -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "" - -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "" - -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "" - -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "" - -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "" - -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" - -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "" - -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" - -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "" - -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "" - -#: py/obj.c -msgid "object does not support item assignment" -msgstr "" - -#: py/obj.c -msgid "object does not support item deletion" -msgstr "" - -#: py/obj.c -msgid "object has no len" -msgstr "" - -#: py/obj.c -msgid "object is not subscriptable" -msgstr "" - -#: py/runtime.c -msgid "object not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" - -#: py/sequence.c -msgid "object not in sequence" -msgstr "" - -#: py/runtime.c -msgid "object not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "" - -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "" - -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "" - -#: py/objstrunicode.c py/objstr.c -msgid "offset out of bounds" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" - -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "" - -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" - -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "" - -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" - -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "" - -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" +"given" msgstr "" -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" msgstr "" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: shared-bindings/rtc/RTC.c +msgid "RTC calibration is not supported on this board" msgstr "" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +msgid "RTC is not supported on this board" msgstr "" -#: py/objset.c -msgid "pop from an empty set" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" msgstr "" -#: py/objlist.c -msgid "pop from empty list" +#: shared-bindings/pulseio/PulseIn.c +msgid "Read-only" msgstr "" -#: py/objdict.c -msgid "popitem(): dictionary is empty" +#: shared-module/displayio/Bitmap.c +msgid "Read-only object" msgstr "" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" +#: shared-bindings/_pew/PewPew.c +msgid "Row entry must be digitalio.DigitalInOut" msgstr "" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" +#: main.c +msgid "Running in safe mode! Auto-reload is off.\n" msgstr "" -#: extmod/modutimeq.c -msgid "queue overflow" +#: main.c +msgid "Running in safe mode! Not running saved code.\n" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" +#: shared-bindings/nvm/ByteArray.c +msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/_pixelbuf/__init__.c -msgid "readonly attribute" +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +msgid "Slices not supported" msgstr "" -#: py/builtinimport.c -msgid "relative import" +#: shared-bindings/supervisor/__init__.c +msgid "Stack size must be at least 256" msgstr "" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" +#: shared-bindings/multiterminal/__init__.c +msgid "Stream missing readinto() or write() method." msgstr "" -#: py/compile.c -msgid "return annotation must be an identifier" +#: supervisor/shared/safe_mode.c +msgid "" +"The CircuitPython heap was corrupted because the stack was too small.\n" +"Please increase stack size limits and press reset (after ejecting " +"CIRCUITPY).\n" +"If you didn't change the stack, then file an issue here with the contents of " +"your CIRCUITPY drive:\n" msgstr "" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" +#: supervisor/shared/safe_mode.c +msgid "" +"The microcontroller's power dipped. Please make sure your power supply " +"provides\n" +"enough power for the whole circuit and press reset (after ejecting " +"CIRCUITPY).\n" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: supervisor/shared/safe_mode.c +msgid "" +"The reset button was pressed while booting CircuitPython. Press again to " +"exit safe mode.\n" msgstr "" -#: py/objstr.c -msgid "rsplit(None,n)" +#: shared-module/audioio/Mixer.c +msgid "The sample's bits_per_sample does not match the mixer's" msgstr "" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" +#: shared-module/audioio/Mixer.c +msgid "The sample's channel count does not match the mixer's" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" +#: shared-module/audioio/Mixer.c +msgid "The sample's sample rate does not match the mixer's" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "scan failed" +#: shared-module/audioio/Mixer.c +msgid "The sample's signedness does not match the mixer's" msgstr "" -#: py/modmicropython.c -msgid "schedule stack full" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile height must exactly divide bitmap height" msgstr "" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile indices must be 0 - 255" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" +#: shared-bindings/displayio/TileGrid.c +msgid "Tile width must exactly divide bitmap width" msgstr "" -#: py/objstr.c -msgid "sign not allowed in string format specifier" +#: supervisor/shared/safe_mode.c +msgid "To exit, please reset the board without " msgstr "" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +msgid "Too many display busses" msgstr "" -#: py/objstr.c -msgid "single '}' encountered in format string" +#: shared-bindings/displayio/Display.c +msgid "Too many displays" msgstr "" #: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "" - -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" +msgid "Tuple or struct_time argument required" msgstr "" -#: py/sequence.c py/objint.c -msgid "small int overflow" +#: shared-module/usb_hid/Device.c +msgid "USB Busy" msgstr "" -#: main.c -msgid "soft reboot\n" +#: shared-module/usb_hid/Device.c +msgid "USB Error" msgstr "" -#: py/objstr.c -msgid "start/end indices" +#: shared-bindings/bleio/UUID.c +msgid "UUID integer value not in range 0 to 0xffff" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" +#: shared-bindings/bleio/UUID.c +msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" msgstr "" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" +#: shared-bindings/bleio/UUID.c +msgid "UUID value is not str, int or byte buffer" msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" +#: shared-module/displayio/OnDiskBitmap.c +msgid "Unable to read color palette data" msgstr "" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" +#: shared-bindings/nvm/ByteArray.c +msgid "Unable to write to nvm." msgstr "" -#: py/stream.c -msgid "stream operation not supported" +#: shared-module/displayio/Display.c +msgid "Unsupported display bus type" msgstr "" -#: py/objstrunicode.c -msgid "string index out of range" +#: shared-module/audioio/WaveFile.c +msgid "Unsupported format" msgstr "" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Unsupported pull value." msgstr "" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" +#: shared-module/audioio/Mixer.c +msgid "Voice index too high" msgstr "" -#: extmod/moductypes.c -msgid "struct: cannot index" +#: main.c +msgid "WARNING: Your code filename has two extensions\n" msgstr "" -#: extmod/moductypes.c -msgid "struct: index out of range" +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" msgstr "" -#: extmod/moductypes.c -msgid "struct: no fields" +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " msgstr "" -#: py/objstr.c -msgid "substring not found" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" msgstr "" -#: py/compile.c -msgid "super() can't find self" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" msgstr "" -#: extmod/modujson.c -msgid "syntax error in JSON" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" msgstr "" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" msgstr "" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" +#: shared-module/struct/__init__.c +msgid "buffer size must match format" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "timeout must be >= 0.0" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" msgstr "" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" msgstr "" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" msgstr "" -#: py/objstr.c -msgid "tuple index out of range" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" msgstr "" -#: py/obj.c -msgid "tuple/list has wrong length" +#: shared-bindings/math/__init__.c +msgid "division by zero" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" +#: shared-bindings/random/__init__.c +msgid "empty sequence" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" msgstr "" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" msgstr "" -#: py/objtype.c -msgid "type is not an acceptable base type" +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" msgstr "" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" msgstr "" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" msgstr "" -#: py/objint_longlong.c -msgid "ulonglong too large" +#: shared-bindings/random/__init__.c +msgid "invalid step" msgstr "" -#: py/emitnative.c -msgid "unary op %q not implemented" +#: shared-bindings/math/__init__.c +msgid "math domain error" msgstr "" -#: py/parse.c -msgid "unexpected indent" +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" msgstr "" -#: py/bc.c -msgid "unexpected keyword argument" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: py/lexer.c -msgid "unicode name escapes" +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: py/parse.c -msgid "unindent does not match any outer indentation level" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" msgstr "" -#: py/compile.c -msgid "unknown type" +#: main.c +msgid "soft reboot\n" msgstr "" -#: py/emitnative.c -msgid "unknown type '%q'" +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" msgstr "" -#: py/objstr.c -msgid "unmatched '{' in format" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" msgstr "" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" msgstr "" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" msgstr "" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" msgstr "" #: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" +msgid "tile index out of bounds" msgstr "" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" msgstr "" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" msgstr "" -#: py/runtime.c -msgid "unsupported type for operator" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" msgstr "" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "timeout must be >= 0.0" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" msgstr "" -#: py/objstr.c -msgid "wrong number of arguments" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" msgstr "" -#: py/runtime.c -msgid "wrong number of values to unpack" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" msgstr "" #: shared-module/displayio/Shape.c @@ -2819,7 +758,3 @@ msgstr "" #: shared-module/displayio/Shape.c msgid "y value out of bounds" msgstr "" - -#: py/objrange.c -msgid "zero step" -msgstr "" diff --git a/locale/es.po b/locale/es.po index 6b5351fcb..8f47e65b7 100644 --- a/locale/es.po +++ b/locale/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-02 22:09+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-08-24 22:56-0500\n" "Last-Translator: \n" "Language-Team: \n" @@ -24,37 +24,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr " Archivo \"%q\"" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr " Archivo \"%q\", línea %d" - #: main.c msgid " output:\n" msgstr " salida:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "%%c requiere int o char" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q está siendo utilizado" -#: py/obj.c -msgid "%q index out of range" -msgstr "%w indice fuera de rango" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "%q indices deben ser enteros, no %s" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "los buffers deben de tener la misma longitud" @@ -64,167 +43,10 @@ msgstr "los buffers deben de tener la misma longitud" msgid "%q should be an int" msgstr "y deberia ser un int" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "%q() toma %d argumentos posicionales pero %d fueron dados" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "argumento '%q' requerido" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "'%s' espera una etiqueta" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "'%s' espera un registro" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "ord espera un carácter" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "'%s' espera un registro de FPU" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "'%s' espera una dirección de forma [a, b]" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "'%s' espera un entero" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "'%s' espera a lo sumo r%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "'%s' espera {r0, r1, ...}" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "'%s' entero %d no esta dentro del rango %d..%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "'%s' entero 0x%x no cabe en la máscara 0x%x" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "el objeto '%s' no soporta la asignación de elementos" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "objeto '%s' no soporta la eliminación de elementos" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "objeto '%s' no tiene atributo '%q'" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "objeto '%s' no es un iterator" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "objeto '%s' no puede ser llamado" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "objeto '%s' no es iterable" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "el objeto '%s' no es suscriptable" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "'=' alineación no permitida en el especificador string format" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' y 'O' no son compatibles con los tipos de formato" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "'align' requiere 1 argumento" - -#: py/compile.c -msgid "'await' outside function" -msgstr "'await' fuera de la función" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "'break' fuera de un bucle" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "'continue' fuera de un bucle" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "'data' requiere como minomo 2 argumentos" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "'data' requiere argumentos de tipo entero" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "'label' requiere 1 argumento" - -#: py/compile.c -msgid "'return' outside function" -msgstr "'return' fuera de una función" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "" -"No es posible reiniciar en modo bootloader porque no hay bootloader presente." - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "*x debe ser objetivo de la tarea" - -#: py/obj.c -msgid ", in %q\n" -msgstr ", en %q\n" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "0.0 a una potencia compleja" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "pow() con 3 argumentos no soportado" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "El canal EXTINT ya está siendo utilizado" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP requerido" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -235,57 +57,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "palette debe ser 32 bytes de largo" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "Todos los timers están siendo usados" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "Todos los timers están siendo usados" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "All UART peripherals are in use" -msgstr "Todos los timers están siendo usados" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Todos los canales de eventos en uso" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "" -"Todos los canales de eventos de sincronización(sync event channels) están " -"siendo utilizados" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Todos los timers para este pin están siendo utilizados" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Todos los timers en uso" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "Funcionalidad AnalogOut no soportada" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "AnalogOut es solo de 16 bits. Value debe ser menos a 65536." - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "El pin proporcionado no soporta AnalogOut" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Otro envío ya está activo" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -310,18 +89,6 @@ msgstr "" "Auto-reload habilitado. Simplemente guarda los archivos via USB para " "ejecutarlos o entra al REPL para desabilitarlos.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "Bit clock y word select deben compartir una unidad de reloj" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "La profundidad de bits debe ser múltiplo de 8." - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Ambos pines deben soportar interrupciones por hardware" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "Brightness debe estar entro 0 y 255" @@ -339,12 +106,6 @@ msgstr "Tamaño de buffer incorrecto. Debe ser de %d bytes." msgid "Buffer must be at least length 1" msgstr "Buffer debe ser de longitud 1 como minimo" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy, c-format -msgid "Bus pin %d is already in use" -msgstr "DAC ya está siendo utilizado" - #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -354,15 +115,6 @@ msgstr "buffer debe de ser un objeto bytes-like" msgid "Bytes must be between 0 and 255." msgstr "Bytes debe estar entre 0 y 255." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "No se pueden agregar servicio en modo Central" @@ -379,73 +131,26 @@ msgstr "No se puede cambiar el nombre en modo Central" msgid "Can't connect in Peripheral mode" msgstr "No se puede conectar en modo Peripheral" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "No se puede conectar a AP" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "No se puede eliminar valores" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "No se puede desconectar de AP" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "No puede ser pull mientras este en modo de salida" - -#: ports/nrf/common-hal/microcontroller/Processor.c -#, fuzzy -msgid "Cannot get temperature" -msgstr "No se puede obtener la temperatura. status: 0x%02x" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "No se puede tener ambos canales en el mismo pin" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "No se puede leer sin pin MISO." -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "No se puede grabar en un archivo" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "No se puede volver a montar '/' cuando el USB esta activo." -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "No se puede reiniciar a bootloader porque no hay bootloader presente." - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "No se puede establecer STA config" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "No se puede asignar un valor cuando la dirección es input." -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "No se puede transferir sin pines MOSI y MISO." -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "No se puede obtener inequívocamente sizeof escalar" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "No se puede actualizar i/f status" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "No se puede escribir sin pin MOSI." @@ -454,10 +159,6 @@ msgstr "No se puede escribir sin pin MOSI." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -470,28 +171,15 @@ msgstr "Clock pin init fallido" msgid "Clock stretch too long" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Clock unit está siendo utilizado" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Bytes debe estar entre 0 y 255." -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "No se puede inicializar la UART" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "No se pudo asignar el primer buffer" @@ -504,70 +192,21 @@ msgstr "No se pudo asignar el segundo buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "DAC ya está siendo utilizado" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy -msgid "Data 0 pin must be byte aligned" -msgstr "graphic debe ser 2048 bytes de largo" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy -msgid "Data too large for advertisement packet" -msgstr "Los datos no caben en el paquete de anuncio." - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Data too large for the advertisement packet" -msgstr "Los datos no caben en el paquete de anuncio." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "Capacidad de destino es mas pequeña que destination_length." - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "No se sabe cómo pasar objeto a función nativa" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Modo Drive no se usa cuando la dirección es input." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8226 no soporta modo seguro." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 no soporta pull down." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "El canal EXTINT ya está siendo utilizado" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Error en ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "Error en regex" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Se espera un %q" @@ -576,8 +215,8 @@ msgstr "Se espera un %q" msgid "Expected a Characteristic" msgstr "No se puede agregar la Característica." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Se espera un %q" @@ -587,260 +226,27 @@ msgstr "Se espera un %q" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to acquire mutex" -msgstr "No se puede adquirir el mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "No se puede adquirir el mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Service.c -#, fuzzy, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "No se puede añadir caracteristica, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to add service" -msgstr "No se puede detener el anuncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "No se puede detener el anuncio. status: 0x%02x" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Ha fallado la asignación del buffer RX" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Falló la asignación del buffer RX de %d bytes" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to change softdevice state" -msgstr "No se puede cambiar el estado del softdevice, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to connect:" -msgstr "No se puede conectar. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to continue scanning" -msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to create mutex" -msgstr "No se puede leer el valor del atributo. status 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to discover services" -msgstr "No se puede descubrir servicios, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get local address" -msgstr "No se puede obtener la dirección local, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get softdevice state" -msgstr "No se puede obtener el estado del softdevice, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "No se puede leer el valor del atributo. status 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "No se puede escribir el valor del atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "No se puede agregar el Vendor Specific 128-bit UUID." - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to release mutex" -msgstr "No se puede liberar el mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "No se puede liberar el mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start advertising" -msgstr "No se puede inicar el anuncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "No se puede inicar el anuncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start scanning" -msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to stop advertising" -msgstr "No se puede detener el anuncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "No se puede detener el anuncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "No se puede escribir el valor del atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "No se puede escribir el valor del atributo. status: 0x%02x" - -#: py/moduerrno.c -msgid "File exists" -msgstr "El archivo ya existe" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "La función requiere lock" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 no soporta pull up." - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Group lleno" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "Operación I/O en archivo cerrado" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "operación I2C no soportada" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" -"Archivo .mpy incompatible. Actualice todos los archivos .mpy. Consulte " -"http://adafru.it/mpy-update para más información" - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "error Input/output" - #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Archivo BMP inválido" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frecuencia PWM inválida" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "Argumento inválido" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Pin bit clock inválido" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "Tamaño de buffer inválido" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "Cuenta de canales inválida" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Pin clock inválido" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "Pin de datos inválido" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Dirección inválida." @@ -861,27 +267,10 @@ msgstr "Numero inválido de bits" msgid "Invalid phase" msgstr "Fase inválida" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin inválido" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Pin inválido para canal izquierdo" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Pin inválido para canal derecho" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "pines inválidos" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Polaridad inválida" @@ -890,30 +279,14 @@ msgstr "Polaridad inválida" msgid "Invalid run mode." msgstr "Modo de ejecución inválido." -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "Cuenta de voces inválida" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Archivo wave inválido" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "LHS del agumento por palabra clave deberia ser un identificador" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: py/objslice.c -msgid "Length must be an int" -msgstr "Length debe ser un int" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "Longitud no deberia ser negativa" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -933,11 +306,6 @@ msgstr "MISO pin init fallido." msgid "MOSI pin init failed." msgstr "MOSI pin init fallido." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "La frecuencia máxima del PWM es %dhz." - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -951,49 +319,10 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "La frecuencia mínima del PWM es 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"PWM de múltiples frecuencias no soportado. El PWM ya se estableció a %dhz" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "El chip no tiene DAC" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "No se encontró el canal DMA" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Sin soporte PulseIn para %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Sin pin RX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Sin pin TX" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Sin bus I2C por defecto" @@ -1006,44 +335,15 @@ msgstr "Sin bus SPI por defecto" msgid "No default UART bus" msgstr "Sin bus UART por defecto" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Sin GCLKs libres" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "No hay hardware random disponible" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Sin soporte de hardware para analog out" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Sin soporte de hardware en pin" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "No existe el archivo/directorio" - #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "No se puede conectar a AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -1051,14 +351,6 @@ msgstr "" "El objeto se ha desinicializado y ya no se puede utilizar. Crea un nuevo " "objeto" -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "Paridad impar no soportada" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "Solo mono de 8 o 16 bit con " - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1076,19 +368,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Only slices with step=1 (aka None) are supported" -msgstr "solo se admiten segmentos con step=1 (alias None)" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Solo tx soportada en UART1 (GPIO2)" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1099,49 +378,14 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "El pin %d no soporta PWM" +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." +msgstr "" +"Presiona cualquier tecla para entrar al REPL. Usa CTRL-D para recargar." -#: py/moduerrno.c -msgid "Permission denied" -msgstr "Permiso denegado" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pin %q no tiene capacidades de ADC" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "Pin no tiene capacidad ADC" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) no soporta para pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pines no válidos para SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -#, fuzzy -msgid "Plus any modules on the filesystem\n" -msgstr "Incapaz de montar de nuevo el sistema de archivos" - -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." -msgstr "" -"Presiona cualquier tecla para entrar al REPL. Usa CTRL-D para recargar." - -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." -msgstr "Pull no se usa cuando la dirección es output." +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." +msgstr "Pull no se usa cuando la dirección es output." #: shared-bindings/rtc/RTC.c msgid "RTC calibration is not supported on this board" @@ -1151,31 +395,19 @@ msgstr "Calibración de RTC no es soportada en esta placa" msgid "RTC is not supported on this board" msgstr "RTC no soportado en esta placa" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "El cambio de RTC no soportado en esta placa" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Range out of bounds" -msgstr "address fuera de límites" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Solo-lectura" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "Sistema de archivos de solo-Lectura" - #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Solo-lectura" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Canal derecho no soportado" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1188,50 +420,15 @@ msgstr "Ejecutando en modo seguro! La auto-recarga esta deshabilitada.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Ejecutando en modo seguro! No se esta ejecutando el código guardado.\n" -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "SDA o SCL necesitan una pull up" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA debe estar activo" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA requerido" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "Sample rate debe ser positivo" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "Frecuencia de muestreo demasiado alta. Debe ser menor a %d" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Serializer está siendo utilizado" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "Dividiendo con sub-capturas" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -1302,11 +499,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Para salir, por favor reinicia la tarjeta sin " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "Demasiados canales en sample." - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1314,23 +507,10 @@ msgstr "" msgid "Too many displays" msgstr "" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "Traceback (ultima llamada reciente):\n" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Argumento tuple o struct_time requerido" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) no existe" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) no puede leer" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB ocupado" @@ -1351,49 +531,14 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "No se pudieron asignar buffers para la conversión con signo" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "No se pudo encontrar un GCLK libre" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "Incapaz de inicializar el parser" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Incapaz de montar de nuevo el sistema de archivos" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Imposible escribir en nvm" -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipo desconocido" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "Baudrate no soportado" - #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -1403,22 +548,10 @@ msgstr "tipo de bitmap no soportado" msgid "Unsupported format" msgstr "Formato no soportado" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "Operación no soportada" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "valor pull no soportado." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "Usa esptool para borrar la flash y vuelve a cargar Python en su lugar" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "funciones Viper actualmente no soportan más de 4 argumentos." - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Index de voz demasiado alto" @@ -1427,22 +560,6 @@ msgstr "Index de voz demasiado alto" msgid "WARNING: Your code filename has two extensions\n" msgstr "ADVERTENCIA: El nombre de archivo de tu código tiene dos extensiones\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" -"Bienvenido a Adafruit CircuitPython %s!\n" -"\n" -"Visita learn.adafruit.com/category/circuitpython para obtener guías de " -"proyectos.\n" -"\n" -"Para listar los módulos incorporados por favor haga `help(\"modules\")`.\n" - #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -1455,1478 +572,1673 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Solicitaste iniciar en modo seguro por " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "address fuera de límites" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "addresses esta vacío" + +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "array/bytes requeridos en el lado derecho" + +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits deben ser 7, 8 o 9" + +#: shared-module/struct/__init__.c +#, fuzzy +msgid "buffer size must match format" +msgstr "los buffers deben de tener la misma longitud" + +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" msgstr "" -#: py/objtype.c -msgid "__init__() should return None" -msgstr "__init__() deberia devolver None" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "buffer demasiado pequeño" -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "__init__() deberia devolver None, no '%s'" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "no se puede convertir address a int" -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "__new__ arg debe ser un user-type" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "se requiere un objeto bytes-like" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "" -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "se llamó abort()" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "color buffer deber ser un buffer o un int" -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "la dirección %08x no esta alineada a %d bytes" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "color buffer deberia ser un bytearray o array de tipo 'b' o 'B'" + +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "color debe estar entre 0x000000 y 0xffffff" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "color deberia ser un int" + +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "división por cero" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "secuencia vacía" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "end_x should be an int" +msgstr "y deberia ser un int" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "se espera un DigitalInOut" + +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" +msgstr "el archivo deberia ser una archivo abierto en modo byte" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "sistema de archivos debe proporcionar método de montaje" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "la función toma exactamente 9 argumentos." + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "" + +#: shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "error de dominio matemático" + +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "palabras clave deben ser strings" + +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "NIC no disponible" + +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "solo se admiten segmentos con step=1 (alias None)" + +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "palette_index deberia ser un int" + +#: shared-bindings/displayio/Bitmap.c +#, fuzzy +msgid "pixel coordinates out of bounds" +msgstr "address fuera de límites" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter" + +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "la fila debe estar empacada y la palabra alineada" + +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "la longitud de sleep no puede ser negativa" + +#: main.c +msgid "soft reboot\n" +msgstr "reinicio suave\n" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y deberia ser un int" + +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "" + +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop debe ser 1 o 2" + +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "" + +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() acepta exactamente 1 argumento" + +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" + +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "bits debe ser 8" + +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "" + +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "muchos argumentos" + +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "demasiados argumentos provistos con el formato dado" + +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "tipo de bitmap no soportado" + +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "address fuera de límites" + +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y deberia ser un int" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "address fuera de límites" + +#~ msgid " File \"%q\"" +#~ msgstr " Archivo \"%q\"" + +#~ msgid " File \"%q\", line %d" +#~ msgstr " Archivo \"%q\", línea %d" + +#~ msgid "%%c requires int or char" +#~ msgstr "%%c requiere int o char" + +#~ msgid "%q index out of range" +#~ msgstr "%w indice fuera de rango" + +#~ msgid "%q indices must be integers, not %s" +#~ msgstr "%q indices deben ser enteros, no %s" + +#~ msgid "%q() takes %d positional arguments but %d were given" +#~ msgstr "%q() toma %d argumentos posicionales pero %d fueron dados" + +#~ msgid "'%q' argument required" +#~ msgstr "argumento '%q' requerido" + +#~ msgid "'%s' expects a label" +#~ msgstr "'%s' espera una etiqueta" + +#~ msgid "'%s' expects a register" +#~ msgstr "'%s' espera un registro" + +#~ msgid "'%s' expects a special register" +#~ msgstr "ord espera un carácter" + +#~ msgid "'%s' expects an FPU register" +#~ msgstr "'%s' espera un registro de FPU" + +#~ msgid "'%s' expects an address of the form [a, b]" +#~ msgstr "'%s' espera una dirección de forma [a, b]" + +#~ msgid "'%s' expects an integer" +#~ msgstr "'%s' espera un entero" + +#~ msgid "'%s' expects at most r%d" +#~ msgstr "'%s' espera a lo sumo r%d" + +#~ msgid "'%s' expects {r0, r1, ...}" +#~ msgstr "'%s' espera {r0, r1, ...}" + +#~ msgid "'%s' integer %d is not within range %d..%d" +#~ msgstr "'%s' entero %d no esta dentro del rango %d..%d" + +#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" +#~ msgstr "'%s' entero 0x%x no cabe en la máscara 0x%x" + +#~ msgid "'%s' object does not support item assignment" +#~ msgstr "el objeto '%s' no soporta la asignación de elementos" + +#~ msgid "'%s' object does not support item deletion" +#~ msgstr "objeto '%s' no soporta la eliminación de elementos" + +#~ msgid "'%s' object has no attribute '%q'" +#~ msgstr "objeto '%s' no tiene atributo '%q'" + +#~ msgid "'%s' object is not an iterator" +#~ msgstr "objeto '%s' no es un iterator" + +#~ msgid "'%s' object is not callable" +#~ msgstr "objeto '%s' no puede ser llamado" + +#~ msgid "'%s' object is not iterable" +#~ msgstr "objeto '%s' no es iterable" + +#~ msgid "'%s' object is not subscriptable" +#~ msgstr "el objeto '%s' no es suscriptable" + +#~ msgid "'=' alignment not allowed in string format specifier" +#~ msgstr "'=' alineación no permitida en el especificador string format" + +#~ msgid "'align' requires 1 argument" +#~ msgstr "'align' requiere 1 argumento" + +#~ msgid "'await' outside function" +#~ msgstr "'await' fuera de la función" + +#~ msgid "'break' outside loop" +#~ msgstr "'break' fuera de un bucle" + +#~ msgid "'continue' outside loop" +#~ msgstr "'continue' fuera de un bucle" + +#~ msgid "'data' requires at least 2 arguments" +#~ msgstr "'data' requiere como minomo 2 argumentos" + +#~ msgid "'data' requires integer arguments" +#~ msgstr "'data' requiere argumentos de tipo entero" + +#~ msgid "'label' requires 1 argument" +#~ msgstr "'label' requiere 1 argumento" + +#~ msgid "'return' outside function" +#~ msgstr "'return' fuera de una función" + +#~ msgid "'yield' outside function" +#~ msgstr "" +#~ "No es posible reiniciar en modo bootloader porque no hay bootloader " +#~ "presente." + +#~ msgid "*x must be assignment target" +#~ msgstr "*x debe ser objetivo de la tarea" + +#~ msgid ", in %q\n" +#~ msgstr ", en %q\n" + +#~ msgid "0.0 to a complex power" +#~ msgstr "0.0 a una potencia compleja" + +#~ msgid "3-arg pow() not supported" +#~ msgstr "pow() con 3 argumentos no soportado" + +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "El canal EXTINT ya está siendo utilizado" + +#~ msgid "AP required" +#~ msgstr "AP requerido" + +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Todos los timers están siendo usados" + +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Todos los timers están siendo usados" + +#, fuzzy +#~ msgid "All UART peripherals are in use" +#~ msgstr "Todos los timers están siendo usados" + +#~ msgid "All event channels in use" +#~ msgstr "Todos los canales de eventos en uso" + +#~ msgid "All sync event channels in use" +#~ msgstr "" +#~ "Todos los canales de eventos de sincronización(sync event channels) están " +#~ "siendo utilizados" + +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "Funcionalidad AnalogOut no soportada" + +#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." +#~ msgstr "AnalogOut es solo de 16 bits. Value debe ser menos a 65536." + +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "El pin proporcionado no soporta AnalogOut" + +#~ msgid "Another send is already active" +#~ msgstr "Otro envío ya está activo" + +#~ msgid "Bit clock and word select must share a clock unit" +#~ msgstr "Bit clock y word select deben compartir una unidad de reloj" + +#~ msgid "Bit depth must be multiple of 8." +#~ msgstr "La profundidad de bits debe ser múltiplo de 8." + +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Ambos pines deben soportar interrupciones por hardware" + +#, fuzzy +#~ msgid "Bus pin %d is already in use" +#~ msgstr "DAC ya está siendo utilizado" + +#~ msgid "Cannot connect to AP" +#~ msgstr "No se puede conectar a AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "No se puede desconectar de AP" + +#~ msgid "Cannot get pull while in output mode" +#~ msgstr "No puede ser pull mientras este en modo de salida" + +#, fuzzy +#~ msgid "Cannot get temperature" +#~ msgstr "No se puede obtener la temperatura. status: 0x%02x" + +#~ msgid "Cannot output both channels on the same pin" +#~ msgstr "No se puede tener ambos canales en el mismo pin" + +#~ msgid "Cannot record to a file" +#~ msgstr "No se puede grabar en un archivo" + +#~ msgid "Cannot reset into bootloader because no bootloader is present." +#~ msgstr "" +#~ "No se puede reiniciar a bootloader porque no hay bootloader presente." + +#~ msgid "Cannot set STA config" +#~ msgstr "No se puede establecer STA config" + +#~ msgid "Cannot unambiguously get sizeof scalar" +#~ msgstr "No se puede obtener inequívocamente sizeof escalar" + +#~ msgid "Cannot update i/f status" +#~ msgstr "No se puede actualizar i/f status" + +#~ msgid "Clock unit in use" +#~ msgstr "Clock unit está siendo utilizado" + +#~ msgid "Could not initialize UART" +#~ msgstr "No se puede inicializar la UART" + +#~ msgid "DAC already in use" +#~ msgstr "DAC ya está siendo utilizado" + +#, fuzzy +#~ msgid "Data 0 pin must be byte aligned" +#~ msgstr "graphic debe ser 2048 bytes de largo" + +#, fuzzy +#~ msgid "Data too large for advertisement packet" +#~ msgstr "Los datos no caben en el paquete de anuncio." + +#, fuzzy +#~ msgid "Data too large for the advertisement packet" +#~ msgstr "Los datos no caben en el paquete de anuncio." + +#~ msgid "Destination capacity is smaller than destination_length." +#~ msgstr "Capacidad de destino es mas pequeña que destination_length." + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "No se sabe cómo pasar objeto a función nativa" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8226 no soporta modo seguro." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 no soporta pull down." + +#~ msgid "EXTINT channel already in use" +#~ msgstr "El canal EXTINT ya está siendo utilizado" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Error en ffi_prep_cif" + +#~ msgid "Error in regex" +#~ msgstr "Error en regex" + +#, fuzzy +#~ msgid "Failed to acquire mutex" +#~ msgstr "No se puede adquirir el mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "No se puede adquirir el mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "No se puede añadir caracteristica, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add service" +#~ msgstr "No se puede detener el anuncio. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "No se puede detener el anuncio. status: 0x%02x" + +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Ha fallado la asignación del buffer RX" + +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Falló la asignación del buffer RX de %d bytes" + +#, fuzzy +#~ msgid "Failed to change softdevice state" +#~ msgstr "No se puede cambiar el estado del softdevice, error: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to connect:" +#~ msgstr "No se puede conectar. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to continue scanning" +#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to create mutex" +#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" + +#, fuzzy +#~ msgid "Failed to discover services" +#~ msgstr "No se puede descubrir servicios, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to get local address" +#~ msgstr "No se puede obtener la dirección local, error: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to get softdevice state" +#~ msgstr "No se puede obtener el estado del softdevice, error: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "No se puede notificar el valor del anuncio. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" + +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" + +#, fuzzy +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "No se puede escribir el valor del atributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "No se puede agregar el Vendor Specific 128-bit UUID." + +#, fuzzy +#~ msgid "Failed to release mutex" +#~ msgstr "No se puede liberar el mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "No se puede liberar el mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to start advertising" +#~ msgstr "No se puede inicar el anuncio. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "No se puede inicar el anuncio. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start scanning" +#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to stop advertising" +#~ msgstr "No se puede detener el anuncio. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "No se puede detener el anuncio. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "No se puede escribir el valor del atributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "No se puede escribir el valor del atributo. status: 0x%02x" + +#~ msgid "File exists" +#~ msgstr "El archivo ya existe" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "address fuera de límites" +#~ msgid "Function requires lock." +#~ msgstr "La función requiere lock" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "addresses esta vacío" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 no soporta pull up." -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "argumento es una secuencia vacía" +#~ msgid "I/O operation on closed file" +#~ msgstr "Operación I/O en archivo cerrado" -#: py/runtime.c -msgid "argument has wrong type" -msgstr "el argumento tiene un tipo erroneo" +#~ msgid "I2C operation not supported" +#~ msgstr "operación I2C no soportada" -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "argumento número/tipos no coinciden" +#~ msgid "" +#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." +#~ "it/mpy-update for more info." +#~ msgstr "" +#~ "Archivo .mpy incompatible. Actualice todos los archivos .mpy. Consulte " +#~ "http://adafru.it/mpy-update para más información" -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "argumento deberia ser un '%q' no un '%q'" +#~ msgid "Input/output error" +#~ msgstr "error Input/output" -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "array/bytes requeridos en el lado derecho" +#~ msgid "Invalid argument" +#~ msgstr "Argumento inválido" -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "atributos aún no soportados" +#~ msgid "Invalid bit clock pin" +#~ msgstr "Pin bit clock inválido" -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" -msgstr "" +#~ msgid "Invalid buffer size" +#~ msgstr "Tamaño de buffer inválido" -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "modo de compilación erroneo" +#~ msgid "Invalid channel count" +#~ msgstr "Cuenta de canales inválida" -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "especificador de conversion erroneo" +#~ msgid "Invalid clock pin" +#~ msgstr "Pin clock inválido" -#: py/objstr.c -msgid "bad format string" -msgstr "formato de string erroneo" +#~ msgid "Invalid data pin" +#~ msgstr "Pin de datos inválido" -#: py/binary.c -msgid "bad typecode" -msgstr "typecode erroneo" +#~ msgid "Invalid pin for left channel" +#~ msgstr "Pin inválido para canal izquierdo" -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "operacion binaria %q no implementada" +#~ msgid "Invalid pin for right channel" +#~ msgstr "Pin inválido para canal derecho" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits deben ser 7, 8 o 9" +#~ msgid "Invalid pins" +#~ msgstr "pines inválidos" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "bits debe ser 8" +#~ msgid "Invalid voice count" +#~ msgstr "Cuenta de voces inválida" -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" -msgstr "bits_per_sample debe ser 8 o 16" +#~ msgid "LHS of keyword arg must be an id" +#~ msgstr "LHS del agumento por palabra clave deberia ser un identificador" -#: py/emitinlinethumb.c -msgid "branch not in range" -msgstr "El argumento de chr() no esta en el rango(256)" +#~ msgid "Length must be an int" +#~ msgstr "Length debe ser un int" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" +#~ msgid "Length must be non-negative" +#~ msgstr "Longitud no deberia ser negativa" -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "buffer debe de ser un objeto bytes-like" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "La frecuencia máxima del PWM es %dhz." -#: shared-module/struct/__init__.c -#, fuzzy -msgid "buffer size must match format" -msgstr "los buffers deben de tener la misma longitud" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "La frecuencia mínima del PWM es 1hz" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "PWM de múltiples frecuencias no soportado. El PWM ya se estableció a %dhz" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer demasiado largo" +#~ msgid "No DAC on chip" +#~ msgstr "El chip no tiene DAC" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "buffer demasiado pequeño" +#~ msgid "No DMA channel found" +#~ msgstr "No se encontró el canal DMA" -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "los buffers deben de tener la misma longitud" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Sin soporte PulseIn para %q" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" +#~ msgid "No RX pin" +#~ msgstr "Sin pin RX" -#: py/vm.c -msgid "byte code not implemented" -msgstr "codigo byte no implementado" +#~ msgid "No TX pin" +#~ msgstr "Sin pin TX" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" -msgstr "" +#~ msgid "No free GCLKs" +#~ msgstr "Sin GCLKs libres" -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "bytes > 8 bits no soportados" +#~ msgid "No hardware support for analog out." +#~ msgstr "Sin soporte de hardware para analog out" -#: py/objstr.c -msgid "bytes value out of range" -msgstr "valor de bytes fuera de rango" +#~ msgid "No hardware support on pin" +#~ msgstr "Sin soporte de hardware en pin" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "calibration esta fuera de rango" +#~ msgid "No such file/directory" +#~ msgstr "No existe el archivo/directorio" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "calibration es de solo lectura" +#~ msgid "Odd parity is not supported" +#~ msgstr "Paridad impar no soportada" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "Valor de calibración fuera del rango +/-127" +#~ msgid "Only 8 or 16 bit mono with " +#~ msgstr "Solo mono de 8 o 16 bit con " -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "solo puede tener hasta 4 parámetros para ensamblar Thumb" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Solo formato Windows, BMP sin comprimir soportado %d" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "solo puede tener hasta 4 parámetros para ensamblador Xtensa" +#, fuzzy +#~ msgid "Only slices with step=1 (aka None) are supported" +#~ msgstr "solo se admiten segmentos con step=1 (alias None)" -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "solo puede almacenar bytecode" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Solo color verdadero (24 bpp o superior) BMP admitido %x" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "puede consultar solo un param" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Solo tx soportada en UART1 (GPIO2)" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "no se puede agregar un método a una clase ya subclasificada" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "El pin %d no soporta PWM" -#: py/compile.c -msgid "can't assign to expression" -msgstr "no se puede asignar a la expresión" +#~ msgid "Permission denied" +#~ msgstr "Permiso denegado" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "no se puede convertir %s a complejo" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q no tiene capacidades de ADC" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "no se puede convertir %s a float" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "Pin no tiene capacidad ADC" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "no se puede convertir %s a int" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) no soporta para pull" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "no se puede convertir el objeto '%q' a %q implícitamente" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pines no válidos para SPI" -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "no se puede convertir Nan a int" +#, fuzzy +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "Incapaz de montar de nuevo el sistema de archivos" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "no se puede convertir address a int" +#, fuzzy +#~ msgid "Range out of bounds" +#~ msgstr "address fuera de límites" -#: py/objint.c -msgid "can't convert inf to int" -msgstr "no se puede convertir inf en int" +#~ msgid "Read-only filesystem" +#~ msgstr "Sistema de archivos de solo-Lectura" -#: py/obj.c -msgid "can't convert to complex" -msgstr "no se puede convertir a complejo" +#~ msgid "Right channel unsupported" +#~ msgstr "Canal derecho no soportado" -#: py/obj.c -msgid "can't convert to float" -msgstr "no se puede convertir a float" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "SDA o SCL necesitan una pull up" -#: py/obj.c -msgid "can't convert to int" -msgstr "no se puede convertir a int" +#~ msgid "STA must be active" +#~ msgstr "STA debe estar activo" -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "no se puede convertir a str implícitamente" +#~ msgid "STA required" +#~ msgstr "STA requerido" -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "no se puede declarar nonlocal" +#~ msgid "Sample rate must be positive" +#~ msgstr "Sample rate debe ser positivo" -#: py/compile.c -msgid "can't delete expression" -msgstr "no se puede borrar la expresión" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "Frecuencia de muestreo demasiado alta. Debe ser menor a %d" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "no se puede hacer una operacion binaria entre '%q' y '%q'" +#~ msgid "Serializer in use" +#~ msgstr "Serializer está siendo utilizado" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "no se puede hacer la división truncada de un número complejo" +#~ msgid "Splitting with sub-captures" +#~ msgstr "Dividiendo con sub-capturas" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "no se puede obtener AP config" +#~ msgid "Too many channels in sample." +#~ msgstr "Demasiados canales en sample." -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "no se puede obtener STA config" +#~ msgid "Traceback (most recent call last):\n" +#~ msgstr "Traceback (ultima llamada reciente):\n" -#: py/compile.c -msgid "can't have multiple **x" -msgstr "no puede tener multiples *x" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) no existe" -#: py/compile.c -msgid "can't have multiple *x" -msgstr "no puede tener multiples *x" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) no puede leer" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "no se puede convertir implícitamente '%q' a 'bool'" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "No se pudieron asignar buffers para la conversión con signo" -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "no se puede cargar desde '%q'" +#~ msgid "Unable to find free GCLK" +#~ msgstr "No se pudo encontrar un GCLK libre" -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "no se puede cargar con el índice '%q'" +#~ msgid "Unable to init parser" +#~ msgstr "Incapaz de inicializar el parser" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "no se puede colgar al generador recién iniciado" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Incapaz de montar de nuevo el sistema de archivos" -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" -"no se puede enviar un valor que no sea None a un generador recién iniciado" +#~ msgid "Unknown type" +#~ msgstr "Tipo desconocido" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "no se puede establecer AP config" +#~ msgid "Unsupported baudrate" +#~ msgstr "Baudrate no soportado" -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "no se puede establecer STA config" +#~ msgid "Unsupported operation" +#~ msgstr "Operación no soportada" -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "no se puede asignar el atributo" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Usa esptool para borrar la flash y vuelve a cargar Python en su lugar" -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "no se puede almacenar '%q'" +#~ msgid "Viper functions don't currently support more than 4 arguments" +#~ msgstr "funciones Viper actualmente no soportan más de 4 argumentos." -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "no se puede almacenar para '%q'" +#~ msgid "" +#~ "Welcome to Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Please visit learn.adafruit.com/category/circuitpython for project " +#~ "guides.\n" +#~ "\n" +#~ "To list built-in modules please do `help(\"modules\")`.\n" +#~ msgstr "" +#~ "Bienvenido a Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Visita learn.adafruit.com/category/circuitpython para obtener guías de " +#~ "proyectos.\n" +#~ "\n" +#~ "Para listar los módulos incorporados por favor haga `help(\"modules\")`.\n" -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "no se puede almacenar con el indice '%q'" +#~ msgid "__init__() should return None" +#~ msgstr "__init__() deberia devolver None" -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" -"no se puede cambiar de la numeración automática de campos a la " -"especificación de campo manual" +#~ msgid "__init__() should return None, not '%s'" +#~ msgstr "__init__() deberia devolver None, no '%s'" -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" -"no se puede cambiar de especificación de campo manual a numeración " -"automática de campos" +#~ msgid "__new__ arg must be a user-type" +#~ msgstr "__new__ arg debe ser un user-type" -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "no se pueden crear '%q' instancias" +#~ msgid "a bytes-like object is required" +#~ msgstr "se requiere un objeto bytes-like" -#: py/objtype.c -msgid "cannot create instance" -msgstr "no se puede crear instancia" +#~ msgid "abort() called" +#~ msgstr "se llamó abort()" -#: py/runtime.c -msgid "cannot import name %q" -msgstr "no se puede importar name '%q'" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "la dirección %08x no esta alineada a %d bytes" -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "no se puedo realizar importación relativa" +#~ msgid "arg is an empty sequence" +#~ msgstr "argumento es una secuencia vacía" -#: py/emitnative.c -msgid "casting" -msgstr "" +#~ msgid "argument has wrong type" +#~ msgstr "el argumento tiene un tipo erroneo" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" +#~ msgid "argument num/types mismatch" +#~ msgstr "argumento número/tipos no coinciden" -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "chars buffer muy pequeño" +#~ msgid "argument should be a '%q' not a '%q'" +#~ msgstr "argumento deberia ser un '%q' no un '%q'" -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "El argumento de chr() esta fuera de rango(0x110000)" +#~ msgid "attributes not supported yet" +#~ msgstr "atributos aún no soportados" -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "El argumento de chr() no esta en el rango(256)" +#~ msgid "bad compile mode" +#~ msgstr "modo de compilación erroneo" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" +#~ msgid "bad conversion specifier" +#~ msgstr "especificador de conversion erroneo" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "color buffer deber ser un buffer o un int" +#~ msgid "bad format string" +#~ msgstr "formato de string erroneo" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "color buffer deberia ser un bytearray o array de tipo 'b' o 'B'" +#~ msgid "bad typecode" +#~ msgstr "typecode erroneo" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "color debe estar entre 0x000000 y 0xffffff" +#~ msgid "binary op %q not implemented" +#~ msgstr "operacion binaria %q no implementada" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "color deberia ser un int" +#~ msgid "bits must be 8" +#~ msgstr "bits debe ser 8" -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "división compleja por cero" +#~ msgid "bits_per_sample must be 8 or 16" +#~ msgstr "bits_per_sample debe ser 8 o 16" -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "valores complejos no soportados" +#~ msgid "branch not in range" +#~ msgstr "El argumento de chr() no esta en el rango(256)" -#: extmod/moduzlib.c -msgid "compression header" -msgstr "encabezado de compresión" +#~ msgid "buffer must be a bytes-like object" +#~ msgstr "buffer debe de ser un objeto bytes-like" -#: py/parse.c -msgid "constant must be an integer" -msgstr "constant debe ser un entero" +#~ msgid "buffer too long" +#~ msgstr "buffer demasiado largo" -#: py/emitnative.c -msgid "conversion to object" -msgstr "conversión a objeto" +#~ msgid "buffers must be the same length" +#~ msgstr "los buffers deben de tener la misma longitud" -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "números decimales no soportados" +#~ msgid "byte code not implemented" +#~ msgstr "codigo byte no implementado" -#: py/compile.c -msgid "default 'except' must be last" -msgstr "'except' por defecto deberia estar de último" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "bytes > 8 bits no soportados" -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" -"el buffer de destino debe ser un bytearray o array de tipo 'B' para " -"bit_depth = 8" +#~ msgid "bytes value out of range" +#~ msgstr "valor de bytes fuera de rango" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "el buffer de destino debe ser un array de tipo 'H' para bit_depth = 16" +#~ msgid "calibration is out of range" +#~ msgstr "calibration esta fuera de rango" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "destination_length debe ser un int >= 0" +#~ msgid "calibration is read only" +#~ msgstr "calibration es de solo lectura" -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "la secuencia de actualizacion del dict tiene una longitud incorrecta" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "Valor de calibración fuera del rango +/-127" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "división por cero" +#~ msgid "can only have up to 4 parameters to Thumb assembly" +#~ msgstr "solo puede tener hasta 4 parámetros para ensamblar Thumb" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "ya sea pos o kw args son permitidos" +#~ msgid "can only have up to 4 parameters to Xtensa assembly" +#~ msgstr "solo puede tener hasta 4 parámetros para ensamblador Xtensa" -#: py/objdeque.c -msgid "empty" -msgstr "vacío" +#~ msgid "can only save bytecode" +#~ msgstr "solo puede almacenar bytecode" -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "heap vacío" +#~ msgid "can query only one param" +#~ msgstr "puede consultar solo un param" -#: py/objstr.c -msgid "empty separator" -msgstr "separator vacío" +#~ msgid "can't add special method to already-subclassed class" +#~ msgstr "no se puede agregar un método a una clase ya subclasificada" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "secuencia vacía" +#~ msgid "can't assign to expression" +#~ msgstr "no se puede asignar a la expresión" -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "el final del formato mientras se busca el especificador de conversión" +#~ msgid "can't convert %s to complex" +#~ msgstr "no se puede convertir %s a complejo" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "end_x should be an int" -msgstr "y deberia ser un int" +#~ msgid "can't convert %s to float" +#~ msgstr "no se puede convertir %s a float" -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "error = 0x%08lx" +#~ msgid "can't convert %s to int" +#~ msgstr "no se puede convertir %s a int" -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "las excepciones deben derivar de BaseException" +#~ msgid "can't convert '%q' object to %q implicitly" +#~ msgstr "no se puede convertir el objeto '%q' a %q implícitamente" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "se espera ':' despues de un especificaro de tipo format" +#~ msgid "can't convert NaN to int" +#~ msgstr "no se puede convertir Nan a int" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "se espera un DigitalInOut" +#~ msgid "can't convert inf to int" +#~ msgstr "no se puede convertir inf en int" -#: py/obj.c -msgid "expected tuple/list" -msgstr "tupla/lista esperada" +#~ msgid "can't convert to complex" +#~ msgstr "no se puede convertir a complejo" -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "esperando un diccionario para argumentos por palabra clave" +#~ msgid "can't convert to float" +#~ msgstr "no se puede convertir a float" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "esperando un pin" +#~ msgid "can't convert to int" +#~ msgstr "no se puede convertir a int" -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "esperando una instrucción de ensamblador" +#~ msgid "can't convert to str implicitly" +#~ msgstr "no se puede convertir a str implícitamente" -#: py/compile.c -msgid "expecting just a value for set" -msgstr "esperando solo un valor para set" +#~ msgid "can't declare nonlocal in outer code" +#~ msgstr "no se puede declarar nonlocal" -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "esperando la clave:valor para dict" +#~ msgid "can't delete expression" +#~ msgstr "no se puede borrar la expresión" -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "argumento(s) por palabra clave adicionales fueron dados" +#~ msgid "can't do binary op between '%q' and '%q'" +#~ msgstr "no se puede hacer una operacion binaria entre '%q' y '%q'" -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "argumento posicional adicional dado" +#~ msgid "can't do truncated division of a complex number" +#~ msgstr "no se puede hacer la división truncada de un número complejo" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" +#~ msgid "can't get AP config" +#~ msgstr "no se puede obtener AP config" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "el archivo deberia ser una archivo abierto en modo byte" +#~ msgid "can't get STA config" +#~ msgstr "no se puede obtener STA config" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "sistema de archivos debe proporcionar método de montaje" +#~ msgid "can't have multiple **x" +#~ msgstr "no puede tener multiples *x" -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "primer argumento para super() debe ser de tipo" +#~ msgid "can't have multiple *x" +#~ msgstr "no puede tener multiples *x" -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "firstbit debe ser MSB" +#~ msgid "can't implicitly convert '%q' to 'bool'" +#~ msgstr "no se puede convertir implícitamente '%q' a 'bool'" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "la ubicación de la flash debe estar debajo de 1MByte" +#~ msgid "can't load from '%q'" +#~ msgstr "no se puede cargar desde '%q'" -#: py/objint.c -msgid "float too big" -msgstr "" +#~ msgid "can't load with '%q' index" +#~ msgstr "no se puede cargar con el índice '%q'" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "font debe ser 2048 bytes de largo" +#~ msgid "can't pend throw to just-started generator" +#~ msgstr "no se puede colgar al generador recién iniciado" -#: py/objstr.c -msgid "format requires a dict" -msgstr "format requiere un dict" +#~ msgid "can't send non-None value to a just-started generator" +#~ msgstr "" +#~ "no se puede enviar un valor que no sea None a un generador recién iniciado" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "la frecuencia solo puede ser 80MHz o 160MHz" +#~ msgid "can't set AP config" +#~ msgstr "no se puede establecer AP config" -#: py/objdeque.c -msgid "full" -msgstr "lleno" +#~ msgid "can't set STA config" +#~ msgstr "no se puede establecer STA config" -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "la función no tiene argumentos por palabra clave" +#~ msgid "can't set attribute" +#~ msgstr "no se puede asignar el atributo" -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "la función esperaba minimo %d argumentos, tiene %d" +#~ msgid "can't store '%q'" +#~ msgstr "no se puede almacenar '%q'" -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "la función tiene múltiples valores para el argumento '%q'" +#~ msgid "can't store to '%q'" +#~ msgstr "no se puede almacenar para '%q'" -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "a la función le hacen falta %d argumentos posicionales requeridos" +#~ msgid "can't store with '%q' index" +#~ msgstr "no se puede almacenar con el indice '%q'" -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "falta palabra clave para función" +#~ msgid "" +#~ "can't switch from automatic field numbering to manual field specification" +#~ msgstr "" +#~ "no se puede cambiar de la numeración automática de campos a la " +#~ "especificación de campo manual" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "la función requiere del argumento por palabra clave '%q'" +#~ msgid "" +#~ "can't switch from manual field specification to automatic field numbering" +#~ msgstr "" +#~ "no se puede cambiar de especificación de campo manual a numeración " +#~ "automática de campos" -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "la función requiere del argumento posicional #%d" +#~ msgid "cannot create '%q' instances" +#~ msgstr "no se pueden crear '%q' instancias" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "la función toma %d argumentos posicionales pero le fueron dados %d" +#~ msgid "cannot create instance" +#~ msgstr "no se puede crear instancia" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "la función toma exactamente 9 argumentos." +#~ msgid "cannot import name %q" +#~ msgstr "no se puede importar name '%q'" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "generador ya se esta ejecutando" +#~ msgid "cannot perform relative import" +#~ msgstr "no se puedo realizar importación relativa" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "generador ignorado GeneratorExit" +#~ msgid "chars buffer too small" +#~ msgstr "chars buffer muy pequeño" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "graphic debe ser 2048 bytes de largo" +#~ msgid "chr() arg not in range(0x110000)" +#~ msgstr "El argumento de chr() esta fuera de rango(0x110000)" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "heap debe ser una lista" +#~ msgid "chr() arg not in range(256)" +#~ msgstr "El argumento de chr() no esta en el rango(256)" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "identificador redefinido como global" +#~ msgid "complex division by zero" +#~ msgstr "división compleja por cero" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "identificador redefinido como nonlocal" +#~ msgid "complex values not supported" +#~ msgstr "valores complejos no soportados" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "baudrate imposible" +#~ msgid "compression header" +#~ msgstr "encabezado de compresión" -#: py/objstr.c -msgid "incomplete format" -msgstr "formato incompleto" +#~ msgid "constant must be an integer" +#~ msgstr "constant debe ser un entero" -#: py/objstr.c -msgid "incomplete format key" -msgstr "" +#~ msgid "conversion to object" +#~ msgstr "conversión a objeto" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "relleno (padding) incorrecto" +#~ msgid "decimal numbers not supported" +#~ msgstr "números decimales no soportados" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "index fuera de rango" +#~ msgid "default 'except' must be last" +#~ msgstr "'except' por defecto deberia estar de último" -#: py/obj.c -msgid "indices must be integers" -msgstr "indices deben ser enteros" +#~ msgid "" +#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " +#~ "= 8" +#~ msgstr "" +#~ "el buffer de destino debe ser un bytearray o array de tipo 'B' para " +#~ "bit_depth = 8" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "ensamblador en línea debe ser una función" +#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +#~ msgstr "" +#~ "el buffer de destino debe ser un array de tipo 'H' para bit_depth = 16" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "int() arg 2 debe ser >= 2 y <= 36" +#~ msgid "destination_length must be an int >= 0" +#~ msgstr "destination_length debe ser un int >= 0" -#: py/objstr.c -msgid "integer required" -msgstr "Entero requerido" +#~ msgid "dict update sequence has wrong length" +#~ msgstr "" +#~ "la secuencia de actualizacion del dict tiene una longitud incorrecta" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "ya sea pos o kw args son permitidos" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "periférico I2C inválido" +#~ msgid "empty" +#~ msgstr "vacío" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "periférico SPI inválido" +#~ msgid "empty heap" +#~ msgstr "heap vacío" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarma inválida" +#~ msgid "empty separator" +#~ msgstr "separator vacío" -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "argumentos inválidos" +#~ msgid "end of format while looking for conversion specifier" +#~ msgstr "" +#~ "el final del formato mientras se busca el especificador de conversión" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "longitud de buffer inválida" +#~ msgid "error = 0x%08lX" +#~ msgstr "error = 0x%08lx" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "certificado inválido" +#~ msgid "exceptions must derive from BaseException" +#~ msgstr "las excepciones deben derivar de BaseException" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "data bits inválidos" +#~ msgid "expected ':' after format specifier" +#~ msgstr "se espera ':' despues de un especificaro de tipo format" -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "index dupterm inválido" +#~ msgid "expected tuple/list" +#~ msgstr "tupla/lista esperada" -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "formato inválido" +#~ msgid "expecting a dict for keyword args" +#~ msgstr "esperando un diccionario para argumentos por palabra clave" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "especificador de formato inválido" +#~ msgid "expecting a pin" +#~ msgstr "esperando un pin" -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "llave inválida" +#~ msgid "expecting an assembler instruction" +#~ msgstr "esperando una instrucción de ensamblador" -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "decorador de micropython inválido" +#~ msgid "expecting just a value for set" +#~ msgstr "esperando solo un valor para set" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "pin inválido" +#~ msgid "expecting key:value for dict" +#~ msgstr "esperando la clave:valor para dict" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "" +#~ msgid "extra keyword arguments given" +#~ msgstr "argumento(s) por palabra clave adicionales fueron dados" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "stop bits inválidos" +#~ msgid "extra positional arguments given" +#~ msgstr "argumento posicional adicional dado" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "sintaxis inválida" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "sintaxis inválida para entero" +#~ msgid "first argument to super() must be type" +#~ msgstr "primer argumento para super() debe ser de tipo" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "sintaxis inválida para entero con base %d" +#~ msgid "firstbit must be MSB" +#~ msgstr "firstbit debe ser MSB" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "sintaxis inválida para número" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "la ubicación de la flash debe estar debajo de 1MByte" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "issubclass() arg 1 debe ser una clase" +#~ msgid "font must be 2048 bytes long" +#~ msgstr "font debe ser 2048 bytes de largo" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "issubclass() arg 2 debe ser una clase o tuple de clases" +#~ msgid "format requires a dict" +#~ msgstr "format requiere un dict" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" -"join espera una lista de objetos str/bytes consistentes con el mismo objeto" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la frecuencia solo puede ser 80MHz o 160MHz" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" -"argumento(s) por palabra clave aún no implementados - usa argumentos " -"normales en su lugar" +#~ msgid "full" +#~ msgstr "lleno" -#: py/bc.c -msgid "keywords must be strings" -msgstr "palabras clave deben ser strings" +#~ msgid "function does not take keyword arguments" +#~ msgstr "la función no tiene argumentos por palabra clave" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "etiqueta '%q' no definida" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "la función esperaba minimo %d argumentos, tiene %d" -#: py/compile.c -msgid "label redefined" -msgstr "etiqueta redefinida" +#~ msgid "function got multiple values for argument '%q'" +#~ msgstr "la función tiene múltiples valores para el argumento '%q'" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len debe de ser múltiple de 4" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "a la función le hacen falta %d argumentos posicionales requeridos" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "argumento length no permitido para este tipo" +#~ msgid "function missing keyword-only argument" +#~ msgstr "falta palabra clave para función" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "lhs y rhs deben ser compatibles" +#~ msgid "function missing required keyword argument '%q'" +#~ msgstr "la función requiere del argumento por palabra clave '%q'" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "la variable local '%q' tiene el tipo '%q' pero la fuente es '%q'" +#~ msgid "function missing required positional argument #%d" +#~ msgstr "la función requiere del argumento posicional #%d" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "variable local '%q' usada antes del tipo conocido" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "la función toma %d argumentos posicionales pero le fueron dados %d" -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "variable local referenciada antes de la asignación" +#~ msgid "generator already executing" +#~ msgstr "generador ya se esta ejecutando" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "long int no soportado en esta compilación" +#~ msgid "generator ignored GeneratorExit" +#~ msgstr "generador ignorado GeneratorExit" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "map buffer muy pequeño" +#~ msgid "graphic must be 2048 bytes long" +#~ msgstr "graphic debe ser 2048 bytes de largo" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "error de dominio matemático" +#~ msgid "heap must be a list" +#~ msgstr "heap debe ser una lista" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "profundidad máxima de recursión excedida" +#~ msgid "identifier redefined as global" +#~ msgstr "identificador redefinido como global" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "la asignación de memoria falló, asignando %u bytes" +#~ msgid "identifier redefined as nonlocal" +#~ msgstr "identificador redefinido como nonlocal" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "falló la asignación de memoria, asignando %u bytes para código nativo" +#~ msgid "impossible baudrate" +#~ msgstr "baudrate imposible" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "la asignación de memoria falló, el heap está bloqueado" +#~ msgid "incomplete format" +#~ msgstr "formato incompleto" -#: py/builtinimport.c -msgid "module not found" -msgstr "módulo no encontrado" +#~ msgid "incorrect padding" +#~ msgstr "relleno (padding) incorrecto" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "múltiples *x en la asignación" +#~ msgid "index out of range" +#~ msgstr "index fuera de rango" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" +#~ msgid "indices must be integers" +#~ msgstr "indices deben ser enteros" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "herencia multiple no soportada" +#~ msgid "inline assembler must be a function" +#~ msgstr "ensamblador en línea debe ser una función" -#: py/emitnative.c -msgid "must raise an object" -msgstr "debe hacer un raise de un objeto" +#~ msgid "int() arg 2 must be >= 2 and <= 36" +#~ msgstr "int() arg 2 debe ser >= 2 y <= 36" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "se deben de especificar sck/mosi/miso" +#~ msgid "integer required" +#~ msgstr "Entero requerido" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "debe utilizar argumento de palabra clave para la función clave" +#~ msgid "invalid I2C peripheral" +#~ msgstr "periférico I2C inválido" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "name '%q' no esta definido" +#~ msgid "invalid SPI peripheral" +#~ msgstr "periférico SPI inválido" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "palabras clave deben ser strings" +#~ msgid "invalid alarm" +#~ msgstr "alarma inválida" -#: py/runtime.c -msgid "name not defined" -msgstr "name no definido" +#~ msgid "invalid arguments" +#~ msgstr "argumentos inválidos" -#: py/compile.c -msgid "name reused for argument" -msgstr "nombre reusado para argumento" +#~ msgid "invalid buffer length" +#~ msgstr "longitud de buffer inválida" -#: py/emitnative.c -msgid "native yield" -msgstr "" +#~ msgid "invalid cert" +#~ msgstr "certificado inválido" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "necesita más de %d valores para descomprimir" +#~ msgid "invalid data bits" +#~ msgstr "data bits inválidos" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "potencia negativa sin float support" +#~ msgid "invalid dupterm index" +#~ msgstr "index dupterm inválido" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "cuenta negativa de turnos" +#~ msgid "invalid format" +#~ msgstr "formato inválido" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "exception no activa para reraise" +#~ msgid "invalid format specifier" +#~ msgstr "especificador de formato inválido" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "NIC no disponible" +#~ msgid "invalid key" +#~ msgstr "llave inválida" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "no se ha encontrado ningún enlace para nonlocal" +#~ msgid "invalid micropython decorator" +#~ msgstr "decorador de micropython inválido" -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "ningún módulo se llama '%q'" +#~ msgid "invalid pin" +#~ msgstr "pin inválido" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "no hay tal atributo" +#~ msgid "invalid stop bits" +#~ msgstr "stop bits inválidos" -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "argumento no predeterminado sigue argumento predeterminado" +#~ msgid "invalid syntax" +#~ msgstr "sintaxis inválida" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "digito non-hex encontrado" +#~ msgid "invalid syntax for integer" +#~ msgstr "sintaxis inválida para entero" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "no deberia estar/tener agumento por palabra clave despues de */**" +#~ msgid "invalid syntax for integer with base %d" +#~ msgstr "sintaxis inválida para entero con base %d" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "" -"no deberia estar/tener agumento por palabra clave despues de argumento por " -"palabra clave" +#~ msgid "invalid syntax for number" +#~ msgstr "sintaxis inválida para número" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#~ msgid "issubclass() arg 1 must be a class" +#~ msgstr "issubclass() arg 1 debe ser una clase" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "no es un canal ADC válido: %d" +#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" +#~ msgstr "issubclass() arg 2 debe ser una clase o tuple de clases" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" -"no todos los argumentos fueron convertidos durante el formato de string" +#~ msgid "join expects a list of str/bytes objects consistent with self object" +#~ msgstr "" +#~ "join espera una lista de objetos str/bytes consistentes con el mismo " +#~ "objeto" -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "no suficientes argumentos para format string" +#~ msgid "keyword argument(s) not yet implemented - use normal args instead" +#~ msgstr "" +#~ "argumento(s) por palabra clave aún no implementados - usa argumentos " +#~ "normales en su lugar" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "el objeto '%s' no es una tupla o lista" +#~ msgid "keywords must be strings" +#~ msgstr "palabras clave deben ser strings" -#: py/obj.c -msgid "object does not support item assignment" -msgstr "el objeto no soporta la asignación de elementos" +#~ msgid "label '%q' not defined" +#~ msgstr "etiqueta '%q' no definida" -#: py/obj.c -msgid "object does not support item deletion" -msgstr "object no soporta la eliminación de elementos" +#~ msgid "label redefined" +#~ msgstr "etiqueta redefinida" -#: py/obj.c -msgid "object has no len" -msgstr "el objeto no tiene longitud" +#~ msgid "len must be multiple of 4" +#~ msgstr "len debe de ser múltiple de 4" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "el objeto no es suscriptable" +#~ msgid "length argument not allowed for this type" +#~ msgstr "argumento length no permitido para este tipo" -#: py/runtime.c -msgid "object not an iterator" -msgstr "objeto no es un iterator" +#~ msgid "lhs and rhs should be compatible" +#~ msgstr "lhs y rhs deben ser compatibles" -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "objeto no puede ser llamado" +#~ msgid "local '%q' has type '%q' but source is '%q'" +#~ msgstr "la variable local '%q' tiene el tipo '%q' pero la fuente es '%q'" -#: py/sequence.c -msgid "object not in sequence" -msgstr "objeto no en secuencia" +#~ msgid "local '%q' used before type known" +#~ msgstr "variable local '%q' usada antes del tipo conocido" -#: py/runtime.c -msgid "object not iterable" -msgstr "objeto no iterable" +#~ msgid "local variable referenced before assignment" +#~ msgstr "variable local referenciada antes de la asignación" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "el objeto de tipo '%s' no tiene len()" +#~ msgid "long int not supported in this build" +#~ msgstr "long int no soportado en esta compilación" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "objeto con protocolo de buffer requerido" +#~ msgid "map buffer too small" +#~ msgstr "map buffer muy pequeño" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "string de longitud impar" +#~ msgid "maximum recursion depth exceeded" +#~ msgstr "profundidad máxima de recursión excedida" -#: py/objstrunicode.c py/objstr.c -#, fuzzy -msgid "offset out of bounds" -msgstr "address fuera de límites" +#~ msgid "memory allocation failed, allocating %u bytes" +#~ msgstr "la asignación de memoria falló, asignando %u bytes" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "solo se admiten segmentos con step=1 (alias None)" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "falló la asignación de memoria, asignando %u bytes para código nativo" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "ord espera un carácter" +#~ msgid "memory allocation failed, heap is locked" +#~ msgstr "la asignación de memoria falló, el heap está bloqueado" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "ord() espera un carácter, pero encontró un string de longitud %d" +#~ msgid "module not found" +#~ msgstr "módulo no encontrado" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "desbordamiento convirtiendo long int a palabra de máquina" +#~ msgid "multiple *x in assignment" +#~ msgstr "múltiples *x en la asignación" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "palette debe ser 32 bytes de largo" +#~ msgid "multiple inheritance not supported" +#~ msgstr "herencia multiple no soportada" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "palette_index deberia ser un int" +#~ msgid "must raise an object" +#~ msgstr "debe hacer un raise de un objeto" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "parámetro de anotación debe ser un identificador" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "se deben de especificar sck/mosi/miso" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "los parámetros deben ser registros en secuencia de a2 a a5" +#~ msgid "must use keyword argument for key function" +#~ msgstr "debe utilizar argumento de palabra clave para la función clave" -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" -msgstr "los parametros deben ser registros en secuencia del r0 al r3" +#~ msgid "name '%q' is not defined" +#~ msgstr "name '%q' no esta definido" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "pin sin capacidades IRQ" +#~ msgid "name not defined" +#~ msgstr "name no definido" -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "address fuera de límites" +#~ msgid "name reused for argument" +#~ msgstr "nombre reusado para argumento" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#~ msgid "need more than %d values to unpack" +#~ msgstr "necesita más de %d valores para descomprimir" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter" +#~ msgid "negative power with no float support" +#~ msgstr "potencia negativa sin float support" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "pop de un PulseIn vacío" +#~ msgid "negative shift count" +#~ msgstr "cuenta negativa de turnos" -#: py/objset.c -msgid "pop from an empty set" -msgstr "pop desde un set vacío" +#~ msgid "no active exception to reraise" +#~ msgstr "exception no activa para reraise" -#: py/objlist.c -msgid "pop from empty list" -msgstr "pop desde una lista vacía" +#~ msgid "no binding for nonlocal found" +#~ msgstr "no se ha encontrado ningún enlace para nonlocal" -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "popitem(): diccionario vacío" +#~ msgid "no module named '%q'" +#~ msgstr "ningún módulo se llama '%q'" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "el 3er argumento de pow() no puede ser 0" +#~ msgid "no such attribute" +#~ msgstr "no hay tal atributo" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "pow() con 3 argumentos requiere enteros" +#~ msgid "non-default argument follows default argument" +#~ msgstr "argumento no predeterminado sigue argumento predeterminado" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "desbordamiento de cola(queue)" +#~ msgid "non-hex digit found" +#~ msgstr "digito non-hex encontrado" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#~ msgid "non-keyword arg after */**" +#~ msgstr "no deberia estar/tener agumento por palabra clave despues de */**" -#: shared-bindings/_pixelbuf/__init__.c -#, fuzzy -msgid "readonly attribute" -msgstr "atributo no legible" +#~ msgid "non-keyword arg after keyword arg" +#~ msgstr "" +#~ "no deberia estar/tener agumento por palabra clave despues de argumento " +#~ "por palabra clave" -#: py/builtinimport.c -msgid "relative import" -msgstr "import relativo" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "no es un canal ADC válido: %d" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "longitud solicitada %d pero el objeto tiene longitud %d" +#~ msgid "not all arguments converted during string formatting" +#~ msgstr "" +#~ "no todos los argumentos fueron convertidos durante el formato de string" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "la anotación de retorno debe ser un identificador" +#~ msgid "not enough arguments for format string" +#~ msgstr "no suficientes argumentos para format string" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "retorno esperado '%q' pero se obtuvo '%q'" +#~ msgid "object '%s' is not a tuple or list" +#~ msgstr "el objeto '%s' no es una tupla o lista" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "la fila debe estar empacada y la palabra alineada" +#~ msgid "object does not support item assignment" +#~ msgstr "el objeto no soporta la asignación de elementos" -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "" +#~ msgid "object does not support item deletion" +#~ msgstr "object no soporta la eliminación de elementos" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" -"sample_source buffer debe ser un bytearray o un array de tipo 'h', 'H', 'b' " -"o'B'" +#~ msgid "object has no len" +#~ msgstr "el objeto no tiene longitud" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "frecuencia de muestreo fuera de rango" +#~ msgid "object is not subscriptable" +#~ msgstr "el objeto no es suscriptable" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "scan ha fallado" +#~ msgid "object not an iterator" +#~ msgstr "objeto no es un iterator" -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "" +#~ msgid "object not callable" +#~ msgstr "objeto no puede ser llamado" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "script de compilación no soportado" +#~ msgid "object not in sequence" +#~ msgstr "objeto no en secuencia" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#~ msgid "object not iterable" +#~ msgstr "objeto no iterable" -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "signo no permitido en el espeficador de string format" +#~ msgid "object of type '%s' has no len()" +#~ msgstr "el objeto de tipo '%s' no tiene len()" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "signo no permitido con el especificador integer format 'c'" +#~ msgid "object with buffer protocol required" +#~ msgstr "objeto con protocolo de buffer requerido" -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "un solo '}' encontrado en format string" +#~ msgid "odd-length string" +#~ msgstr "string de longitud impar" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "la longitud de sleep no puede ser negativa" +#, fuzzy +#~ msgid "offset out of bounds" +#~ msgstr "address fuera de límites" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "slice step no puede ser cero" +#~ msgid "ord expects a character" +#~ msgstr "ord espera un carácter" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "pequeño int desbordamiento" +#~ msgid "ord() expected a character, but string of length %d found" +#~ msgstr "ord() espera un carácter, pero encontró un string de longitud %d" -#: main.c -msgid "soft reboot\n" -msgstr "reinicio suave\n" +#~ msgid "overflow converting long int to machine word" +#~ msgstr "desbordamiento convirtiendo long int a palabra de máquina" -#: py/objstr.c -msgid "start/end indices" -msgstr "índices inicio/final" +#~ msgid "palette must be 32 bytes long" +#~ msgstr "palette debe ser 32 bytes de largo" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y deberia ser un int" +#~ msgid "parameter annotation must be an identifier" +#~ msgstr "parámetro de anotación debe ser un identificador" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "" +#~ msgid "parameters must be registers in sequence a2 to a5" +#~ msgstr "los parámetros deben ser registros en secuencia de a2 a a5" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop debe ser 1 o 2" +#~ msgid "parameters must be registers in sequence r0 to r3" +#~ msgstr "los parametros deben ser registros en secuencia del r0 al r3" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "pin sin capacidades IRQ" -#: py/stream.c -msgid "stream operation not supported" -msgstr "operación stream no soportada" +#~ msgid "pop from an empty PulseIn" +#~ msgstr "pop de un PulseIn vacío" -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "string index fuera de rango" +#~ msgid "pop from an empty set" +#~ msgstr "pop desde un set vacío" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "índices de string deben ser enteros, no %s" +#~ msgid "pop from empty list" +#~ msgstr "pop desde una lista vacía" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "string no soportado; usa bytes o bytearray" +#~ msgid "popitem(): dictionary is empty" +#~ msgstr "popitem(): diccionario vacío" -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: no se puede indexar" +#~ msgid "position must be 2-tuple" +#~ msgstr "posición debe ser 2-tuple" -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: index fuera de rango" +#~ msgid "pow() 3rd argument cannot be 0" +#~ msgstr "el 3er argumento de pow() no puede ser 0" -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: sin campos" +#~ msgid "pow() with 3 arguments requires integers" +#~ msgstr "pow() con 3 argumentos requiere enteros" -#: py/objstr.c -msgid "substring not found" -msgstr "substring no encontrado" +#~ msgid "queue overflow" +#~ msgstr "desbordamiento de cola(queue)" -#: py/compile.c -msgid "super() can't find self" -msgstr "super() no puede encontrar self" +#, fuzzy +#~ msgid "readonly attribute" +#~ msgstr "atributo no legible" -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "error de sintaxis en JSON" +#~ msgid "relative import" +#~ msgstr "import relativo" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "error de sintaxis en el descriptor uctypes" +#~ msgid "requested length %d but object has length %d" +#~ msgstr "longitud solicitada %d pero el objeto tiene longitud %d" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "" +#~ msgid "return annotation must be an identifier" +#~ msgstr "la anotación de retorno debe ser un identificador" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#~ msgid "return expected '%q' but got '%q'" +#~ msgstr "retorno esperado '%q' pero se obtuvo '%q'" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "" +#~ msgid "" +#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " +#~ "or 'B'" +#~ msgstr "" +#~ "sample_source buffer debe ser un bytearray o un array de tipo 'h', 'H', " +#~ "'b' o'B'" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() acepta exactamente 1 argumento" +#~ msgid "sampling rate out of range" +#~ msgstr "frecuencia de muestreo fuera de rango" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "" +#~ msgid "scan failed" +#~ msgstr "scan ha fallado" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits debe ser 8" +#~ msgid "script compilation not supported" +#~ msgstr "script de compilación no soportado" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "" +#~ msgid "sign not allowed in string format specifier" +#~ msgstr "signo no permitido en el espeficador de string format" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "muchos argumentos" +#~ msgid "sign not allowed with integer format specifier 'c'" +#~ msgstr "signo no permitido con el especificador integer format 'c'" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "demasiados argumentos provistos con el formato dado" +#~ msgid "single '}' encountered in format string" +#~ msgstr "un solo '}' encontrado en format string" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "demasiados valores para descomprimir (%d esperado)" +#~ msgid "slice step cannot be zero" +#~ msgstr "slice step no puede ser cero" -#: py/objstr.c -msgid "tuple index out of range" -msgstr "tuple index fuera de rango" +#~ msgid "small int overflow" +#~ msgstr "pequeño int desbordamiento" -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "tupla/lista tiene una longitud incorrecta" +#~ msgid "start/end indices" +#~ msgstr "índices inicio/final" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "stream operation not supported" +#~ msgstr "operación stream no soportada" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "Ambos tx y rx no pueden ser None" +#~ msgid "string index out of range" +#~ msgstr "string index fuera de rango" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "type '%q' no es un tipo de base aceptable" +#~ msgid "string indices must be integers, not %s" +#~ msgstr "índices de string deben ser enteros, no %s" -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "type no es un tipo de base aceptable" +#~ msgid "string not supported; use bytes or bytearray" +#~ msgstr "string no soportado; usa bytes o bytearray" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "objeto de tipo '%q' no tiene atributo '%q'" +#~ msgid "struct: cannot index" +#~ msgstr "struct: no se puede indexar" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "type acepta 1 o 3 argumentos" +#~ msgid "struct: index out of range" +#~ msgstr "struct: index fuera de rango" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "ulonglong muy largo" +#~ msgid "struct: no fields" +#~ msgstr "struct: sin campos" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "Operación unica %q no implementada" +#~ msgid "substring not found" +#~ msgstr "substring no encontrado" -#: py/parse.c -msgid "unexpected indent" -msgstr "sangría inesperada" +#~ msgid "super() can't find self" +#~ msgstr "super() no puede encontrar self" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "argumento por palabra clave inesperado" +#~ msgid "syntax error in JSON" +#~ msgstr "error de sintaxis en JSON" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "argumento por palabra clave inesperado '%q'" +#~ msgid "syntax error in uctypes descriptor" +#~ msgstr "error de sintaxis en el descriptor uctypes" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "" +#~ msgid "too many values to unpack (expected %d)" +#~ msgstr "demasiados valores para descomprimir (%d esperado)" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "sangría no coincide con ningún nivel exterior" +#~ msgid "tuple index out of range" +#~ msgstr "tuple index fuera de rango" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "parámetro config desconocido" +#~ msgid "tuple/list has wrong length" +#~ msgstr "tupla/lista tiene una longitud incorrecta" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "especificador de conversión %c desconocido" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "Ambos tx y rx no pueden ser None" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "codigo format desconocido '%c' para el typo de objeto '%s'" +#~ msgid "type '%q' is not an acceptable base type" +#~ msgstr "type '%q' no es un tipo de base aceptable" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "codigo format desconocido '%c' para el typo de objeto 'float'" +#~ msgid "type is not an acceptable base type" +#~ msgstr "type no es un tipo de base aceptable" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "codigo format desconocido '%c' para objeto de tipo 'str'" +#~ msgid "type object '%q' has no attribute '%q'" +#~ msgstr "objeto de tipo '%q' no tiene atributo '%q'" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "status param desconocido" +#~ msgid "type takes 1 or 3 arguments" +#~ msgstr "type acepta 1 o 3 argumentos" -#: py/compile.c -msgid "unknown type" -msgstr "tipo desconocido" +#~ msgid "ulonglong too large" +#~ msgstr "ulonglong muy largo" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "tipo desconocido '%q'" +#~ msgid "unary op %q not implemented" +#~ msgstr "Operación unica %q no implementada" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "No coinciden '{' en format" +#~ msgid "unexpected indent" +#~ msgstr "sangría inesperada" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "atributo no legible" +#~ msgid "unexpected keyword argument" +#~ msgstr "argumento por palabra clave inesperado" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "instrucción de tipo Thumb no admitida '%s' con %d argumentos" +#~ msgid "unexpected keyword argument '%q'" +#~ msgstr "argumento por palabra clave inesperado '%q'" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "instrucción Xtensa '%s' con %d argumentos no soportada" +#~ msgid "unindent does not match any outer indentation level" +#~ msgstr "sangría no coincide con ningún nivel exterior" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "tipo de bitmap no soportado" +#~ msgid "unknown config param" +#~ msgstr "parámetro config desconocido" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "carácter no soportado '%c' (0x%x) en índice %d" +#~ msgid "unknown conversion specifier %c" +#~ msgstr "especificador de conversión %c desconocido" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "tipo no soportado para %q: '%s'" +#~ msgid "unknown format code '%c' for object of type '%s'" +#~ msgstr "codigo format desconocido '%c' para el typo de objeto '%s'" -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "tipo de operador no soportado" +#~ msgid "unknown format code '%c' for object of type 'float'" +#~ msgstr "codigo format desconocido '%c' para el typo de objeto 'float'" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "tipos no soportados para %q: '%s', '%s'" +#~ msgid "unknown format code '%c' for object of type 'str'" +#~ msgstr "codigo format desconocido '%c' para objeto de tipo 'str'" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" +#~ msgid "unknown status param" +#~ msgstr "status param desconocido" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() ha fallado" +#~ msgid "unknown type" +#~ msgstr "tipo desconocido" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "" +#~ msgid "unknown type '%q'" +#~ msgstr "tipo desconocido '%q'" -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "numero erroneo de argumentos" +#~ msgid "unmatched '{' in format" +#~ msgstr "No coinciden '{' en format" -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "numero erroneo de valores a descomprimir" +#~ msgid "unreadable attribute" +#~ msgstr "atributo no legible" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "x value out of bounds" -msgstr "address fuera de límites" +#~ msgid "unsupported Thumb instruction '%s' with %d arguments" +#~ msgstr "instrucción de tipo Thumb no admitida '%s' con %d argumentos" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y deberia ser un int" +#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" +#~ msgstr "instrucción Xtensa '%s' con %d argumentos no soportada" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "address fuera de límites" +#~ msgid "unsupported format character '%c' (0x%x) at index %d" +#~ msgstr "carácter no soportado '%c' (0x%x) en índice %d" -#: py/objrange.c -msgid "zero step" -msgstr "paso cero" +#~ msgid "unsupported type for %q: '%s'" +#~ msgstr "tipo no soportado para %q: '%s'" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "No se puede notificar el valor del anuncio. status: 0x%02x" +#~ msgid "unsupported type for operator" +#~ msgstr "tipo de operador no soportado" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" +#~ msgid "unsupported types for %q: '%s', '%s'" +#~ msgstr "tipos no soportados para %q: '%s', '%s'" -#~ msgid "Function requires lock." -#~ msgstr "La función requiere lock" +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() ha fallado" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Solo formato Windows, BMP sin comprimir soportado %d" +#~ msgid "wrong number of arguments" +#~ msgstr "numero erroneo de argumentos" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Solo color verdadero (24 bpp o superior) BMP admitido %x" +#~ msgid "wrong number of values to unpack" +#~ msgstr "numero erroneo de valores a descomprimir" -#~ msgid "position must be 2-tuple" -#~ msgstr "posición debe ser 2-tuple" +#~ msgid "zero step" +#~ msgstr "paso cero" diff --git a/locale/fil.po b/locale/fil.po index c3a1f613f..6ac0df2b3 100644 --- a/locale/fil.po +++ b/locale/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-02 22:09+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-12-20 22:15-0800\n" "Last-Translator: Timothy \n" "Language-Team: fil\n" @@ -23,37 +23,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr " File \"%q\"" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr " File \"%q\", line %d" - #: main.c msgid " output:\n" msgstr " output:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "%%c nangangailangan ng int o char" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q ay ginagamit" -#: py/obj.c -msgid "%q index out of range" -msgstr "%q indeks wala sa sakop" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "%q indeks ay dapat integers, hindi %s" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "aarehas na haba dapat ang buffer slices" @@ -63,167 +42,10 @@ msgstr "aarehas na haba dapat ang buffer slices" msgid "%q should be an int" msgstr "y ay dapat int" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "" -"Ang %q() ay kumukuha ng %d positional arguments pero %d lang ang binigay" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "'%q' argument kailangan" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "'%s' umaasa ng label" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "Inaasahan ng '%s' ang isang rehistro" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "Inaasahan ng '%s' ang isang espesyal na register" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "Inaasahan ng '%s' ang isang FPU register" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "Inaasahan ng '%s' ang isang address sa [a, b]" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "Inaasahan ng '%s' ang isang integer" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "Inaasahan ng '%s' ang hangang r%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "Inaasahan ng '%s' ay {r0, r1, …}" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "'%s' integer %d ay wala sa sakop ng %d..%d" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "'%s' integer 0x%x ay wala sa mask na sakop ng 0x%x" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "'%s' object hindi sumusuporta ng item assignment" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "'%s' object ay hindi sumusuporta sa pagtanggal ng item" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "'%s' object ay walang attribute '%q'" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "'%s' object ay hindi iterator" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "'%s' object hindi matatawag" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "'%s' object ay hindi ma i-iterable" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "'%s' object ay hindi maaaring i-subscript" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "'=' Gindi pinapayagan ang alignment sa pag specify ng string format" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "Ang 'S' at 'O' ay hindi suportadong uri ng format" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "'align' kailangan ng 1 argument" - -#: py/compile.c -msgid "'await' outside function" -msgstr "'await' sa labas ng function" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "'break' sa labas ng loop" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "'continue' sa labas ng loop" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "'data' kailangan ng hindi bababa sa 2 argument" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "'data' kailangan ng integer arguments" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "'label' kailangan ng 1 argument" - -#: py/compile.c -msgid "'return' outside function" -msgstr "'return' sa labas ng function" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "'yield' sa labas ng function" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "*x ay dapat na assignment target" - -#: py/obj.c -msgid ", in %q\n" -msgstr ", sa %q\n" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "0.0 para sa complex power" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "3-arg pow() hindi suportado" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Isang channel ng hardware interrupt ay ginagamit na" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP kailangan" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -234,55 +56,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "ang palette ay dapat 32 bytes ang haba" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "Lahat ng I2C peripherals ginagamit" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "Lahat ng SPI peripherals ay ginagamit" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "All UART peripherals are in use" -msgstr "Lahat ng I2C peripherals ginagamit" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Lahat ng event channels ginagamit" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "Lahat ng sync event channels ay ginagamit" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Lahat ng timers para sa pin na ito ay ginagamit" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Lahat ng timer ginagamit" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "Hindi supportado ang AnalogOut" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "AnalogOut ay 16 bits. Value ay dapat hindi hihigit pa sa 65536." - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "Hindi supportado ang AnalogOut sa ibinigay na pin" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Isa pang send ay aktibo na" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "May halfwords (type 'H') dapat ang array" @@ -307,18 +88,6 @@ msgstr "" "Ang awtomatikong pag re-reload ay ON. i-save lamang ang mga files sa USB " "para patakbuhin sila o pasukin ang REPL para i-disable ito.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "Ang bit clock at word select dapat makibahagi sa isang clock unit" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "Bit depth ay dapat multiple ng 8." - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Ang parehong mga pin ay dapat na sumusuporta sa hardware interrupts" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "Ang liwanag ay dapat sa gitna ng 0 o 255" @@ -336,12 +105,6 @@ msgstr "Mali ang size ng buffer. Dapat %d bytes." msgid "Buffer must be at least length 1" msgstr "Buffer dapat ay hindi baba sa 1 na haba" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy, c-format -msgid "Bus pin %d is already in use" -msgstr "Ginagamit na ang DAC" - #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -351,15 +114,6 @@ msgstr "buffer ay dapat bytes-like object" msgid "Bytes must be between 0 and 255." msgstr "Sa gitna ng 0 o 255 dapat ang bytes." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "C-level assert" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "Hindi maarang maglagay ng service sa Central mode" @@ -376,73 +130,26 @@ msgstr "Hindi mapalitan ang pangalan sa Central mode" msgid "Can't connect in Peripheral mode" msgstr "Hindi maconnect sa Peripheral mode" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Hindi maka connect sa AP" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Hindi mabura ang values" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Hindi ma disconnect sa AP" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "Hindi makakakuha ng pull habang nasa output mode" - -#: ports/nrf/common-hal/microcontroller/Processor.c -#, fuzzy -msgid "Cannot get temperature" -msgstr "Hindi makuha ang temperatura. status 0x%02x" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "Hindi maaaring output ang mga parehong channel sa parehong pin" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Hindi maaring mabasa kapag walang MISO pin." -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "Hindi ma-record sa isang file" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Hindi ma-remount '/' kapag aktibo ang USB." -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "Hindi ma-reset sa bootloader dahil walang bootloader." - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Hindi ma-set ang STA Config" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Hindi ma i-set ang value kapag ang direksyon ay input." -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "Hindi magawa ang sublcass slice" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Hindi maaaring ilipat kapag walang MOSI at MISO pin." -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "Hindi puedeng hindi sigurado ang get sizeof scalar" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Hindi ma-update i/f status" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Hindi maaring isulat kapag walang MOSI pin." @@ -451,10 +158,6 @@ msgstr "Hindi maaring isulat kapag walang MOSI pin." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -467,28 +170,15 @@ msgstr "Nabigo sa pag init ng Clock pin." msgid "Clock stretch too long" msgstr "Masyadong mahaba ang Clock stretch" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Clock unit ginagamit" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Sa gitna ng 0 o 255 dapat ang bytes." -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "Hindi ma-initialize ang UART" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Hindi ma-iallocate ang first buffer" @@ -501,71 +191,21 @@ msgstr "Hindi ma-iallocate ang second buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "Nagcrash sa HardFault_Handler.\n" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "Ginagamit na ang DAC" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy -msgid "Data 0 pin must be byte aligned" -msgstr "graphic ay dapat 2048 bytes ang haba" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "Dapat sunurin ng Data chunk ang fmt chunk" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy -msgid "Data too large for advertisement packet" -msgstr "Hindi makasya ang data sa loob ng advertisement packet" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Data too large for the advertisement packet" -msgstr "Hindi makasya ang data sa loob ng advertisement packet" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "" -"Ang kapasidad ng destinasyon ay mas maliit kaysa sa destination_length." - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Hindi alam ipasa ang object sa native function" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Drive mode ay hindi ginagamit kapag ang direksyon ay input." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "Walang safemode support ang ESP8266." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "Walang pull down support ang ESP8266." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "Ginagamit na ang EXTINT channel" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Pagkakamali sa ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "May pagkakamali sa REGEX" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Umasa ng %q" @@ -574,8 +214,8 @@ msgstr "Umasa ng %q" msgid "Expected a Characteristic" msgstr "Hindi mabasa and Characteristic." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Umasa ng %q" @@ -585,260 +225,27 @@ msgstr "Umasa ng %q" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to acquire mutex" -msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Service.c -#, fuzzy, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "Nabigo sa paglagay ng characteristic, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to add service" -msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Nabigong ilaan ang RX buffer" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Nabigong ilaan ang RX buffer ng %d bytes" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to change softdevice state" -msgstr "Nabigo sa pagbago ng softdevice state, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to connect:" -msgstr "Hindi makaconnect, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to continue scanning" -msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to create mutex" -msgstr "Hindi matagumpay ang pagbuo ng mutex, status: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to discover services" -msgstr "Nabigo sa pagdiscover ng services, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get local address" -msgstr "Nabigo sa pagkuha ng local na address, , error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get softdevice state" -msgstr "Nabigo sa pagkuha ng softdevice state, error: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "Hindi matagumpay ang paglagay ng Vender Specific UUID, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to release mutex" -msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start advertising" -msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start scanning" -msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to stop advertising" -msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "Hindi maisulat ang attribute value, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" - -#: py/moduerrno.c -msgid "File exists" -msgstr "Mayroong file" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "Function nangangailangan ng lock" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "Walang pull down support ang GPI016." - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Puno ang group" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "I/O operasyon sa saradong file" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "Hindi supportado ang operasyong I2C" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" -".mpy file hindi compatible. Maaring i-update lahat ng .mpy files. See http://" -"adafru.it/mpy-update for more info." - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "May mali sa Input/Output" - #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Mali ang BMP file" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Mali ang PWM frequency" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "Maling argumento" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Mali ang bit clock pin" - -#: ports/nrf/common-hal/busio/UART.c -msgid "Invalid buffer size" -msgstr "Mali ang buffer size" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -msgid "Invalid channel count" -msgstr "Maling bilang ng channel" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Mali ang clock pin" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "Mali ang data pin" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Mali ang direksyon." @@ -859,27 +266,10 @@ msgstr "Mali ang bilang ng bits" msgid "Invalid phase" msgstr "Mali ang phase" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Mali ang pin" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Mali ang pin para sa kaliwang channel" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Mali ang pin para sa kanang channel" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "Mali ang pins" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Mali ang polarity" @@ -888,30 +278,14 @@ msgstr "Mali ang polarity" msgid "Invalid run mode." msgstr "Mali ang run mode." -#: shared-bindings/audioio/Mixer.c -msgid "Invalid voice count" -msgstr "Maling bilang ng voice" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "May hindi tama sa wave file" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "LHS ng keyword arg ay dapat na id" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: py/objslice.c -msgid "Length must be an int" -msgstr "Haba ay dapat int" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "Haba ay dapat hindi negatibo" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -931,11 +305,6 @@ msgstr "Hindi ma-initialize ang MISO pin." msgid "MOSI pin init failed." msgstr "Hindi ma-initialize ang MOSI pin." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Pinakamataas na PWM frequency ay %dhz." - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -949,49 +318,10 @@ msgstr "CircuitPython NLR jump nabigo. Maaring memory corruption.\n" msgid "MicroPython fatal error.\n" msgstr "CircuitPython fatal na pagkakamali.\n" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "Ang delay ng startup ng mikropono ay dapat na nasa 0.0 hanggang 1.0" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Pinakamababang PWM frequency ay 1hz." - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"Hindi sinusuportahan ang maraming mga PWM frequency. PWM na naka-set sa %dhz." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Walang DAC sa chip" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "Walang DMA channel na mahanap" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Walang PulseIn support sa %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Walang RX pin" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Walang TX pin" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Walang default na I2C bus" @@ -1004,44 +334,15 @@ msgstr "Walang default SPI bus" msgid "No default UART bus" msgstr "Walang default UART bus" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Walang libreng GCLKs" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Walang magagamit na hardware random" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Hindi supportado ng hardware ang analog out." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Walang support sa hardware ang pin" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "Walang file/directory" - #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Hindi maka connect sa AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "Hindi playing" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -1049,14 +350,6 @@ msgstr "" "Object ay deinitialized at hindi na magagamit. Lumikha ng isang bagong " "Object." -#: ports/nrf/common-hal/busio/UART.c -msgid "Odd parity is not supported" -msgstr "Odd na parity ay hindi supportado" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "Tanging 8 o 16 na bit mono na may " - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1074,19 +367,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Only slices with step=1 (aka None) are supported" -msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Tanging suportado ang TX sa UART1 (GPIO2)." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "Oversample ay dapat multiple ng 8." - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1098,40 +378,6 @@ msgid "" msgstr "" "PWM frequency hindi writable kapag variable_frequency ay False sa pag buo." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "Walang PWM support sa pin %d" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "Walang pahintulot" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Walang kakayahang ADC ang pin %q" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "Ang pin ay walang kakayahan sa ADC" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Walang pull support ang Pin(16)" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Mali ang pins para sa SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -msgid "Plus any modules on the filesystem\n" -msgstr "Kasama ang kung ano pang modules na sa filesystem\n" - #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -1150,31 +396,19 @@ msgstr "RTC calibration ay hindi supportado ng board na ito" msgid "RTC is not supported on this board" msgstr "Hindi supportado ang RTC sa board na ito" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "Hindi sinusuportahan ang pagbabago ng RTC sa board na ito" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Range out of bounds" -msgstr "wala sa sakop ang address" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Basahin-lamang" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "Basahin-lamang mode" - #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Basahin-lamang" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Hindi supportado ang kanang channel" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1187,50 +421,15 @@ msgstr "Tumatakbo sa safe mode! Awtomatikong pag re-reload ay OFF.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Tumatakbo sa safe mode! Hindi tumatakbo ang nai-save na code.\n" -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "Kailangan ng pull up resistors ang SDA o SCL" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "Dapat aktibo ang STA" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA kailangan" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "Sample rate ay dapat positibo" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "Sample rate ay masyadong mataas. Ito ay dapat hindi hiigit sa %d" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Serializer ginagamit" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "Slice at value iba't ibang haba." -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Hindi suportado ang Slices" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "Binibiyak gamit ang sub-captures" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "Ang laki ng stack ay dapat na hindi bababa sa 256" @@ -1304,11 +503,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Para lumabas, paki-reset ang board na wala ang " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "Sobra ang channels sa sample." - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1316,23 +511,10 @@ msgstr "" msgid "Too many displays" msgstr "" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "Traceback (pinakahuling huling tawag): \n" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Tuple o struct_time argument kailangan" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "Walang UART(%d)" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "Hindi mabasa ang UART(1)" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "Busy ang USB" @@ -1353,50 +535,14 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Hindi mahanap ang libreng GCLK" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "Hindi ma-init ang parser" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Hindi ma-remount ang filesystem" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Hindi ma i-sulat sa NVM." -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy -msgid "Unexpected nrfx uuid type" -msgstr "hindi inaasahang indent" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Hindi alam ang type" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "Hindi supportadong baudrate" - #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -1406,25 +552,10 @@ msgstr "Hindi supportadong tipo ng bitmap" msgid "Unsupported format" msgstr "Hindi supportadong format" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "Hindi sinusuportahang operasyon" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Hindi suportado ang pull value." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Gamitin ang esptool upang burahin ang flash at muling i-upload ang Python" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "" -"Ang mga function ng Viper ay kasalukuyang hindi sumusuporta sa higit sa 4 na " -"argumento" - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Index ng Voice ay masyadong mataas" @@ -1433,1506 +564,1732 @@ msgstr "Index ng Voice ay masyadong mataas" msgid "WARNING: Your code filename has two extensions\n" msgstr "BABALA: Ang pangalan ng file ay may dalawang extension\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" -"Mabuhay sa Adafruit CircuitPython %s!\n" -"\n" -"Mangyaring bisitahin ang learn.adafruit.com/category/circuitpython para sa " -"project guides.\n" -"\n" -"Para makita ang listahan ng modules, `help(“modules”)`.\n" - #: supervisor/shared/safe_mode.c msgid "" "You are running in safe mode which means something unanticipated happened.\n" msgstr "Ikaw ay tumatakbo sa safe mode dahil may masamang nangyari.\n" -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " -msgstr "Ikaw ang humiling sa safe mode sa pamamagitan ng " +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " +msgstr "Ikaw ang humiling sa safe mode sa pamamagitan ng " + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "wala sa sakop ang address" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "walang laman ang address" + +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "array/bytes kinakailangan sa kanang bahagi" + +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits ay dapat 7, 8 o 9" + +#: shared-module/struct/__init__.c +#, fuzzy +msgid "buffer size must match format" +msgstr "aarehas na haba dapat ang buffer slices" + +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "aarehas na haba dapat ang buffer slices" + +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "masyadong maliit ang buffer" + +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "hindi ma i-convert ang address sa INT" + +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "color buffer ay dapat na 3 bytes (RGB) o 4 bytes (RGB + pad byte)" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "color buffer ay dapat buffer or int" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "ang color buffer ay dapat bytearray o array na type ‘b’ or ‘B’" + +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "color ay dapat mula sa 0x000000 hangang 0xffffff" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "color ay dapat na int" + +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "dibisyon ng zero" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "walang laman ang sequence" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "end_x should be an int" +msgstr "y ay dapat int" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "umasa ng DigitalInOut" + +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" +msgstr "file ay dapat buksan sa byte mode" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "ang filesystem dapat mag bigay ng mount method" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "function kumukuha ng 9 arguments" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "mali ang step" + +#: shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "may pagkakamali sa math domain" + +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "ang keywords dapat strings" + +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "walang magagamit na NIC" + +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" + +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "palette_index ay dapat na int" + +#: shared-bindings/displayio/Bitmap.c +#, fuzzy +msgid "pixel coordinates out of bounds" +msgstr "wala sa sakop ang address" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter" + +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "row ay dapat packed at ang word nakahanay" + +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "sleep length ay dapat hindi negatibo" + +#: main.c +msgid "soft reboot\n" +msgstr "malambot na reboot\n" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y ay dapat int" + +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "step ay dapat hindi zero" + +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop dapat 1 o 2" + +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop hindi maabot sa simula" + +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "ang threshold ay dapat sa range 0-65536" + +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "time.struct_time() kumukuha ng 9-sequence" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() kumukuha ng 1 argument" + +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "timeout >100 (units ay seconds, hindi na msecs)" + +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "bits ay dapat walo (8)" + +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "wala sa sakop ng timestamp ang platform time_t" + +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "masyadong maraming argumento" + +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "masyadong maraming mga argumento na ibinigay sa ibinigay na format" + +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "Hindi supportadong tipo ng bitmap" + +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "wala sa sakop ang address" + +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y ay dapat int" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "wala sa sakop ang address" + +#~ msgid " File \"%q\"" +#~ msgstr " File \"%q\"" + +#~ msgid " File \"%q\", line %d" +#~ msgstr " File \"%q\", line %d" + +#~ msgid "%%c requires int or char" +#~ msgstr "%%c nangangailangan ng int o char" + +#~ msgid "%q index out of range" +#~ msgstr "%q indeks wala sa sakop" + +#~ msgid "%q indices must be integers, not %s" +#~ msgstr "%q indeks ay dapat integers, hindi %s" + +#~ msgid "%q() takes %d positional arguments but %d were given" +#~ msgstr "" +#~ "Ang %q() ay kumukuha ng %d positional arguments pero %d lang ang binigay" + +#~ msgid "'%q' argument required" +#~ msgstr "'%q' argument kailangan" + +#~ msgid "'%s' expects a label" +#~ msgstr "'%s' umaasa ng label" + +#~ msgid "'%s' expects a register" +#~ msgstr "Inaasahan ng '%s' ang isang rehistro" + +#~ msgid "'%s' expects a special register" +#~ msgstr "Inaasahan ng '%s' ang isang espesyal na register" + +#~ msgid "'%s' expects an FPU register" +#~ msgstr "Inaasahan ng '%s' ang isang FPU register" + +#~ msgid "'%s' expects an address of the form [a, b]" +#~ msgstr "Inaasahan ng '%s' ang isang address sa [a, b]" + +#~ msgid "'%s' expects an integer" +#~ msgstr "Inaasahan ng '%s' ang isang integer" + +#~ msgid "'%s' expects at most r%d" +#~ msgstr "Inaasahan ng '%s' ang hangang r%d" + +#~ msgid "'%s' expects {r0, r1, ...}" +#~ msgstr "Inaasahan ng '%s' ay {r0, r1, …}" + +#~ msgid "'%s' integer %d is not within range %d..%d" +#~ msgstr "'%s' integer %d ay wala sa sakop ng %d..%d" + +#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" +#~ msgstr "'%s' integer 0x%x ay wala sa mask na sakop ng 0x%x" + +#~ msgid "'%s' object does not support item assignment" +#~ msgstr "'%s' object hindi sumusuporta ng item assignment" + +#~ msgid "'%s' object does not support item deletion" +#~ msgstr "'%s' object ay hindi sumusuporta sa pagtanggal ng item" + +#~ msgid "'%s' object has no attribute '%q'" +#~ msgstr "'%s' object ay walang attribute '%q'" + +#~ msgid "'%s' object is not an iterator" +#~ msgstr "'%s' object ay hindi iterator" + +#~ msgid "'%s' object is not callable" +#~ msgstr "'%s' object hindi matatawag" + +#~ msgid "'%s' object is not iterable" +#~ msgstr "'%s' object ay hindi ma i-iterable" + +#~ msgid "'%s' object is not subscriptable" +#~ msgstr "'%s' object ay hindi maaaring i-subscript" + +#~ msgid "'=' alignment not allowed in string format specifier" +#~ msgstr "'=' Gindi pinapayagan ang alignment sa pag specify ng string format" + +#~ msgid "'align' requires 1 argument" +#~ msgstr "'align' kailangan ng 1 argument" + +#~ msgid "'await' outside function" +#~ msgstr "'await' sa labas ng function" + +#~ msgid "'break' outside loop" +#~ msgstr "'break' sa labas ng loop" + +#~ msgid "'continue' outside loop" +#~ msgstr "'continue' sa labas ng loop" + +#~ msgid "'data' requires at least 2 arguments" +#~ msgstr "'data' kailangan ng hindi bababa sa 2 argument" + +#~ msgid "'data' requires integer arguments" +#~ msgstr "'data' kailangan ng integer arguments" + +#~ msgid "'label' requires 1 argument" +#~ msgstr "'label' kailangan ng 1 argument" + +#~ msgid "'return' outside function" +#~ msgstr "'return' sa labas ng function" + +#~ msgid "'yield' outside function" +#~ msgstr "'yield' sa labas ng function" + +#~ msgid "*x must be assignment target" +#~ msgstr "*x ay dapat na assignment target" + +#~ msgid ", in %q\n" +#~ msgstr ", sa %q\n" + +#~ msgid "0.0 to a complex power" +#~ msgstr "0.0 para sa complex power" + +#~ msgid "3-arg pow() not supported" +#~ msgstr "3-arg pow() hindi suportado" + +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Isang channel ng hardware interrupt ay ginagamit na" + +#~ msgid "AP required" +#~ msgstr "AP kailangan" + +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Lahat ng I2C peripherals ginagamit" + +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Lahat ng SPI peripherals ay ginagamit" + +#, fuzzy +#~ msgid "All UART peripherals are in use" +#~ msgstr "Lahat ng I2C peripherals ginagamit" + +#~ msgid "All event channels in use" +#~ msgstr "Lahat ng event channels ginagamit" + +#~ msgid "All sync event channels in use" +#~ msgstr "Lahat ng sync event channels ay ginagamit" + +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "Hindi supportado ang AnalogOut" + +#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." +#~ msgstr "AnalogOut ay 16 bits. Value ay dapat hindi hihigit pa sa 65536." + +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "Hindi supportado ang AnalogOut sa ibinigay na pin" + +#~ msgid "Another send is already active" +#~ msgstr "Isa pang send ay aktibo na" + +#~ msgid "Bit clock and word select must share a clock unit" +#~ msgstr "Ang bit clock at word select dapat makibahagi sa isang clock unit" + +#~ msgid "Bit depth must be multiple of 8." +#~ msgstr "Bit depth ay dapat multiple ng 8." + +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Ang parehong mga pin ay dapat na sumusuporta sa hardware interrupts" + +#, fuzzy +#~ msgid "Bus pin %d is already in use" +#~ msgstr "Ginagamit na ang DAC" + +#~ msgid "C-level assert" +#~ msgstr "C-level assert" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Hindi maka connect sa AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Hindi ma disconnect sa AP" + +#~ msgid "Cannot get pull while in output mode" +#~ msgstr "Hindi makakakuha ng pull habang nasa output mode" + +#, fuzzy +#~ msgid "Cannot get temperature" +#~ msgstr "Hindi makuha ang temperatura. status 0x%02x" + +#~ msgid "Cannot output both channels on the same pin" +#~ msgstr "Hindi maaaring output ang mga parehong channel sa parehong pin" + +#~ msgid "Cannot record to a file" +#~ msgstr "Hindi ma-record sa isang file" + +#~ msgid "Cannot reset into bootloader because no bootloader is present." +#~ msgstr "Hindi ma-reset sa bootloader dahil walang bootloader." + +#~ msgid "Cannot set STA config" +#~ msgstr "Hindi ma-set ang STA Config" + +#~ msgid "Cannot subclass slice" +#~ msgstr "Hindi magawa ang sublcass slice" + +#~ msgid "Cannot unambiguously get sizeof scalar" +#~ msgstr "Hindi puedeng hindi sigurado ang get sizeof scalar" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Hindi ma-update i/f status" + +#~ msgid "Clock unit in use" +#~ msgstr "Clock unit ginagamit" + +#~ msgid "Could not initialize UART" +#~ msgstr "Hindi ma-initialize ang UART" + +#~ msgid "DAC already in use" +#~ msgstr "Ginagamit na ang DAC" + +#, fuzzy +#~ msgid "Data 0 pin must be byte aligned" +#~ msgstr "graphic ay dapat 2048 bytes ang haba" + +#, fuzzy +#~ msgid "Data too large for advertisement packet" +#~ msgstr "Hindi makasya ang data sa loob ng advertisement packet" + +#, fuzzy +#~ msgid "Data too large for the advertisement packet" +#~ msgstr "Hindi makasya ang data sa loob ng advertisement packet" + +#~ msgid "Destination capacity is smaller than destination_length." +#~ msgstr "" +#~ "Ang kapasidad ng destinasyon ay mas maliit kaysa sa destination_length." + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Hindi alam ipasa ang object sa native function" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "Walang safemode support ang ESP8266." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "Walang pull down support ang ESP8266." + +#~ msgid "EXTINT channel already in use" +#~ msgstr "Ginagamit na ang EXTINT channel" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Pagkakamali sa ffi_prep_cif" + +#~ msgid "Error in regex" +#~ msgstr "May pagkakamali sa REGEX" + +#, fuzzy +#~ msgid "Failed to acquire mutex" +#~ msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "Nabigo sa paglagay ng characteristic, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add service" +#~ msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" + +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Nabigong ilaan ang RX buffer" + +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Nabigong ilaan ang RX buffer ng %d bytes" + +#, fuzzy +#~ msgid "Failed to change softdevice state" +#~ msgstr "Nabigo sa pagbago ng softdevice state, error: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to connect:" +#~ msgstr "Hindi makaconnect, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to continue scanning" +#~ msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to create mutex" +#~ msgstr "Hindi matagumpay ang pagbuo ng mutex, status: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to discover services" +#~ msgstr "Nabigo sa pagdiscover ng services, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to get local address" +#~ msgstr "Nabigo sa pagkuha ng local na address, , error: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to get softdevice state" +#~ msgstr "Nabigo sa pagkuha ng softdevice state, error: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Hindi mabalitaan ang attribute value, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "" +#~ "Hindi matagumpay ang paglagay ng Vender Specific UUID, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to release mutex" +#~ msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to start advertising" +#~ msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to start scanning" +#~ msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to stop advertising" +#~ msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "Hindi maisulat ang attribute value, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" + +#~ msgid "File exists" +#~ msgstr "Mayroong file" + +#~ msgid "Function requires lock." +#~ msgstr "Kailangan ng lock ang function." + +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "Walang pull down support ang GPI016." + +#~ msgid "I/O operation on closed file" +#~ msgstr "I/O operasyon sa saradong file" + +#~ msgid "I2C operation not supported" +#~ msgstr "Hindi supportado ang operasyong I2C" -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "[addrinfo error %d]" +#~ msgid "" +#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." +#~ "it/mpy-update for more info." +#~ msgstr "" +#~ ".mpy file hindi compatible. Maaring i-update lahat ng .mpy files. See " +#~ "http://adafru.it/mpy-update for more info." -#: py/objtype.c -msgid "__init__() should return None" -msgstr "__init __ () dapat magbalik na None" +#~ msgid "Input/output error" +#~ msgstr "May mali sa Input/Output" -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "__init__() dapat magbalink na None, hindi '%s'" +#~ msgid "Invalid argument" +#~ msgstr "Maling argumento" -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "__new__ arg ay dapat na user-type" +#~ msgid "Invalid bit clock pin" +#~ msgstr "Mali ang bit clock pin" -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "a bytes-like object ay kailangan" +#~ msgid "Invalid buffer size" +#~ msgstr "Mali ang buffer size" -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "abort() tinawag" +#~ msgid "Invalid channel count" +#~ msgstr "Maling bilang ng channel" -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "address %08x ay hindi pantay sa %d bytes" +#~ msgid "Invalid clock pin" +#~ msgstr "Mali ang clock pin" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "wala sa sakop ang address" +#~ msgid "Invalid data pin" +#~ msgstr "Mali ang data pin" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "walang laman ang address" +#~ msgid "Invalid pin for left channel" +#~ msgstr "Mali ang pin para sa kaliwang channel" -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "arg ay walang laman na sequence" +#~ msgid "Invalid pin for right channel" +#~ msgstr "Mali ang pin para sa kanang channel" -#: py/runtime.c -msgid "argument has wrong type" -msgstr "may maling type ang argument" +#~ msgid "Invalid pins" +#~ msgstr "Mali ang pins" -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "hindi tugma ang argument num/types" +#~ msgid "Invalid voice count" +#~ msgstr "Maling bilang ng voice" -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "argument ay dapat na '%q' hindi '%q'" +#~ msgid "LHS of keyword arg must be an id" +#~ msgstr "LHS ng keyword arg ay dapat na id" -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "array/bytes kinakailangan sa kanang bahagi" +#~ msgid "Length must be an int" +#~ msgstr "Haba ay dapat int" -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "attributes hindi sinusuportahan" +#~ msgid "Length must be non-negative" +#~ msgstr "Haba ay dapat hindi negatibo" -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" -msgstr "" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Pinakamataas na PWM frequency ay %dhz." -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "masamang mode ng compile" +#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" +#~ msgstr "Ang delay ng startup ng mikropono ay dapat na nasa 0.0 hanggang 1.0" -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "masamang pag convert na specifier" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Pinakamababang PWM frequency ay 1hz." -#: py/objstr.c -msgid "bad format string" -msgstr "maling format ang string" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Hindi sinusuportahan ang maraming mga PWM frequency. PWM na naka-set sa " +#~ "%dhz." -#: py/binary.c -msgid "bad typecode" -msgstr "masamang typecode" +#~ msgid "No DAC on chip" +#~ msgstr "Walang DAC sa chip" -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "binary op %q hindi implemented" +#~ msgid "No DMA channel found" +#~ msgstr "Walang DMA channel na mahanap" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits ay dapat 7, 8 o 9" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Walang PulseIn support sa %q" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "bits ay dapat walo (8)" +#~ msgid "No RX pin" +#~ msgstr "Walang RX pin" -#: shared-bindings/audioio/Mixer.c -msgid "bits_per_sample must be 8 or 16" -msgstr "bits_per_sample ay dapat 8 o 16" +#~ msgid "No TX pin" +#~ msgstr "Walang TX pin" -#: py/emitinlinethumb.c -msgid "branch not in range" -msgstr "branch wala sa range" +#~ msgid "No free GCLKs" +#~ msgstr "Walang libreng GCLKs" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" +#~ msgid "No hardware support for analog out." +#~ msgstr "Hindi supportado ng hardware ang analog out." -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "buffer ay dapat bytes-like object" +#~ msgid "No hardware support on pin" +#~ msgstr "Walang support sa hardware ang pin" -#: shared-module/struct/__init__.c -#, fuzzy -msgid "buffer size must match format" -msgstr "aarehas na haba dapat ang buffer slices" +#~ msgid "No such file/directory" +#~ msgstr "Walang file/directory" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "aarehas na haba dapat ang buffer slices" +#~ msgid "Not playing" +#~ msgstr "Hindi playing" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "masyadong mahaba ng buffer" +#~ msgid "Odd parity is not supported" +#~ msgstr "Odd na parity ay hindi supportado" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "masyadong maliit ang buffer" +#~ msgid "Only 8 or 16 bit mono with " +#~ msgstr "Tanging 8 o 16 na bit mono na may " -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "ang buffers ay dapat parehas sa haba" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Tanging Windows format, uncompressed BMP lamang ang supportado %d" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" +#, fuzzy +#~ msgid "Only slices with step=1 (aka None) are supported" +#~ msgstr "" +#~ "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" -#: py/vm.c -msgid "byte code not implemented" -msgstr "byte code hindi pa implemented" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Dapat true color (24 bpp o mas mataas) BMP lamang ang supportado %x" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" -msgstr "" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Tanging suportado ang TX sa UART1 (GPIO2)." -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "hindi sinusuportahan ang bytes > 8 bits" +#~ msgid "Oversample must be multiple of 8." +#~ msgstr "Oversample ay dapat multiple ng 8." -#: py/objstr.c -msgid "bytes value out of range" -msgstr "bytes value wala sa sakop" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "Walang PWM support sa pin %d" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "kalibrasion ay wala sa sakop" +#~ msgid "Permission denied" +#~ msgstr "Walang pahintulot" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "pagkakalibrate ay basahin lamang" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Walang kakayahang ADC ang pin %q" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "ang halaga ng pagkakalibrate ay wala sa sakop +/-127" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "Ang pin ay walang kakayahan sa ADC" -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Thumb assembly" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Walang pull support ang Pin(16)" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Xtensa assembly" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Mali ang pins para sa SPI" -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "maaring i-save lamang ang bytecode" +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "Kasama ang kung ano pang modules na sa filesystem\n" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "maaaring i-query lamang ang isang param" +#, fuzzy +#~ msgid "Range out of bounds" +#~ msgstr "wala sa sakop ang address" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "" -"hindi madagdag ang isang espesyal na method sa isang na i-subclass na class" +#~ msgid "Read-only filesystem" +#~ msgstr "Basahin-lamang mode" -#: py/compile.c -msgid "can't assign to expression" -msgstr "hindi ma i-assign sa expression" +#~ msgid "Right channel unsupported" +#~ msgstr "Hindi supportado ang kanang channel" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "hindi ma-convert %s sa complex" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "Kailangan ng pull up resistors ang SDA o SCL" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "hindi ma-convert %s sa int" +#~ msgid "STA must be active" +#~ msgstr "Dapat aktibo ang STA" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "hindi ma-convert %s sa int" +#~ msgid "STA required" +#~ msgstr "STA kailangan" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig" +#~ msgid "Sample rate must be positive" +#~ msgstr "Sample rate ay dapat positibo" -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "hindi ma i-convert NaN sa int" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "Sample rate ay masyadong mataas. Ito ay dapat hindi hiigit sa %d" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "hindi ma i-convert ang address sa INT" +#~ msgid "Serializer in use" +#~ msgstr "Serializer ginagamit" -#: py/objint.c -msgid "can't convert inf to int" -msgstr "hindi ma i-convert inf sa int" +#~ msgid "Splitting with sub-captures" +#~ msgstr "Binibiyak gamit ang sub-captures" -#: py/obj.c -msgid "can't convert to complex" -msgstr "hindi ma-convert sa complex" +#~ msgid "Too many channels in sample." +#~ msgstr "Sobra ang channels sa sample." -#: py/obj.c -msgid "can't convert to float" -msgstr "hindi ma-convert sa float" +#~ msgid "Traceback (most recent call last):\n" +#~ msgstr "Traceback (pinakahuling huling tawag): \n" -#: py/obj.c -msgid "can't convert to int" -msgstr "hindi ma-convert sa int" +#~ msgid "UART(%d) does not exist" +#~ msgstr "Walang UART(%d)" -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "hindi ma i-convert sa string ng walang pahiwatig" +#~ msgid "UART(1) can't read" +#~ msgstr "Hindi mabasa ang UART(1)" -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "hindi madeclare nonlocal sa outer code" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion" -#: py/compile.c -msgid "can't delete expression" -msgstr "hindi mabura ang expression" +#~ msgid "Unable to find free GCLK" +#~ msgstr "Hindi mahanap ang libreng GCLK" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "hindi magawa ang binary op sa gitna ng '%q' at '%q'" +#~ msgid "Unable to init parser" +#~ msgstr "Hindi ma-init ang parser" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "" -"hindi maaaring gawin ang truncated division ng isang kumplikadong numero" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Hindi ma-remount ang filesystem" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "hindi makuha ang AP config" +#, fuzzy +#~ msgid "Unexpected nrfx uuid type" +#~ msgstr "hindi inaasahang indent" -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "hindi makuha ang STA config" +#~ msgid "Unknown type" +#~ msgstr "Hindi alam ang type" -#: py/compile.c -msgid "can't have multiple **x" -msgstr "hindi puede ang maraming **x" +#~ msgid "Unsupported baudrate" +#~ msgstr "Hindi supportadong baudrate" -#: py/compile.c -msgid "can't have multiple *x" -msgstr "hindi puede ang maraming *x" +#~ msgid "Unsupported operation" +#~ msgstr "Hindi sinusuportahang operasyon" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "hindi maaaring ma-convert ang '% qt' sa 'bool'" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Gamitin ang esptool upang burahin ang flash at muling i-upload ang Python" -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "hidi ma i-load galing sa '%q'" +#~ msgid "Viper functions don't currently support more than 4 arguments" +#~ msgstr "" +#~ "Ang mga function ng Viper ay kasalukuyang hindi sumusuporta sa higit sa 4 " +#~ "na argumento" -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "hindi ma i-load gamit ng '%q' na index" +#~ msgid "" +#~ "Welcome to Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Please visit learn.adafruit.com/category/circuitpython for project " +#~ "guides.\n" +#~ "\n" +#~ "To list built-in modules please do `help(\"modules\")`.\n" +#~ msgstr "" +#~ "Mabuhay sa Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Mangyaring bisitahin ang learn.adafruit.com/category/circuitpython para " +#~ "sa project guides.\n" +#~ "\n" +#~ "Para makita ang listahan ng modules, `help(“modules”)`.\n" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "hindi mapadala ang send throw sa isang kaka umpisang generator" +#~ msgid "[addrinfo error %d]" +#~ msgstr "[addrinfo error %d]" -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator" +#~ msgid "__init__() should return None" +#~ msgstr "__init __ () dapat magbalik na None" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "hindi makuha ang AP config" +#~ msgid "__init__() should return None, not '%s'" +#~ msgstr "__init__() dapat magbalink na None, hindi '%s'" -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "hindi makuha ang STA config" +#~ msgid "__new__ arg must be a user-type" +#~ msgstr "__new__ arg ay dapat na user-type" -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "hindi ma i-set ang attribute" +#~ msgid "a bytes-like object is required" +#~ msgstr "a bytes-like object ay kailangan" -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "hindi ma i-store ang '%q'" +#~ msgid "abort() called" +#~ msgstr "abort() tinawag" -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "hindi ma i-store sa '%q'" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "address %08x ay hindi pantay sa %d bytes" -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "hindi ma i-store gamit ng '%q' na index" +#~ msgid "arg is an empty sequence" +#~ msgstr "arg ay walang laman na sequence" -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" -"hindi mapalitan ang awtomatikong field numbering sa manual field " -"specification" +#~ msgid "argument has wrong type" +#~ msgstr "may maling type ang argument" -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" -"hindi mapalitan ang manual field specification sa awtomatikong field " -"numbering" +#~ msgid "argument num/types mismatch" +#~ msgstr "hindi tugma ang argument num/types" -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "hindi magawa '%q' instances" +#~ msgid "argument should be a '%q' not a '%q'" +#~ msgstr "argument ay dapat na '%q' hindi '%q'" -#: py/objtype.c -msgid "cannot create instance" -msgstr "hindi magawa ang instance" +#~ msgid "attributes not supported yet" +#~ msgstr "attributes hindi sinusuportahan" -#: py/runtime.c -msgid "cannot import name %q" -msgstr "hindi ma-import ang name %q" +#~ msgid "bad compile mode" +#~ msgstr "masamang mode ng compile" -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "hindi maaring isagawa ang relative import" +#~ msgid "bad conversion specifier" +#~ msgstr "masamang pag convert na specifier" -#: py/emitnative.c -msgid "casting" -msgstr "casting" +#~ msgid "bad format string" +#~ msgstr "maling format ang string" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" +#~ msgid "bad typecode" +#~ msgstr "masamang typecode" -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "masyadong maliit ang buffer" +#~ msgid "binary op %q not implemented" +#~ msgstr "binary op %q hindi implemented" -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "chr() arg wala sa sakop ng range(0x110000)" +#~ msgid "bits must be 8" +#~ msgstr "bits ay dapat walo (8)" -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "chr() arg wala sa sakop ng range(256)" +#~ msgid "bits_per_sample must be 8 or 16" +#~ msgstr "bits_per_sample ay dapat 8 o 16" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "color buffer ay dapat na 3 bytes (RGB) o 4 bytes (RGB + pad byte)" +#~ msgid "branch not in range" +#~ msgstr "branch wala sa range" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "color buffer ay dapat buffer or int" +#~ msgid "buffer must be a bytes-like object" +#~ msgstr "buffer ay dapat bytes-like object" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "ang color buffer ay dapat bytearray o array na type ‘b’ or ‘B’" +#~ msgid "buffer too long" +#~ msgstr "masyadong mahaba ng buffer" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "color ay dapat mula sa 0x000000 hangang 0xffffff" +#~ msgid "buffers must be the same length" +#~ msgstr "ang buffers ay dapat parehas sa haba" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "color ay dapat na int" +#~ msgid "byte code not implemented" +#~ msgstr "byte code hindi pa implemented" -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "kumplikadong dibisyon sa pamamagitan ng zero" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "hindi sinusuportahan ang bytes > 8 bits" -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "kumplikadong values hindi sinusuportahan" +#~ msgid "bytes value out of range" +#~ msgstr "bytes value wala sa sakop" -#: extmod/moduzlib.c -msgid "compression header" -msgstr "compression header" +#~ msgid "calibration is out of range" +#~ msgstr "kalibrasion ay wala sa sakop" -#: py/parse.c -msgid "constant must be an integer" -msgstr "constant ay dapat na integer" +#~ msgid "calibration is read only" +#~ msgstr "pagkakalibrate ay basahin lamang" -#: py/emitnative.c -msgid "conversion to object" -msgstr "kombersyon to object" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "ang halaga ng pagkakalibrate ay wala sa sakop +/-127" -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "decimal numbers hindi sinusuportahan" +#~ msgid "can only have up to 4 parameters to Thumb assembly" +#~ msgstr "" +#~ "maaari lamang magkaroon ng hanggang 4 na parameter sa Thumb assembly" -#: py/compile.c -msgid "default 'except' must be last" -msgstr "default 'except' ay dapat sa huli" +#~ msgid "can only have up to 4 parameters to Xtensa assembly" +#~ msgstr "" +#~ "maaari lamang magkaroon ng hanggang 4 na parameter sa Xtensa assembly" -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" -"ang destination buffer ay dapat na isang bytearray o array ng uri na 'B' " -"para sa bit_depth = 8" +#~ msgid "can only save bytecode" +#~ msgstr "maaring i-save lamang ang bytecode" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" -"ang destination buffer ay dapat na isang array ng uri 'H' para sa bit_depth " -"= 16" +#~ msgid "can query only one param" +#~ msgstr "maaaring i-query lamang ang isang param" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "ang destination_length ay dapat na isang int >= 0" +#~ msgid "can't add special method to already-subclassed class" +#~ msgstr "" +#~ "hindi madagdag ang isang espesyal na method sa isang na i-subclass na " +#~ "class" -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "may mali sa haba ng dict update sequence" +#~ msgid "can't assign to expression" +#~ msgstr "hindi ma i-assign sa expression" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "dibisyon ng zero" +#~ msgid "can't convert %s to complex" +#~ msgstr "hindi ma-convert %s sa complex" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "pos o kw args ang pinahihintulutan" +#~ msgid "can't convert %s to float" +#~ msgstr "hindi ma-convert %s sa int" -#: py/objdeque.c -msgid "empty" -msgstr "walang laman" +#~ msgid "can't convert %s to int" +#~ msgstr "hindi ma-convert %s sa int" -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "walang laman ang heap" +#~ msgid "can't convert '%q' object to %q implicitly" +#~ msgstr "" +#~ "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig" -#: py/objstr.c -msgid "empty separator" -msgstr "walang laman na separator" +#~ msgid "can't convert NaN to int" +#~ msgstr "hindi ma i-convert NaN sa int" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "walang laman ang sequence" +#~ msgid "can't convert inf to int" +#~ msgstr "hindi ma i-convert inf sa int" -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "sa huli ng format habang naghahanap sa conversion specifier" +#~ msgid "can't convert to complex" +#~ msgstr "hindi ma-convert sa complex" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "end_x should be an int" -msgstr "y ay dapat int" +#~ msgid "can't convert to float" +#~ msgstr "hindi ma-convert sa float" -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "" +#~ msgid "can't convert to int" +#~ msgstr "hindi ma-convert sa int" -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "ang mga exceptions ay dapat makuha mula sa BaseException" +#~ msgid "can't convert to str implicitly" +#~ msgstr "hindi ma i-convert sa string ng walang pahiwatig" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "umaasa ng ':' pagkatapos ng format specifier" +#~ msgid "can't declare nonlocal in outer code" +#~ msgstr "hindi madeclare nonlocal sa outer code" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "umasa ng DigitalInOut" +#~ msgid "can't delete expression" +#~ msgstr "hindi mabura ang expression" -#: py/obj.c -msgid "expected tuple/list" -msgstr "umaasa ng tuple/list" +#~ msgid "can't do binary op between '%q' and '%q'" +#~ msgstr "hindi magawa ang binary op sa gitna ng '%q' at '%q'" -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "umaasa ng dict para sa keyword args" +#~ msgid "can't do truncated division of a complex number" +#~ msgstr "" +#~ "hindi maaaring gawin ang truncated division ng isang kumplikadong numero" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "umaasa ng isang pin" +#~ msgid "can't get AP config" +#~ msgstr "hindi makuha ang AP config" -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "umaasa ng assembler instruction" +#~ msgid "can't get STA config" +#~ msgstr "hindi makuha ang STA config" -#: py/compile.c -msgid "expecting just a value for set" -msgstr "umaasa sa value para sa set" +#~ msgid "can't have multiple **x" +#~ msgstr "hindi puede ang maraming **x" -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "umaasang key: halaga para sa dict" +#~ msgid "can't have multiple *x" +#~ msgstr "hindi puede ang maraming *x" -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "dagdag na keyword argument na ibinigay" +#~ msgid "can't implicitly convert '%q' to 'bool'" +#~ msgstr "hindi maaaring ma-convert ang '% qt' sa 'bool'" -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "dagdag na positional argument na ibinigay" +#~ msgid "can't load from '%q'" +#~ msgstr "hidi ma i-load galing sa '%q'" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" +#~ msgid "can't load with '%q' index" +#~ msgstr "hindi ma i-load gamit ng '%q' na index" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "file ay dapat buksan sa byte mode" +#~ msgid "can't pend throw to just-started generator" +#~ msgstr "hindi mapadala ang send throw sa isang kaka umpisang generator" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "ang filesystem dapat mag bigay ng mount method" +#~ msgid "can't send non-None value to a just-started generator" +#~ msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator" -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "unang argument ng super() ay dapat type" +#~ msgid "can't set AP config" +#~ msgstr "hindi makuha ang AP config" -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "firstbit ay dapat MSB" +#~ msgid "can't set STA config" +#~ msgstr "hindi makuha ang STA config" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "dapat na mas mababa sa 1MB ang lokasyon ng flash" +#~ msgid "can't set attribute" +#~ msgstr "hindi ma i-set ang attribute" -#: py/objint.c -msgid "float too big" -msgstr "masyadong malaki ang float" +#~ msgid "can't store '%q'" +#~ msgstr "hindi ma i-store ang '%q'" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "font ay dapat 2048 bytes ang haba" +#~ msgid "can't store to '%q'" +#~ msgstr "hindi ma i-store sa '%q'" -#: py/objstr.c -msgid "format requires a dict" -msgstr "kailangan ng format ng dict" +#~ msgid "can't store with '%q' index" +#~ msgstr "hindi ma i-store gamit ng '%q' na index" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "ang frequency ay dapat 80Mhz or 160MHz lamang" +#~ msgid "" +#~ "can't switch from automatic field numbering to manual field specification" +#~ msgstr "" +#~ "hindi mapalitan ang awtomatikong field numbering sa manual field " +#~ "specification" -#: py/objdeque.c -msgid "full" -msgstr "puno" +#~ msgid "" +#~ "can't switch from manual field specification to automatic field numbering" +#~ msgstr "" +#~ "hindi mapalitan ang manual field specification sa awtomatikong field " +#~ "numbering" -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "ang function ay hindi kumukuha ng mga argumento ng keyword" +#~ msgid "cannot create '%q' instances" +#~ msgstr "hindi magawa '%q' instances" -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "function na inaasahang %d ang argumento, ngunit %d ang nakuha" +#~ msgid "cannot create instance" +#~ msgstr "hindi magawa ang instance" -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "ang function ay nakakuha ng maraming values para sa argument '%q'" +#~ msgid "cannot import name %q" +#~ msgstr "hindi ma-import ang name %q" -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "function kulang ng %d required na positional arguments" +#~ msgid "cannot perform relative import" +#~ msgstr "hindi maaring isagawa ang relative import" -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "function nangangailangan ng keyword-only argument" +#~ msgid "casting" +#~ msgstr "casting" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "function nangangailangan ng keyword argument '%q'" +#~ msgid "chars buffer too small" +#~ msgstr "masyadong maliit ang buffer" -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "function nangangailangan ng positional argument #%d" +#~ msgid "chr() arg not in range(0x110000)" +#~ msgstr "chr() arg wala sa sakop ng range(0x110000)" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "" -"ang function ay kumuhuha ng %d positional arguments ngunit %d ang ibinigay" +#~ msgid "chr() arg not in range(256)" +#~ msgstr "chr() arg wala sa sakop ng range(256)" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "function kumukuha ng 9 arguments" +#~ msgid "complex division by zero" +#~ msgstr "kumplikadong dibisyon sa pamamagitan ng zero" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "insinasagawa na ng generator" +#~ msgid "complex values not supported" +#~ msgstr "kumplikadong values hindi sinusuportahan" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "hindi pinansin ng generator ang GeneratorExit" +#~ msgid "compression header" +#~ msgstr "compression header" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "graphic ay dapat 2048 bytes ang haba" +#~ msgid "constant must be an integer" +#~ msgstr "constant ay dapat na integer" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "list dapat ang heap" +#~ msgid "conversion to object" +#~ msgstr "kombersyon to object" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "identifier ginawang global" +#~ msgid "decimal numbers not supported" +#~ msgstr "decimal numbers hindi sinusuportahan" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "identifier ginawang nonlocal" +#~ msgid "default 'except' must be last" +#~ msgstr "default 'except' ay dapat sa huli" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "impossibleng baudrate" +#~ msgid "" +#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " +#~ "= 8" +#~ msgstr "" +#~ "ang destination buffer ay dapat na isang bytearray o array ng uri na 'B' " +#~ "para sa bit_depth = 8" -#: py/objstr.c -msgid "incomplete format" -msgstr "hindi kumpleto ang format" +#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +#~ msgstr "" +#~ "ang destination buffer ay dapat na isang array ng uri 'H' para sa " +#~ "bit_depth = 16" -#: py/objstr.c -msgid "incomplete format key" -msgstr "hindi kumpleto ang format key" +#~ msgid "destination_length must be an int >= 0" +#~ msgstr "ang destination_length ay dapat na isang int >= 0" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "mali ang padding" +#~ msgid "dict update sequence has wrong length" +#~ msgstr "may mali sa haba ng dict update sequence" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "index wala sa sakop" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "pos o kw args ang pinahihintulutan" -#: py/obj.c -msgid "indices must be integers" -msgstr "ang mga indeks ay dapat na integer" +#~ msgid "empty" +#~ msgstr "walang laman" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "inline assembler ay dapat na function" +#~ msgid "empty heap" +#~ msgstr "walang laman ang heap" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "int() arg 2 ay dapat >=2 at <= 36" +#~ msgid "empty separator" +#~ msgstr "walang laman na separator" -#: py/objstr.c -msgid "integer required" -msgstr "kailangan ng int" +#~ msgid "end of format while looking for conversion specifier" +#~ msgstr "sa huli ng format habang naghahanap sa conversion specifier" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" +#~ msgid "exceptions must derive from BaseException" +#~ msgstr "ang mga exceptions ay dapat makuha mula sa BaseException" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "maling I2C peripheral" +#~ msgid "expected ':' after format specifier" +#~ msgstr "umaasa ng ':' pagkatapos ng format specifier" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "hindi wastong SPI peripheral" +#~ msgid "expected tuple/list" +#~ msgstr "umaasa ng tuple/list" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "mali ang alarm" +#~ msgid "expecting a dict for keyword args" +#~ msgstr "umaasa ng dict para sa keyword args" -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "mali ang mga argumento" +#~ msgid "expecting a pin" +#~ msgstr "umaasa ng isang pin" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "mali ang buffer length" +#~ msgid "expecting an assembler instruction" +#~ msgstr "umaasa ng assembler instruction" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "mali ang cert" +#~ msgid "expecting just a value for set" +#~ msgstr "umaasa sa value para sa set" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "mali ang data bits" +#~ msgid "expecting key:value for dict" +#~ msgstr "umaasang key: halaga para sa dict" -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "mali ang dupterm index" +#~ msgid "extra keyword arguments given" +#~ msgstr "dagdag na keyword argument na ibinigay" -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "hindi wastong pag-format" +#~ msgid "extra positional arguments given" +#~ msgstr "dagdag na positional argument na ibinigay" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "mali ang format specifier" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "mali ang key" +#~ msgid "first argument to super() must be type" +#~ msgstr "unang argument ng super() ay dapat type" -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "mali ang micropython decorator" +#~ msgid "firstbit must be MSB" +#~ msgstr "firstbit ay dapat MSB" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "mali ang pin" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "dapat na mas mababa sa 1MB ang lokasyon ng flash" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "mali ang step" +#~ msgid "float too big" +#~ msgstr "masyadong malaki ang float" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "mali ang stop bits" +#~ msgid "font must be 2048 bytes long" +#~ msgstr "font ay dapat 2048 bytes ang haba" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "mali ang sintaks" +#~ msgid "format requires a dict" +#~ msgstr "kailangan ng format ng dict" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "maling sintaks sa integer" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "ang frequency ay dapat 80Mhz or 160MHz lamang" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "maling sintaks sa integer na may base %d" +#~ msgid "full" +#~ msgstr "puno" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "maling sintaks sa number" +#~ msgid "function does not take keyword arguments" +#~ msgstr "ang function ay hindi kumukuha ng mga argumento ng keyword" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "issubclass() arg 1 ay dapat na class" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "function na inaasahang %d ang argumento, ngunit %d ang nakuha" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "issubclass() arg 2 ay dapat na class o tuple ng classes" +#~ msgid "function got multiple values for argument '%q'" +#~ msgstr "ang function ay nakakuha ng maraming values para sa argument '%q'" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" -"join umaaasang may listahan ng str/bytes objects na naalinsunod sa self " -"object" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "function kulang ng %d required na positional arguments" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" -"kindi pa ipinapatupad ang (mga) argument(s) ng keyword - gumamit ng normal " -"args" +#~ msgid "function missing keyword-only argument" +#~ msgstr "function nangangailangan ng keyword-only argument" -#: py/bc.c -msgid "keywords must be strings" -msgstr "ang keywords dapat strings" +#~ msgid "function missing required keyword argument '%q'" +#~ msgstr "function nangangailangan ng keyword argument '%q'" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "label '%d' kailangan na i-define" +#~ msgid "function missing required positional argument #%d" +#~ msgstr "function nangangailangan ng positional argument #%d" -#: py/compile.c -msgid "label redefined" -msgstr "ang label ay na-define ulit" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "" +#~ "ang function ay kumuhuha ng %d positional arguments ngunit %d ang ibinigay" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len ay dapat multiple ng 4" +#~ msgid "generator already executing" +#~ msgstr "insinasagawa na ng generator" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "length argument ay walang pahintulot sa ganitong type" +#~ msgid "generator ignored GeneratorExit" +#~ msgstr "hindi pinansin ng generator ang GeneratorExit" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "lhs at rhs ay dapat magkasundo" +#~ msgid "graphic must be 2048 bytes long" +#~ msgstr "graphic ay dapat 2048 bytes ang haba" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "local '%q' ay may type '%q' pero ang source ay '%q'" +#~ msgid "heap must be a list" +#~ msgstr "list dapat ang heap" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "local '%q' ginamit bago alam ang type" +#~ msgid "identifier redefined as global" +#~ msgstr "identifier ginawang global" -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "local variable na reference bago na i-assign" +#~ msgid "identifier redefined as nonlocal" +#~ msgstr "identifier ginawang nonlocal" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "long int hindi sinusuportahan sa build na ito" +#~ msgid "impossible baudrate" +#~ msgstr "impossibleng baudrate" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "masyadong maliit ang buffer map" +#~ msgid "incomplete format" +#~ msgstr "hindi kumpleto ang format" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "may pagkakamali sa math domain" +#~ msgid "incomplete format key" +#~ msgstr "hindi kumpleto ang format key" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "lumagpas ang maximum recursion depth" +#~ msgid "incorrect padding" +#~ msgstr "mali ang padding" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "nabigo ang paglalaan ng memorya, paglalaan ng %u bytes" +#~ msgid "index out of range" +#~ msgstr "index wala sa sakop" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"nabigo ang paglalaan ng memorya, naglalaan ng %u bytes para sa native code" +#~ msgid "indices must be integers" +#~ msgstr "ang mga indeks ay dapat na integer" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock" +#~ msgid "inline assembler must be a function" +#~ msgstr "inline assembler ay dapat na function" -#: py/builtinimport.c -msgid "module not found" -msgstr "module hindi nakita" +#~ msgid "int() arg 2 must be >= 2 and <= 36" +#~ msgstr "int() arg 2 ay dapat >=2 at <= 36" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "maramihang *x sa assignment" +#~ msgid "integer required" +#~ msgstr "kailangan ng int" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "maraming bases ay may instance lay-out conflict" +#~ msgid "invalid I2C peripheral" +#~ msgstr "maling I2C peripheral" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "maraming inhertance hindi sinusuportahan" +#~ msgid "invalid SPI peripheral" +#~ msgstr "hindi wastong SPI peripheral" -#: py/emitnative.c -msgid "must raise an object" -msgstr "dapat itaas ang isang object" +#~ msgid "invalid alarm" +#~ msgstr "mali ang alarm" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "dapat tukuyin lahat ng SCK/MOSI/MISO" +#~ msgid "invalid arguments" +#~ msgstr "mali ang mga argumento" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "dapat gumamit ng keyword argument para sa key function" +#~ msgid "invalid buffer length" +#~ msgstr "mali ang buffer length" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "name '%q' ay hindi defined" +#~ msgid "invalid cert" +#~ msgstr "mali ang cert" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "ang keywords dapat strings" +#~ msgid "invalid data bits" +#~ msgstr "mali ang data bits" -#: py/runtime.c -msgid "name not defined" -msgstr "name hindi na define" +#~ msgid "invalid dupterm index" +#~ msgstr "mali ang dupterm index" -#: py/compile.c -msgid "name reused for argument" -msgstr "name muling ginamit para sa argument" +#~ msgid "invalid format" +#~ msgstr "hindi wastong pag-format" -#: py/emitnative.c -msgid "native yield" -msgstr "native yield" +#~ msgid "invalid format specifier" +#~ msgstr "mali ang format specifier" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "kailangan ng higit sa %d na halaga upang i-unpack" +#~ msgid "invalid key" +#~ msgstr "mali ang key" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "negatibong power na walang float support" +#~ msgid "invalid micropython decorator" +#~ msgstr "mali ang micropython decorator" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "negative shift count" +#~ msgid "invalid pin" +#~ msgstr "mali ang pin" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "walang aktibong exception para i-reraise" +#~ msgid "invalid stop bits" +#~ msgstr "mali ang stop bits" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "walang magagamit na NIC" +#~ msgid "invalid syntax" +#~ msgstr "mali ang sintaks" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "no binding para sa nonlocal, nahanap" +#~ msgid "invalid syntax for integer" +#~ msgstr "maling sintaks sa integer" -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "walang module na '%q'" +#~ msgid "invalid syntax for integer with base %d" +#~ msgstr "maling sintaks sa integer na may base %d" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "walang ganoon na attribute" +#~ msgid "invalid syntax for number" +#~ msgstr "maling sintaks sa number" -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "non-default argument sumusunod sa default argument" +#~ msgid "issubclass() arg 1 must be a class" +#~ msgstr "issubclass() arg 1 ay dapat na class" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "non-hex digit nahanap" +#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" +#~ msgstr "issubclass() arg 2 ay dapat na class o tuple ng classes" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "non-keyword arg sa huli ng */**" +#~ msgid "join expects a list of str/bytes objects consistent with self object" +#~ msgstr "" +#~ "join umaaasang may listahan ng str/bytes objects na naalinsunod sa self " +#~ "object" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "non-keyword arg sa huli ng keyword arg" +#~ msgid "keyword argument(s) not yet implemented - use normal args instead" +#~ msgstr "" +#~ "kindi pa ipinapatupad ang (mga) argument(s) ng keyword - gumamit ng " +#~ "normal args" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#~ msgid "keywords must be strings" +#~ msgstr "ang keywords dapat strings" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "hindi tamang ADC Channel: %d" +#~ msgid "label '%q' not defined" +#~ msgstr "label '%d' kailangan na i-define" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "hindi lahat ng arguments na i-convert habang string formatting" +#~ msgid "label redefined" +#~ msgstr "ang label ay na-define ulit" -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "kulang sa arguments para sa format string" +#~ msgid "len must be multiple of 4" +#~ msgstr "len ay dapat multiple ng 4" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "object '%s' ay hindi tuple o list" +#~ msgid "length argument not allowed for this type" +#~ msgstr "length argument ay walang pahintulot sa ganitong type" -#: py/obj.c -msgid "object does not support item assignment" -msgstr "ang object na '%s' ay hindi maaaring i-subscript" +#~ msgid "lhs and rhs should be compatible" +#~ msgstr "lhs at rhs ay dapat magkasundo" -#: py/obj.c -msgid "object does not support item deletion" -msgstr "ang object ay hindi sumusuporta sa pagbura ng item" +#~ msgid "local '%q' has type '%q' but source is '%q'" +#~ msgstr "local '%q' ay may type '%q' pero ang source ay '%q'" -#: py/obj.c -msgid "object has no len" -msgstr "object walang len" +#~ msgid "local '%q' used before type known" +#~ msgstr "local '%q' ginamit bago alam ang type" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "ang bagay ay hindi maaaring ma-subscript" +#~ msgid "local variable referenced before assignment" +#~ msgstr "local variable na reference bago na i-assign" -#: py/runtime.c -msgid "object not an iterator" -msgstr "object ay hindi iterator" +#~ msgid "long int not supported in this build" +#~ msgstr "long int hindi sinusuportahan sa build na ito" -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "hindi matatawag ang object" +#~ msgid "map buffer too small" +#~ msgstr "masyadong maliit ang buffer map" -#: py/sequence.c -msgid "object not in sequence" -msgstr "object wala sa sequence" +#~ msgid "maximum recursion depth exceeded" +#~ msgstr "lumagpas ang maximum recursion depth" -#: py/runtime.c -msgid "object not iterable" -msgstr "object hindi ma i-iterable" +#~ msgid "memory allocation failed, allocating %u bytes" +#~ msgstr "nabigo ang paglalaan ng memorya, paglalaan ng %u bytes" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "object na type '%s' walang len()" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "nabigo ang paglalaan ng memorya, naglalaan ng %u bytes para sa native code" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "object na may buffer protocol kinakailangan" +#~ msgid "memory allocation failed, heap is locked" +#~ msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "odd-length string" +#~ msgid "module not found" +#~ msgstr "module hindi nakita" -#: py/objstrunicode.c py/objstr.c -#, fuzzy -msgid "offset out of bounds" -msgstr "wala sa sakop ang address" +#~ msgid "multiple *x in assignment" +#~ msgstr "maramihang *x sa assignment" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" +#~ msgid "multiple bases have instance lay-out conflict" +#~ msgstr "maraming bases ay may instance lay-out conflict" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "ord umaasa ng character" +#~ msgid "multiple inheritance not supported" +#~ msgstr "maraming inhertance hindi sinusuportahan" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "ord() umaasa ng character pero string ng %d haba ang nakita" +#~ msgid "must raise an object" +#~ msgstr "dapat itaas ang isang object" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "overflow nagcoconvert ng long int sa machine word" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "dapat tukuyin lahat ng SCK/MOSI/MISO" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "ang palette ay dapat 32 bytes ang haba" +#~ msgid "must use keyword argument for key function" +#~ msgstr "dapat gumamit ng keyword argument para sa key function" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "palette_index ay dapat na int" +#~ msgid "name '%q' is not defined" +#~ msgstr "name '%q' ay hindi defined" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "parameter annotation ay dapat na identifier" +#~ msgid "name not defined" +#~ msgstr "name hindi na define" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence a2 hanggang a5" +#~ msgid "name reused for argument" +#~ msgstr "name muling ginamit para sa argument" -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" -msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence r0 hanggang r3" +#~ msgid "native yield" +#~ msgstr "native yield" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "walang IRQ capabilities ang pin" +#~ msgid "need more than %d values to unpack" +#~ msgstr "kailangan ng higit sa %d na halaga upang i-unpack" -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "wala sa sakop ang address" +#~ msgid "negative power with no float support" +#~ msgstr "negatibong power na walang float support" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#~ msgid "negative shift count" +#~ msgstr "negative shift count" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter" +#~ msgid "no active exception to reraise" +#~ msgstr "walang aktibong exception para i-reraise" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "pop mula sa walang laman na PulseIn" +#~ msgid "no binding for nonlocal found" +#~ msgstr "no binding para sa nonlocal, nahanap" -#: py/objset.c -msgid "pop from an empty set" -msgstr "pop sa walang laman na set" +#~ msgid "no module named '%q'" +#~ msgstr "walang module na '%q'" -#: py/objlist.c -msgid "pop from empty list" -msgstr "pop galing sa walang laman na list" +#~ msgid "no such attribute" +#~ msgstr "walang ganoon na attribute" -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "popitem(): dictionary ay walang laman" +#~ msgid "non-default argument follows default argument" +#~ msgstr "non-default argument sumusunod sa default argument" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "pow() 3rd argument ay hindi maaring 0" +#~ msgid "non-hex digit found" +#~ msgstr "non-hex digit nahanap" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "pow() na may 3 argumento kailangan ng integers" +#~ msgid "non-keyword arg after */**" +#~ msgstr "non-keyword arg sa huli ng */**" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "puno na ang pila (overflow)" +#~ msgid "non-keyword arg after keyword arg" +#~ msgstr "non-keyword arg sa huli ng keyword arg" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "hindi tamang ADC Channel: %d" -#: shared-bindings/_pixelbuf/__init__.c -#, fuzzy -msgid "readonly attribute" -msgstr "hindi mabasa ang attribute" +#~ msgid "not all arguments converted during string formatting" +#~ msgstr "hindi lahat ng arguments na i-convert habang string formatting" -#: py/builtinimport.c -msgid "relative import" -msgstr "relative import" +#~ msgid "not enough arguments for format string" +#~ msgstr "kulang sa arguments para sa format string" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "hiniling ang haba %d ngunit may haba ang object na %d" +#~ msgid "object '%s' is not a tuple or list" +#~ msgstr "object '%s' ay hindi tuple o list" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "return annotation ay dapat na identifier" +#~ msgid "object does not support item assignment" +#~ msgstr "ang object na '%s' ay hindi maaaring i-subscript" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "return umasa ng '%q' pero ang nakuha ay ‘%q’" +#~ msgid "object does not support item deletion" +#~ msgstr "ang object ay hindi sumusuporta sa pagbura ng item" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "row ay dapat packed at ang word nakahanay" +#~ msgid "object has no len" +#~ msgstr "object walang len" -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "rsplit(None,n)" +#~ msgid "object is not subscriptable" +#~ msgstr "ang bagay ay hindi maaaring ma-subscript" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" -"ang sample_source buffer ay dapat na isang bytearray o array ng uri na 'h', " -"'H', 'b' o'B'" +#~ msgid "object not an iterator" +#~ msgstr "object ay hindi iterator" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "pagpili ng rate wala sa sakop" +#~ msgid "object not callable" +#~ msgstr "hindi matatawag ang object" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "nabigo ang pag-scan" +#~ msgid "object not in sequence" +#~ msgstr "object wala sa sequence" -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "puno na ang schedule stack" +#~ msgid "object not iterable" +#~ msgstr "object hindi ma i-iterable" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "script kompilasyon hindi supportado" +#~ msgid "object of type '%s' has no len()" +#~ msgstr "object na type '%s' walang len()" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#~ msgid "object with buffer protocol required" +#~ msgstr "object na may buffer protocol kinakailangan" -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "sign hindi maaring string format specifier" +#~ msgid "odd-length string" +#~ msgstr "odd-length string" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "sign hindi maari sa integer format specifier 'c'" +#, fuzzy +#~ msgid "offset out of bounds" +#~ msgstr "wala sa sakop ang address" -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "isang '}' nasalubong sa format string" +#~ msgid "ord expects a character" +#~ msgstr "ord umaasa ng character" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "sleep length ay dapat hindi negatibo" +#~ msgid "ord() expected a character, but string of length %d found" +#~ msgstr "ord() umaasa ng character pero string ng %d haba ang nakita" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "slice step ay hindi puedeng 0" +#~ msgid "overflow converting long int to machine word" +#~ msgstr "overflow nagcoconvert ng long int sa machine word" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "small int overflow" +#~ msgid "palette must be 32 bytes long" +#~ msgstr "ang palette ay dapat 32 bytes ang haba" -#: main.c -msgid "soft reboot\n" -msgstr "malambot na reboot\n" +#~ msgid "parameter annotation must be an identifier" +#~ msgstr "parameter annotation ay dapat na identifier" -#: py/objstr.c -msgid "start/end indices" -msgstr "start/end indeks" +#~ msgid "parameters must be registers in sequence a2 to a5" +#~ msgstr "" +#~ "ang mga parameter ay dapat na nagrerehistro sa sequence a2 hanggang a5" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y ay dapat int" +#~ msgid "parameters must be registers in sequence r0 to r3" +#~ msgstr "" +#~ "ang mga parameter ay dapat na nagrerehistro sa sequence r0 hanggang r3" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "step ay dapat hindi zero" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "walang IRQ capabilities ang pin" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop dapat 1 o 2" +#~ msgid "pop from an empty PulseIn" +#~ msgstr "pop mula sa walang laman na PulseIn" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop hindi maabot sa simula" +#~ msgid "pop from an empty set" +#~ msgstr "pop sa walang laman na set" -#: py/stream.c -msgid "stream operation not supported" -msgstr "stream operation hindi sinusuportahan" +#~ msgid "pop from empty list" +#~ msgstr "pop galing sa walang laman na list" -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "indeks ng string wala sa sakop" +#~ msgid "popitem(): dictionary is empty" +#~ msgstr "popitem(): dictionary ay walang laman" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "ang indeks ng string ay dapat na integer, hindi %s" +#~ msgid "position must be 2-tuple" +#~ msgstr "position ay dapat 2-tuple" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "string hindi supportado; gumamit ng bytes o kaya bytearray" +#~ msgid "pow() 3rd argument cannot be 0" +#~ msgstr "pow() 3rd argument ay hindi maaring 0" -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: hindi ma-index" +#~ msgid "pow() with 3 arguments requires integers" +#~ msgstr "pow() na may 3 argumento kailangan ng integers" -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: index hindi maabot" +#~ msgid "queue overflow" +#~ msgstr "puno na ang pila (overflow)" -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: walang fields" +#, fuzzy +#~ msgid "readonly attribute" +#~ msgstr "hindi mabasa ang attribute" -#: py/objstr.c -msgid "substring not found" -msgstr "substring hindi nahanap" +#~ msgid "relative import" +#~ msgstr "relative import" -#: py/compile.c -msgid "super() can't find self" -msgstr "super() hindi mahanap ang sarili" +#~ msgid "requested length %d but object has length %d" +#~ msgstr "hiniling ang haba %d ngunit may haba ang object na %d" -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "sintaks error sa JSON" +#~ msgid "return annotation must be an identifier" +#~ msgstr "return annotation ay dapat na identifier" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "may pagkakamali sa sintaks sa uctypes descriptor" +#~ msgid "return expected '%q' but got '%q'" +#~ msgstr "return umasa ng '%q' pero ang nakuha ay ‘%q’" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "ang threshold ay dapat sa range 0-65536" +#~ msgid "rsplit(None,n)" +#~ msgstr "rsplit(None,n)" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#~ msgid "" +#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " +#~ "or 'B'" +#~ msgstr "" +#~ "ang sample_source buffer ay dapat na isang bytearray o array ng uri na " +#~ "'h', 'H', 'b' o'B'" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "time.struct_time() kumukuha ng 9-sequence" +#~ msgid "sampling rate out of range" +#~ msgstr "pagpili ng rate wala sa sakop" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() kumukuha ng 1 argument" +#~ msgid "scan failed" +#~ msgstr "nabigo ang pag-scan" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "timeout >100 (units ay seconds, hindi na msecs)" +#~ msgid "schedule stack full" +#~ msgstr "puno na ang schedule stack" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits ay dapat walo (8)" +#~ msgid "script compilation not supported" +#~ msgstr "script kompilasyon hindi supportado" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "wala sa sakop ng timestamp ang platform time_t" +#~ msgid "sign not allowed in string format specifier" +#~ msgstr "sign hindi maaring string format specifier" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "masyadong maraming argumento" +#~ msgid "sign not allowed with integer format specifier 'c'" +#~ msgstr "sign hindi maari sa integer format specifier 'c'" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "masyadong maraming mga argumento na ibinigay sa ibinigay na format" +#~ msgid "single '}' encountered in format string" +#~ msgstr "isang '}' nasalubong sa format string" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "masyadong maraming values para i-unpact (umaasa ng %d)" +#~ msgid "slice step cannot be zero" +#~ msgstr "slice step ay hindi puedeng 0" -#: py/objstr.c -msgid "tuple index out of range" -msgstr "indeks ng tuple wala sa sakop" +#~ msgid "small int overflow" +#~ msgstr "small int overflow" -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "mali ang haba ng tuple/list" +#~ msgid "start/end indices" +#~ msgstr "start/end indeks" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "stream operation not supported" +#~ msgstr "stream operation hindi sinusuportahan" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "tx at rx hindi pwedeng parehas na None" +#~ msgid "string index out of range" +#~ msgstr "indeks ng string wala sa sakop" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "hindi maari ang type na '%q' para sa base type" +#~ msgid "string indices must be integers, not %s" +#~ msgstr "ang indeks ng string ay dapat na integer, hindi %s" -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "hindi puede ang type para sa base type" +#~ msgid "string not supported; use bytes or bytearray" +#~ msgstr "string hindi supportado; gumamit ng bytes o kaya bytearray" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "type object '%q' ay walang attribute '%q'" +#~ msgid "struct: cannot index" +#~ msgstr "struct: hindi ma-index" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "type kumuhuha ng 1 o 3 arguments" +#~ msgid "struct: index out of range" +#~ msgstr "struct: index hindi maabot" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "ulonglong masyadong malaki" +#~ msgid "struct: no fields" +#~ msgstr "struct: walang fields" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "unary op %q hindi implemented" +#~ msgid "substring not found" +#~ msgstr "substring hindi nahanap" -#: py/parse.c -msgid "unexpected indent" -msgstr "hindi inaasahang indent" +#~ msgid "super() can't find self" +#~ msgstr "super() hindi mahanap ang sarili" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "hindi inaasahang argumento ng keyword" +#~ msgid "syntax error in JSON" +#~ msgstr "sintaks error sa JSON" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "hindi inaasahang argumento ng keyword na '%q'" +#~ msgid "syntax error in uctypes descriptor" +#~ msgstr "may pagkakamali sa sintaks sa uctypes descriptor" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "unicode name escapes" +#~ msgid "too many values to unpack (expected %d)" +#~ msgstr "masyadong maraming values para i-unpact (umaasa ng %d)" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "unindent hindi tugma sa indentation level sa labas" +#~ msgid "tuple index out of range" +#~ msgstr "indeks ng tuple wala sa sakop" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "hindi alam na config param" +#~ msgid "tuple/list has wrong length" +#~ msgstr "mali ang haba ng tuple/list" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "hindi alam ang conversion specifier na %c" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "tx at rx hindi pwedeng parehas na None" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "hindi alam ang format code '%c' para sa object na ang type ay '%s'" +#~ msgid "type '%q' is not an acceptable base type" +#~ msgstr "hindi maari ang type na '%q' para sa base type" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "hindi alam ang format code '%c' sa object na ang type ay 'float'" +#~ msgid "type is not an acceptable base type" +#~ msgstr "hindi puede ang type para sa base type" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "hindi alam ang format ng code na '%c' para sa object ng type ay 'str'" +#~ msgid "type object '%q' has no attribute '%q'" +#~ msgstr "type object '%q' ay walang attribute '%q'" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "hindi alam na status param" +#~ msgid "type takes 1 or 3 arguments" +#~ msgstr "type kumuhuha ng 1 o 3 arguments" -#: py/compile.c -msgid "unknown type" -msgstr "hindi malaman ang type (unknown type)" +#~ msgid "ulonglong too large" +#~ msgstr "ulonglong masyadong malaki" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "hindi malaman ang type '%q'" +#~ msgid "unary op %q not implemented" +#~ msgstr "unary op %q hindi implemented" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "hindi tugma ang '{' sa format" +#~ msgid "unexpected indent" +#~ msgstr "hindi inaasahang indent" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "hindi mabasa ang attribute" +#~ msgid "unexpected keyword argument" +#~ msgstr "hindi inaasahang argumento ng keyword" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "hindi sinusuportahan ang thumb instruktion '%s' sa %d argumento" +#~ msgid "unexpected keyword argument '%q'" +#~ msgstr "hindi inaasahang argumento ng keyword na '%q'" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "hindi sinusuportahan ang instruction ng Xtensa '%s' sa %d argumento" +#~ msgid "unicode name escapes" +#~ msgstr "unicode name escapes" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "Hindi supportadong tipo ng bitmap" +#~ msgid "unindent does not match any outer indentation level" +#~ msgstr "unindent hindi tugma sa indentation level sa labas" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "hindi sinusuportahan ang format character na '%c' (0x%x) sa index %d" +#~ msgid "unknown config param" +#~ msgstr "hindi alam na config param" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "hindi sinusuportahang type para sa %q: '%s'" +#~ msgid "unknown conversion specifier %c" +#~ msgstr "hindi alam ang conversion specifier na %c" -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "hindi sinusuportahang type para sa operator" +#~ msgid "unknown format code '%c' for object of type '%s'" +#~ msgstr "hindi alam ang format code '%c' para sa object na ang type ay '%s'" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "hindi sinusuportahang type para sa %q: '%s', '%s'" +#~ msgid "unknown format code '%c' for object of type 'float'" +#~ msgstr "hindi alam ang format code '%c' sa object na ang type ay 'float'" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" +#~ msgid "unknown format code '%c' for object of type 'str'" +#~ msgstr "" +#~ "hindi alam ang format ng code na '%c' para sa object ng type ay 'str'" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "nabigo ang wifi_set_ip_info()" +#~ msgid "unknown status param" +#~ msgstr "hindi alam na status param" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "" +#~ msgid "unknown type" +#~ msgstr "hindi malaman ang type (unknown type)" -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "mali ang bilang ng argumento" +#~ msgid "unknown type '%q'" +#~ msgstr "hindi malaman ang type '%q'" -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "maling number ng value na i-unpack" +#~ msgid "unmatched '{' in format" +#~ msgstr "hindi tugma ang '{' sa format" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "x value out of bounds" -msgstr "wala sa sakop ang address" +#~ msgid "unreadable attribute" +#~ msgstr "hindi mabasa ang attribute" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y ay dapat int" +#~ msgid "unsupported Thumb instruction '%s' with %d arguments" +#~ msgstr "hindi sinusuportahan ang thumb instruktion '%s' sa %d argumento" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "wala sa sakop ang address" +#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" +#~ msgstr "hindi sinusuportahan ang instruction ng Xtensa '%s' sa %d argumento" -#: py/objrange.c -msgid "zero step" -msgstr "zero step" +#~ msgid "unsupported format character '%c' (0x%x) at index %d" +#~ msgstr "" +#~ "hindi sinusuportahan ang format character na '%c' (0x%x) sa index %d" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Hindi mabalitaan ang attribute value, status: 0x%08lX" +#~ msgid "unsupported type for %q: '%s'" +#~ msgstr "hindi sinusuportahang type para sa %q: '%s'" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" +#~ msgid "unsupported type for operator" +#~ msgstr "hindi sinusuportahang type para sa operator" -#~ msgid "Function requires lock." -#~ msgstr "Kailangan ng lock ang function." +#~ msgid "unsupported types for %q: '%s', '%s'" +#~ msgstr "hindi sinusuportahang type para sa %q: '%s', '%s'" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Tanging Windows format, uncompressed BMP lamang ang supportado %d" +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "nabigo ang wifi_set_ip_info()" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Dapat true color (24 bpp o mas mataas) BMP lamang ang supportado %x" +#~ msgid "wrong number of arguments" +#~ msgstr "mali ang bilang ng argumento" -#~ msgid "position must be 2-tuple" -#~ msgstr "position ay dapat 2-tuple" +#~ msgid "wrong number of values to unpack" +#~ msgstr "maling number ng value na i-unpack" + +#~ msgid "zero step" +#~ msgstr "zero step" diff --git a/locale/fr.po b/locale/fr.po index 7918f0f71..9e4d135e9 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-25 19:40+0100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-12-23 20:05+0100\n" "Last-Translator: Pierrick Couturier \n" "Language-Team: fr\n" @@ -22,37 +22,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr " Fichier \"%q\"" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr " Fichier \"%q\", ligne %d" - #: main.c msgid " output:\n" msgstr " sortie:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "%%c nécessite un entier int ou un caractère char" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q utilisé" -#: py/obj.c -msgid "%q index out of range" -msgstr "index %q hors gamme" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "les indices %q doivent être des entiers, pas %s" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "les slices de tampon doivent être de longueurs égales" @@ -62,166 +41,10 @@ msgstr "les slices de tampon doivent être de longueurs égales" msgid "%q should be an int" msgstr "y doit être un entier (int)" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "%q() prend %d arguments mais %d ont été donnés" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "'%q' argument requis" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "'%s' attend un label" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "'%s' attend un registre" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects a special register" -msgstr "'%s' attend un registre special" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects an FPU register" -msgstr "'%s' attend un registre FPU" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "'%s' attend une adresse de la forme [a, b]" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "'%s' attend un entier" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects at most r%d" -msgstr "'%s' attend un registre" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "'%s' attend {r0, r1, ...}" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "'%s' l'entier %d n'est pas dans la gamme %d..%d" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "'%s' l'entier 0x%x ne correspond pas au masque 0x%x" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "l'objet '%s' ne supporte pas l'assignation d'éléments" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "l'objet '%s' ne supporte pas la suppression d'éléments" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "l'objet '%s' n'a pas d'attribut '%q'" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "l'objet '%s' n'est pas un itérateur" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "objet '%s' non appelable" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "objet '%s' non itérable" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "l'objet '%s' n'est pas sous-scriptable" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "'=' alignement non autorisé dans la spéc. de format de chaîne" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' et 'O' ne sont pas des types de format supportés" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "'align' nécessite 1 argument" - -#: py/compile.c -msgid "'await' outside function" -msgstr "'await' en dehors d'une fonction" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "'break' en dehors d'une boucle" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "'continue' en dehors d'une boucle" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "'data' nécessite au moins 2 arguments" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "'data' nécessite des arguments entiers" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "'label' nécessite 1 argument" - -#: py/compile.c -msgid "'return' outside function" -msgstr "'return' en dehors d'une fonction" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "'yield' en dehors d'une fonction" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "*x doit être la cible de l'assignement" - -#: py/obj.c -msgid ", in %q\n" -msgstr ", dans %q\n" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "0.0 à une puissance complexe" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "pow() avec 3 arguments non supporté" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Un canal d'interruptions est déjà utilisé" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "'AP' requis" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -232,58 +55,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "la palette doit être longue de 32 octets" -#: ports/nrf/common-hal/busio/I2C.c -#, fuzzy -msgid "All I2C peripherals are in use" -msgstr "Tous les périphériques I2C sont utilisés" - -#: ports/nrf/common-hal/busio/SPI.c -#, fuzzy -msgid "All SPI peripherals are in use" -msgstr "Tous les périphériques SPI sont utilisés" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "All UART peripherals are in use" -msgstr "Tous les périphériques I2C sont utilisés" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Tous les canaux d'événements sont utilisés" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "Tous les canaux d'événements de synchro sont utilisés" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Tous les timers pour cette broche sont utilisés" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Tous les timers sont utilisés" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "AnalogOut non supporté" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "" -"AnalogOut est seulement 16 bits. Les valeurs doivent être inf. à 65536." - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "AnalogOut n'est pas supporté sur la broche indiquée" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Un autre envoi est déjà actif" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "Le tableau doit contenir des halfwords (type 'H')" @@ -308,18 +87,6 @@ msgstr "" "Auto-chargement activé. Copiez simplement les fichiers en USB pour les " "lancer ou entrez sur REPL pour le désactiver.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "'bit clock' et 'word select' doivent partager une horloge" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "La profondeur de bit doit être un multiple de 8." - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Les deux entrées doivent supporter les interruptions" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "La luminosité doit être entre 0 et 255" @@ -337,12 +104,6 @@ msgstr "Tampon de taille incorrect. Devrait être de %d octets." msgid "Buffer must be at least length 1" msgstr "Le tampon doit être de longueur au moins 1" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy, c-format -msgid "Bus pin %d is already in use" -msgstr "DAC déjà utilisé" - #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -352,15 +113,6 @@ msgstr "le tampon doit être un objet bytes-like" msgid "Bytes must be between 0 and 255." msgstr "Les octets 'bytes' doivent être entre 0 et 255" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "Impossible d'ajouter des service en mode Central" @@ -377,74 +129,26 @@ msgstr "Modification du nom impossible en mode Central" msgid "Can't connect in Peripheral mode" msgstr "Impossible de se connecter en mode Peripheral" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Impossible de se connecter à 'AP'" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Impossible de supprimer les valeurs" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Impossible de se déconnecter de 'AP'" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "Ne peux être tiré ('pull') en mode 'output'" - -#: ports/nrf/common-hal/microcontroller/Processor.c -#, fuzzy -msgid "Cannot get temperature" -msgstr "Impossible de lire la température. status: 0x%02x" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "Les 2 canaux de sortie ne peuvent être sur la même broche" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Impossible de lire sans broche MISO." -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "Impossible d'enregistrer vers un fichier" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "'/' ne peut être remonté quand l'USB est actif." -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" -"Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader." - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Impossible de configurer STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Impossible d'affecter une valeur quand la direction est 'input'." -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "On ne peut faire de subclass de slice" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Pas de transfert sans broches MOSI et MISO" -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "Impossible d'obtenir la taille du scalaire sans ambigüité" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "le status i/f ne peut être mis à jour" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Impossible d'écrire sans broche MOSI." @@ -453,10 +157,6 @@ msgstr "Impossible d'écrire sans broche MOSI." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -469,28 +169,15 @@ msgstr "Echec de l'init. de la broche d'horloge" msgid "Clock stretch too long" msgstr "Période de l'horloge trop longue" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Horloge en cours d'utilisation" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Les octets 'bytes' doivent être entre 0 et 255" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "L'UART n'a pu être initialisé" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Impossible d'allouer le 1er tampon" @@ -503,68 +190,21 @@ msgstr "Impossible d'allouer le 2e tampon" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "DAC déjà utilisé" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy -msgid "Data 0 pin must be byte aligned" -msgstr "le graphic doit être long de 2048 octets" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "Un bloc de données doit suivre un bloc de format" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -msgid "Data too large for advertisement packet" -msgstr "" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Data too large for the advertisement packet" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "La capacité de la cible est plus petite que destination_length." - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Ne sais pas comment passer l'objet à une fonction native" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "Le mode Drive n'est pas utilisé quand la direction est 'input'." -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "l'ESP8266 ne supporte pas le mode sans-échec" - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "L'ESP8266 ne supporte pas le rappel (pull-down)" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "Canal EXTINT déjà utilisé" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Erreur dans ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "Erreur dans l'expression régulière" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Attendu : %q" @@ -573,8 +213,8 @@ msgstr "Attendu : %q" msgid "Expected a Characteristic" msgstr "Impossible d'ajouter la Characteristic." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Attendu : %q" @@ -584,263 +224,28 @@ msgstr "Attendu : %q" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to acquire mutex" -msgstr "Echec de l'obtention de mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "Echec de l'obtention de mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Service.c -#, fuzzy, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "Echec de l'ajout de caractéristique, statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to add service" -msgstr "Echec de l'ajout de service, statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "Echec de l'ajout de service, statut: 0x%08lX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Echec de l'allocation du tampon RX" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Echec de l'allocation de %d octets du tampon RX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to change softdevice state" -msgstr "Echec de la modification de l'état du périph., erreur: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to connect:" -msgstr "Connection impossible. statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to continue scanning" -msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to create mutex" -msgstr "Echec de la création de mutex, statut: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to discover services" -msgstr "Echec de la découverte de services, statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get local address" -msgstr "Echec de l'obtention de l'adresse locale, erreur: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get softdevice state" -msgstr "Echec de l'obtention de l'état du périph., erreur: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "Echec de l'ajout de l'UUID Vendor Specific, , statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to release mutex" -msgstr "Impossible de libérer mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "Impossible de libérer mutex, status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start advertising" -msgstr "Echec de l'ajout de service, statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start scanning" -msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to stop advertising" -msgstr "Echec de l'ajout de service, statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "Echec de l'ajout de service, statut: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "Impossible d'écrire la valeur de l'attribut. status: 0x%08lX" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" - -#: py/moduerrno.c -msgid "File exists" -msgstr "Le fichier existe" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "La fonction nécessite un verrou" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "le GPIO16 ne supporte pas le tirage (pull-up)" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Groupe plein" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "opération d'E/S sur un fichier fermé" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "opération sur I2C non supportée" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" -"Fichier .mpy incompatible. Merci de mettre à jour tous les .mpy. Voirhttp://" -"adafru.it/mpy-update pour plus d'informations." - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "Erreur d'entrée/sortie" - #: shared-module/displayio/OnDiskBitmap.c #, fuzzy msgid "Invalid BMP file" msgstr "Fichier invalide" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Fréquence de PWM invalide" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "Argument invalide" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Broche invalide pour 'bit clock'" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "Invalid buffer size" -msgstr "longueur de tampon invalide" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Invalid channel count" -msgstr "Argument invalide" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Broche d'horloge invalide" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "Broche de données invalide" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Direction invalide" @@ -861,27 +266,10 @@ msgstr "Nombre de bits invalide" msgid "Invalid phase" msgstr "Phase invalide" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Broche invalide" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Broche invalide pour le canal gauche" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Broche invalide pour le canal droit" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "Broches invalides" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Polarité invalide" @@ -890,31 +278,14 @@ msgstr "Polarité invalide" msgid "Invalid run mode." msgstr "Mode de lancement invalide" -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Invalid voice count" -msgstr "Type de service invalide" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Fichier WAVE invalide" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "La partie gauche de l'argument nommé doit être un identifiant" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: py/objslice.c -msgid "Length must be an int" -msgstr "La longueur doit être entière" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "La longueur ne doit pas être négative" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -934,11 +305,6 @@ msgstr "Echec de l'init. de la broche MISO" msgid "MOSI pin init failed." msgstr "Echec de l'init. de la broche MOSI" -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "La fréquence de PWM maximale est %dHz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -952,49 +318,10 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "Erreur fatale de MicroPython.\n" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "Le délais au démarrage du micro doit être entre 0.0 et 1.0" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "La fréquence de PWM minimale est 1Hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "" -"Les fréquences de PWM multiples ne sont pas supportées. PWM réglé à %dHz" - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Pas de DAC sur la puce" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "Aucun canal DMA trouvé" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Pas de support de PulseIn pour %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Pas de broche RX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Pas de broche TX" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Pas de bus I2C par défaut" @@ -1007,44 +334,15 @@ msgstr "Pas de bus SPI par défaut" msgid "No default UART bus" msgstr "Pas de bus UART par défaut" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Pas de GCLK libre" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Pas de source matérielle d'aléa disponible" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Pas de support matériel pour une sortie analogique" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Pas de support matériel pour cette broche" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "Fichier/dossier introuvable" - #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Impossible de se connecter à 'AP'" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "Ne joue pas" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -1052,15 +350,6 @@ msgstr "" "L'objet a été désinitialisé et ne peut plus être utilisé. Créez un nouvel " "objet." -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "Odd parity is not supported" -msgstr "parité impaire non supportée" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "Uniquement 8 ou 16 bit mono avec " - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1078,19 +367,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Only slices with step=1 (aka None) are supported" -msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Seul le tx est supporté sur l'UART1 (GPIO2)." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "Le sur-échantillonage doit être un multiple de 8." - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1106,44 +382,9 @@ msgstr "" "La fréquence de PWM n'est pas modifiable quand variable_frequency est False " "à la construction." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "La broche %d ne supporte pas le PWM" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "Permission refusée" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "La broche %q n'a pas de convertisseur analogique-digital" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "la broche ne peut être utilisé pour l'ADC" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) ne supporte pas le tirage (pull)" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Broche invalide pour le SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -#, fuzzy -msgid "Plus any modules on the filesystem\n" -msgstr "Impossible de remonter le système de fichiers" - -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." -msgstr "Appuyez sur une touche pour entrer sur REPL ou CTRL-D pour recharger." +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." +msgstr "Appuyez sur une touche pour entrer sur REPL ou CTRL-D pour recharger." #: shared-bindings/digitalio/DigitalInOut.c msgid "Pull not used when direction is output." @@ -1157,31 +398,19 @@ msgstr "calibration de la RTC non supportée sur cette carte" msgid "RTC is not supported on this board" msgstr "RTC non supportée sur cette carte" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "Le changement de RTC non supportée sur cette carte" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Range out of bounds" -msgstr "adresse hors limites" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Lecture seule" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "Système de fichier en lecture seule" - #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Lecture seule" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Canal droit non supporté" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1194,51 +423,15 @@ msgstr "Mode sans-échec. Auto-rechargement désactivé.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Mode sans-échec! Le code sauvegardé ne s'éxecute pas.\n" -#: ports/atmel-samd/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/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "'STA' doit être actif" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "'STA' requis" - -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Sample rate must be positive" -msgstr "le taux d'échantillonage doit être positif" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "Taux d'échantillonage trop élevé. Doit être inf. à %d" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Sérialiseur en cours d'utilisation" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "Slice et valeur de tailles différentes" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Slices non supportées" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "Fractionnement avec des captures 'sub'" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "La pile doit être au moins de 256" @@ -1315,11 +508,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Pour quitter, redémarrez la carte SVP sans " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "Trop de canaux dans l'échantillon." - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1327,23 +516,10 @@ msgstr "" msgid "Too many displays" msgstr "" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "Trace (appels les plus récents en dernier):\n" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Argument de type tuple ou struct_time nécessaire" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) n'existe pas" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) ne peut pas lire" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB occupé" @@ -1364,50 +540,14 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "Impossible d'allouer des tampons pour une conversion signée" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Impossible de trouver un GCLK libre" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "Impossible d'initialiser le parser" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Impossible de remonter le système de fichiers" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Impossible d'écrire sur la nvm." -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy -msgid "Unexpected nrfx uuid type" -msgstr "indentation inattendue" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Type inconnu" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "Débit non supporté" - #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -1417,23 +557,10 @@ msgstr "type de bitmap non supporté" msgid "Unsupported format" msgstr "Format non supporté" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "Opération non supportée" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Valeur de tirage 'pull' non supportée." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "" -"Utilisez 'esptool' pour effacer la flash et rechargez Python à la place" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "les fonctions Viper ne supportent pas plus de 4 arguments actuellement" - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Index de la voix trop grand" @@ -1442,21 +569,6 @@ msgstr "Index de la voix trop grand" msgid "WARNING: Your code filename has two extensions\n" msgstr "ATTENTION: le nom de fichier de votre code a deux extensions\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" -"Bienvenue sur Adafruit CircuitPython %s!\n" -"\n" -"Vistez learn.adafruit.com/category/circuitpython pour des guides.\n" -"\n" -"Pour lister les modules inclus, tapez `help(\"modules\")`.\n" - #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -1468,1495 +580,1723 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Vous avez demandé à démarrer en mode sans-échec par " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "adresse hors limites" -#: py/objtype.c -msgid "__init__() should return None" -msgstr "__init__() doit retourner None" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "adresses vides" -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "__init__() doit retourner None, pas '%s'" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "tableau/octets requis à droite" -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "l'argument __new__ doit être d'un type défini par l'utilisateur" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits doivent être 7, 8 ou 9" -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "un objet 'bytes-like' est requis" +#: shared-module/struct/__init__.c +#, fuzzy +msgid "buffer size must match format" +msgstr "les slices de tampon doivent être de longueurs égales" -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "abort() appelé" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "les slices de tampon doivent être de longueurs égales" -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "l'adresse %08x n'est pas alignée sur %d octets" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "tampon trop petit" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "adresse hors limites" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" #: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "adresses vides" +#, fuzzy +msgid "can't convert address to int" +msgstr "ne peut convertir %s en entier int" -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "l'argument est une séquence vide" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" -#: py/runtime.c -msgid "argument has wrong type" -msgstr "l'argument est d'un mauvais type" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "le tampon de couleur doit faire 3 octets (RVB) ou 4 (RVB + pad byte)" -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "argument num/types ne correspond pas" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "color buffer must be a buffer or int" +msgstr "le tampon de couleur doit être un tampon ou un entier" -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "l'argument devrait être un(e) '%q', pas '%q'" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" +"le tampon de couleur doit être un bytearray ou un tableau de type 'b' ou 'B'" -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" -msgstr "tableau/octets requis à droite" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "color must be between 0x000000 and 0xffffff" +msgstr "la couleur doit être entre 0x000000 et 0xffffff" + +#: shared-bindings/displayio/ColorConverter.c +#, fuzzy +msgid "color should be an int" +msgstr "la couleur doit être un entier (int)" + +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "division par zéro" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "séquence vide" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "end_x should be an int" +msgstr "y doit être un entier (int)" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "objet DigitalInOut attendu" + +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" +msgstr "le fichier doit être un fichier ouvert en mode 'byte'" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "le system de fichier doit fournir une méthode 'mount'" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "la fonction prend exactement 9 arguments" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "pas invalide" + +#: shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "erreur de domaine math" + +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "les noms doivent être des chaînes de caractère" + +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +#, fuzzy +msgid "no available NIC" +msgstr "NIC non disponible" + +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "attribut pas encore supporté" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "palette_index should be an int" +msgstr "palette_index devrait être un entier (int)'" -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" +#: shared-bindings/displayio/Bitmap.c +#, fuzzy +msgid "pixel coordinates out of bounds" +msgstr "adresse hors limites" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "mauvais mode de compilation" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "" +"pixel_shader doit être un objet displayio.Palette ou displayio.ColorConverter" -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "mauvaise spécification de conversion" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "" -#: py/objstr.c -msgid "bad format string" -msgstr "chaîne mal-formée" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#: py/binary.c -msgid "bad typecode" -msgstr "mauvais code type" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "la longueur de sleep ne doit pas être négative" -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "opération binaire '%q' non implémentée" +#: main.c +msgid "soft reboot\n" +msgstr "redémarrage logiciel\n" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y doit être un entier (int)" + +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "le pas 'step' doit être non nul" #: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits doivent être 7, 8 ou 9" +msgid "stop must be 1 or 2" +msgstr "stop doit être 1 ou 2" + +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop n'est pas accessible au démarrage" + +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "le seuil doit être dans la gamme 0-65536" + +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "time.struct_time() prend une séquence de longueur 9" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() prend exactement 1 argument" + +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "timeout >100 (exprimé en secondes, pas en ms)" + +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "les bits doivent être 8" + +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "timestamp hors gamme pour time_t de la plateforme" + +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "trop d'arguments" + +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "trop d'arguments fournis avec ce format" + +#: shared-bindings/displayio/TileGrid.c +#, fuzzy +msgid "unsupported bitmap type" +msgstr "type de bitmap non supporté" + +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "adresse hors limites" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "y should be an int" +msgstr "y doit être un entier (int)" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "adresse hors limites" + +#~ msgid " File \"%q\"" +#~ msgstr " Fichier \"%q\"" + +#~ msgid " File \"%q\", line %d" +#~ msgstr " Fichier \"%q\", ligne %d" + +#~ msgid "%%c requires int or char" +#~ msgstr "%%c nécessite un entier int ou un caractère char" + +#~ msgid "%q index out of range" +#~ msgstr "index %q hors gamme" + +#~ msgid "%q indices must be integers, not %s" +#~ msgstr "les indices %q doivent être des entiers, pas %s" + +#~ msgid "%q() takes %d positional arguments but %d were given" +#~ msgstr "%q() prend %d arguments mais %d ont été donnés" + +#~ msgid "'%q' argument required" +#~ msgstr "'%q' argument requis" + +#~ msgid "'%s' expects a label" +#~ msgstr "'%s' attend un label" + +#~ msgid "'%s' expects a register" +#~ msgstr "'%s' attend un registre" + +#, fuzzy +#~ msgid "'%s' expects a special register" +#~ msgstr "'%s' attend un registre special" + +#, fuzzy +#~ msgid "'%s' expects an FPU register" +#~ msgstr "'%s' attend un registre FPU" + +#, fuzzy +#~ msgid "'%s' expects an address of the form [a, b]" +#~ msgstr "'%s' attend une adresse de la forme [a, b]" + +#~ msgid "'%s' expects an integer" +#~ msgstr "'%s' attend un entier" + +#, fuzzy +#~ msgid "'%s' expects at most r%d" +#~ msgstr "'%s' attend un registre" + +#, fuzzy +#~ msgid "'%s' expects {r0, r1, ...}" +#~ msgstr "'%s' attend {r0, r1, ...}" + +#~ msgid "'%s' integer %d is not within range %d..%d" +#~ msgstr "'%s' l'entier %d n'est pas dans la gamme %d..%d" + +#, fuzzy +#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" +#~ msgstr "'%s' l'entier 0x%x ne correspond pas au masque 0x%x" + +#~ msgid "'%s' object does not support item assignment" +#~ msgstr "l'objet '%s' ne supporte pas l'assignation d'éléments" + +#~ msgid "'%s' object does not support item deletion" +#~ msgstr "l'objet '%s' ne supporte pas la suppression d'éléments" + +#~ msgid "'%s' object has no attribute '%q'" +#~ msgstr "l'objet '%s' n'a pas d'attribut '%q'" + +#~ msgid "'%s' object is not an iterator" +#~ msgstr "l'objet '%s' n'est pas un itérateur" + +#~ msgid "'%s' object is not callable" +#~ msgstr "objet '%s' non appelable" + +#~ msgid "'%s' object is not iterable" +#~ msgstr "objet '%s' non itérable" + +#~ msgid "'%s' object is not subscriptable" +#~ msgstr "l'objet '%s' n'est pas sous-scriptable" + +#~ msgid "'=' alignment not allowed in string format specifier" +#~ msgstr "'=' alignement non autorisé dans la spéc. de format de chaîne" + +#~ msgid "'align' requires 1 argument" +#~ msgstr "'align' nécessite 1 argument" + +#~ msgid "'await' outside function" +#~ msgstr "'await' en dehors d'une fonction" + +#~ msgid "'break' outside loop" +#~ msgstr "'break' en dehors d'une boucle" + +#~ msgid "'continue' outside loop" +#~ msgstr "'continue' en dehors d'une boucle" + +#~ msgid "'data' requires at least 2 arguments" +#~ msgstr "'data' nécessite au moins 2 arguments" + +#~ msgid "'data' requires integer arguments" +#~ msgstr "'data' nécessite des arguments entiers" + +#~ msgid "'label' requires 1 argument" +#~ msgstr "'label' nécessite 1 argument" + +#~ msgid "'return' outside function" +#~ msgstr "'return' en dehors d'une fonction" + +#~ msgid "'yield' outside function" +#~ msgstr "'yield' en dehors d'une fonction" + +#~ msgid "*x must be assignment target" +#~ msgstr "*x doit être la cible de l'assignement" + +#~ msgid ", in %q\n" +#~ msgstr ", dans %q\n" + +#~ msgid "0.0 to a complex power" +#~ msgstr "0.0 à une puissance complexe" + +#~ msgid "3-arg pow() not supported" +#~ msgstr "pow() avec 3 arguments non supporté" + +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Un canal d'interruptions est déjà utilisé" + +#~ msgid "AP required" +#~ msgstr "'AP' requis" + +#, fuzzy +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Tous les périphériques I2C sont utilisés" + +#, fuzzy +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Tous les périphériques SPI sont utilisés" + +#, fuzzy +#~ msgid "All UART peripherals are in use" +#~ msgstr "Tous les périphériques I2C sont utilisés" + +#~ msgid "All event channels in use" +#~ msgstr "Tous les canaux d'événements sont utilisés" + +#~ msgid "All sync event channels in use" +#~ msgstr "Tous les canaux d'événements de synchro sont utilisés" + +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "AnalogOut non supporté" + +#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." +#~ msgstr "" +#~ "AnalogOut est seulement 16 bits. Les valeurs doivent être inf. à 65536." + +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "AnalogOut n'est pas supporté sur la broche indiquée" + +#~ msgid "Another send is already active" +#~ msgstr "Un autre envoi est déjà actif" + +#~ msgid "Bit clock and word select must share a clock unit" +#~ msgstr "'bit clock' et 'word select' doivent partager une horloge" + +#~ msgid "Bit depth must be multiple of 8." +#~ msgstr "La profondeur de bit doit être un multiple de 8." + +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Les deux entrées doivent supporter les interruptions" + +#, fuzzy +#~ msgid "Bus pin %d is already in use" +#~ msgstr "DAC déjà utilisé" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Impossible de se connecter à 'AP'" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Impossible de se déconnecter de 'AP'" + +#~ msgid "Cannot get pull while in output mode" +#~ msgstr "Ne peux être tiré ('pull') en mode 'output'" + +#, fuzzy +#~ msgid "Cannot get temperature" +#~ msgstr "Impossible de lire la température. status: 0x%02x" + +#~ msgid "Cannot output both channels on the same pin" +#~ msgstr "Les 2 canaux de sortie ne peuvent être sur la même broche" + +#~ msgid "Cannot record to a file" +#~ msgstr "Impossible d'enregistrer vers un fichier" + +#~ msgid "Cannot reset into bootloader because no bootloader is present." +#~ msgstr "" +#~ "Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader." + +#~ msgid "Cannot set STA config" +#~ msgstr "Impossible de configurer STA" + +#~ msgid "Cannot subclass slice" +#~ msgstr "On ne peut faire de subclass de slice" + +#~ msgid "Cannot unambiguously get sizeof scalar" +#~ msgstr "Impossible d'obtenir la taille du scalaire sans ambigüité" + +#~ msgid "Cannot update i/f status" +#~ msgstr "le status i/f ne peut être mis à jour" + +#~ msgid "Clock unit in use" +#~ msgstr "Horloge en cours d'utilisation" + +#~ msgid "Could not initialize UART" +#~ msgstr "L'UART n'a pu être initialisé" + +#~ msgid "DAC already in use" +#~ msgstr "DAC déjà utilisé" + +#, fuzzy +#~ msgid "Data 0 pin must be byte aligned" +#~ msgstr "le graphic doit être long de 2048 octets" + +#~ msgid "Destination capacity is smaller than destination_length." +#~ msgstr "La capacité de la cible est plus petite que destination_length." + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Ne sais pas comment passer l'objet à une fonction native" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "l'ESP8266 ne supporte pas le mode sans-échec" + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "L'ESP8266 ne supporte pas le rappel (pull-down)" + +#~ msgid "EXTINT channel already in use" +#~ msgstr "Canal EXTINT déjà utilisé" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Erreur dans ffi_prep_cif" + +#~ msgid "Error in regex" +#~ msgstr "Erreur dans l'expression régulière" + +#, fuzzy +#~ msgid "Failed to acquire mutex" +#~ msgstr "Echec de l'obtention de mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "Echec de l'obtention de mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "Echec de l'ajout de caractéristique, statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add service" +#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Echec de l'allocation du tampon RX" + +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Echec de l'allocation de %d octets du tampon RX" + +#, fuzzy +#~ msgid "Failed to change softdevice state" +#~ msgstr "Echec de la modification de l'état du périph., erreur: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to connect:" +#~ msgstr "Connection impossible. statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to continue scanning" +#~ msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to create mutex" +#~ msgstr "Echec de la création de mutex, statut: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to discover services" +#~ msgstr "Echec de la découverte de services, statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to get local address" +#~ msgstr "Echec de l'obtention de l'adresse locale, erreur: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to get softdevice state" +#~ msgstr "Echec de l'obtention de l'état du périph., erreur: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Impossible de notifier la valeur de l'attribut. status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "Echec de l'ajout de l'UUID Vendor Specific, , statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to release mutex" +#~ msgstr "Impossible de libérer mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "Impossible de libérer mutex, status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to start advertising" +#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to start scanning" +#~ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" + +#, fuzzy +#~ msgid "Failed to stop advertising" +#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "Impossible d'écrire la valeur de l'attribut. status: 0x%08lX" + +#, fuzzy +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" + +#~ msgid "File exists" +#~ msgstr "Le fichier existe" + +#~ msgid "Function requires lock." +#~ msgstr "La fonction nécessite un verrou." + +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "le GPIO16 ne supporte pas le tirage (pull-up)" + +#~ msgid "I/O operation on closed file" +#~ msgstr "opération d'E/S sur un fichier fermé" + +#~ msgid "I2C operation not supported" +#~ msgstr "opération sur I2C non supportée" + +#~ msgid "" +#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." +#~ "it/mpy-update for more info." +#~ msgstr "" +#~ "Fichier .mpy incompatible. Merci de mettre à jour tous les .mpy. " +#~ "Voirhttp://adafru.it/mpy-update pour plus d'informations." + +#~ msgid "Input/output error" +#~ msgstr "Erreur d'entrée/sortie" + +#~ msgid "Invalid argument" +#~ msgstr "Argument invalide" + +#~ msgid "Invalid bit clock pin" +#~ msgstr "Broche invalide pour 'bit clock'" + +#, fuzzy +#~ msgid "Invalid buffer size" +#~ msgstr "longueur de tampon invalide" + +#, fuzzy +#~ msgid "Invalid channel count" +#~ msgstr "Argument invalide" + +#~ msgid "Invalid clock pin" +#~ msgstr "Broche d'horloge invalide" + +#~ msgid "Invalid data pin" +#~ msgstr "Broche de données invalide" + +#~ msgid "Invalid pin for left channel" +#~ msgstr "Broche invalide pour le canal gauche" + +#~ msgid "Invalid pin for right channel" +#~ msgstr "Broche invalide pour le canal droit" + +#~ msgid "Invalid pins" +#~ msgstr "Broches invalides" + +#, fuzzy +#~ msgid "Invalid voice count" +#~ msgstr "Type de service invalide" + +#~ msgid "LHS of keyword arg must be an id" +#~ msgstr "La partie gauche de l'argument nommé doit être un identifiant" + +#~ msgid "Length must be an int" +#~ msgstr "La longueur doit être entière" + +#~ msgid "Length must be non-negative" +#~ msgstr "La longueur ne doit pas être négative" + +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "La fréquence de PWM maximale est %dHz" + +#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" +#~ msgstr "Le délais au démarrage du micro doit être entre 0.0 et 1.0" + +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "La fréquence de PWM minimale est 1Hz" + +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Les fréquences de PWM multiples ne sont pas supportées. PWM réglé à %dHz" + +#~ msgid "No DAC on chip" +#~ msgstr "Pas de DAC sur la puce" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "les bits doivent être 8" +#~ msgid "No DMA channel found" +#~ msgstr "Aucun canal DMA trouvé" -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "bits_per_sample must be 8 or 16" -msgstr "bits doivent être 8 ou 16" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Pas de support de PulseIn pour %q" -#: py/emitinlinethumb.c -#, fuzzy -msgid "branch not in range" -msgstr "argument de chr() hors de la gamme range(256)" +#~ msgid "No RX pin" +#~ msgstr "Pas de broche RX" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" +#~ msgid "No TX pin" +#~ msgstr "Pas de broche TX" -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "le tampon doit être un objet bytes-like" +#~ msgid "No free GCLKs" +#~ msgstr "Pas de GCLK libre" -#: shared-module/struct/__init__.c -#, fuzzy -msgid "buffer size must match format" -msgstr "les slices de tampon doivent être de longueurs égales" +#~ msgid "No hardware support for analog out." +#~ msgstr "Pas de support matériel pour une sortie analogique" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "les slices de tampon doivent être de longueurs égales" +#~ msgid "No hardware support on pin" +#~ msgstr "Pas de support matériel pour cette broche" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "tampon trop long" +#~ msgid "No such file/directory" +#~ msgstr "Fichier/dossier introuvable" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "tampon trop petit" +#~ msgid "Not playing" +#~ msgstr "Ne joue pas" -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "les tampons doivent être de la même longueur" +#, fuzzy +#~ msgid "Odd parity is not supported" +#~ msgstr "parité impaire non supportée" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" +#~ msgid "Only 8 or 16 bit mono with " +#~ msgstr "Uniquement 8 ou 16 bit mono avec " -#: py/vm.c -msgid "byte code not implemented" -msgstr "bytecode non implémenté" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Seul les BMP non-compressé au format Windows sont supportés %d" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" -msgstr "" +#, fuzzy +#~ msgid "Only slices with step=1 (aka None) are supported" +#~ msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "octets > 8 bits non supporté" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Seul les BMP 24bits ou plus sont supportés %x" -#: py/objstr.c -msgid "bytes value out of range" -msgstr "valeur des octets hors gamme" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Seul le tx est supporté sur l'UART1 (GPIO2)." -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "calibration hors gamme" +#~ msgid "Oversample must be multiple of 8." +#~ msgstr "Le sur-échantillonage doit être un multiple de 8." -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "calibration en lecture seule" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "La broche %d ne supporte pas le PWM" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "valeur de calibration hors gamme +/-127" +#~ msgid "Permission denied" +#~ msgstr "Permission refusée" -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "il peut y avoir jusqu'à 4 paramètres pour Thumb assembly" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "La broche %q n'a pas de convertisseur analogique-digital" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "Maximum 4 paramètres pour l'assembleur Xtensa" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "la broche ne peut être utilisé pour l'ADC" -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "ne peut sauvegarder que du bytecode" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) ne supporte pas le tirage (pull)" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "ne peut demander qu'un seul paramètre" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Broche invalide pour le SPI" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "" -"impossible d'ajouter une méthode spécial à une classe déjà sous-classée" +#, fuzzy +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "Impossible de remonter le système de fichiers" -#: py/compile.c -msgid "can't assign to expression" -msgstr "ne peut pas assigner à l'expression" +#, fuzzy +#~ msgid "Range out of bounds" +#~ msgstr "adresse hors limites" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "ne peut convertir %s en nombre complexe" +#~ msgid "Read-only filesystem" +#~ msgstr "Système de fichier en lecture seule" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "ne peut convertir %s en nombre à virgule flottante (float)" +#~ msgid "Right channel unsupported" +#~ msgstr "Canal droit non supporté" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "ne peut convertir %s en entier (int)" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "SDA ou SCL a besoin d'une résistance de tirage ('pull up')" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "impossible de convertir l'objet '%q' en '%q' implicitement" +#~ msgid "STA must be active" +#~ msgstr "'STA' doit être actif" -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "on ne peut convertir NaN en int" +#~ msgid "STA required" +#~ msgstr "'STA' requis" -#: shared-bindings/i2cslave/I2CSlave.c #, fuzzy -msgid "can't convert address to int" -msgstr "ne peut convertir %s en entier int" +#~ msgid "Sample rate must be positive" +#~ msgstr "le taux d'échantillonage doit être positif" -#: py/objint.c -msgid "can't convert inf to int" -msgstr "on ne peut convertir inf en int" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "Taux d'échantillonage trop élevé. Doit être inf. à %d" -#: py/obj.c -msgid "can't convert to complex" -msgstr "ne peut convertir en nombre complexe" +#~ msgid "Serializer in use" +#~ msgstr "Sérialiseur en cours d'utilisation" -#: py/obj.c -msgid "can't convert to float" -msgstr "ne peut convertir en nombre à virgule flottante (float)" +#~ msgid "Splitting with sub-captures" +#~ msgstr "Fractionnement avec des captures 'sub'" -#: py/obj.c -msgid "can't convert to int" -msgstr "ne peut convertir en entier (int)" +#~ msgid "Too many channels in sample." +#~ msgstr "Trop de canaux dans l'échantillon." -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "impossible de convertir en str implicitement" +#~ msgid "Traceback (most recent call last):\n" +#~ msgstr "Trace (appels les plus récents en dernier):\n" -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "ne peut déclarer de nonlocal dans un code externe" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) n'existe pas" -#: py/compile.c -msgid "can't delete expression" -msgstr "ne peut pas supprimer l'expression" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) ne peut pas lire" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "opération binaire impossible entre '%q' et '%q'" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "Impossible d'allouer des tampons pour une conversion signée" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "on ne peut pas faire de division tronquée de nombres complexes" +#~ msgid "Unable to find free GCLK" +#~ msgstr "Impossible de trouver un GCLK libre" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "impossible de récupérer la config de 'AP'" +#~ msgid "Unable to init parser" +#~ msgstr "Impossible d'initialiser le parser" -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "impossible de récupérer la config de 'STA'" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Impossible de remonter le système de fichiers" -#: py/compile.c -msgid "can't have multiple **x" -msgstr "il ne peut y avoir de **x multiples" - -#: py/compile.c -msgid "can't have multiple *x" -msgstr "il ne peut y avoir de *x multiples" +#, fuzzy +#~ msgid "Unexpected nrfx uuid type" +#~ msgstr "indentation inattendue" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "impossible de convertir implicitement '%q' en 'bool'" +#~ msgid "Unknown type" +#~ msgstr "Type inconnu" -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "impossible de charger depuis '%q'" +#~ msgid "Unsupported baudrate" +#~ msgstr "Débit non supporté" -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "impossible de charger avec l'index '%q'" +#~ msgid "Unsupported operation" +#~ msgstr "Opération non supportée" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Utilisez 'esptool' pour effacer la flash et rechargez Python à la place" -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" -"on ne peut envoyer une valeur autre que None à un générateur fraîchement " -"démarré" +#~ msgid "Viper functions don't currently support more than 4 arguments" +#~ msgstr "" +#~ "les fonctions Viper ne supportent pas plus de 4 arguments actuellement" -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "impossible de régler la config de 'AP'" +#~ msgid "" +#~ "Welcome to Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Please visit learn.adafruit.com/category/circuitpython for project " +#~ "guides.\n" +#~ "\n" +#~ "To list built-in modules please do `help(\"modules\")`.\n" +#~ msgstr "" +#~ "Bienvenue sur Adafruit CircuitPython %s!\n" +#~ "\n" +#~ "Vistez learn.adafruit.com/category/circuitpython pour des guides.\n" +#~ "\n" +#~ "Pour lister les modules inclus, tapez `help(\"modules\")`.\n" -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "impossible de régler la config de 'STA'" +#~ msgid "__init__() should return None" +#~ msgstr "__init__() doit retourner None" -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "attribut non modifiable" +#~ msgid "__init__() should return None, not '%s'" +#~ msgstr "__init__() doit retourner None, pas '%s'" -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "impossible de stocker '%q'" +#~ msgid "__new__ arg must be a user-type" +#~ msgstr "l'argument __new__ doit être d'un type défini par l'utilisateur" -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "impossible de stocker vers '%q'" +#~ msgid "a bytes-like object is required" +#~ msgstr "un objet 'bytes-like' est requis" -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "impossible de stocker avec un index '%q'" +#~ msgid "abort() called" +#~ msgstr "abort() appelé" -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" -"impossible de passer d'une énumération auto des champs à une spécification " -"manuelle" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "l'adresse %08x n'est pas alignée sur %d octets" -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" -"impossible de passer d'une spécification manuelle des champs à une " -"énumération auto" +#~ msgid "arg is an empty sequence" +#~ msgstr "l'argument est une séquence vide" -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "ne peut pas créer une instance de '%q'" +#~ msgid "argument has wrong type" +#~ msgstr "l'argument est d'un mauvais type" -#: py/objtype.c -msgid "cannot create instance" -msgstr "ne peut pas créer une instance" +#~ msgid "argument num/types mismatch" +#~ msgstr "argument num/types ne correspond pas" -#: py/runtime.c -msgid "cannot import name %q" -msgstr "ne peut pas importer le nom %q" +#~ msgid "argument should be a '%q' not a '%q'" +#~ msgstr "l'argument devrait être un(e) '%q', pas '%q'" -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "ne peut pas réaliser un import relatif" +#~ msgid "attributes not supported yet" +#~ msgstr "attribut pas encore supporté" -#: py/emitnative.c -msgid "casting" -msgstr "typage" +#~ msgid "bad compile mode" +#~ msgstr "mauvais mode de compilation" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" +#~ msgid "bad conversion specifier" +#~ msgstr "mauvaise spécification de conversion" -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "tampon de caractères trop petit" +#~ msgid "bad format string" +#~ msgstr "chaîne mal-formée" -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "argument de chr() hors de la gamme range(0x11000)" +#~ msgid "bad typecode" +#~ msgstr "mauvais code type" -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "argument de chr() hors de la gamme range(256)" +#~ msgid "binary op %q not implemented" +#~ msgstr "opération binaire '%q' non implémentée" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "le tampon de couleur doit faire 3 octets (RVB) ou 4 (RVB + pad byte)" +#~ msgid "bits must be 8" +#~ msgstr "les bits doivent être 8" -#: shared-bindings/displayio/Palette.c #, fuzzy -msgid "color buffer must be a buffer or int" -msgstr "le tampon de couleur doit être un tampon ou un entier" +#~ msgid "bits_per_sample must be 8 or 16" +#~ msgstr "bits doivent être 8 ou 16" -#: shared-bindings/displayio/Palette.c #, fuzzy -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" -"le tampon de couleur doit être un bytearray ou un tableau de type 'b' ou 'B'" +#~ msgid "branch not in range" +#~ msgstr "argument de chr() hors de la gamme range(256)" -#: shared-bindings/displayio/Palette.c -#, fuzzy -msgid "color must be between 0x000000 and 0xffffff" -msgstr "la couleur doit être entre 0x000000 et 0xffffff" +#~ msgid "buffer must be a bytes-like object" +#~ msgstr "le tampon doit être un objet bytes-like" -#: shared-bindings/displayio/ColorConverter.c -#, fuzzy -msgid "color should be an int" -msgstr "la couleur doit être un entier (int)" +#~ msgid "buffer too long" +#~ msgstr "tampon trop long" -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "division complexe par zéro" +#~ msgid "buffers must be the same length" +#~ msgstr "les tampons doivent être de la même longueur" -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "valeurs complexes non supportées" +#~ msgid "byte code not implemented" +#~ msgstr "bytecode non implémenté" -#: extmod/moduzlib.c -msgid "compression header" -msgstr "entête de compression" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "octets > 8 bits non supporté" -#: py/parse.c -msgid "constant must be an integer" -msgstr "une constante doit être un entier" +#~ msgid "bytes value out of range" +#~ msgstr "valeur des octets hors gamme" -#: py/emitnative.c -msgid "conversion to object" -msgstr "conversion en objet" +#~ msgid "calibration is out of range" +#~ msgstr "calibration hors gamme" -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "nombres décimaux non supportés" +#~ msgid "calibration is read only" +#~ msgstr "calibration en lecture seule" -#: py/compile.c -msgid "default 'except' must be last" -msgstr "l''except' par défaut doit être en dernier" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "valeur de calibration hors gamme +/-127" -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" -"le tampon de destination doit être un tableau de type 'B' pour bit_depth = 8" +#~ msgid "can only have up to 4 parameters to Thumb assembly" +#~ msgstr "il peut y avoir jusqu'à 4 paramètres pour Thumb assembly" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" -"le tampon de destination doit être un tableau de type 'H' pour bit_depth = 16" +#~ msgid "can only have up to 4 parameters to Xtensa assembly" +#~ msgstr "Maximum 4 paramètres pour l'assembleur Xtensa" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "destination_length doit être un entier >= 0" +#~ msgid "can only save bytecode" +#~ msgstr "ne peut sauvegarder que du bytecode" -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "la séquence de mise à jour de dict a une mauvaise longueur" +#~ msgid "can query only one param" +#~ msgstr "ne peut demander qu'un seul paramètre" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "division par zéro" +#~ msgid "can't add special method to already-subclassed class" +#~ msgstr "" +#~ "impossible d'ajouter une méthode spécial à une classe déjà sous-classée" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "soit 'pos', soit 'kw' est permis en argument" +#~ msgid "can't assign to expression" +#~ msgstr "ne peut pas assigner à l'expression" -#: py/objdeque.c -msgid "empty" -msgstr "vide" +#~ msgid "can't convert %s to complex" +#~ msgstr "ne peut convertir %s en nombre complexe" -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "'heap' vide" +#~ msgid "can't convert %s to float" +#~ msgstr "ne peut convertir %s en nombre à virgule flottante (float)" -#: py/objstr.c -msgid "empty separator" -msgstr "séparateur vide" +#~ msgid "can't convert %s to int" +#~ msgstr "ne peut convertir %s en entier (int)" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "séquence vide" +#~ msgid "can't convert '%q' object to %q implicitly" +#~ msgstr "impossible de convertir l'objet '%q' en '%q' implicitement" -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "fin de format en cherchant une spécification de conversion" +#~ msgid "can't convert NaN to int" +#~ msgstr "on ne peut convertir NaN en int" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "end_x should be an int" -msgstr "y doit être un entier (int)" +#~ msgid "can't convert inf to int" +#~ msgstr "on ne peut convertir inf en int" -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "erreur = 0x%08lX" +#~ msgid "can't convert to complex" +#~ msgstr "ne peut convertir en nombre complexe" -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "les exceptions doivent dériver de BaseException" +#~ msgid "can't convert to float" +#~ msgstr "ne peut convertir en nombre à virgule flottante (float)" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "':' attendu après la spécification de format" +#~ msgid "can't convert to int" +#~ msgstr "ne peut convertir en entier (int)" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "objet DigitalInOut attendu" +#~ msgid "can't convert to str implicitly" +#~ msgstr "impossible de convertir en str implicitement" -#: py/obj.c -msgid "expected tuple/list" -msgstr "un tuple ou une liste est attendu" +#~ msgid "can't declare nonlocal in outer code" +#~ msgstr "ne peut déclarer de nonlocal dans un code externe" -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "un dict est attendu pour les arguments nommés" +#~ msgid "can't delete expression" +#~ msgstr "ne peut pas supprimer l'expression" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "une broche (Pin) est attendue" +#~ msgid "can't do binary op between '%q' and '%q'" +#~ msgstr "opération binaire impossible entre '%q' et '%q'" -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "une instruction assembleur est attendue" +#~ msgid "can't do truncated division of a complex number" +#~ msgstr "on ne peut pas faire de division tronquée de nombres complexes" -#: py/compile.c -msgid "expecting just a value for set" -msgstr "une simple valeur est attendue pour set" +#~ msgid "can't get AP config" +#~ msgstr "impossible de récupérer la config de 'AP'" -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "couple clef:valeur attendu pour un objet dict" +#~ msgid "can't get STA config" +#~ msgstr "impossible de récupérer la config de 'STA'" -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "argument nommé donné en plus" +#~ msgid "can't have multiple **x" +#~ msgstr "il ne peut y avoir de **x multiples" -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "argument positionnel donné en plus" +#~ msgid "can't have multiple *x" +#~ msgstr "il ne peut y avoir de *x multiples" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "" +#~ msgid "can't implicitly convert '%q' to 'bool'" +#~ msgstr "impossible de convertir implicitement '%q' en 'bool'" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "le fichier doit être un fichier ouvert en mode 'byte'" +#~ msgid "can't load from '%q'" +#~ msgstr "impossible de charger depuis '%q'" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "le system de fichier doit fournir une méthode 'mount'" +#~ msgid "can't load with '%q' index" +#~ msgstr "impossible de charger avec l'index '%q'" -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "le premier argument de super() doit être un type" +#~ msgid "can't send non-None value to a just-started generator" +#~ msgstr "" +#~ "on ne peut envoyer une valeur autre que None à un générateur fraîchement " +#~ "démarré" -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "le 1er bit doit être le MSB" +#~ msgid "can't set AP config" +#~ msgstr "impossible de régler la config de 'AP'" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "l'emplacement en mémoire flash doit être inférieure à 1Mo" +#~ msgid "can't set STA config" +#~ msgstr "impossible de régler la config de 'STA'" -#: py/objint.c -msgid "float too big" -msgstr "nombre flottant trop grand" +#~ msgid "can't set attribute" +#~ msgstr "attribut non modifiable" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "la fonte doit être longue de 2048 octets" +#~ msgid "can't store '%q'" +#~ msgstr "impossible de stocker '%q'" -#: py/objstr.c -msgid "format requires a dict" -msgstr "le format nécessite un dict" +#~ msgid "can't store to '%q'" +#~ msgstr "impossible de stocker vers '%q'" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "la fréquence doit être soit 80MHz soit 160MHz" +#~ msgid "can't store with '%q' index" +#~ msgstr "impossible de stocker avec un index '%q'" -#: py/objdeque.c -msgid "full" -msgstr "plein" +#~ msgid "" +#~ "can't switch from automatic field numbering to manual field specification" +#~ msgstr "" +#~ "impossible de passer d'une énumération auto des champs à une " +#~ "spécification manuelle" -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "la fonction ne prend pas d'arguments nommés" +#~ msgid "" +#~ "can't switch from manual field specification to automatic field numbering" +#~ msgstr "" +#~ "impossible de passer d'une spécification manuelle des champs à une " +#~ "énumération auto" -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "la fonction attendait au plus %d arguments, reçu %d" +#~ msgid "cannot create '%q' instances" +#~ msgstr "ne peut pas créer une instance de '%q'" -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "la fonction a reçu plusieurs valeurs pour l'argument '%q'" +#~ msgid "cannot create instance" +#~ msgstr "ne peut pas créer une instance" -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "il manque %d arguments obligatoires à la fonction" +#~ msgid "cannot import name %q" +#~ msgstr "ne peut pas importer le nom %q" -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "il manque l'argument nommé obligatoire" +#~ msgid "cannot perform relative import" +#~ msgstr "ne peut pas réaliser un import relatif" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "il manque l'argument nommé obligatoire '%q'" +#~ msgid "casting" +#~ msgstr "typage" -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "il manque l'argument obligatoire #%d" +#~ msgid "chars buffer too small" +#~ msgstr "tampon de caractères trop petit" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "la fonction prend %d argument(s) mais %d ont été donné(s)" +#~ msgid "chr() arg not in range(0x110000)" +#~ msgstr "argument de chr() hors de la gamme range(0x11000)" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "la fonction prend exactement 9 arguments" +#~ msgid "chr() arg not in range(256)" +#~ msgstr "argument de chr() hors de la gamme range(256)" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "générateur déjà en cours d'exécution" +#~ msgid "complex division by zero" +#~ msgstr "division complexe par zéro" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "le générateur a ignoré GeneratorExit" +#~ msgid "complex values not supported" +#~ msgstr "valeurs complexes non supportées" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "le graphic doit être long de 2048 octets" +#~ msgid "compression header" +#~ msgstr "entête de compression" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "'heap' doit être une liste" +#~ msgid "constant must be an integer" +#~ msgstr "une constante doit être un entier" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "identifiant redéfini comme global" +#~ msgid "conversion to object" +#~ msgstr "conversion en objet" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "identifiant redéfini comme nonlocal" +#~ msgid "decimal numbers not supported" +#~ msgstr "nombres décimaux non supportés" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "débit impossible" +#~ msgid "default 'except' must be last" +#~ msgstr "l''except' par défaut doit être en dernier" -#: py/objstr.c -msgid "incomplete format" -msgstr "format incomplet" +#~ msgid "" +#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " +#~ "= 8" +#~ msgstr "" +#~ "le tampon de destination doit être un tableau de type 'B' pour bit_depth " +#~ "= 8" -#: py/objstr.c -msgid "incomplete format key" -msgstr "clé de format incomplète" +#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +#~ msgstr "" +#~ "le tampon de destination doit être un tableau de type 'H' pour bit_depth " +#~ "= 16" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "espacement incorrect" +#~ msgid "destination_length must be an int >= 0" +#~ msgstr "destination_length doit être un entier >= 0" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "index hors gamme" +#~ msgid "dict update sequence has wrong length" +#~ msgstr "la séquence de mise à jour de dict a une mauvaise longueur" -#: py/obj.c -msgid "indices must be integers" -msgstr "les indices doivent être des entiers" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "soit 'pos', soit 'kw' est permis en argument" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "l'assembleur doit être une fonction" +#~ msgid "empty" +#~ msgstr "vide" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "l'argument 2 de int() doit être >=2 et <=36" +#~ msgid "empty heap" +#~ msgstr "'heap' vide" -#: py/objstr.c -msgid "integer required" -msgstr "entier requis" +#~ msgid "empty separator" +#~ msgstr "séparateur vide" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" +#~ msgid "end of format while looking for conversion specifier" +#~ msgstr "fin de format en cherchant une spécification de conversion" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "périphérique I2C invalide" +#~ msgid "error = 0x%08lX" +#~ msgstr "erreur = 0x%08lX" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "périphérique SPI invalide" +#~ msgid "exceptions must derive from BaseException" +#~ msgstr "les exceptions doivent dériver de BaseException" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarme invalide" +#~ msgid "expected ':' after format specifier" +#~ msgstr "':' attendu après la spécification de format" -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "arguments invalides" +#~ msgid "expected tuple/list" +#~ msgstr "un tuple ou une liste est attendu" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "longueur de tampon invalide" +#~ msgid "expecting a dict for keyword args" +#~ msgstr "un dict est attendu pour les arguments nommés" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "certificat invalide" +#~ msgid "expecting a pin" +#~ msgstr "une broche (Pin) est attendue" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "bits de données invalides" +#~ msgid "expecting an assembler instruction" +#~ msgstr "une instruction assembleur est attendue" -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "index invalide pour dupterm" +#~ msgid "expecting just a value for set" +#~ msgstr "une simple valeur est attendue pour set" -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "format invalide" +#~ msgid "expecting key:value for dict" +#~ msgstr "couple clef:valeur attendu pour un objet dict" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "spécification de format invalide" +#~ msgid "extra keyword arguments given" +#~ msgstr "argument nommé donné en plus" -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "clé invalide" +#~ msgid "extra positional arguments given" +#~ msgstr "argument positionnel donné en plus" -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "décorateur micropython invalide" +#~ msgid "first argument to super() must be type" +#~ msgstr "le premier argument de super() doit être un type" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "broche invalide" +#~ msgid "firstbit must be MSB" +#~ msgstr "le 1er bit doit être le MSB" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "pas invalide" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "l'emplacement en mémoire flash doit être inférieure à 1Mo" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "bits d'arrêt invalides" +#~ msgid "float too big" +#~ msgstr "nombre flottant trop grand" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "syntaxe invalide" +#~ msgid "font must be 2048 bytes long" +#~ msgstr "la fonte doit être longue de 2048 octets" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "syntaxe invalide pour un entier" +#~ msgid "format requires a dict" +#~ msgstr "le format nécessite un dict" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "syntaxe invalide pour un entier de base %d" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la fréquence doit être soit 80MHz soit 160MHz" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "syntaxe invalide pour un nombre" +#~ msgid "full" +#~ msgstr "plein" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "l'argument 1 de issubclass() doit être une classe" +#~ msgid "function does not take keyword arguments" +#~ msgstr "la fonction ne prend pas d'arguments nommés" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" -"l'argument 2 de issubclass() doit être une classe ou un tuple de classes" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "la fonction attendait au plus %d arguments, reçu %d" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "join attend une liste d'objets str/bytes cohérent avec l'objet self" +#~ msgid "function got multiple values for argument '%q'" +#~ msgstr "la fonction a reçu plusieurs valeurs pour l'argument '%q'" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" -"argument(s) nommé(s) pas encore implémenté - utilisez les arguments normaux" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "il manque %d arguments obligatoires à la fonction" -#: py/bc.c -msgid "keywords must be strings" -msgstr "les noms doivent être des chaînes de caractère" +#~ msgid "function missing keyword-only argument" +#~ msgstr "il manque l'argument nommé obligatoire" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "label '%q' non supporté" +#~ msgid "function missing required keyword argument '%q'" +#~ msgstr "il manque l'argument nommé obligatoire '%q'" -#: py/compile.c -msgid "label redefined" -msgstr "label redéfini" +#~ msgid "function missing required positional argument #%d" +#~ msgstr "il manque l'argument obligatoire #%d" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "'len' doit être un multiple de 4" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "la fonction prend %d argument(s) mais %d ont été donné(s)" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "argument lenght non permis pour ce type" +#~ msgid "generator already executing" +#~ msgstr "générateur déjà en cours d'exécution" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "Les parties gauches et droites doivent être compatibles" +#~ msgid "generator ignored GeneratorExit" +#~ msgstr "le générateur a ignoré GeneratorExit" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "la variable locale '%q' a le type '%q' mais la source est '%q'" +#~ msgid "graphic must be 2048 bytes long" +#~ msgstr "le graphic doit être long de 2048 octets" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "variable locale '%q' utilisée avant d'en connaitre le type" +#~ msgid "heap must be a list" +#~ msgstr "'heap' doit être une liste" -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "variable locale référencée avant d'être assignée" +#~ msgid "identifier redefined as global" +#~ msgstr "identifiant redéfini comme global" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "entiers longs non supportés dans cette build" +#~ msgid "identifier redefined as nonlocal" +#~ msgstr "identifiant redéfini comme nonlocal" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "tampon trop petit" +#~ msgid "impossible baudrate" +#~ msgstr "débit impossible" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "erreur de domaine math" +#~ msgid "incomplete format" +#~ msgstr "format incomplet" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "profondeur maximale de récursivité dépassée" +#~ msgid "incomplete format key" +#~ msgstr "clé de format incomplète" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "l'allocation de mémoire a échoué en allouant %u octets" +#~ msgid "incorrect padding" +#~ msgstr "espacement incorrect" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"l'allocation de mémoire a échoué en allouant %u octets pour un code natif" +#~ msgid "index out of range" +#~ msgstr "index hors gamme" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "l'allocation de mémoire a échoué, la pile est vérrouillé" +#~ msgid "indices must be integers" +#~ msgstr "les indices doivent être des entiers" -#: py/builtinimport.c -msgid "module not found" -msgstr "module introuvable" +#~ msgid "inline assembler must be a function" +#~ msgstr "l'assembleur doit être une fonction" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "*x multiple dans l'assignement" +#~ msgid "int() arg 2 must be >= 2 and <= 36" +#~ msgstr "l'argument 2 de int() doit être >=2 et <=36" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "de multiple bases ont un conflit de lay-out d'instance" +#~ msgid "integer required" +#~ msgstr "entier requis" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "héritage multiple non supporté" +#~ msgid "invalid I2C peripheral" +#~ msgstr "périphérique I2C invalide" -#: py/emitnative.c -msgid "must raise an object" -msgstr "doit lever un objet" +#~ msgid "invalid SPI peripheral" +#~ msgstr "périphérique SPI invalide" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "SCK, MOSI et MISO doivent tous être spécifiés" +#~ msgid "invalid alarm" +#~ msgstr "alarme invalide" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "il faut utiliser un argument nommé pour une fonction key" +#~ msgid "invalid arguments" +#~ msgstr "arguments invalides" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "nom '%q' non défini" +#~ msgid "invalid buffer length" +#~ msgstr "longueur de tampon invalide" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "les noms doivent être des chaînes de caractère" +#~ msgid "invalid cert" +#~ msgstr "certificat invalide" -#: py/runtime.c -msgid "name not defined" -msgstr "nom non défini" +#~ msgid "invalid data bits" +#~ msgstr "bits de données invalides" -#: py/compile.c -msgid "name reused for argument" -msgstr "nom réutilisé comme argument" +#~ msgid "invalid dupterm index" +#~ msgstr "index invalide pour dupterm" -#: py/emitnative.c -msgid "native yield" -msgstr "" +#~ msgid "invalid format" +#~ msgstr "format invalide" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "nécessite plus de %d valeur à dégrouper" +#~ msgid "invalid format specifier" +#~ msgstr "spécification de format invalide" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "puissance négative sans support des nombres flottants" +#~ msgid "invalid key" +#~ msgstr "clé invalide" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "compte de décalage négatif" +#~ msgid "invalid micropython decorator" +#~ msgstr "décorateur micropython invalide" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "aucune exception active à relever" +#~ msgid "invalid pin" +#~ msgstr "broche invalide" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -#, fuzzy -msgid "no available NIC" -msgstr "NIC non disponible" +#~ msgid "invalid stop bits" +#~ msgstr "bits d'arrêt invalides" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "pas de lien trouvé pour nonlocal" +#~ msgid "invalid syntax" +#~ msgstr "syntaxe invalide" -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "pas de module '%q'" +#~ msgid "invalid syntax for integer" +#~ msgstr "syntaxe invalide pour un entier" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "pas de tel attribut" +#~ msgid "invalid syntax for integer with base %d" +#~ msgstr "syntaxe invalide pour un entier de base %d" -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "" -"un argument sans valeur par défaut suit un argument avec valeur par défaut" +#~ msgid "invalid syntax for number" +#~ msgstr "syntaxe invalide pour un nombre" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "digit non-héxadécimale trouvé" +#~ msgid "issubclass() arg 1 must be a class" +#~ msgstr "l'argument 1 de issubclass() doit être une classe" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "argument non-nommé après */**" +#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" +#~ msgstr "" +#~ "l'argument 2 de issubclass() doit être une classe ou un tuple de classes" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "argument non-nommé après argument nommé" +#~ msgid "join expects a list of str/bytes objects consistent with self object" +#~ msgstr "join attend une liste d'objets str/bytes cohérent avec l'objet self" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#~ msgid "keyword argument(s) not yet implemented - use normal args instead" +#~ msgstr "" +#~ "argument(s) nommé(s) pas encore implémenté - utilisez les arguments " +#~ "normaux" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "canal ADC non valide : %d" +#~ msgid "keywords must be strings" +#~ msgstr "les noms doivent être des chaînes de caractère" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" -"tous les arguments n'ont pas été convertis pendant le formatage de la chaîne" +#~ msgid "label '%q' not defined" +#~ msgstr "label '%q' non supporté" -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "pas assez d'arguments pour la chaîne de format" +#~ msgid "label redefined" +#~ msgstr "label redéfini" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "l'objet '%s' n'est pas un tuple ou une liste" +#~ msgid "len must be multiple of 4" +#~ msgstr "'len' doit être un multiple de 4" -#: py/obj.c -msgid "object does not support item assignment" -msgstr "l'objet ne supporte pas l'assignation d'éléments" +#~ msgid "length argument not allowed for this type" +#~ msgstr "argument lenght non permis pour ce type" -#: py/obj.c -msgid "object does not support item deletion" -msgstr "l'objet ne supporte pas la suppression d'éléments" +#~ msgid "lhs and rhs should be compatible" +#~ msgstr "Les parties gauches et droites doivent être compatibles" -#: py/obj.c -msgid "object has no len" -msgstr "l'objet n'a pas de len" +#~ msgid "local '%q' has type '%q' but source is '%q'" +#~ msgstr "la variable locale '%q' a le type '%q' mais la source est '%q'" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "l'objet n'est pas sous-scriptable" +#~ msgid "local '%q' used before type known" +#~ msgstr "variable locale '%q' utilisée avant d'en connaitre le type" -#: py/runtime.c -msgid "object not an iterator" -msgstr "l'objet n'est pas un itérateur" +#~ msgid "local variable referenced before assignment" +#~ msgstr "variable locale référencée avant d'être assignée" -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "objet non appelable" +#~ msgid "long int not supported in this build" +#~ msgstr "entiers longs non supportés dans cette build" -#: py/sequence.c -msgid "object not in sequence" -msgstr "l'objet n'est pas dans la séquence" +#~ msgid "map buffer too small" +#~ msgstr "tampon trop petit" -#: py/runtime.c -msgid "object not iterable" -msgstr "objet non itérable" +#~ msgid "maximum recursion depth exceeded" +#~ msgstr "profondeur maximale de récursivité dépassée" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "l'objet de type '%s' n'a pas de len()" +#~ msgid "memory allocation failed, allocating %u bytes" +#~ msgstr "l'allocation de mémoire a échoué en allouant %u octets" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "un objet avec un protocol de tampon est nécessaire" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "l'allocation de mémoire a échoué en allouant %u octets pour un code natif" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "chaîne de longueur impaire" +#~ msgid "memory allocation failed, heap is locked" +#~ msgstr "l'allocation de mémoire a échoué, la pile est vérrouillé" -#: py/objstrunicode.c py/objstr.c -#, fuzzy -msgid "offset out of bounds" -msgstr "adresse hors limites" +#~ msgid "module not found" +#~ msgstr "module introuvable" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" +#~ msgid "multiple *x in assignment" +#~ msgstr "*x multiple dans l'assignement" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "ord attend un caractère" +#~ msgid "multiple bases have instance lay-out conflict" +#~ msgstr "de multiple bases ont un conflit de lay-out d'instance" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "ord() attend un caractère mais une chaîne de longueur %d a été trouvée" +#~ msgid "multiple inheritance not supported" +#~ msgstr "héritage multiple non supporté" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "dépassement de capacité en convertissant un entier long en mot machine" +#~ msgid "must raise an object" +#~ msgstr "doit lever un objet" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "la palette doit être longue de 32 octets" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "SCK, MOSI et MISO doivent tous être spécifiés" -#: shared-bindings/displayio/Palette.c -#, fuzzy -msgid "palette_index should be an int" -msgstr "palette_index devrait être un entier (int)'" +#~ msgid "must use keyword argument for key function" +#~ msgstr "il faut utiliser un argument nommé pour une fonction key" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "l'annotation du paramètre doit être un identifiant" +#~ msgid "name '%q' is not defined" +#~ msgstr "nom '%q' non défini" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "les paramètres doivent être des registres dans la séquence a2 à a5" +#~ msgid "name not defined" +#~ msgstr "nom non défini" -#: py/emitinlinethumb.c -#, fuzzy -msgid "parameters must be registers in sequence r0 to r3" -msgstr "les paramètres doivent être des registres dans la séquence r0 à r3" +#~ msgid "name reused for argument" +#~ msgstr "nom réutilisé comme argument" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "la broche ne supporte pas les interruptions (IRQ)" +#~ msgid "need more than %d values to unpack" +#~ msgstr "nécessite plus de %d valeur à dégrouper" -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "adresse hors limites" +#~ msgid "negative power with no float support" +#~ msgstr "puissance négative sans support des nombres flottants" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#~ msgid "negative shift count" +#~ msgstr "compte de décalage négatif" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "" -"pixel_shader doit être un objet displayio.Palette ou displayio.ColorConverter" +#~ msgid "no active exception to reraise" +#~ msgstr "aucune exception active à relever" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "'pop' d'une entrée PulseIn vide" +#~ msgid "no binding for nonlocal found" +#~ msgstr "pas de lien trouvé pour nonlocal" -#: py/objset.c -msgid "pop from an empty set" -msgstr "pop d'un ensemble set vide" +#~ msgid "no module named '%q'" +#~ msgstr "pas de module '%q'" -#: py/objlist.c -msgid "pop from empty list" -msgstr "pop d'une liste vide" +#~ msgid "no such attribute" +#~ msgstr "pas de tel attribut" -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "popitem(): dictionnaire vide" +#~ msgid "non-default argument follows default argument" +#~ msgstr "" +#~ "un argument sans valeur par défaut suit un argument avec valeur par défaut" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "le 3e argument de pow() ne peut être 0" +#~ msgid "non-hex digit found" +#~ msgstr "digit non-héxadécimale trouvé" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "pow() avec 3 arguments nécessite des entiers" +#~ msgid "non-keyword arg after */**" +#~ msgstr "argument non-nommé après */**" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "dépassement de file" +#~ msgid "non-keyword arg after keyword arg" +#~ msgstr "argument non-nommé après argument nommé" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "canal ADC non valide : %d" -#: shared-bindings/_pixelbuf/__init__.c -#, fuzzy -msgid "readonly attribute" -msgstr "attribut illisible" +#~ msgid "not all arguments converted during string formatting" +#~ msgstr "" +#~ "tous les arguments n'ont pas été convertis pendant le formatage de la " +#~ "chaîne" -#: py/builtinimport.c -msgid "relative import" -msgstr "import relatif" +#~ msgid "not enough arguments for format string" +#~ msgstr "pas assez d'arguments pour la chaîne de format" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "la longueur requise est %d mais l'objet est long de %d" +#~ msgid "object '%s' is not a tuple or list" +#~ msgstr "l'objet '%s' n'est pas un tuple ou une liste" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "l'annotation de return doit être un identifiant" +#~ msgid "object does not support item assignment" +#~ msgstr "l'objet ne supporte pas l'assignation d'éléments" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "return attendait '%q' mais a reçu '%q'" +#~ msgid "object does not support item deletion" +#~ msgstr "l'objet ne supporte pas la suppression d'éléments" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "" +#~ msgid "object has no len" +#~ msgstr "l'objet n'a pas de len" -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "" +#~ msgid "object is not subscriptable" +#~ msgstr "l'objet n'est pas sous-scriptable" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" -"le tampon de sample_source doit être un bytearray ou un tableau de type " -"'h','H', 'b' ou 'B'" +#~ msgid "object not an iterator" +#~ msgstr "l'objet n'est pas un itérateur" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "taux d'échantillonage hors gamme" +#~ msgid "object not callable" +#~ msgstr "objet non appelable" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "échec du scan" +#~ msgid "object not in sequence" +#~ msgstr "l'objet n'est pas dans la séquence" -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "pile de plannification pleine" +#~ msgid "object not iterable" +#~ msgstr "objet non itérable" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "compilation de script non supporté" +#~ msgid "object of type '%s' has no len()" +#~ msgstr "l'objet de type '%s' n'a pas de len()" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#~ msgid "object with buffer protocol required" +#~ msgstr "un objet avec un protocol de tampon est nécessaire" -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "signe non autorisé dans les spéc. de formats de chaînes de caractères" +#~ msgid "odd-length string" +#~ msgstr "chaîne de longueur impaire" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "signe non autorisé avec la spéc. de format d'entier 'c'" +#, fuzzy +#~ msgid "offset out of bounds" +#~ msgstr "adresse hors limites" -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "'}' seule rencontrée dans une chaîne de format" +#~ msgid "ord expects a character" +#~ msgstr "ord attend un caractère" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "la longueur de sleep ne doit pas être négative" +#~ msgid "ord() expected a character, but string of length %d found" +#~ msgstr "" +#~ "ord() attend un caractère mais une chaîne de longueur %d a été trouvée" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "le pas 'step' de slice ne peut être zéro" +#~ msgid "overflow converting long int to machine word" +#~ msgstr "" +#~ "dépassement de capacité en convertissant un entier long en mot machine" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "dépassement de capacité d'un entier court" +#~ msgid "palette must be 32 bytes long" +#~ msgstr "la palette doit être longue de 32 octets" -#: main.c -msgid "soft reboot\n" -msgstr "redémarrage logiciel\n" +#~ msgid "parameter annotation must be an identifier" +#~ msgstr "l'annotation du paramètre doit être un identifiant" -#: py/objstr.c -msgid "start/end indices" -msgstr "indices de début/fin" +#~ msgid "parameters must be registers in sequence a2 to a5" +#~ msgstr "les paramètres doivent être des registres dans la séquence a2 à a5" -#: shared-bindings/displayio/Shape.c #, fuzzy -msgid "start_x should be an int" -msgstr "y doit être un entier (int)" +#~ msgid "parameters must be registers in sequence r0 to r3" +#~ msgstr "les paramètres doivent être des registres dans la séquence r0 à r3" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "le pas 'step' doit être non nul" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "la broche ne supporte pas les interruptions (IRQ)" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop doit être 1 ou 2" +#~ msgid "pop from an empty PulseIn" +#~ msgstr "'pop' d'une entrée PulseIn vide" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop n'est pas accessible au démarrage" +#~ msgid "pop from an empty set" +#~ msgstr "pop d'un ensemble set vide" -#: py/stream.c -msgid "stream operation not supported" -msgstr "opération de flux non supportée" +#~ msgid "pop from empty list" +#~ msgstr "pop d'une liste vide" -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "index de chaîne hors gamme" +#~ msgid "popitem(): dictionary is empty" +#~ msgstr "popitem(): dictionnaire vide" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "les indices de chaîne de caractère doivent être des entiers, pas %s" +#, fuzzy +#~ msgid "position must be 2-tuple" +#~ msgstr "position doit être un 2-tuple" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "" -"chaîne de carac. non supportée; utilisez des bytes ou un tableau de bytes" +#~ msgid "pow() 3rd argument cannot be 0" +#~ msgstr "le 3e argument de pow() ne peut être 0" -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: indexage impossible" +#~ msgid "pow() with 3 arguments requires integers" +#~ msgstr "pow() avec 3 arguments nécessite des entiers" -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: index hors limite" +#~ msgid "queue overflow" +#~ msgstr "dépassement de file" -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: aucun champs" +#, fuzzy +#~ msgid "readonly attribute" +#~ msgstr "attribut illisible" -#: py/objstr.c -msgid "substring not found" -msgstr "sous-chaîne non trouvée" +#~ msgid "relative import" +#~ msgstr "import relatif" -#: py/compile.c -msgid "super() can't find self" -msgstr "super() ne peut pas trouver self" +#~ msgid "requested length %d but object has length %d" +#~ msgstr "la longueur requise est %d mais l'objet est long de %d" -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "erreur de syntaxe JSON" +#~ msgid "return annotation must be an identifier" +#~ msgstr "l'annotation de return doit être un identifiant" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "erreur de syntaxe dans le descripteur d'uctypes" +#~ msgid "return expected '%q' but got '%q'" +#~ msgstr "return attendait '%q' mais a reçu '%q'" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "le seuil doit être dans la gamme 0-65536" +#~ msgid "" +#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " +#~ "or 'B'" +#~ msgstr "" +#~ "le tampon de sample_source doit être un bytearray ou un tableau de type " +#~ "'h','H', 'b' ou 'B'" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#~ msgid "sampling rate out of range" +#~ msgstr "taux d'échantillonage hors gamme" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "time.struct_time() prend une séquence de longueur 9" +#~ msgid "scan failed" +#~ msgstr "échec du scan" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() prend exactement 1 argument" +#~ msgid "schedule stack full" +#~ msgstr "pile de plannification pleine" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "timeout >100 (exprimé en secondes, pas en ms)" +#~ msgid "script compilation not supported" +#~ msgstr "compilation de script non supporté" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "les bits doivent être 8" +#~ msgid "sign not allowed in string format specifier" +#~ msgstr "" +#~ "signe non autorisé dans les spéc. de formats de chaînes de caractères" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "timestamp hors gamme pour time_t de la plateforme" +#~ msgid "sign not allowed with integer format specifier 'c'" +#~ msgstr "signe non autorisé avec la spéc. de format d'entier 'c'" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "trop d'arguments" +#~ msgid "single '}' encountered in format string" +#~ msgstr "'}' seule rencontrée dans une chaîne de format" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "trop d'arguments fournis avec ce format" +#~ msgid "slice step cannot be zero" +#~ msgstr "le pas 'step' de slice ne peut être zéro" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "trop de valeur à dégrouper (%d attendues)" +#~ msgid "small int overflow" +#~ msgstr "dépassement de capacité d'un entier court" -#: py/objstr.c -msgid "tuple index out of range" -msgstr "index du tuple hors gamme" +#~ msgid "start/end indices" +#~ msgstr "indices de début/fin" -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "tuple/liste a une mauvaise longueur" +#~ msgid "stream operation not supported" +#~ msgstr "opération de flux non supportée" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "string index out of range" +#~ msgstr "index de chaîne hors gamme" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "tx et rx ne peuvent être None tous les deux" +#~ msgid "string indices must be integers, not %s" +#~ msgstr "les indices de chaîne de caractère doivent être des entiers, pas %s" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "le type '%q' n'est pas un type de base accepté" +#~ msgid "string not supported; use bytes or bytearray" +#~ msgstr "" +#~ "chaîne de carac. non supportée; utilisez des bytes ou un tableau de bytes" -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "le type n'est pas un type de base accepté" +#~ msgid "struct: cannot index" +#~ msgstr "struct: indexage impossible" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "l'objet de type '%q' n'a pas d'attribut '%q'" +#~ msgid "struct: index out of range" +#~ msgstr "struct: index hors limite" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "le type prend 1 ou 3 arguments" +#~ msgid "struct: no fields" +#~ msgstr "struct: aucun champs" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "ulonglong trop grand" +#~ msgid "substring not found" +#~ msgstr "sous-chaîne non trouvée" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "opération unaire '%q' non implémentée" +#~ msgid "super() can't find self" +#~ msgstr "super() ne peut pas trouver self" -#: py/parse.c -msgid "unexpected indent" -msgstr "indentation inattendue" +#~ msgid "syntax error in JSON" +#~ msgstr "erreur de syntaxe JSON" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "argument nommé imprévu" +#~ msgid "syntax error in uctypes descriptor" +#~ msgstr "erreur de syntaxe dans le descripteur d'uctypes" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "argument nommé '%q' imprévu" +#~ msgid "too many values to unpack (expected %d)" +#~ msgstr "trop de valeur à dégrouper (%d attendues)" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "échappements de nom unicode" +#~ msgid "tuple index out of range" +#~ msgstr "index du tuple hors gamme" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "la désindentation ne correspond à aucune indentation" +#~ msgid "tuple/list has wrong length" +#~ msgstr "tuple/liste a une mauvaise longueur" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "paramètre de config. inconnu" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "tx et rx ne peuvent être None tous les deux" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "spécification %c de conversion inconnue" +#~ msgid "type '%q' is not an acceptable base type" +#~ msgstr "le type '%q' n'est pas un type de base accepté" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "code de format '%c' inconnu pour un objet de type '%s'" +#~ msgid "type is not an acceptable base type" +#~ msgstr "le type n'est pas un type de base accepté" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "code de format '%c' inconnu pour un objet de type 'float'" +#~ msgid "type object '%q' has no attribute '%q'" +#~ msgstr "l'objet de type '%q' n'a pas d'attribut '%q'" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "code de format '%c' inconnu pour un objet de type 'str'" +#~ msgid "type takes 1 or 3 arguments" +#~ msgstr "le type prend 1 ou 3 arguments" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "paramètre de status inconnu" +#~ msgid "ulonglong too large" +#~ msgstr "ulonglong trop grand" -#: py/compile.c -msgid "unknown type" -msgstr "type inconnu" +#~ msgid "unary op %q not implemented" +#~ msgstr "opération unaire '%q' non implémentée" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "type '%q' inconnu" +#~ msgid "unexpected indent" +#~ msgstr "indentation inattendue" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "'{' sans correspondance dans le format" +#~ msgid "unexpected keyword argument" +#~ msgstr "argument nommé imprévu" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "attribut illisible" +#~ msgid "unexpected keyword argument '%q'" +#~ msgstr "argument nommé '%q' imprévu" -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "instruction Thumb '%s' non supportée avec %d arguments" +#~ msgid "unicode name escapes" +#~ msgstr "échappements de nom unicode" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "instruction Xtensa '%s' non supportée avec %d arguments" +#~ msgid "unindent does not match any outer indentation level" +#~ msgstr "la désindentation ne correspond à aucune indentation" -#: shared-bindings/displayio/TileGrid.c -#, fuzzy -msgid "unsupported bitmap type" -msgstr "type de bitmap non supporté" +#~ msgid "unknown config param" +#~ msgstr "paramètre de config. inconnu" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "caractère de format '%c' (0x%x) non supporté à l'index %d" +#~ msgid "unknown conversion specifier %c" +#~ msgstr "spécification %c de conversion inconnue" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "type non supporté pour %q: '%s'" +#~ msgid "unknown format code '%c' for object of type '%s'" +#~ msgstr "code de format '%c' inconnu pour un objet de type '%s'" -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "type non supporté pour l'opérateur" +#~ msgid "unknown format code '%c' for object of type 'float'" +#~ msgstr "code de format '%c' inconnu pour un objet de type 'float'" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "type non supporté pour %q: '%s', '%s'" +#~ msgid "unknown format code '%c' for object of type 'str'" +#~ msgstr "code de format '%c' inconnu pour un objet de type 'str'" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" +#~ msgid "unknown status param" +#~ msgstr "paramètre de status inconnu" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() a échoué" +#~ msgid "unknown type" +#~ msgstr "type inconnu" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "" +#~ msgid "unknown type '%q'" +#~ msgstr "type '%q' inconnu" -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "mauvais nombres d'arguments" +#~ msgid "unmatched '{' in format" +#~ msgstr "'{' sans correspondance dans le format" -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "mauvais nombre de valeurs à dégrouper" +#~ msgid "unreadable attribute" +#~ msgstr "attribut illisible" -#: shared-module/displayio/Shape.c #, fuzzy -msgid "x value out of bounds" -msgstr "adresse hors limites" +#~ msgid "unsupported Thumb instruction '%s' with %d arguments" +#~ msgstr "instruction Thumb '%s' non supportée avec %d arguments" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "y should be an int" -msgstr "y doit être un entier (int)" +#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" +#~ msgstr "instruction Xtensa '%s' non supportée avec %d arguments" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "adresse hors limites" +#~ msgid "unsupported format character '%c' (0x%x) at index %d" +#~ msgstr "caractère de format '%c' (0x%x) non supporté à l'index %d" -#: py/objrange.c -msgid "zero step" -msgstr "'step' nul" +#~ msgid "unsupported type for %q: '%s'" +#~ msgstr "type non supporté pour %q: '%s'" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Impossible de notifier la valeur de l'attribut. status: 0x%08lX" +#~ msgid "unsupported type for operator" +#~ msgstr "type non supporté pour l'opérateur" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" +#~ msgid "unsupported types for %q: '%s', '%s'" +#~ msgstr "type non supporté pour %q: '%s', '%s'" -#~ msgid "Function requires lock." -#~ msgstr "La fonction nécessite un verrou." +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() a échoué" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Seul les BMP non-compressé au format Windows sont supportés %d" +#~ msgid "wrong number of arguments" +#~ msgstr "mauvais nombres d'arguments" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Seul les BMP 24bits ou plus sont supportés %x" +#~ msgid "wrong number of values to unpack" +#~ msgstr "mauvais nombre de valeurs à dégrouper" -#, fuzzy -#~ msgid "position must be 2-tuple" -#~ msgstr "position doit être un 2-tuple" +#~ msgid "zero step" +#~ msgstr "'step' nul" diff --git a/locale/it_IT.po b/locale/it_IT.po index cd0da30f1..fca7fb382 100644 --- a/locale/it_IT.po +++ b/locale/it_IT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-02 22:09+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-10-02 16:27+0200\n" "Last-Translator: Enrico Paganin \n" "Language-Team: \n" @@ -23,37 +23,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr " File \"%q\"" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr " File \"%q\", riga %d" - #: main.c msgid " output:\n" msgstr " output:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "%%c necessita di int o char" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q in uso" -#: py/obj.c -msgid "%q index out of range" -msgstr "indice %q fuori intervallo" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "gli indici %q devono essere interi, non %s" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "slice del buffer devono essere della stessa lunghezza" @@ -63,166 +42,10 @@ msgstr "slice del buffer devono essere della stessa lunghezza" msgid "%q should be an int" msgstr "y dovrebbe essere un int" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "%q() prende %d argomenti posizionali ma ne sono stati forniti %d" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "'%q' argomento richiesto" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "'%s' aspetta una etichetta" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "'%s' aspetta un registro" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects a special register" -msgstr "'%s' aspetta un registro" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects an FPU register" -msgstr "'%s' aspetta un registro" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "'%s' aspetta un registro" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "'%s' aspetta un intero" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects at most r%d" -msgstr "'%s' aspetta un registro" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "'%s' aspetta un registro" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "intero '%s' non è nell'intervallo %d..%d" - -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "intero '%s' non è nell'intervallo %d..%d" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "l'oggetto '%s' non ha l'attributo '%q'" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "l'oggetto '%s' non è un iteratore" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "l'oggetto '%s' non è iterabile" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' e 'O' non sono formati supportati" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "'align' richiede 1 argomento" - -#: py/compile.c -msgid "'await' outside function" -msgstr "'await' al di fuori della funzione" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "'break' al di fuori del ciclo" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "'continue' al di fuori del ciclo" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "'data' richiede almeno 2 argomento" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "'data' richiede argomenti interi" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "'label' richiede 1 argomento" - -#: py/compile.c -msgid "'return' outside function" -msgstr "'return' al di fuori della funzione" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "'yield' al di fuori della funzione" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "" - -#: py/obj.c -msgid ", in %q\n" -msgstr ", in %q\n" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "0.0 elevato alla potenza di un numero complesso" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "pow() con tre argmomenti non supportata" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Un canale di interrupt hardware è già in uso" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP richiesto" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -233,55 +56,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "la palette deve essere lunga 32 byte" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "Tutte le periferiche I2C sono in uso" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "Tutte le periferiche SPI sono in uso" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "All UART peripherals are in use" -msgstr "Tutte le periferiche I2C sono in uso" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Tutti i canali eventi utilizati" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "Tutti i canali di eventi sincronizzati in uso" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Tutti i timer per questo pin sono in uso" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Tutti i timer utilizzati" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "funzionalità AnalogOut non supportata" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "AnalogOut ha solo 16 bit. Il valore deve essere meno di 65536." - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "AnalogOut non supportato sul pin scelto" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -306,19 +88,6 @@ msgstr "" "L'auto-reload è attivo. Salva i file su USB per eseguirli o entra nel REPL " "per disabilitarlo.\n" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "" -"Clock di bit e selezione parola devono condividere la stessa unità di clock" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "La profondità di bit deve essere multipla di 8." - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Entrambi i pin devono supportare gli interrupt hardware" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "La luminosità deve essere compreso tra 0 e 255" @@ -336,12 +105,6 @@ msgstr "Buffer di lunghezza non valida. Dovrebbe essere di %d bytes." msgid "Buffer must be at least length 1" msgstr "Il buffer deve essere lungo almeno 1" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy, c-format -msgid "Bus pin %d is already in use" -msgstr "DAC già in uso" - #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -351,15 +114,6 @@ msgstr "i buffer devono essere della stessa lunghezza" msgid "Bytes must be between 0 and 255." msgstr "I byte devono essere compresi tra 0 e 255" -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "assert a livello C" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -376,74 +130,26 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Impossible connettersi all'AP" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Impossibile cancellare valori" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Impossible disconnettersi all'AP" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "" - -#: ports/nrf/common-hal/microcontroller/Processor.c -#, fuzzy -msgid "Cannot get temperature" -msgstr "Impossibile leggere la temperatura. status: 0x%02x" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "Impossibile dare in output entrambi i canal sullo stesso pin" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Impossibile leggere senza pin MISO." -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "Impossibile registrare in un file" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Non è possibile rimontare '/' mentre l'USB è attiva." -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" -"Impossibile resettare nel bootloader poiché nessun bootloader è presente." - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Impossibile impostare la configurazione della STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "Impossibile subclasare slice" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Impossibile trasferire senza i pin MOSI e MISO." -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "Impossibile ricavare la grandezza scalare di sizeof inequivocabilmente" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Impossibile aggiornare status di i/f" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Impossibile scrivere senza pin MOSI." @@ -452,10 +158,6 @@ msgstr "Impossibile scrivere senza pin MOSI." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -468,28 +170,15 @@ msgstr "Inizializzazione del pin di clock fallita." msgid "Clock stretch too long" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Unità di clock in uso" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "I byte devono essere compresi tra 0 e 255" -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "Impossibile inizializzare l'UART" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Impossibile allocare il primo buffer" @@ -502,70 +191,21 @@ msgstr "Impossibile allocare il secondo buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "DAC già in uso" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy -msgid "Data 0 pin must be byte aligned" -msgstr "graphic deve essere lunga 2048 byte" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy -msgid "Data too large for advertisement packet" -msgstr "Impossibile inserire dati nel pacchetto di advertisement." - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Data too large for the advertisement packet" -msgstr "Impossibile inserire dati nel pacchetto di advertisement." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "La capacità di destinazione è più piccola di destination_length." - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Non so come passare l'oggetto alla funzione nativa" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "ESP8266 non supporta la modalità sicura." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 non supporta pull-down" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "Canale EXTINT già in uso" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Errore in ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "Errore nella regex" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Atteso un %q" @@ -574,8 +214,8 @@ msgstr "Atteso un %q" msgid "Expected a Characteristic" msgstr "Non è possibile aggiungere Characteristic." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Atteso un %q" @@ -585,261 +225,27 @@ msgstr "Atteso un %q" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to acquire mutex" -msgstr "Impossibile allocare buffer RX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Service.c -#, fuzzy, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to add service" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Impossibile allocare buffer RX" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Fallita allocazione del buffer RX di %d byte" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to change softdevice state" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to connect:" -msgstr "Impossibile connettersi. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to continue scanning" -msgstr "Impossible iniziare la scansione. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "Impossible iniziare la scansione. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to create mutex" -msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to discover services" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get local address" -msgstr "" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get softdevice state" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "Non è possibile aggiungere l'UUID del vendor specifico da 128-bit" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to release mutex" -msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start advertising" -msgstr "Impossibile avviare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "Impossibile avviare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start scanning" -msgstr "Impossible iniziare la scansione. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "Impossible iniziare la scansione. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to stop advertising" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "Impossibile fermare advertisement. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" - -#: py/moduerrno.c -msgid "File exists" -msgstr "File esistente" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 non supporta pull-up" - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Gruppo pieno" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "operazione I/O su file chiuso" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "operazione I2C non supportata" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" -"File .mpy incompatibile. Aggiorna tutti i file .mpy. Vedi http://adafru.it/" -"mpy-update per più informazioni." - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "Errore input/output" - #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "File BMP non valido" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frequenza PWM non valida" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "Argomento non valido" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Pin del clock di bit non valido" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "Invalid buffer size" -msgstr "lunghezza del buffer non valida" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Invalid channel count" -msgstr "Argomento non valido" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Pin di clock non valido" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "Pin dati non valido" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Direzione non valida." @@ -860,27 +266,10 @@ msgstr "Numero di bit non valido" msgid "Invalid phase" msgstr "Fase non valida" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin non valido" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Pin non valido per il canale sinistro" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Pin non valido per il canale destro" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "Pin non validi" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Polarità non valida" @@ -889,31 +278,14 @@ msgstr "Polarità non valida" msgid "Invalid run mode." msgstr "Modalità di esecuzione non valida." -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Invalid voice count" -msgstr "Tipo di servizio non valido" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "File wave non valido" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: py/objslice.c -msgid "Length must be an int" -msgstr "Length deve essere un intero" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "Length deve essere non negativo" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -929,11 +301,6 @@ msgstr "inizializzazione del pin MISO fallita." msgid "MOSI pin init failed." msgstr "inizializzazione del pin MOSI fallita." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "Frequenza massima su PWM è %dhz" - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -947,49 +314,10 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" -"Il ritardo di avvio del microfono deve essere nell'intervallo tra 0.0 e 1.0" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "Frequenza minima su PWM è 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "Frequenze PWM multiple non supportate. PWM già impostato a %shz." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Nessun DAC sul chip" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "Nessun canale DMA trovato" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Nessun supporto per PulseIn per %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Nessun pin RX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Nessun pin TX" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Nessun bus I2C predefinito" @@ -1002,44 +330,15 @@ msgstr "Nessun bus SPI predefinito" msgid "No default UART bus" msgstr "Nessun bus UART predefinito" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Nessun GCLK libero" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Nessun generatore hardware di numeri casuali disponibile" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Nessun supporto hardware per l'uscita analogica." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Nessun supporto hardware sul pin" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "Nessun file/directory esistente" - #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Impossible connettersi all'AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "In pausa" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -1047,15 +346,6 @@ msgstr "" "L'oggetto è stato deinizializzato e non può essere più usato. Crea un nuovo " "oggetto." -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "Odd parity is not supported" -msgstr "operazione I2C non supportata" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1073,19 +363,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Only slices with step=1 (aka None) are supported" -msgstr "solo slice con step=1 (aka None) sono supportate" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Solo tx supportato su UART1 (GPIO2)." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "L'oversampling deve essere multiplo di 8." - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1101,41 +378,6 @@ msgstr "" "frequenza PWM frequency non è scrivibile quando variable_frequency è " "impostato nel costruttore a False." -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM non è supportato sul pin %d" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "Permesso negato" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Il pin %q non ha capacità ADC" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "Il pin non ha capacità di ADC" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pin(16) non supporta pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pin non validi per SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -#, fuzzy -msgid "Plus any modules on the filesystem\n" -msgstr "Imposssibile rimontare il filesystem" - #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -1153,31 +395,19 @@ msgstr "calibrazione RTC non supportata su questa scheda" msgid "RTC is not supported on this board" msgstr "RTC non supportato su questa scheda" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "La modifica RTC non è supportata su questa scheda" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, fuzzy -msgid "Range out of bounds" -msgstr "indirizzo fuori limite" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Sola lettura" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "Filesystem in sola lettura" - #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Sola lettura" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Canale destro non supportato" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1190,52 +420,15 @@ msgstr "Modalità sicura in esecuzione! Auto-reload disattivato.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Modalità sicura in esecuzione! Codice salvato non in esecuzione.\n" -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "SDA o SCL necessitano un pull-up" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA deve essere attiva" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA richiesta" - -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Sample rate must be positive" -msgstr "STA deve essere attiva" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "" -"Frequenza di campionamento troppo alta. Il valore deve essere inferiore a %d" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Serializer in uso" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Slice non supportate" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "Suddivisione con sotto-catture" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "La dimensione dello stack deve essere almeno 256" @@ -1302,11 +495,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Per uscire resettare la scheda senza " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "" - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1314,23 +503,10 @@ msgstr "" msgid "Too many displays" msgstr "" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "Traceback (chiamata più recente per ultima):\n" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Tupla o struct_time richiesto come argomento" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) non esistente" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) non leggibile" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB occupata" @@ -1351,50 +527,14 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "Ipossibilitato ad allocare buffer per la conversione con segno" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Impossibile trovare un GCLK libero" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "Inizilizzazione del parser non possibile" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Imposssibile rimontare il filesystem" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Imposibile scrivere su nvm." -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy -msgid "Unexpected nrfx uuid type" -msgstr "indentazione inaspettata" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipo sconosciuto" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "baudrate non supportato" - #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -1404,22 +544,10 @@ msgstr "tipo di bitmap non supportato" msgid "Unsupported format" msgstr "Formato non supportato" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "Operazione non supportata" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Valore di pull non supportato." -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "Usa esptool per cancellare la flash e ricaricare Python invece" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "Le funzioni Viper non supportano più di 4 argomenti al momento" - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "" @@ -1428,16 +556,6 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "ATTENZIONE: Il nome del sorgente ha due estensioni\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" - #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -1450,37 +568,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "È stato richiesto l'avvio in modalità sicura da " -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "[errore addrinfo %d]" - -#: py/objtype.c -msgid "__init__() should return None" -msgstr "__init__() deve ritornare None" - -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "__init__() deve ritornare None, non '%s'" - -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "" - -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "un oggetto byte-like è richiesto" - -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "abort() chiamato" - -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "l'indirizzo %08x non è allineato a %d bytes" - #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "indirizzo fuori limite" @@ -1489,1443 +576,1572 @@ msgstr "indirizzo fuori limite" msgid "addresses is empty" msgstr "gli indirizzi sono vuoti" -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "l'argomento è una sequenza vuota" +#: shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "" -#: py/runtime.c -msgid "argument has wrong type" -msgstr "il tipo dell'argomento è errato" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "i bit devono essere 7, 8 o 9" + +#: shared-module/struct/__init__.c +#, fuzzy +msgid "buffer size must match format" +msgstr "slice del buffer devono essere della stessa lunghezza" -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "discrepanza di numero/tipo di argomenti" +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "slice del buffer devono essere della stessa lunghezza" -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'" +#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "buffer troppo piccolo" -#: shared-bindings/nvm/ByteArray.c py/objarray.c -msgid "array/bytes required on right side" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "attributi non ancora supportati" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "impossible convertire indirizzo in int" -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: py/builtinevex.c -msgid "bad compile mode" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" +"il buffer del colore deve esseer di 3 byte (RGB) o 4 byte (RGB + pad byte)" -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "specificatore di conversione scorretto" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "il buffer del colore deve essere un buffer o un int" -#: py/objstr.c -msgid "bad format string" -msgstr "stringa di formattazione scorretta" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" +"buffer del colore deve essere un bytearray o un array di tipo 'b' o 'B'" -#: py/binary.c -msgid "bad typecode" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "il colore deve essere compreso tra 0x000000 e 0xffffff" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "il colore deve essere un int" + +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "divisione per zero" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "sequenza vuota" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "end_x should be an int" +msgstr "y dovrebbe essere un int" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "DigitalInOut atteso" + +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" msgstr "" -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "operazione binaria %q non implementata" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "il filesystem deve fornire un metodo di mount" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "la funzione prende esattamente 9 argomenti" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "i bit devono essere 7, 8 o 9" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "step non valida" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "i bit devono essere 8" +#: shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "errore di dominio matematico" -#: shared-bindings/audioio/Mixer.c +#: shared-bindings/bleio/Peripheral.c #, fuzzy -msgid "bits_per_sample must be 8 or 16" -msgstr "i bit devono essere 7, 8 o 9" +msgid "name must be a string" +msgstr "argomenti nominati devono essere stringhe" -#: py/emitinlinethumb.c +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c #, fuzzy -msgid "branch not in range" -msgstr "argomento di chr() non è in range(256)" +msgid "no available NIC" +msgstr "busio.UART non ancora implementato" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "solo slice con step=1 (aka None) sono supportate" + +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "palette_index deve essere un int" + +#: shared-bindings/displayio/Bitmap.c +#, fuzzy +msgid "pixel coordinates out of bounds" +msgstr "indirizzo fuori limite" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter" + +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "la riga deve essere compattata e allineata alla parola" + +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" msgstr "" -#: shared-module/struct/__init__.c +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "la lunghezza di sleed deve essere non negativa" + +#: main.c +msgid "soft reboot\n" +msgstr "soft reboot\n" + +#: shared-bindings/displayio/Shape.c #, fuzzy -msgid "buffer size must match format" -msgstr "slice del buffer devono essere della stessa lunghezza" +msgid "start_x should be an int" +msgstr "y dovrebbe essere un int" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "slice del buffer devono essere della stessa lunghezza" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "step deve essere non zero" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer troppo lungo" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c -msgid "buffer too small" -msgstr "buffer troppo piccolo" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop non raggiungibile dall'inizio" -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "i buffer devono essere della stessa lunghezza" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "la soglia deve essere nell'intervallo 0-65536" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" msgstr "" -#: py/vm.c -msgid "byte code not implemented" -msgstr "byte code non implementato" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() prende esattamente un argomento" + +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "byte > 8 bit non supportati" +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "i bit devono essere 8" + +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "timestamp è fuori intervallo per il time_t della piattaforma" + +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "troppi argomenti" + +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "troppi argomenti forniti con il formato specificato" + +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "tipo di bitmap non supportato" + +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "indirizzo fuori limite" + +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y dovrebbe essere un int" + +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "indirizzo fuori limite" + +#~ msgid " File \"%q\"" +#~ msgstr " File \"%q\"" + +#~ msgid " File \"%q\", line %d" +#~ msgstr " File \"%q\", riga %d" + +#~ msgid "%%c requires int or char" +#~ msgstr "%%c necessita di int o char" + +#~ msgid "%q index out of range" +#~ msgstr "indice %q fuori intervallo" + +#~ msgid "%q indices must be integers, not %s" +#~ msgstr "gli indici %q devono essere interi, non %s" + +#~ msgid "%q() takes %d positional arguments but %d were given" +#~ msgstr "%q() prende %d argomenti posizionali ma ne sono stati forniti %d" + +#~ msgid "'%q' argument required" +#~ msgstr "'%q' argomento richiesto" + +#~ msgid "'%s' expects a label" +#~ msgstr "'%s' aspetta una etichetta" + +#~ msgid "'%s' expects a register" +#~ msgstr "'%s' aspetta un registro" + +#, fuzzy +#~ msgid "'%s' expects a special register" +#~ msgstr "'%s' aspetta un registro" + +#, fuzzy +#~ msgid "'%s' expects an FPU register" +#~ msgstr "'%s' aspetta un registro" + +#, fuzzy +#~ msgid "'%s' expects an address of the form [a, b]" +#~ msgstr "'%s' aspetta un registro" + +#~ msgid "'%s' expects an integer" +#~ msgstr "'%s' aspetta un intero" + +#, fuzzy +#~ msgid "'%s' expects at most r%d" +#~ msgstr "'%s' aspetta un registro" + +#, fuzzy +#~ msgid "'%s' expects {r0, r1, ...}" +#~ msgstr "'%s' aspetta un registro" + +#~ msgid "'%s' integer %d is not within range %d..%d" +#~ msgstr "intero '%s' non è nell'intervallo %d..%d" + +#, fuzzy +#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" +#~ msgstr "intero '%s' non è nell'intervallo %d..%d" + +#~ msgid "'%s' object has no attribute '%q'" +#~ msgstr "l'oggetto '%s' non ha l'attributo '%q'" + +#~ msgid "'%s' object is not an iterator" +#~ msgstr "l'oggetto '%s' non è un iteratore" + +#~ msgid "'%s' object is not iterable" +#~ msgstr "l'oggetto '%s' non è iterabile" + +#~ msgid "'align' requires 1 argument" +#~ msgstr "'align' richiede 1 argomento" + +#~ msgid "'await' outside function" +#~ msgstr "'await' al di fuori della funzione" + +#~ msgid "'break' outside loop" +#~ msgstr "'break' al di fuori del ciclo" + +#~ msgid "'continue' outside loop" +#~ msgstr "'continue' al di fuori del ciclo" + +#~ msgid "'data' requires at least 2 arguments" +#~ msgstr "'data' richiede almeno 2 argomento" + +#~ msgid "'data' requires integer arguments" +#~ msgstr "'data' richiede argomenti interi" + +#~ msgid "'label' requires 1 argument" +#~ msgstr "'label' richiede 1 argomento" + +#~ msgid "'return' outside function" +#~ msgstr "'return' al di fuori della funzione" + +#~ msgid "'yield' outside function" +#~ msgstr "'yield' al di fuori della funzione" + +#~ msgid ", in %q\n" +#~ msgstr ", in %q\n" + +#~ msgid "0.0 to a complex power" +#~ msgstr "0.0 elevato alla potenza di un numero complesso" + +#~ msgid "3-arg pow() not supported" +#~ msgstr "pow() con tre argmomenti non supportata" + +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Un canale di interrupt hardware è già in uso" + +#~ msgid "AP required" +#~ msgstr "AP richiesto" + +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Tutte le periferiche I2C sono in uso" + +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Tutte le periferiche SPI sono in uso" + +#, fuzzy +#~ msgid "All UART peripherals are in use" +#~ msgstr "Tutte le periferiche I2C sono in uso" + +#~ msgid "All event channels in use" +#~ msgstr "Tutti i canali eventi utilizati" + +#~ msgid "All sync event channels in use" +#~ msgstr "Tutti i canali di eventi sincronizzati in uso" + +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "funzionalità AnalogOut non supportata" + +#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." +#~ msgstr "AnalogOut ha solo 16 bit. Il valore deve essere meno di 65536." + +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "AnalogOut non supportato sul pin scelto" + +#~ msgid "Bit clock and word select must share a clock unit" +#~ msgstr "" +#~ "Clock di bit e selezione parola devono condividere la stessa unità di " +#~ "clock" + +#~ msgid "Bit depth must be multiple of 8." +#~ msgstr "La profondità di bit deve essere multipla di 8." + +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Entrambi i pin devono supportare gli interrupt hardware" + +#, fuzzy +#~ msgid "Bus pin %d is already in use" +#~ msgstr "DAC già in uso" + +#~ msgid "C-level assert" +#~ msgstr "assert a livello C" + +#~ msgid "Cannot connect to AP" +#~ msgstr "Impossible connettersi all'AP" + +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Impossible disconnettersi all'AP" + +#, fuzzy +#~ msgid "Cannot get temperature" +#~ msgstr "Impossibile leggere la temperatura. status: 0x%02x" + +#~ msgid "Cannot output both channels on the same pin" +#~ msgstr "Impossibile dare in output entrambi i canal sullo stesso pin" + +#~ msgid "Cannot record to a file" +#~ msgstr "Impossibile registrare in un file" + +#~ msgid "Cannot reset into bootloader because no bootloader is present." +#~ msgstr "" +#~ "Impossibile resettare nel bootloader poiché nessun bootloader è presente." + +#~ msgid "Cannot set STA config" +#~ msgstr "Impossibile impostare la configurazione della STA" + +#~ msgid "Cannot subclass slice" +#~ msgstr "Impossibile subclasare slice" + +#~ msgid "Cannot unambiguously get sizeof scalar" +#~ msgstr "" +#~ "Impossibile ricavare la grandezza scalare di sizeof inequivocabilmente" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Impossibile aggiornare status di i/f" + +#~ msgid "Clock unit in use" +#~ msgstr "Unità di clock in uso" + +#~ msgid "Could not initialize UART" +#~ msgstr "Impossibile inizializzare l'UART" + +#~ msgid "DAC already in use" +#~ msgstr "DAC già in uso" + +#, fuzzy +#~ msgid "Data 0 pin must be byte aligned" +#~ msgstr "graphic deve essere lunga 2048 byte" + +#, fuzzy +#~ msgid "Data too large for advertisement packet" +#~ msgstr "Impossibile inserire dati nel pacchetto di advertisement." + +#, fuzzy +#~ msgid "Data too large for the advertisement packet" +#~ msgstr "Impossibile inserire dati nel pacchetto di advertisement." + +#~ msgid "Destination capacity is smaller than destination_length." +#~ msgstr "La capacità di destinazione è più piccola di destination_length." + +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Non so come passare l'oggetto alla funzione nativa" + +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8266 non supporta la modalità sicura." + +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 non supporta pull-down" + +#~ msgid "EXTINT channel already in use" +#~ msgstr "Canale EXTINT già in uso" + +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Errore in ffi_prep_cif" + +#~ msgid "Error in regex" +#~ msgstr "Errore nella regex" + +#, fuzzy +#~ msgid "Failed to acquire mutex" +#~ msgstr "Impossibile allocare buffer RX" + +#, fuzzy +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to add service" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Impossibile allocare buffer RX" + +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Fallita allocazione del buffer RX di %d byte" + +#, fuzzy +#~ msgid "Failed to change softdevice state" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to connect:" +#~ msgstr "Impossibile connettersi. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to continue scanning" +#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to create mutex" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to discover services" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to get softdevice state" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Impossibile notificare valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "Non è possibile aggiungere l'UUID del vendor specifico da 128-bit" + +#, fuzzy +#~ msgid "Failed to release mutex" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start advertising" +#~ msgstr "Impossibile avviare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "Impossibile avviare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start scanning" +#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to stop advertising" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" + +#, fuzzy +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" + +#~ msgid "File exists" +#~ msgstr "File esistente" + +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 non supporta pull-up" + +#~ msgid "I/O operation on closed file" +#~ msgstr "operazione I/O su file chiuso" + +#~ msgid "I2C operation not supported" +#~ msgstr "operazione I2C non supportata" -#: py/objstr.c -msgid "bytes value out of range" -msgstr "valore byte fuori intervallo" +#~ msgid "" +#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." +#~ "it/mpy-update for more info." +#~ msgstr "" +#~ "File .mpy incompatibile. Aggiorna tutti i file .mpy. Vedi http://adafru." +#~ "it/mpy-update per più informazioni." -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "la calibrazione è fuori intervallo" +#~ msgid "Input/output error" +#~ msgstr "Errore input/output" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "la calibrazione è in sola lettura" +#~ msgid "Invalid argument" +#~ msgstr "Argomento non valido" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "valore di calibrazione fuori intervallo +/-127" +#~ msgid "Invalid bit clock pin" +#~ msgstr "Pin del clock di bit non valido" -#: py/emitinlinethumb.c #, fuzzy -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" +#~ msgid "Invalid buffer size" +#~ msgstr "lunghezza del buffer non valida" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" +#, fuzzy +#~ msgid "Invalid channel count" +#~ msgstr "Argomento non valido" -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "È possibile salvare solo bytecode" +#~ msgid "Invalid clock pin" +#~ msgstr "Pin di clock non valido" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "è possibile interrogare solo un parametro" +#~ msgid "Invalid data pin" +#~ msgstr "Pin dati non valido" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" -msgstr "" +#~ msgid "Invalid pin for left channel" +#~ msgstr "Pin non valido per il canale sinistro" -#: py/compile.c -msgid "can't assign to expression" -msgstr "impossibile assegnare all'espressione" +#~ msgid "Invalid pin for right channel" +#~ msgstr "Pin non valido per il canale destro" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "non è possibile convertire a complex" +#~ msgid "Invalid pins" +#~ msgstr "Pin non validi" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "non è possibile convertire %s a float" +#, fuzzy +#~ msgid "Invalid voice count" +#~ msgstr "Tipo di servizio non valido" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "non è possibile convertire %s a int" +#~ msgid "Length must be an int" +#~ msgstr "Length deve essere un intero" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" -msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q" +#~ msgid "Length must be non-negative" +#~ msgstr "Length deve essere non negativo" -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "impossibile convertire NaN in int" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Frequenza massima su PWM è %dhz" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "impossible convertire indirizzo in int" +#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" +#~ msgstr "" +#~ "Il ritardo di avvio del microfono deve essere nell'intervallo tra 0.0 e " +#~ "1.0" -#: py/objint.c -msgid "can't convert inf to int" -msgstr "impossibile convertire inf in int" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Frequenza minima su PWM è 1hz" -#: py/obj.c -msgid "can't convert to complex" -msgstr "non è possibile convertire a complex" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "Frequenze PWM multiple non supportate. PWM già impostato a %shz." -#: py/obj.c -msgid "can't convert to float" -msgstr "non è possibile convertire a float" +#~ msgid "No DAC on chip" +#~ msgstr "Nessun DAC sul chip" -#: py/obj.c -msgid "can't convert to int" -msgstr "non è possibile convertire a int" +#~ msgid "No DMA channel found" +#~ msgstr "Nessun canale DMA trovato" -#: py/objstr.c -msgid "can't convert to str implicitly" -msgstr "impossibile convertire a stringa implicitamente" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Nessun supporto per PulseIn per %q" -#: py/compile.c -msgid "can't declare nonlocal in outer code" -msgstr "impossibile dichiarare nonlocal nel codice esterno" +#~ msgid "No RX pin" +#~ msgstr "Nessun pin RX" -#: py/compile.c -msgid "can't delete expression" -msgstr "impossibile cancellare l'espessione" +#~ msgid "No TX pin" +#~ msgstr "Nessun pin TX" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" -msgstr "impossibile eseguire operazione binaria tra '%q' e '%q'" +#~ msgid "No free GCLKs" +#~ msgstr "Nessun GCLK libero" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" -msgstr "impossibile fare il modulo di un numero complesso" +#~ msgid "No hardware support for analog out." +#~ msgstr "Nessun supporto hardware per l'uscita analogica." -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "impossibile recuperare le configurazioni dell'AP" +#~ msgid "No hardware support on pin" +#~ msgstr "Nessun supporto hardware sul pin" -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "impossibile recuperare la configurazione della STA" +#~ msgid "No such file/directory" +#~ msgstr "Nessun file/directory esistente" -#: py/compile.c -msgid "can't have multiple **x" -msgstr "impossibile usare **x multipli" +#~ msgid "Not playing" +#~ msgstr "In pausa" -#: py/compile.c -msgid "can't have multiple *x" -msgstr "impossibile usare *x multipli" +#, fuzzy +#~ msgid "Odd parity is not supported" +#~ msgstr "operazione I2C non supportata" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "non è possibile convertire implicitamente '%q' in 'bool'" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Formato solo di Windows, BMP non compresso supportato %d" -#: py/emitnative.c -msgid "can't load from '%q'" -msgstr "impossibile caricare da '%q'" +#, fuzzy +#~ msgid "Only slices with step=1 (aka None) are supported" +#~ msgstr "solo slice con step=1 (aka None) sono supportate" -#: py/emitnative.c -msgid "can't load with '%q' index" -msgstr "impossibile caricare con indice '%q'" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Solo BMP true color (24 bpp o superiore) sono supportati %x" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" -msgstr "" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Solo tx supportato su UART1 (GPIO2)." -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" +#~ msgid "Oversample must be multiple of 8." +#~ msgstr "L'oversampling deve essere multiplo di 8." -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "impossibile impostare le configurazioni dell'AP" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM non è supportato sul pin %d" -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "impossibile impostare le configurazioni della STA" +#~ msgid "Permission denied" +#~ msgstr "Permesso negato" -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "impossibile impostare attributo" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Il pin %q non ha capacità ADC" -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "impossibile memorizzare '%q'" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "Il pin non ha capacità di ADC" -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "impossibile memorizzare in '%q'" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) non supporta pull" -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "impossibile memorizzare con indice '%q'" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pin non validi per SPI" -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" +#, fuzzy +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "Imposssibile rimontare il filesystem" -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" +#, fuzzy +#~ msgid "Range out of bounds" +#~ msgstr "indirizzo fuori limite" -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "creare '%q' istanze" +#~ msgid "Read-only filesystem" +#~ msgstr "Filesystem in sola lettura" -#: py/objtype.c -msgid "cannot create instance" -msgstr "impossibile creare un istanza" +#~ msgid "Right channel unsupported" +#~ msgstr "Canale destro non supportato" -#: py/runtime.c -msgid "cannot import name %q" -msgstr "impossibile imporate il nome %q" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "SDA o SCL necessitano un pull-up" -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "impossibile effettuare l'importazione relativa" +#~ msgid "STA must be active" +#~ msgstr "STA deve essere attiva" -#: py/emitnative.c -msgid "casting" -msgstr "casting" +#~ msgid "STA required" +#~ msgstr "STA richiesta" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" +#, fuzzy +#~ msgid "Sample rate must be positive" +#~ msgstr "STA deve essere attiva" -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "buffer dei caratteri troppo piccolo" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "" +#~ "Frequenza di campionamento troppo alta. Il valore deve essere inferiore a " +#~ "%d" -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "argomento di chr() non è in range(0x110000)" +#~ msgid "Serializer in use" +#~ msgstr "Serializer in uso" -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "argomento di chr() non è in range(256)" +#~ msgid "Splitting with sub-captures" +#~ msgstr "Suddivisione con sotto-catture" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" -"il buffer del colore deve esseer di 3 byte (RGB) o 4 byte (RGB + pad byte)" +#~ msgid "Traceback (most recent call last):\n" +#~ msgstr "Traceback (chiamata più recente per ultima):\n" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "il buffer del colore deve essere un buffer o un int" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) non esistente" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" -"buffer del colore deve essere un bytearray o un array di tipo 'b' o 'B'" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) non leggibile" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "il colore deve essere compreso tra 0x000000 e 0xffffff" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "Ipossibilitato ad allocare buffer per la conversione con segno" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "il colore deve essere un int" +#~ msgid "Unable to find free GCLK" +#~ msgstr "Impossibile trovare un GCLK libero" -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "complex divisione per zero" +#~ msgid "Unable to init parser" +#~ msgstr "Inizilizzazione del parser non possibile" -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "valori complessi non supportai" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Imposssibile rimontare il filesystem" -#: extmod/moduzlib.c -msgid "compression header" -msgstr "compressione dell'header" +#, fuzzy +#~ msgid "Unexpected nrfx uuid type" +#~ msgstr "indentazione inaspettata" -#: py/parse.c -msgid "constant must be an integer" -msgstr "la costante deve essere un intero" +#~ msgid "Unknown type" +#~ msgstr "Tipo sconosciuto" -#: py/emitnative.c -msgid "conversion to object" -msgstr "conversione in oggetto" +#~ msgid "Unsupported baudrate" +#~ msgstr "baudrate non supportato" -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "numeri decimali non supportati" +#~ msgid "Unsupported operation" +#~ msgstr "Operazione non supportata" -#: py/compile.c -msgid "default 'except' must be last" -msgstr "'except' predefinito deve essere ultimo" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "Usa esptool per cancellare la flash e ricaricare Python invece" -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" -"il buffer di destinazione deve essere un bytearray o un array di tipo 'B' " -"con bit_depth = 8" +#~ msgid "Viper functions don't currently support more than 4 arguments" +#~ msgstr "Le funzioni Viper non supportano più di 4 argomenti al momento" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" -"il buffer di destinazione deve essere un array di tipo 'H' con bit_depth = 16" +#~ msgid "[addrinfo error %d]" +#~ msgstr "[errore addrinfo %d]" -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "destination_length deve essere un int >= 0" +#~ msgid "__init__() should return None" +#~ msgstr "__init__() deve ritornare None" -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "sequanza di aggiornamento del dizionario ha la lunghezza errata" +#~ msgid "__init__() should return None, not '%s'" +#~ msgstr "__init__() deve ritornare None, non '%s'" -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "divisione per zero" +#~ msgid "a bytes-like object is required" +#~ msgstr "un oggetto byte-like è richiesto" -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "sono permesse solo gli argomenti pos o kw" +#~ msgid "abort() called" +#~ msgstr "abort() chiamato" -#: py/objdeque.c -msgid "empty" -msgstr "vuoto" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "l'indirizzo %08x non è allineato a %d bytes" -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "heap vuoto" +#~ msgid "arg is an empty sequence" +#~ msgstr "l'argomento è una sequenza vuota" -#: py/objstr.c -msgid "empty separator" -msgstr "separatore vuoto" +#~ msgid "argument has wrong type" +#~ msgstr "il tipo dell'argomento è errato" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "sequenza vuota" +#~ msgid "argument num/types mismatch" +#~ msgstr "discrepanza di numero/tipo di argomenti" -#: py/objstr.c -msgid "end of format while looking for conversion specifier" -msgstr "" +#~ msgid "argument should be a '%q' not a '%q'" +#~ msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "end_x should be an int" -msgstr "y dovrebbe essere un int" +#~ msgid "attributes not supported yet" +#~ msgstr "attributi non ancora supportati" -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "" +#~ msgid "bad conversion specifier" +#~ msgstr "specificatore di conversione scorretto" -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "le eccezioni devono derivare da BaseException" +#~ msgid "bad format string" +#~ msgstr "stringa di formattazione scorretta" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "':' atteso dopo lo specificatore di formato" +#~ msgid "binary op %q not implemented" +#~ msgstr "operazione binaria %q non implementata" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "DigitalInOut atteso" +#~ msgid "bits must be 8" +#~ msgstr "i bit devono essere 8" -#: py/obj.c -msgid "expected tuple/list" -msgstr "lista/tupla prevista" +#, fuzzy +#~ msgid "bits_per_sample must be 8 or 16" +#~ msgstr "i bit devono essere 7, 8 o 9" -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "argomenti nominati necessitano un dizionario" +#, fuzzy +#~ msgid "branch not in range" +#~ msgstr "argomento di chr() non è in range(256)" -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "pin atteso" +#~ msgid "buffer too long" +#~ msgstr "buffer troppo lungo" -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "istruzione assembler attesa" +#~ msgid "buffers must be the same length" +#~ msgstr "i buffer devono essere della stessa lunghezza" -#: py/compile.c -msgid "expecting just a value for set" -msgstr "un solo valore atteso per set" +#~ msgid "byte code not implemented" +#~ msgstr "byte code non implementato" -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "chiave:valore atteso per dict" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "byte > 8 bit non supportati" -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "argomento nominato aggiuntivo fornito" +#~ msgid "bytes value out of range" +#~ msgstr "valore byte fuori intervallo" -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "argomenti posizonali extra dati" +#~ msgid "calibration is out of range" +#~ msgstr "la calibrazione è fuori intervallo" -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" +#~ msgid "calibration is read only" +#~ msgstr "la calibrazione è in sola lettura" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "valore di calibrazione fuori intervallo +/-127" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "il filesystem deve fornire un metodo di mount" +#, fuzzy +#~ msgid "can only have up to 4 parameters to Thumb assembly" +#~ msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "" +#~ msgid "can only have up to 4 parameters to Xtensa assembly" +#~ msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "il primo bit deve essere il più significativo (MSB)" +#~ msgid "can only save bytecode" +#~ msgstr "È possibile salvare solo bytecode" -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "Locazione della flash deve essere inferiore a 1mb" +#~ msgid "can query only one param" +#~ msgstr "è possibile interrogare solo un parametro" -#: py/objint.c -msgid "float too big" -msgstr "float troppo grande" +#~ msgid "can't assign to expression" +#~ msgstr "impossibile assegnare all'espressione" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "il font deve essere lungo 2048 byte" +#~ msgid "can't convert %s to complex" +#~ msgstr "non è possibile convertire a complex" -#: py/objstr.c -msgid "format requires a dict" -msgstr "la formattazione richiede un dict" +#~ msgid "can't convert %s to float" +#~ msgstr "non è possibile convertire %s a float" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "la frequenza può essere o 80Mhz o 160Mhz" +#~ msgid "can't convert %s to int" +#~ msgstr "non è possibile convertire %s a int" -#: py/objdeque.c -msgid "full" -msgstr "pieno" +#~ msgid "can't convert '%q' object to %q implicitly" +#~ msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q" -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "la funzione non prende argomenti nominati" +#~ msgid "can't convert NaN to int" +#~ msgstr "impossibile convertire NaN in int" -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "la funzione prevede al massimo %d argmoneti, ma ne ha ricevuti %d" +#~ msgid "can't convert inf to int" +#~ msgstr "impossibile convertire inf in int" -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" -msgstr "la funzione ha ricevuto valori multipli per l'argomento '%q'" +#~ msgid "can't convert to complex" +#~ msgstr "non è possibile convertire a complex" -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "mancano %d argomenti posizionali obbligatori alla funzione" +#~ msgid "can't convert to float" +#~ msgstr "non è possibile convertire a float" -#: py/bc.c -msgid "function missing keyword-only argument" -msgstr "argomento nominato mancante alla funzione" +#~ msgid "can't convert to int" +#~ msgstr "non è possibile convertire a int" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "argomento nominato '%q' mancante alla funzione" +#~ msgid "can't convert to str implicitly" +#~ msgstr "impossibile convertire a stringa implicitamente" -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" -msgstr "mancante il #%d argomento posizonale obbligatorio della funzione" +#~ msgid "can't declare nonlocal in outer code" +#~ msgstr "impossibile dichiarare nonlocal nel codice esterno" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "" -"la funzione prende %d argomenti posizionali ma ne sono stati forniti %d" +#~ msgid "can't delete expression" +#~ msgstr "impossibile cancellare l'espessione" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "la funzione prende esattamente 9 argomenti" +#~ msgid "can't do binary op between '%q' and '%q'" +#~ msgstr "impossibile eseguire operazione binaria tra '%q' e '%q'" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "" +#~ msgid "can't do truncated division of a complex number" +#~ msgstr "impossibile fare il modulo di un numero complesso" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "" +#~ msgid "can't get AP config" +#~ msgstr "impossibile recuperare le configurazioni dell'AP" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "graphic deve essere lunga 2048 byte" +#~ msgid "can't get STA config" +#~ msgstr "impossibile recuperare la configurazione della STA" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "l'heap deve essere una lista" +#~ msgid "can't have multiple **x" +#~ msgstr "impossibile usare **x multipli" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "identificatore ridefinito come globale" +#~ msgid "can't have multiple *x" +#~ msgstr "impossibile usare *x multipli" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "identificatore ridefinito come nonlocal" +#~ msgid "can't implicitly convert '%q' to 'bool'" +#~ msgstr "non è possibile convertire implicitamente '%q' in 'bool'" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "baudrate impossibile" +#~ msgid "can't load from '%q'" +#~ msgstr "impossibile caricare da '%q'" -#: py/objstr.c -msgid "incomplete format" -msgstr "formato incompleto" +#~ msgid "can't load with '%q' index" +#~ msgstr "impossibile caricare con indice '%q'" -#: py/objstr.c -msgid "incomplete format key" -msgstr "" +#~ msgid "can't set AP config" +#~ msgstr "impossibile impostare le configurazioni dell'AP" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "padding incorretto" +#~ msgid "can't set STA config" +#~ msgstr "impossibile impostare le configurazioni della STA" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "indice fuori intervallo" +#~ msgid "can't set attribute" +#~ msgstr "impossibile impostare attributo" -#: py/obj.c -msgid "indices must be integers" -msgstr "gli indici devono essere interi" +#~ msgid "can't store '%q'" +#~ msgstr "impossibile memorizzare '%q'" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "inline assembler deve essere una funzione" +#~ msgid "can't store to '%q'" +#~ msgstr "impossibile memorizzare in '%q'" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "il secondo argomanto di int() deve essere >= 2 e <= 36" +#~ msgid "can't store with '%q' index" +#~ msgstr "impossibile memorizzare con indice '%q'" -#: py/objstr.c -msgid "integer required" -msgstr "intero richiesto" +#~ msgid "cannot create '%q' instances" +#~ msgstr "creare '%q' istanze" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" +#~ msgid "cannot create instance" +#~ msgstr "impossibile creare un istanza" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "periferica I2C invalida" +#~ msgid "cannot import name %q" +#~ msgstr "impossibile imporate il nome %q" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "periferica SPI invalida" +#~ msgid "cannot perform relative import" +#~ msgstr "impossibile effettuare l'importazione relativa" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "alarm non valido" +#~ msgid "casting" +#~ msgstr "casting" -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "argomenti non validi" +#~ msgid "chars buffer too small" +#~ msgstr "buffer dei caratteri troppo piccolo" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "lunghezza del buffer non valida" +#~ msgid "chr() arg not in range(0x110000)" +#~ msgstr "argomento di chr() non è in range(0x110000)" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "certificato non valido" +#~ msgid "chr() arg not in range(256)" +#~ msgstr "argomento di chr() non è in range(256)" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "bit dati invalidi" +#~ msgid "complex division by zero" +#~ msgstr "complex divisione per zero" -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "indice dupterm non valido" +#~ msgid "complex values not supported" +#~ msgstr "valori complessi non supportai" -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "formato non valido" +#~ msgid "compression header" +#~ msgstr "compressione dell'header" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "specificatore di formato non valido" +#~ msgid "constant must be an integer" +#~ msgstr "la costante deve essere un intero" -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "chiave non valida" +#~ msgid "conversion to object" +#~ msgstr "conversione in oggetto" -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "decoratore non valido in micropython" +#~ msgid "decimal numbers not supported" +#~ msgstr "numeri decimali non supportati" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "pin non valido" +#~ msgid "default 'except' must be last" +#~ msgstr "'except' predefinito deve essere ultimo" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "step non valida" +#~ msgid "" +#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " +#~ "= 8" +#~ msgstr "" +#~ "il buffer di destinazione deve essere un bytearray o un array di tipo 'B' " +#~ "con bit_depth = 8" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "bit di stop invalidi" +#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +#~ msgstr "" +#~ "il buffer di destinazione deve essere un array di tipo 'H' con bit_depth " +#~ "= 16" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "sintassi non valida" +#~ msgid "destination_length must be an int >= 0" +#~ msgstr "destination_length deve essere un int >= 0" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "sintassi invalida per l'intero" +#~ msgid "dict update sequence has wrong length" +#~ msgstr "sequanza di aggiornamento del dizionario ha la lunghezza errata" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "sintassi invalida per l'intero con base %d" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "sono permesse solo gli argomenti pos o kw" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "sintassi invalida per il numero" +#~ msgid "empty" +#~ msgstr "vuoto" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "il primo argomento di issubclass() deve essere una classe" +#~ msgid "empty heap" +#~ msgstr "heap vuoto" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" -"il secondo argomento di issubclass() deve essere una classe o una tupla di " -"classi" +#~ msgid "empty separator" +#~ msgstr "separatore vuoto" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" -"join prende una lista di oggetti str/byte consistenti con l'oggetto stesso" +#~ msgid "exceptions must derive from BaseException" +#~ msgstr "le eccezioni devono derivare da BaseException" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" -"argomento(i) nominati non ancora implementati - usare invece argomenti " -"normali" +#~ msgid "expected ':' after format specifier" +#~ msgstr "':' atteso dopo lo specificatore di formato" -#: py/bc.c -msgid "keywords must be strings" -msgstr "argomenti nominati devono essere stringhe" +#~ msgid "expected tuple/list" +#~ msgstr "lista/tupla prevista" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "etichetta '%q' non definita" +#~ msgid "expecting a dict for keyword args" +#~ msgstr "argomenti nominati necessitano un dizionario" -#: py/compile.c -msgid "label redefined" -msgstr "etichetta ridefinita" +#~ msgid "expecting a pin" +#~ msgstr "pin atteso" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len deve essere multiplo di 4" +#~ msgid "expecting an assembler instruction" +#~ msgstr "istruzione assembler attesa" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "" +#~ msgid "expecting just a value for set" +#~ msgstr "un solo valore atteso per set" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "lhs e rhs devono essere compatibili" +#~ msgid "expecting key:value for dict" +#~ msgstr "chiave:valore atteso per dict" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "local '%q' ha tipo '%q' ma sorgente è '%q'" +#~ msgid "extra keyword arguments given" +#~ msgstr "argomento nominato aggiuntivo fornito" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "locla '%q' utilizzato prima che il tipo fosse noto" +#~ msgid "extra positional arguments given" +#~ msgstr "argomenti posizonali extra dati" -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "variabile locale richiamata prima di un assegnamento" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "long int non supportata in questa build" +#~ msgid "firstbit must be MSB" +#~ msgstr "il primo bit deve essere il più significativo (MSB)" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "map buffer troppo piccolo" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "Locazione della flash deve essere inferiore a 1mb" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "errore di dominio matematico" +#~ msgid "float too big" +#~ msgstr "float troppo grande" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "profondità massima di ricorsione superata" +#~ msgid "font must be 2048 bytes long" +#~ msgstr "il font deve essere lungo 2048 byte" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "allocazione di memoria fallita, allocando %u byte" +#~ msgid "format requires a dict" +#~ msgstr "la formattazione richiede un dict" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "" -"allocazione di memoria fallita, allocazione di %d byte per codice nativo" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la frequenza può essere o 80Mhz o 160Mhz" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "allocazione di memoria fallita, l'heap è bloccato" +#~ msgid "full" +#~ msgstr "pieno" -#: py/builtinimport.c -msgid "module not found" -msgstr "modulo non trovato" +#~ msgid "function does not take keyword arguments" +#~ msgstr "la funzione non prende argomenti nominati" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "*x multipli nell'assegnamento" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "la funzione prevede al massimo %d argmoneti, ma ne ha ricevuti %d" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" +#~ msgid "function got multiple values for argument '%q'" +#~ msgstr "la funzione ha ricevuto valori multipli per l'argomento '%q'" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "ereditarietà multipla non supportata" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "mancano %d argomenti posizionali obbligatori alla funzione" -#: py/emitnative.c -msgid "must raise an object" -msgstr "deve lanciare un oggetto" +#~ msgid "function missing keyword-only argument" +#~ msgstr "argomento nominato mancante alla funzione" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "è necessario specificare tutte le sck/mosi/miso" +#~ msgid "function missing required keyword argument '%q'" +#~ msgstr "argomento nominato '%q' mancante alla funzione" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "" +#~ msgid "function missing required positional argument #%d" +#~ msgstr "mancante il #%d argomento posizonale obbligatorio della funzione" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "nome '%q'non definito" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "" +#~ "la funzione prende %d argomenti posizionali ma ne sono stati forniti %d" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "argomenti nominati devono essere stringhe" +#~ msgid "graphic must be 2048 bytes long" +#~ msgstr "graphic deve essere lunga 2048 byte" -#: py/runtime.c -msgid "name not defined" -msgstr "nome non definito" +#~ msgid "heap must be a list" +#~ msgstr "l'heap deve essere una lista" -#: py/compile.c -msgid "name reused for argument" -msgstr "nome riutilizzato come argomento" +#~ msgid "identifier redefined as global" +#~ msgstr "identificatore ridefinito come globale" -#: py/emitnative.c -msgid "native yield" -msgstr "yield nativo" +#~ msgid "identifier redefined as nonlocal" +#~ msgstr "identificatore ridefinito come nonlocal" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "necessari più di %d valori da scompattare" +#~ msgid "impossible baudrate" +#~ msgstr "baudrate impossibile" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "potenza negativa senza supporto per float" +#~ msgid "incomplete format" +#~ msgstr "formato incompleto" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" +#~ msgid "incorrect padding" +#~ msgstr "padding incorretto" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "nessuna eccezione attiva da rilanciare" +#~ msgid "index out of range" +#~ msgstr "indice fuori intervallo" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -#, fuzzy -msgid "no available NIC" -msgstr "busio.UART non ancora implementato" +#~ msgid "indices must be integers" +#~ msgstr "gli indici devono essere interi" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "nessun binding per nonlocal trovato" +#~ msgid "inline assembler must be a function" +#~ msgstr "inline assembler deve essere una funzione" -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "nessun modulo chiamato '%q'" +#~ msgid "int() arg 2 must be >= 2 and <= 36" +#~ msgstr "il secondo argomanto di int() deve essere >= 2 e <= 36" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "attributo inesistente" +#~ msgid "integer required" +#~ msgstr "intero richiesto" -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "argomento non predefinito segue argmoento predfinito" +#~ msgid "invalid I2C peripheral" +#~ msgstr "periferica I2C invalida" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "trovata cifra non esadecimale" +#~ msgid "invalid SPI peripheral" +#~ msgstr "periferica SPI invalida" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "argomento non nominato dopo */**" +#~ msgid "invalid alarm" +#~ msgstr "alarm non valido" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "argomento non nominato seguito da argomento nominato" +#~ msgid "invalid arguments" +#~ msgstr "argomenti non validi" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#~ msgid "invalid buffer length" +#~ msgstr "lunghezza del buffer non valida" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "canale ADC non valido: %d" +#~ msgid "invalid cert" +#~ msgstr "certificato non valido" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" -"non tutti gli argomenti sono stati convertiti durante la formatazione in " -"stringhe" +#~ msgid "invalid data bits" +#~ msgstr "bit dati invalidi" -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "argomenti non sufficienti per la stringa di formattazione" +#~ msgid "invalid dupterm index" +#~ msgstr "indice dupterm non valido" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "oggetto '%s' non è una tupla o una lista" +#~ msgid "invalid format" +#~ msgstr "formato non valido" -#: py/obj.c -msgid "object does not support item assignment" -msgstr "" +#~ msgid "invalid format specifier" +#~ msgstr "specificatore di formato non valido" -#: py/obj.c -msgid "object does not support item deletion" -msgstr "" +#~ msgid "invalid key" +#~ msgstr "chiave non valida" -#: py/obj.c -msgid "object has no len" -msgstr "l'oggetto non ha lunghezza" +#~ msgid "invalid micropython decorator" +#~ msgstr "decoratore non valido in micropython" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "" +#~ msgid "invalid pin" +#~ msgstr "pin non valido" -#: py/runtime.c -msgid "object not an iterator" -msgstr "l'oggetto non è un iteratore" +#~ msgid "invalid stop bits" +#~ msgstr "bit di stop invalidi" -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" +#~ msgid "invalid syntax" +#~ msgstr "sintassi non valida" -#: py/sequence.c -msgid "object not in sequence" -msgstr "oggetto non in sequenza" +#~ msgid "invalid syntax for integer" +#~ msgstr "sintassi invalida per l'intero" -#: py/runtime.c -msgid "object not iterable" -msgstr "oggetto non iterabile" +#~ msgid "invalid syntax for integer with base %d" +#~ msgstr "sintassi invalida per l'intero con base %d" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "l'oggetto di tipo '%s' non implementa len()" +#~ msgid "invalid syntax for number" +#~ msgstr "sintassi invalida per il numero" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "" +#~ msgid "issubclass() arg 1 must be a class" +#~ msgstr "il primo argomento di issubclass() deve essere una classe" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "stringa di lunghezza dispari" +#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" +#~ msgstr "" +#~ "il secondo argomento di issubclass() deve essere una classe o una tupla " +#~ "di classi" -#: py/objstrunicode.c py/objstr.c -#, fuzzy -msgid "offset out of bounds" -msgstr "indirizzo fuori limite" +#~ msgid "join expects a list of str/bytes objects consistent with self object" +#~ msgstr "" +#~ "join prende una lista di oggetti str/byte consistenti con l'oggetto stesso" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "solo slice con step=1 (aka None) sono supportate" +#~ msgid "keyword argument(s) not yet implemented - use normal args instead" +#~ msgstr "" +#~ "argomento(i) nominati non ancora implementati - usare invece argomenti " +#~ "normali" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "ord() aspetta un carattere" +#~ msgid "keywords must be strings" +#~ msgstr "argomenti nominati devono essere stringhe" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" -"ord() aspettava un carattere, ma ha ricevuto una stringa di lunghezza %d" +#~ msgid "label '%q' not defined" +#~ msgstr "etichetta '%q' non definita" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "overflow convertendo long int in parola" +#~ msgid "label redefined" +#~ msgstr "etichetta ridefinita" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "la palette deve essere lunga 32 byte" +#~ msgid "len must be multiple of 4" +#~ msgstr "len deve essere multiplo di 4" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "palette_index deve essere un int" +#~ msgid "lhs and rhs should be compatible" +#~ msgstr "lhs e rhs devono essere compatibili" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "" +#~ msgid "local '%q' has type '%q' but source is '%q'" +#~ msgstr "local '%q' ha tipo '%q' ma sorgente è '%q'" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "parametri devono essere i registri in sequenza da a2 a a5" +#~ msgid "local '%q' used before type known" +#~ msgstr "locla '%q' utilizzato prima che il tipo fosse noto" -#: py/emitinlinethumb.c -#, fuzzy -msgid "parameters must be registers in sequence r0 to r3" -msgstr "parametri devono essere i registri in sequenza da a2 a a5" +#~ msgid "local variable referenced before assignment" +#~ msgstr "variabile locale richiamata prima di un assegnamento" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "il pin non implementa IRQ" +#~ msgid "long int not supported in this build" +#~ msgstr "long int non supportata in questa build" -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "indirizzo fuori limite" +#~ msgid "map buffer too small" +#~ msgstr "map buffer troppo piccolo" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#~ msgid "maximum recursion depth exceeded" +#~ msgstr "profondità massima di ricorsione superata" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter" +#~ msgid "memory allocation failed, allocating %u bytes" +#~ msgstr "allocazione di memoria fallita, allocando %u byte" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "pop sun un PulseIn vuoto" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "allocazione di memoria fallita, allocazione di %d byte per codice nativo" -#: py/objset.c -msgid "pop from an empty set" -msgstr "pop da un set vuoto" +#~ msgid "memory allocation failed, heap is locked" +#~ msgstr "allocazione di memoria fallita, l'heap è bloccato" -#: py/objlist.c -msgid "pop from empty list" -msgstr "pop da una lista vuota" +#~ msgid "module not found" +#~ msgstr "modulo non trovato" -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "popitem(): il dizionario è vuoto" +#~ msgid "multiple *x in assignment" +#~ msgstr "*x multipli nell'assegnamento" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "il terzo argomento di pow() non può essere 0" +#~ msgid "multiple inheritance not supported" +#~ msgstr "ereditarietà multipla non supportata" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "pow() con 3 argomenti richiede interi" +#~ msgid "must raise an object" +#~ msgstr "deve lanciare un oggetto" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "overflow della coda" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "è necessario specificare tutte le sck/mosi/miso" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#~ msgid "name '%q' is not defined" +#~ msgstr "nome '%q'non definito" -#: shared-bindings/_pixelbuf/__init__.c -#, fuzzy -msgid "readonly attribute" -msgstr "attributo non leggibile" +#~ msgid "name not defined" +#~ msgstr "nome non definito" -#: py/builtinimport.c -msgid "relative import" -msgstr "importazione relativa" +#~ msgid "name reused for argument" +#~ msgstr "nome riutilizzato come argomento" -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "lunghezza %d richiesta ma l'oggetto ha lunghezza %d" +#~ msgid "native yield" +#~ msgstr "yield nativo" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "" +#~ msgid "need more than %d values to unpack" +#~ msgstr "necessari più di %d valori da scompattare" -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "return aspettava '%q' ma ha ottenuto '%q'" +#~ msgid "negative power with no float support" +#~ msgstr "potenza negativa senza supporto per float" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "la riga deve essere compattata e allineata alla parola" +#~ msgid "no active exception to reraise" +#~ msgstr "nessuna eccezione attiva da rilanciare" -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "" +#~ msgid "no binding for nonlocal found" +#~ msgstr "nessun binding per nonlocal trovato" -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" -"il buffer sample_source deve essere un bytearray o un array di tipo 'h', " -"'H', 'b' o 'B'" +#~ msgid "no module named '%q'" +#~ msgstr "nessun modulo chiamato '%q'" -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "frequenza di campionamento fuori intervallo" +#~ msgid "no such attribute" +#~ msgstr "attributo inesistente" -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "scansione fallita" +#~ msgid "non-default argument follows default argument" +#~ msgstr "argomento non predefinito segue argmoento predfinito" -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "" +#~ msgid "non-hex digit found" +#~ msgstr "trovata cifra non esadecimale" -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "compilazione dello scrip non suportata" +#~ msgid "non-keyword arg after */**" +#~ msgstr "argomento non nominato dopo */**" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#~ msgid "non-keyword arg after keyword arg" +#~ msgstr "argomento non nominato seguito da argomento nominato" -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "segno non permesso nello spcificatore di formato della stringa" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "canale ADC non valido: %d" -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "segno non permesso nello spcificatore di formato 'c' della stringa" +#~ msgid "not all arguments converted during string formatting" +#~ msgstr "" +#~ "non tutti gli argomenti sono stati convertiti durante la formatazione in " +#~ "stringhe" -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "'}' singolo presente nella stringa di formattazione" +#~ msgid "not enough arguments for format string" +#~ msgstr "argomenti non sufficienti per la stringa di formattazione" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "la lunghezza di sleed deve essere non negativa" +#~ msgid "object '%s' is not a tuple or list" +#~ msgstr "oggetto '%s' non è una tupla o una lista" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "la step della slice non può essere zero" +#~ msgid "object has no len" +#~ msgstr "l'oggetto non ha lunghezza" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "small int overflow" +#~ msgid "object not an iterator" +#~ msgstr "l'oggetto non è un iteratore" -#: main.c -msgid "soft reboot\n" -msgstr "soft reboot\n" +#~ msgid "object not in sequence" +#~ msgstr "oggetto non in sequenza" -#: py/objstr.c -msgid "start/end indices" -msgstr "" +#~ msgid "object not iterable" +#~ msgstr "oggetto non iterabile" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y dovrebbe essere un int" +#~ msgid "object of type '%s' has no len()" +#~ msgstr "l'oggetto di tipo '%s' non implementa len()" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "step deve essere non zero" +#~ msgid "odd-length string" +#~ msgstr "stringa di lunghezza dispari" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "" +#, fuzzy +#~ msgid "offset out of bounds" +#~ msgstr "indirizzo fuori limite" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop non raggiungibile dall'inizio" +#~ msgid "ord expects a character" +#~ msgstr "ord() aspetta un carattere" -#: py/stream.c -msgid "stream operation not supported" -msgstr "operazione di stream non supportata" +#~ msgid "ord() expected a character, but string of length %d found" +#~ msgstr "" +#~ "ord() aspettava un carattere, ma ha ricevuto una stringa di lunghezza %d" -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "indice della stringa fuori intervallo" +#~ msgid "overflow converting long int to machine word" +#~ msgstr "overflow convertendo long int in parola" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "indici della stringa devono essere interi, non %s" +#~ msgid "palette must be 32 bytes long" +#~ msgstr "la palette deve essere lunga 32 byte" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "" +#~ msgid "parameters must be registers in sequence a2 to a5" +#~ msgstr "parametri devono essere i registri in sequenza da a2 a a5" -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: impossibile indicizzare" +#, fuzzy +#~ msgid "parameters must be registers in sequence r0 to r3" +#~ msgstr "parametri devono essere i registri in sequenza da a2 a a5" -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: indice fuori intervallo" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "il pin non implementa IRQ" -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: nessun campo" +#~ msgid "pop from an empty PulseIn" +#~ msgstr "pop sun un PulseIn vuoto" -#: py/objstr.c -msgid "substring not found" -msgstr "sottostringa non trovata" +#~ msgid "pop from an empty set" +#~ msgstr "pop da un set vuoto" -#: py/compile.c -msgid "super() can't find self" -msgstr "" +#~ msgid "pop from empty list" +#~ msgstr "pop da una lista vuota" -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "errore di sintassi nel JSON" +#~ msgid "popitem(): dictionary is empty" +#~ msgstr "popitem(): il dizionario è vuoto" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "errore di sintassi nel descrittore uctypes" +#~ msgid "position must be 2-tuple" +#~ msgstr "position deve essere una 2-tuple" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "la soglia deve essere nell'intervallo 0-65536" +#~ msgid "pow() 3rd argument cannot be 0" +#~ msgstr "il terzo argomento di pow() non può essere 0" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#~ msgid "pow() with 3 arguments requires integers" +#~ msgstr "pow() con 3 argomenti richiede interi" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "" +#~ msgid "queue overflow" +#~ msgstr "overflow della coda" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() prende esattamente un argomento" +#, fuzzy +#~ msgid "readonly attribute" +#~ msgstr "attributo non leggibile" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "" +#~ msgid "relative import" +#~ msgstr "importazione relativa" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "i bit devono essere 8" +#~ msgid "requested length %d but object has length %d" +#~ msgstr "lunghezza %d richiesta ma l'oggetto ha lunghezza %d" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "timestamp è fuori intervallo per il time_t della piattaforma" +#~ msgid "return expected '%q' but got '%q'" +#~ msgstr "return aspettava '%q' ma ha ottenuto '%q'" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "troppi argomenti" +#~ msgid "" +#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " +#~ "or 'B'" +#~ msgstr "" +#~ "il buffer sample_source deve essere un bytearray o un array di tipo 'h', " +#~ "'H', 'b' o 'B'" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "troppi argomenti forniti con il formato specificato" +#~ msgid "sampling rate out of range" +#~ msgstr "frequenza di campionamento fuori intervallo" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "troppi valori da scompattare (%d attesi)" +#~ msgid "scan failed" +#~ msgstr "scansione fallita" -#: py/objstr.c -msgid "tuple index out of range" -msgstr "indice della tupla fuori intervallo" +#~ msgid "script compilation not supported" +#~ msgstr "compilazione dello scrip non suportata" -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "tupla/lista ha la lunghezza sbagliata" +#~ msgid "sign not allowed in string format specifier" +#~ msgstr "segno non permesso nello spcificatore di formato della stringa" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "sign not allowed with integer format specifier 'c'" +#~ msgstr "segno non permesso nello spcificatore di formato 'c' della stringa" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "tx e rx non possono essere entrambi None" +#~ msgid "single '}' encountered in format string" +#~ msgstr "'}' singolo presente nella stringa di formattazione" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "il tipo '%q' non è un tipo di base accettabile" +#~ msgid "slice step cannot be zero" +#~ msgstr "la step della slice non può essere zero" -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "il tipo non è un tipo di base accettabile" +#~ msgid "small int overflow" +#~ msgstr "small int overflow" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "l'oggetto di tipo '%q' non ha l'attributo '%q'" +#~ msgid "stream operation not supported" +#~ msgstr "operazione di stream non supportata" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "tipo prende 1 o 3 argomenti" +#~ msgid "string index out of range" +#~ msgstr "indice della stringa fuori intervallo" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "ulonglong troppo grande" +#~ msgid "string indices must be integers, not %s" +#~ msgstr "indici della stringa devono essere interi, non %s" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "operazione unaria %q non implementata" +#~ msgid "struct: cannot index" +#~ msgstr "struct: impossibile indicizzare" -#: py/parse.c -msgid "unexpected indent" -msgstr "indentazione inaspettata" +#~ msgid "struct: index out of range" +#~ msgstr "struct: indice fuori intervallo" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "argomento nominato inaspettato" +#~ msgid "struct: no fields" +#~ msgstr "struct: nessun campo" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "argomento nominato '%q' inaspettato" +#~ msgid "substring not found" +#~ msgstr "sottostringa non trovata" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "" +#~ msgid "syntax error in JSON" +#~ msgstr "errore di sintassi nel JSON" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "" +#~ msgid "syntax error in uctypes descriptor" +#~ msgstr "errore di sintassi nel descrittore uctypes" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "parametro di configurazione sconosciuto" +#~ msgid "too many values to unpack (expected %d)" +#~ msgstr "troppi valori da scompattare (%d attesi)" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "specificatore di conversione %s sconosciuto" +#~ msgid "tuple index out of range" +#~ msgstr "indice della tupla fuori intervallo" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "codice di formattaione '%c' sconosciuto per oggetto di tipo '%s'" +#~ msgid "tuple/list has wrong length" +#~ msgstr "tupla/lista ha la lunghezza sbagliata" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'float'" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "tx e rx non possono essere entrambi None" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'str'" +#~ msgid "type '%q' is not an acceptable base type" +#~ msgstr "il tipo '%q' non è un tipo di base accettabile" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "prametro di stato sconosciuto" +#~ msgid "type is not an acceptable base type" +#~ msgstr "il tipo non è un tipo di base accettabile" -#: py/compile.c -msgid "unknown type" -msgstr "tipo sconosciuto" +#~ msgid "type object '%q' has no attribute '%q'" +#~ msgstr "l'oggetto di tipo '%q' non ha l'attributo '%q'" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "tipo '%q' sconosciuto" +#~ msgid "type takes 1 or 3 arguments" +#~ msgstr "tipo prende 1 o 3 argomenti" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "'{' spaiato nella stringa di formattazione" +#~ msgid "ulonglong too large" +#~ msgstr "ulonglong troppo grande" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "attributo non leggibile" +#~ msgid "unary op %q not implemented" +#~ msgstr "operazione unaria %q non implementata" -#: py/emitinlinethumb.c -#, fuzzy, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" +#~ msgid "unexpected indent" +#~ msgstr "indentazione inaspettata" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" +#~ msgid "unexpected keyword argument" +#~ msgstr "argomento nominato inaspettato" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "tipo di bitmap non supportato" +#~ msgid "unexpected keyword argument '%q'" +#~ msgstr "argomento nominato '%q' inaspettato" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "carattere di formattazione '%c' (0x%x) non supportato all indice %d" +#~ msgid "unknown config param" +#~ msgstr "parametro di configurazione sconosciuto" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "tipo non supportato per %q: '%s'" +#~ msgid "unknown conversion specifier %c" +#~ msgstr "specificatore di conversione %s sconosciuto" -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "tipo non supportato per l'operando" +#~ msgid "unknown format code '%c' for object of type '%s'" +#~ msgstr "codice di formattaione '%c' sconosciuto per oggetto di tipo '%s'" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "tipi non supportati per %q: '%s', '%s'" +#~ msgid "unknown format code '%c' for object of type 'float'" +#~ msgstr "" +#~ "codice di formattazione '%c' sconosciuto per oggetto di tipo 'float'" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" +#~ msgid "unknown format code '%c' for object of type 'str'" +#~ msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'str'" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() faillito" +#~ msgid "unknown status param" +#~ msgstr "prametro di stato sconosciuto" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "" +#~ msgid "unknown type" +#~ msgstr "tipo sconosciuto" -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "numero di argomenti errato" +#~ msgid "unknown type '%q'" +#~ msgstr "tipo '%q' sconosciuto" -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "numero di valori da scompattare non corretto" +#~ msgid "unmatched '{' in format" +#~ msgstr "'{' spaiato nella stringa di formattazione" + +#~ msgid "unreadable attribute" +#~ msgstr "attributo non leggibile" -#: shared-module/displayio/Shape.c #, fuzzy -msgid "x value out of bounds" -msgstr "indirizzo fuori limite" +#~ msgid "unsupported Thumb instruction '%s' with %d arguments" +#~ msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y dovrebbe essere un int" +#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" +#~ msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "indirizzo fuori limite" +#~ msgid "unsupported format character '%c' (0x%x) at index %d" +#~ msgstr "carattere di formattazione '%c' (0x%x) non supportato all indice %d" -#: py/objrange.c -msgid "zero step" -msgstr "zero step" +#~ msgid "unsupported type for %q: '%s'" +#~ msgstr "tipo non supportato per %q: '%s'" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Impossibile notificare valore dell'attributo. status: 0x%02x" +#~ msgid "unsupported type for operator" +#~ msgstr "tipo non supportato per l'operando" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#~ msgid "unsupported types for %q: '%s', '%s'" +#~ msgstr "tipi non supportati per %q: '%s', '%s'" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Formato solo di Windows, BMP non compresso supportato %d" +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() faillito" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Solo BMP true color (24 bpp o superiore) sono supportati %x" +#~ msgid "wrong number of arguments" +#~ msgstr "numero di argomenti errato" -#~ msgid "position must be 2-tuple" -#~ msgstr "position deve essere una 2-tuple" +#~ msgid "wrong number of values to unpack" +#~ msgstr "numero di valori da scompattare non corretto" + +#~ msgid "zero step" +#~ msgstr "zero step" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 1cd3fac2a..ba1044494 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-02 22:09+1100\n" +"POT-Creation-Date: 2019-03-28 09:57+1100\n" "PO-Revision-Date: 2018-10-02 21:14-0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,37 +23,16 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" -#: py/obj.c -msgid " File \"%q\"" -msgstr " Arquivo \"%q\"" - -#: py/obj.c -msgid " File \"%q\", line %d" -msgstr " Arquivo \"%q\", linha %d" - #: main.c msgid " output:\n" msgstr " saída:\n" -#: py/objstr.c -#, c-format -msgid "%%c requires int or char" -msgstr "%%c requer int ou char" - #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q em uso" -#: py/obj.c -msgid "%q index out of range" -msgstr "" - -#: py/obj.c -msgid "%q indices must be integers, not %s" -msgstr "" - -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "buffers devem ser o mesmo tamanho" @@ -63,166 +42,10 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "%q should be an int" msgstr "y deve ser um int" -#: py/objnamedtuple.c py/bc.c -msgid "%q() takes %d positional arguments but %d were given" -msgstr "" - -#: py/argcheck.c -msgid "'%q' argument required" -msgstr "'%q' argumento(s) requerido(s)" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a label" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects a special register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an FPU register" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an address of the form [a, b]" -msgstr "" - -#: py/emitinlinextensa.c py/emitinlinethumb.c -#, c-format -msgid "'%s' expects an integer" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects at most r%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' expects {r0, r1, ...}" -msgstr "" - -#: py/emitinlinextensa.c -#, c-format -msgid "'%s' integer %d is not within range %d..%d" -msgstr "" - -#: py/emitinlinethumb.c -#, c-format -msgid "'%s' integer 0x%x does not fit in mask 0x%x" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item assignment" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object does not support item deletion" -msgstr "" - -#: py/runtime.c -msgid "'%s' object has no attribute '%q'" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not an iterator" -msgstr "" - -#: py/objtype.c py/runtime.c -#, c-format -msgid "'%s' object is not callable" -msgstr "" - -#: py/runtime.c -#, c-format -msgid "'%s' object is not iterable" -msgstr "" - -#: py/obj.c -#, c-format -msgid "'%s' object is not subscriptable" -msgstr "" - -#: py/objstr.c -msgid "'=' alignment not allowed in string format specifier" -msgstr "" - #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' e 'O' não são tipos de formato suportados" -#: py/compile.c -msgid "'align' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'await' outside function" -msgstr "" - -#: py/compile.c -msgid "'break' outside loop" -msgstr "" - -#: py/compile.c -msgid "'continue' outside loop" -msgstr "" - -#: py/compile.c -msgid "'data' requires at least 2 arguments" -msgstr "" - -#: py/compile.c -msgid "'data' requires integer arguments" -msgstr "" - -#: py/compile.c -msgid "'label' requires 1 argument" -msgstr "" - -#: py/compile.c -msgid "'return' outside function" -msgstr "" - -#: py/compile.c -msgid "'yield' outside function" -msgstr "" - -#: py/compile.c -msgid "*x must be assignment target" -msgstr "" - -#: py/obj.c -msgid ", in %q\n" -msgstr "" - -#: py/objcomplex.c -msgid "0.0 to a complex power" -msgstr "" - -#: py/modbuiltins.c -msgid "3-arg pow() not supported" -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "A hardware interrupt channel is already in use" -msgstr "Um canal de interrupção de hardware já está em uso" - -#: ports/esp8266/modnetwork.c -msgid "AP required" -msgstr "AP requerido" - #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -233,55 +56,14 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "buffers devem ser o mesmo tamanho" -#: ports/nrf/common-hal/busio/I2C.c -msgid "All I2C peripherals are in use" -msgstr "Todos os periféricos I2C estão em uso" - -#: ports/nrf/common-hal/busio/SPI.c -msgid "All SPI peripherals are in use" -msgstr "Todos os periféricos SPI estão em uso" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "All UART peripherals are in use" -msgstr "Todos os periféricos I2C estão em uso" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "All event channels in use" -msgstr "Todos os canais de eventos em uso" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c ports/atmel-samd/audio_dma.c -msgid "All sync event channels in use" -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Todos os temporizadores para este pino estão em uso" -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c -#: shared-module/_pew/PewPew.c +#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Todos os temporizadores em uso" -#: ports/nrf/common-hal/analogio/AnalogOut.c -msgid "AnalogOut functionality not supported" -msgstr "Funcionalidade AnalogOut não suportada" - -#: shared-bindings/analogio/AnalogOut.c -msgid "AnalogOut is only 16 bits. Value must be less than 65536." -msgstr "" - -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "AnalogOut not supported on given pin" -msgstr "Saída analógica não suportada no pino fornecido" - -#: ports/atmel-samd/common-hal/pulseio/PulseOut.c -msgid "Another send is already active" -msgstr "Outro envio já está ativo" - #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "Array deve conter meias palavras (tipo 'H')" @@ -304,18 +86,6 @@ msgid "" "disable.\n" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Bit clock and word select must share a clock unit" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Bit depth must be multiple of 8." -msgstr "" - -#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c -msgid "Both pins must support hardware interrupts" -msgstr "Ambos os pinos devem suportar interrupções de hardware" - #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "O brilho deve estar entre 0 e 255" @@ -333,12 +103,6 @@ msgstr "Buffer de tamanho incorreto. Deve ser %d bytes." msgid "Buffer must be at least length 1" msgstr "" -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -#, fuzzy, c-format -msgid "Bus pin %d is already in use" -msgstr "DAC em uso" - #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -348,15 +112,6 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "Bytes must be between 0 and 255." msgstr "Os bytes devem estar entre 0 e 255." -#: ports/esp8266/esp_mphal.c -msgid "C-level assert" -msgstr "" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Can not use dotstar with %s" -msgstr "" - #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -373,73 +128,26 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "Cannot connect to AP" -msgstr "Não é possível conectar-se ao AP" - #: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Não é possível excluir valores" -#: ports/esp8266/modnetwork.c -msgid "Cannot disconnect from AP" -msgstr "Não é possível desconectar do AP" - -#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c -#: ports/nrf/common-hal/digitalio/DigitalInOut.c -msgid "Cannot get pull while in output mode" -msgstr "" - -#: ports/nrf/common-hal/microcontroller/Processor.c -#, fuzzy -msgid "Cannot get temperature" -msgstr "Não pode obter a temperatura. status: 0x%02x" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Cannot output both channels on the same pin" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Não é possível ler sem o pino MISO." -#: shared-bindings/audiobusio/PDMIn.c -msgid "Cannot record to a file" -msgstr "Não é possível gravar em um arquivo" - #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Não é possível remontar '/' enquanto o USB estiver ativo." -#: ports/atmel-samd/common-hal/microcontroller/__init__.c -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "Cannot reset into bootloader because no bootloader is present." -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot set STA config" -msgstr "Não é possível definir a configuração STA" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" -#: py/objslice.c -msgid "Cannot subclass slice" -msgstr "" - #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Não é possível transferir sem os pinos MOSI e MISO." -#: extmod/moductypes.c -msgid "Cannot unambiguously get sizeof scalar" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "Cannot update i/f status" -msgstr "Não é possível atualizar o status i/f" - #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Não é possível ler sem um pino MOSI" @@ -448,10 +156,6 @@ msgstr "Não é possível ler sem um pino MOSI" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" -#: ports/nrf/common-hal/bleio/Service.c -msgid "Characteristic already in use by another Service." -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -464,28 +168,15 @@ msgstr "Inicialização do pino de Clock falhou." msgid "Clock stretch too long" msgstr "Clock se estendeu por tempo demais" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Clock unit in use" -msgstr "Unidade de Clock em uso" - #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Os bytes devem estar entre 0 e 255." -#: ports/nrf/common-hal/bleio/UUID.c -#, c-format -msgid "Could not decode ble_uuid, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "Could not initialize UART" -msgstr "Não foi possível inicializar o UART" - #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Não pôde alocar primeiro buffer" @@ -498,69 +189,21 @@ msgstr "Não pôde alocar segundo buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "DAC already in use" -msgstr "DAC em uso" - -#: ports/atmel-samd/common-hal/displayio/ParallelBus.c -#: ports/nrf/common-hal/displayio/ParallelBus.c -msgid "Data 0 pin must be byte aligned" -msgstr "" - #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "Pedaço de dados deve seguir o pedaço de cortes" -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy -msgid "Data too large for advertisement packet" -msgstr "Não é possível ajustar dados no pacote de anúncios." - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Data too large for the advertisement packet" -msgstr "Não é possível ajustar dados no pacote de anúncios." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Destination capacity is smaller than destination_length." -msgstr "" - #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" -#: ports/unix/modffi.c -msgid "Don't know how to pass object to native function" -msgstr "Não sabe como passar o objeto para a função nativa" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Drive mode not used when direction is input." msgstr "" -#: ports/esp8266/common-hal/microcontroller/__init__.c -msgid "ESP8226 does not support safe mode." -msgstr "O ESP8226 não suporta o modo de segurança." - -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "ESP8266 does not support pull down." -msgstr "ESP8266 não suporta pull down." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "EXTINT channel already in use" -msgstr "Canal EXTINT em uso" - -#: ports/unix/modffi.c -msgid "Error in ffi_prep_cif" -msgstr "Erro no ffi_prep_cif" - -#: extmod/modure.c -msgid "Error in regex" -msgstr "Erro no regex" - -#: shared-bindings/pulseio/PulseOut.c shared-bindings/neopixel_write/__init__.c -#: shared-bindings/terminalio/Terminal.c shared-bindings/microcontroller/Pin.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Esperado um" @@ -569,8 +212,8 @@ msgstr "Esperado um" msgid "Expected a Characteristic" msgstr "Não é possível adicionar Característica." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Esperado um" @@ -580,257 +223,27 @@ msgstr "Esperado um" msgid "Expected tuple of length %d, got %d" msgstr "" -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to acquire mutex" -msgstr "Falha ao alocar buffer RX" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to acquire mutex, err 0x%04x" -msgstr "Não é possível ler o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Service.c -#, fuzzy, c-format -msgid "Failed to add characteristic, err 0x%04x" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to add service" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to add service, err 0x%04x" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "Failed to allocate RX buffer" -msgstr "Falha ao alocar buffer RX" - -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -#, c-format -msgid "Failed to allocate RX buffer of %d bytes" -msgstr "Falha ao alocar buffer RX de %d bytes" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to change softdevice state" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to connect:" -msgstr "" - -#: ports/nrf/common-hal/bleio/Device.c -msgid "Failed to continue scanning" -msgstr "" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to continue scanning, err 0x%04x" -msgstr "Não é possível iniciar o anúncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to create mutex" -msgstr "Não é possível ler o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to discover services" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Adapter.c -msgid "Failed to get local address" -msgstr "" - -#: ports/nrf/common-hal/bleio/Adapter.c -#, fuzzy -msgid "Failed to get softdevice state" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to notify or indicate attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read CCCD value, err 0x%04x" -msgstr "Não é possível ler o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, c-format -msgid "Failed to read attribute value, err 0x%04x" -msgstr "" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to read gatts value, err 0x%04x" -msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/UUID.c -#, fuzzy, c-format -msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -msgstr "Não é possível adicionar o UUID de 128 bits específico do fornecedor." - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to release mutex" -msgstr "Não é possível ler o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c -#, fuzzy, c-format -msgid "Failed to release mutex, err 0x%04x" -msgstr "Não é possível ler o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start advertising" -msgstr "Não é possível iniciar o anúncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to start advertising, err 0x%04x" -msgstr "Não é possível iniciar o anúncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to start scanning" -msgstr "Não é possível iniciar o anúncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Scanner.c -#, fuzzy, c-format -msgid "Failed to start scanning, err 0x%04x" -msgstr "Não é possível iniciar o anúncio. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Device.c -#, fuzzy -msgid "Failed to stop advertising" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Broadcaster.c -#: ports/nrf/common-hal/bleio/Peripheral.c -#, fuzzy, c-format -msgid "Failed to stop advertising, err 0x%04x" -msgstr "Não pode parar propaganda. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write attribute value, err 0x%04x" -msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" - -#: ports/nrf/common-hal/bleio/Characteristic.c -#, fuzzy, c-format -msgid "Failed to write gatts value, err 0x%04x" -msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" - -#: py/moduerrno.c -msgid "File exists" -msgstr "Arquivo já existe" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash erase failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash erase failed to start, err 0x%04x" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -msgid "Flash write failed" -msgstr "" - -#: ports/nrf/supervisor/internal_flash.c -#, c-format -msgid "Flash write failed to start, err 0x%04x" -msgstr "" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Frequency captured is above capability. Capture Paused." -msgstr "" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c #: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" -#: ports/esp8266/common-hal/digitalio/DigitalInOut.c -msgid "GPIO16 does not support pull up." -msgstr "GPIO16 não suporta pull up." - #: shared-module/displayio/Group.c msgid "Group full" msgstr "Grupo cheio" -#: ports/unix/file.c extmod/vfs_posix_file.c py/objstringio.c -msgid "I/O operation on closed file" -msgstr "Operação I/O no arquivo fechado" - -#: extmod/machine_i2c.c -msgid "I2C operation not supported" -msgstr "I2C operação não suportada" - -#: py/persistentcode.c -msgid "" -"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" -"mpy-update for more info." -msgstr "" - #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" -#: py/moduerrno.c -msgid "Input/output error" -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Arquivo BMP inválido" -#: ports/atmel-samd/common-hal/pulseio/PWMOut.c -#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +#: shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frequência PWM inválida" -#: py/moduerrno.c -msgid "Invalid argument" -msgstr "Argumento inválido" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Invalid bit clock pin" -msgstr "Pino de bit clock inválido" - -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "Invalid buffer size" -msgstr "Arquivo inválido" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "Invalid capture period. Valid range: 1 - 500" -msgstr "" - -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Invalid channel count" -msgstr "certificado inválido" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid clock pin" -msgstr "Pino do Clock inválido" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Invalid data pin" -msgstr "Pino de dados inválido" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Direção inválida" @@ -851,27 +264,10 @@ msgstr "Número inválido de bits" msgid "Invalid phase" msgstr "Fase Inválida" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pino inválido" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for left channel" -msgstr "Pino inválido para canal esquerdo" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Invalid pin for right channel" -msgstr "Pino inválido para canal direito" - -#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c -#: ports/atmel-samd/common-hal/busio/UART.c -#: ports/atmel-samd/common-hal/busio/SPI.c -#: ports/atmel-samd/common-hal/busio/I2C.c ports/nrf/common-hal/busio/I2C.c -msgid "Invalid pins" -msgstr "Pinos inválidos" - #: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -880,31 +276,14 @@ msgstr "" msgid "Invalid run mode." msgstr "" -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "Invalid voice count" -msgstr "certificado inválido" - #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Aqruivo de ondas inválido" -#: py/compile.c -msgid "LHS of keyword arg must be an id" -msgstr "" - #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" -#: py/objslice.c -msgid "Length must be an int" -msgstr "Tamanho deve ser um int" - -#: py/objslice.c -msgid "Length must be non-negative" -msgstr "" - #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -920,11 +299,6 @@ msgstr "Inicialização do pino MISO falhou" msgid "MOSI pin init failed." msgstr "Inicialização do pino MOSI falhou." -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Maximum PWM frequency is %dhz." -msgstr "A frequência máxima PWM é de %dhz." - #: shared-module/displayio/Shape.c #, c-format msgid "Maximum x value when mirrored is %d" @@ -938,48 +312,10 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" -#: shared-bindings/audiobusio/PDMIn.c -msgid "Microphone startup delay must be in range 0.0 to 1.0" -msgstr "" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -msgid "Minimum PWM frequency is 1hz." -msgstr "A frequência mínima PWM é de 1hz" - -#: ports/esp8266/common-hal/pulseio/PWMOut.c -#, c-format -msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -msgstr "Múltiplas frequências PWM não suportadas. PWM já definido para %dhz." - #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" -#: ports/atmel-samd/common-hal/analogio/AnalogOut.c -msgid "No DAC on chip" -msgstr "Nenhum DAC no chip" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "No DMA channel found" -msgstr "Nenhum canal DMA encontrado" - -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "No PulseIn support for %q" -msgstr "Não há suporte para PulseIn no pino %q" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No RX pin" -msgstr "Nenhum pino RX" - -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "No TX pin" -msgstr "Nenhum pino TX" - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -msgid "No available clocks" -msgstr "" - #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Nenhum barramento I2C padrão" @@ -992,59 +328,21 @@ msgstr "Nenhum barramento SPI padrão" msgid "No default UART bus" msgstr "Nenhum barramento UART padrão" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c -msgid "No free GCLKs" -msgstr "Não há GCLKs livre" - #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "" -#: ports/esp8266/common-hal/analogio/AnalogOut.c -msgid "No hardware support for analog out." -msgstr "Nenhum suporte de hardware para saída analógica." - -#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -msgid "No hardware support on pin" -msgstr "Nenhum suporte de hardware no pino" - -#: py/moduerrno.c -msgid "No space left on device" -msgstr "" - -#: py/moduerrno.c -msgid "No such file/directory" -msgstr "" - #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Não é possível conectar-se ao AP" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected." -msgstr "" - -#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c -msgid "Not playing" -msgstr "" - #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." msgstr "" "Objeto foi desinicializado e não pode ser mais usaado. Crie um novo objeto." -#: ports/nrf/common-hal/busio/UART.c -#, fuzzy -msgid "Odd parity is not supported" -msgstr "I2C operação não suportada" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Only 8 or 16 bit mono with " -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -1062,18 +360,6 @@ msgid "" "given" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Only slices with step=1 (aka None) are supported" -msgstr "" - -#: ports/esp8266/common-hal/busio/UART.c -msgid "Only tx supported on UART1 (GPIO2)." -msgstr "Apenas TX suportado no UART1 (GPIO2)." - -#: shared-bindings/audiobusio/PDMIn.c -msgid "Oversample must be multiple of 8." -msgstr "" - #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -1084,41 +370,6 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" -#: ports/esp8266/common-hal/pulseio/PWMOut.c ports/esp8266/machine_pwm.c -#, c-format -msgid "PWM not supported on pin %d" -msgstr "PWM não suportado no pino %d" - -#: py/moduerrno.c -msgid "Permission denied" -msgstr "Permissão negada" - -#: ports/esp8266/common-hal/analogio/AnalogIn.c -msgid "Pin %q does not have ADC capabilities" -msgstr "Pino %q não tem recursos de ADC" - -#: ports/atmel-samd/common-hal/analogio/AnalogIn.c -#: ports/nrf/common-hal/analogio/AnalogIn.c -msgid "Pin does not have ADC capabilities" -msgstr "O pino não tem recursos de ADC" - -#: ports/esp8266/machine_pin.c -msgid "Pin(16) doesn't support pull" -msgstr "Pino (16) não suporta pull" - -#: ports/esp8266/common-hal/busio/SPI.c -msgid "Pins not valid for SPI" -msgstr "Pinos não válidos para SPI" - -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Pixel beyond bounds of buffer" -msgstr "" - -#: py/builtinhelp.c -#, fuzzy -msgid "Plus any modules on the filesystem\n" -msgstr "Não é possível remontar o sistema de arquivos" - #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -1135,30 +386,19 @@ msgstr "A calibração RTC não é suportada nesta placa" msgid "RTC is not supported on this board" msgstr "O RTC não é suportado nesta placa" +#: shared-bindings/rtc/RTC.c msgid "RTC set is not supported on this board" msgstr "A mudança de RTC não é suportada nesta placa" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "Range out of bounds" -msgstr "" - #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Somente leitura" -#: extmod/vfs_fat.c py/moduerrno.c -msgid "Read-only filesystem" -msgstr "Sistema de arquivos somente leitura" - #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Somente leitura" -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Right channel unsupported" -msgstr "Canal direito não suportado" - #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -1171,50 +411,15 @@ msgstr "Rodando em modo seguro! Atualização automática está desligada.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Rodando em modo seguro! Não está executando o código salvo.\n" -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "SDA or SCL needs a pull up" -msgstr "SDA ou SCL precisa de um pull up" - -#: ports/esp8266/modnetwork.c -msgid "STA must be active" -msgstr "STA deve estar ativo" - -#: ports/esp8266/modnetwork.c -msgid "STA required" -msgstr "STA requerido" - -#: shared-bindings/audioio/Mixer.c -msgid "Sample rate must be positive" -msgstr "" - -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -#, c-format -msgid "Sample rate too high. It must be less than %d" -msgstr "Taxa de amostragem muito alta. Deve ser menor que %d" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Serializer in use" -msgstr "Serializer em uso" - #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" -#: ports/nrf/common-hal/bleio/Adapter.c -#, c-format -msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -msgstr "" - -#: extmod/modure.c -msgid "Splitting with sub-captures" -msgstr "" - #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "O tamanho da pilha deve ser pelo menos 256" @@ -1278,11 +483,7 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Para sair, por favor, reinicie a placa sem " -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -msgid "Too many channels in sample." -msgstr "Muitos canais na amostra." - -#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -1290,23 +491,10 @@ msgstr "" msgid "Too many displays" msgstr "" -#: py/obj.c -msgid "Traceback (most recent call last):\n" -msgstr "" - #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "" -#: ports/esp8266/machine_uart.c -#, c-format -msgid "UART(%d) does not exist" -msgstr "UART(%d) não existe" - -#: ports/esp8266/machine_uart.c -msgid "UART(1) can't read" -msgstr "UART(1) não pode ler" - #: shared-module/usb_hid/Device.c msgid "USB Busy" msgstr "USB ocupada" @@ -1327,49 +515,14 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c -msgid "Unable to allocate buffers for signed conversion" -msgstr "Não é possível alocar buffers para conversão assinada" - -#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "Unable to find free GCLK" -msgstr "Não é possível encontrar GCLK livre" - -#: py/parse.c -msgid "Unable to init parser" -msgstr "" - #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Unable to remount filesystem" -msgstr "Não é possível remontar o sistema de arquivos" - #: shared-bindings/nvm/ByteArray.c msgid "Unable to write to nvm." msgstr "Não é possível gravar no nvm." -#: ports/nrf/common-hal/bleio/UUID.c -msgid "Unexpected nrfx uuid type" -msgstr "" - -#: ports/unix/modffi.c -msgid "Unknown type" -msgstr "Tipo desconhecido" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "Unmatched number of items on RHS (expected %d, got %d)." -msgstr "" - -#: ports/atmel-samd/common-hal/busio/I2C.c -msgid "Unsupported baudrate" -msgstr "Taxa de transmissão não suportada" - #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -1379,22 +532,10 @@ msgstr "Taxa de transmissão não suportada" msgid "Unsupported format" msgstr "Formato não suportado" -#: py/moduerrno.c -msgid "Unsupported operation" -msgstr "" - #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "" -#: ports/esp8266/common-hal/storage/__init__.c -msgid "Use esptool to erase flash and re-upload Python instead" -msgstr "Use o esptool para apagar o flash e recarregar o Python" - -#: py/emitnative.c -msgid "Viper functions don't currently support more than 4 arguments" -msgstr "" - #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "" @@ -1403,16 +544,6 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "AVISO: Seu arquivo de código tem duas extensões\n" -#: py/builtinhelp.c -#, c-format -msgid "" -"Welcome to Adafruit CircuitPython %s!\n" -"\n" -"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" -"\n" -"To list built-in modules please do `help(\"modules\")`.\n" -msgstr "" - #: supervisor/shared/safe_mode.c msgid "" "You are running in safe mode which means something unanticipated happened.\n" @@ -1422,37 +553,6 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Você solicitou o início do modo de segurança" -#: ports/unix/modusocket.c -#, c-format -msgid "[addrinfo error %d]" -msgstr "" - -#: py/objtype.c -msgid "__init__() should return None" -msgstr "" - -#: py/objtype.c -#, c-format -msgid "__init__() should return None, not '%s'" -msgstr "" - -#: py/objobject.c -msgid "__new__ arg must be a user-type" -msgstr "" - -#: extmod/modubinascii.c extmod/moduhashlib.c -msgid "a bytes-like object is required" -msgstr "" - -#: lib/embed/abort_.c -msgid "abort() called" -msgstr "abort() chamado" - -#: ports/unix/modmachine.c extmod/machine_mem.c -#, c-format -msgid "address %08x is not aligned to %d bytes" -msgstr "endereço %08x não está alinhado com %d bytes" - #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "" @@ -1461,81 +561,14 @@ msgstr "" msgid "addresses is empty" msgstr "" -#: py/modbuiltins.c -msgid "arg is an empty sequence" -msgstr "" - -#: py/runtime.c -msgid "argument has wrong type" -msgstr "argumento tem tipo errado" - -#: py/argcheck.c -msgid "argument num/types mismatch" -msgstr "" - -#: py/runtime.c -msgid "argument should be a '%q' not a '%q'" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c py/objarray.c +#: shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" -#: py/objstr.c -msgid "attributes not supported yet" -msgstr "atributos ainda não suportados" - -#: ports/nrf/common-hal/bleio/Characteristic.c -msgid "bad GATT role" -msgstr "" - -#: py/builtinevex.c -msgid "bad compile mode" -msgstr "" - -#: py/objstr.c -msgid "bad conversion specifier" -msgstr "" - -#: py/objstr.c -msgid "bad format string" -msgstr "" - -#: py/binary.c -msgid "bad typecode" -msgstr "" - -#: py/emitnative.c -msgid "binary op %q not implemented" -msgstr "" - #: shared-bindings/busio/UART.c msgid "bits must be 7, 8 or 9" msgstr "" -#: extmod/machine_spi.c -msgid "bits must be 8" -msgstr "bits devem ser 8" - -#: shared-bindings/audioio/Mixer.c -#, fuzzy -msgid "bits_per_sample must be 8 or 16" -msgstr "bits devem ser 8" - -#: py/emitinlinethumb.c -#, fuzzy -msgid "branch not in range" -msgstr "Calibração está fora do intervalo" - -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "buf is too small. need %d bytes" -msgstr "" - -#: shared-bindings/audioio/RawSample.c -msgid "buffer must be a bytes-like object" -msgstr "" - #: shared-module/struct/__init__.c #, fuzzy msgid "buffer size must match format" @@ -1545,1332 +578,817 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "buffer slices must be of equal length" msgstr "" -#: ports/esp8266/machine_rtc.c -msgid "buffer too long" -msgstr "buffer muito longo" - #: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -#: py/modstruct.c msgid "buffer too small" msgstr "" -#: extmod/machine_spi.c -msgid "buffers must be the same length" -msgstr "buffers devem ser o mesmo tamanho" - #: shared-bindings/_pew/PewPew.c msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: py/vm.c -msgid "byte code not implemented" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" msgstr "" -#: shared-bindings/_pixelbuf/PixelBuf.c -#, c-format -msgid "byteorder is not an instance of ByteOrder (got a %s)" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: ports/atmel-samd/common-hal/busio/UART.c -msgid "bytes > 8 bits not supported" -msgstr "bytes > 8 bits não suportado" - -#: py/objstr.c -msgid "bytes value out of range" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is out of range" -msgstr "Calibração está fora do intervalo" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "" -#: ports/atmel-samd/bindings/samd/Clock.c -msgid "calibration is read only" -msgstr "Calibração é somente leitura" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" -#: ports/atmel-samd/common-hal/rtc/RTC.c -msgid "calibration value out of range +/-127" -msgstr "Valor de calibração fora do intervalo +/- 127" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "cor deve estar entre 0x000000 e 0xffffff" -#: py/emitinlinethumb.c -msgid "can only have up to 4 parameters to Thumb assembly" -msgstr "" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "cor deve ser um int" -#: py/emitinlinextensa.c -msgid "can only have up to 4 parameters to Xtensa assembly" -msgstr "" +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "divisão por zero" -#: py/persistentcode.c -msgid "can only save bytecode" -msgstr "" +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "seqüência vazia" -#: ports/esp8266/modnetwork.c -msgid "can query only one param" -msgstr "pode consultar apenas um parâmetro" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "end_x should be an int" +msgstr "y deve ser um int" -#: py/objtype.c -msgid "can't add special method to already-subclassed class" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" msgstr "" -#: py/compile.c -msgid "can't assign to expression" +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +msgid "file must be a file opened in byte mode" msgstr "" -#: py/obj.c -#, c-format -msgid "can't convert %s to complex" -msgstr "" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "sistema de arquivos deve fornecer método de montagem" -#: py/obj.c -#, c-format -msgid "can't convert %s to float" -msgstr "" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "função leva exatamente 9 argumentos" -#: py/obj.c -#, c-format -msgid "can't convert %s to int" -msgstr "" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "passo inválido" -#: py/objstr.c -msgid "can't convert '%q' object to %q implicitly" +#: shared-bindings/math/__init__.c +msgid "math domain error" msgstr "" -#: py/objint.c -msgid "can't convert NaN to int" -msgstr "" +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "heap deve ser uma lista" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: py/objint.c -msgid "can't convert inf to int" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: py/obj.c -msgid "can't convert to complex" +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: py/obj.c -msgid "can't convert to float" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: py/obj.c -msgid "can't convert to int" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: py/objstr.c -msgid "can't convert to str implicitly" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: py/compile.c -msgid "can't declare nonlocal in outer code" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: py/compile.c -msgid "can't delete expression" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "Linha deve ser comprimida e com as palavras alinhadas" + +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" msgstr "" -#: py/emitnative.c -msgid "can't do binary op between '%q' and '%q'" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" msgstr "" -#: py/objcomplex.c -msgid "can't do truncated division of a complex number" +#: main.c +msgid "soft reboot\n" msgstr "" -#: ports/esp8266/modnetwork.c -msgid "can't get AP config" -msgstr "não pode obter configuração de AP" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y deve ser um int" -#: ports/esp8266/modnetwork.c -msgid "can't get STA config" -msgstr "não pode obter a configuração STA" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "o passo deve ser diferente de zero" -#: py/compile.c -msgid "can't have multiple **x" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" msgstr "" -#: py/compile.c -msgid "can't have multiple *x" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" msgstr "" -#: py/emitnative.c -msgid "can't implicitly convert '%q' to 'bool'" -msgstr "" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "Limite deve estar no alcance de 0-65536" -#: py/emitnative.c -msgid "can't load from '%q'" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" msgstr "" -#: py/emitnative.c -msgid "can't load with '%q' index" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" msgstr "" -#: py/objgenerator.c -msgid "can't pend throw to just-started generator" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" msgstr "" -#: py/objgenerator.c -msgid "can't send non-None value to a just-started generator" -msgstr "" - -#: ports/esp8266/modnetwork.c -msgid "can't set AP config" -msgstr "não é possível definir a configuração do AP" - -#: ports/esp8266/modnetwork.c -msgid "can't set STA config" -msgstr "não é possível definir a configuração STA" - -#: py/objnamedtuple.c -msgid "can't set attribute" -msgstr "" - -#: py/emitnative.c -msgid "can't store '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store to '%q'" -msgstr "" - -#: py/emitnative.c -msgid "can't store with '%q' index" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from automatic field numbering to manual field specification" -msgstr "" - -#: py/objstr.c -msgid "" -"can't switch from manual field specification to automatic field numbering" -msgstr "" - -#: py/objtype.c -msgid "cannot create '%q' instances" -msgstr "" - -#: py/objtype.c -msgid "cannot create instance" -msgstr "não é possível criar instância" - -#: py/runtime.c -msgid "cannot import name %q" -msgstr "não pode importar nome %q" - -#: py/builtinimport.c -msgid "cannot perform relative import" -msgstr "" - -#: py/emitnative.c -msgid "casting" -msgstr "" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" - -#: shared-bindings/_stage/Text.c -msgid "chars buffer too small" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(0x110000)" -msgstr "" - -#: py/modbuiltins.c -msgid "chr() arg not in range(256)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "cor deve estar entre 0x000000 e 0xffffff" - -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "cor deve ser um int" - -#: py/objcomplex.c -msgid "complex division by zero" -msgstr "" - -#: py/parsenum.c py/objfloat.c -msgid "complex values not supported" -msgstr "" - -#: extmod/moduzlib.c -msgid "compression header" -msgstr "" - -#: py/parse.c -msgid "constant must be an integer" -msgstr "constante deve ser um inteiro" - -#: py/emitnative.c -msgid "conversion to object" -msgstr "" - -#: py/parsenum.c -msgid "decimal numbers not supported" -msgstr "" - -#: py/compile.c -msgid "default 'except' must be last" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "" -"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -msgstr "" - -#: shared-bindings/audiobusio/PDMIn.c -msgid "destination_length must be an int >= 0" -msgstr "destination_length deve ser um int >= 0" - -#: py/objdict.c -msgid "dict update sequence has wrong length" -msgstr "" - -#: shared-bindings/math/__init__.c py/runtime.c py/modmath.c py/objint_mpz.c -#: py/objint_longlong.c py/objfloat.c -msgid "division by zero" -msgstr "divisão por zero" - -#: ports/esp8266/modnetwork.c -msgid "either pos or kw args are allowed" -msgstr "pos ou kw args são permitidos" - -#: py/objdeque.c -msgid "empty" -msgstr "vazio" - -#: extmod/modutimeq.c extmod/moduheapq.c -msgid "empty heap" -msgstr "heap vazia" - -#: py/objstr.c -msgid "empty separator" -msgstr "" - -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "seqüência vazia" - -#: py/objstr.c -msgid "end of format while looking for conversion specifier" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" msgstr "" -#: shared-bindings/displayio/Shape.c +#: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy -msgid "end_x should be an int" -msgstr "y deve ser um int" - -#: ports/nrf/common-hal/busio/UART.c -#, c-format -msgid "error = 0x%08lX" -msgstr "erro = 0x%08lX" - -#: py/runtime.c -msgid "exceptions must derive from BaseException" -msgstr "" +msgid "timeout must be >= 0.0" +msgstr "bits devem ser 8" -#: py/objstr.c -msgid "expected ':' after format specifier" -msgstr "" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "timestamp fora do intervalo para a plataforma time_t" #: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "" - -#: py/obj.c -msgid "expected tuple/list" -msgstr "" - -#: py/modthread.c -msgid "expecting a dict for keyword args" -msgstr "" - -#: ports/esp8266/machine_pin.c -msgid "expecting a pin" -msgstr "esperando um pino" - -#: py/compile.c -msgid "expecting an assembler instruction" -msgstr "" - -#: py/compile.c -msgid "expecting just a value for set" -msgstr "" - -#: py/compile.c -msgid "expecting key:value for dict" -msgstr "" - -#: py/argcheck.c -msgid "extra keyword arguments given" -msgstr "argumentos extras de palavras-chave passados" - -#: py/argcheck.c -msgid "extra positional arguments given" -msgstr "argumentos extra posicionais passados" - -#: ports/unix/modffi.c -msgid "ffi_prep_closure_loc" -msgstr "ffi_prep_closure_loc" - -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c -msgid "file must be a file opened in byte mode" -msgstr "" - -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "sistema de arquivos deve fornecer método de montagem" - -#: py/objtype.c -msgid "first argument to super() must be type" -msgstr "" - -#: extmod/machine_spi.c -msgid "firstbit must be MSB" -msgstr "firstbit devem ser MSB" - -#: ports/esp8266/modesp.c -msgid "flash location must be below 1MByte" -msgstr "o local do flash deve estar abaixo de 1 MByte" - -#: py/objint.c -msgid "float too big" -msgstr "float muito grande" +msgid "too many arguments" +msgstr "muitos argumentos" -#: shared-bindings/_stage/Text.c -msgid "font must be 2048 bytes long" -msgstr "" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "Muitos argumentos fornecidos com o formato dado" -#: py/objstr.c -msgid "format requires a dict" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" msgstr "" -#: ports/esp8266/modmachine.c -msgid "frequency can only be either 80Mhz or 160MHz" -msgstr "A frequência só pode ser 80Mhz ou 160MHz" - -#: py/objdeque.c -msgid "full" -msgstr "cheio" - -#: py/argcheck.c -msgid "function does not take keyword arguments" -msgstr "função não aceita argumentos de palavras-chave" - -#: py/argcheck.c -#, c-format -msgid "function expected at most %d arguments, got %d" -msgstr "função esperada na maioria dos %d argumentos, obteve %d" - -#: py/objnamedtuple.c py/bc.c -msgid "function got multiple values for argument '%q'" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" msgstr "" -#: py/argcheck.c -#, c-format -msgid "function missing %d required positional arguments" -msgstr "função ausente %d requer argumentos posicionais" - -#: py/bc.c -msgid "function missing keyword-only argument" +#: shared-module/displayio/Shape.c +msgid "x value out of bounds" msgstr "" -#: py/bc.c -msgid "function missing required keyword argument '%q'" -msgstr "" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y deve ser um int" -#: py/bc.c -#, c-format -msgid "function missing required positional argument #%d" +#: shared-module/displayio/Shape.c +msgid "y value out of bounds" msgstr "" -#: py/argcheck.c py/objnamedtuple.c py/bc.c -#, c-format -msgid "function takes %d positional arguments but %d were given" -msgstr "função leva %d argumentos posicionais, mas apenas %d foram passadas" +#~ msgid " File \"%q\"" +#~ msgstr " Arquivo \"%q\"" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "função leva exatamente 9 argumentos" +#~ msgid " File \"%q\", line %d" +#~ msgstr " Arquivo \"%q\", linha %d" -#: py/objgenerator.c -msgid "generator already executing" -msgstr "" +#~ msgid "%%c requires int or char" +#~ msgstr "%%c requer int ou char" -#: py/objgenerator.c -msgid "generator ignored GeneratorExit" -msgstr "" +#~ msgid "'%q' argument required" +#~ msgstr "'%q' argumento(s) requerido(s)" -#: shared-bindings/_stage/Layer.c -msgid "graphic must be 2048 bytes long" -msgstr "" +#~ msgid "A hardware interrupt channel is already in use" +#~ msgstr "Um canal de interrupção de hardware já está em uso" -#: extmod/moduheapq.c -msgid "heap must be a list" -msgstr "heap deve ser uma lista" +#~ msgid "AP required" +#~ msgstr "AP requerido" -#: py/compile.c -msgid "identifier redefined as global" -msgstr "" +#~ msgid "All I2C peripherals are in use" +#~ msgstr "Todos os periféricos I2C estão em uso" -#: py/compile.c -msgid "identifier redefined as nonlocal" -msgstr "" +#~ msgid "All SPI peripherals are in use" +#~ msgstr "Todos os periféricos SPI estão em uso" -#: ports/esp8266/machine_hspi.c -msgid "impossible baudrate" -msgstr "taxa de transmissão impossível" +#, fuzzy +#~ msgid "All UART peripherals are in use" +#~ msgstr "Todos os periféricos I2C estão em uso" -#: py/objstr.c -msgid "incomplete format" -msgstr "formato incompleto" +#~ msgid "All event channels in use" +#~ msgstr "Todos os canais de eventos em uso" -#: py/objstr.c -msgid "incomplete format key" -msgstr "" +#~ msgid "AnalogOut functionality not supported" +#~ msgstr "Funcionalidade AnalogOut não suportada" -#: extmod/modubinascii.c -msgid "incorrect padding" -msgstr "preenchimento incorreto" +#~ msgid "AnalogOut not supported on given pin" +#~ msgstr "Saída analógica não suportada no pino fornecido" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c py/obj.c -msgid "index out of range" -msgstr "Índice fora do intervalo" +#~ msgid "Another send is already active" +#~ msgstr "Outro envio já está ativo" -#: py/obj.c -msgid "indices must be integers" -msgstr "" +#~ msgid "Both pins must support hardware interrupts" +#~ msgstr "Ambos os pinos devem suportar interrupções de hardware" -#: py/compile.c -msgid "inline assembler must be a function" -msgstr "" +#, fuzzy +#~ msgid "Bus pin %d is already in use" +#~ msgstr "DAC em uso" -#: py/parsenum.c -msgid "int() arg 2 must be >= 2 and <= 36" -msgstr "" +#~ msgid "Cannot connect to AP" +#~ msgstr "Não é possível conectar-se ao AP" -#: py/objstr.c -msgid "integer required" -msgstr "inteiro requerido" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Não é possível desconectar do AP" -#: ports/nrf/common-hal/bleio/Broadcaster.c -msgid "interval not in range 0.0020 to 10.24" -msgstr "" +#, fuzzy +#~ msgid "Cannot get temperature" +#~ msgstr "Não pode obter a temperatura. status: 0x%02x" -#: extmod/machine_i2c.c -msgid "invalid I2C peripheral" -msgstr "periférico I2C inválido" +#~ msgid "Cannot record to a file" +#~ msgstr "Não é possível gravar em um arquivo" -#: extmod/machine_spi.c -msgid "invalid SPI peripheral" -msgstr "periférico SPI inválido" +#~ msgid "Cannot set STA config" +#~ msgstr "Não é possível definir a configuração STA" -#: ports/esp8266/machine_rtc.c -msgid "invalid alarm" -msgstr "Alarme inválido" +#~ msgid "Cannot update i/f status" +#~ msgstr "Não é possível atualizar o status i/f" -#: lib/netutils/netutils.c -msgid "invalid arguments" -msgstr "argumentos inválidos" +#~ msgid "Clock unit in use" +#~ msgstr "Unidade de Clock em uso" -#: ports/esp8266/modnetwork.c -msgid "invalid buffer length" -msgstr "comprimento de buffer inválido" +#~ msgid "Could not initialize UART" +#~ msgstr "Não foi possível inicializar o UART" -#: extmod/modussl_axtls.c -msgid "invalid cert" -msgstr "certificado inválido" +#~ msgid "DAC already in use" +#~ msgstr "DAC em uso" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid data bits" -msgstr "Bits de dados inválidos" +#, fuzzy +#~ msgid "Data too large for advertisement packet" +#~ msgstr "Não é possível ajustar dados no pacote de anúncios." -#: extmod/uos_dupterm.c -msgid "invalid dupterm index" -msgstr "Índice de dupterm inválido" +#, fuzzy +#~ msgid "Data too large for the advertisement packet" +#~ msgstr "Não é possível ajustar dados no pacote de anúncios." -#: extmod/modframebuf.c -msgid "invalid format" -msgstr "formato inválido" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Não sabe como passar o objeto para a função nativa" -#: py/objstr.c -msgid "invalid format specifier" -msgstr "" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "O ESP8226 não suporta o modo de segurança." -#: extmod/modussl_axtls.c -msgid "invalid key" -msgstr "chave inválida" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 não suporta pull down." -#: py/compile.c -msgid "invalid micropython decorator" -msgstr "" +#~ msgid "EXTINT channel already in use" +#~ msgstr "Canal EXTINT em uso" -#: ports/esp8266/machine_pin.c -msgid "invalid pin" -msgstr "Pino inválido" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Erro no ffi_prep_cif" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "passo inválido" +#~ msgid "Error in regex" +#~ msgstr "Erro no regex" -#: ports/esp8266/common-hal/busio/UART.c ports/esp8266/machine_uart.c -msgid "invalid stop bits" -msgstr "Bits de parada inválidos" +#, fuzzy +#~ msgid "Failed to acquire mutex" +#~ msgstr "Falha ao alocar buffer RX" -#: py/compile.c py/parse.c -msgid "invalid syntax" -msgstr "" +#, fuzzy +#~ msgid "Failed to acquire mutex, err 0x%04x" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#: py/parsenum.c -msgid "invalid syntax for integer" -msgstr "" +#, fuzzy +#~ msgid "Failed to add characteristic, err 0x%04x" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/parsenum.c -#, c-format -msgid "invalid syntax for integer with base %d" -msgstr "" +#, fuzzy +#~ msgid "Failed to add service" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/parsenum.c -msgid "invalid syntax for number" -msgstr "" +#, fuzzy +#~ msgid "Failed to add service, err 0x%04x" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/objtype.c -msgid "issubclass() arg 1 must be a class" -msgstr "" +#~ msgid "Failed to allocate RX buffer" +#~ msgstr "Falha ao alocar buffer RX" -#: py/objtype.c -msgid "issubclass() arg 2 must be a class or a tuple of classes" -msgstr "" +#~ msgid "Failed to allocate RX buffer of %d bytes" +#~ msgstr "Falha ao alocar buffer RX de %d bytes" -#: py/objstr.c -msgid "join expects a list of str/bytes objects consistent with self object" -msgstr "" +#, fuzzy +#~ msgid "Failed to change softdevice state" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/argcheck.c -msgid "keyword argument(s) not yet implemented - use normal args instead" -msgstr "" +#, fuzzy +#~ msgid "Failed to continue scanning, err 0x%04x" +#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: py/bc.c -msgid "keywords must be strings" -msgstr "" +#, fuzzy +#~ msgid "Failed to create mutex" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#: py/emitinlinextensa.c py/emitinlinethumb.c -msgid "label '%q' not defined" -msgstr "" +#, fuzzy +#~ msgid "Failed to discover services" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/compile.c -msgid "label redefined" -msgstr "" +#, fuzzy +#~ msgid "Failed to get softdevice state" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: ports/esp8266/modesp.c -msgid "len must be multiple of 4" -msgstr "len deve ser múltiplo de 4" +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" -#: py/stream.c -msgid "length argument not allowed for this type" -msgstr "" +#, fuzzy +#~ msgid "Failed to read CCCD value, err 0x%04x" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#: py/objarray.c -msgid "lhs and rhs should be compatible" -msgstr "" +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#: py/emitnative.c -msgid "local '%q' has type '%q' but source is '%q'" -msgstr "" +#, fuzzy +#~ msgid "Failed to read gatts value, err 0x%04x" +#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" -#: py/emitnative.c -msgid "local '%q' used before type known" -msgstr "" +#, fuzzy +#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +#~ msgstr "" +#~ "Não é possível adicionar o UUID de 128 bits específico do fornecedor." -#: py/vm.c -msgid "local variable referenced before assignment" -msgstr "" +#, fuzzy +#~ msgid "Failed to release mutex" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#: py/objint.c -msgid "long int not supported in this build" -msgstr "" +#, fuzzy +#~ msgid "Failed to release mutex, err 0x%04x" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#: shared-bindings/_stage/Layer.c -msgid "map buffer too small" -msgstr "" +#, fuzzy +#~ msgid "Failed to start advertising" +#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: shared-bindings/math/__init__.c py/modmath.c -msgid "math domain error" -msgstr "" +#, fuzzy +#~ msgid "Failed to start advertising, err 0x%04x" +#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: py/runtime.c -msgid "maximum recursion depth exceeded" -msgstr "" +#, fuzzy +#~ msgid "Failed to start scanning" +#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: py/runtime.c -#, c-format -msgid "memory allocation failed, allocating %u bytes" -msgstr "" +#, fuzzy +#~ msgid "Failed to start scanning, err 0x%04x" +#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: ports/esp8266/modesp.c -#, c-format -msgid "memory allocation failed, allocating %u bytes for native code" -msgstr "alocação de memória falhou, alocando %u bytes para código nativo" +#, fuzzy +#~ msgid "Failed to stop advertising" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/runtime.c -msgid "memory allocation failed, heap is locked" -msgstr "" +#, fuzzy +#~ msgid "Failed to stop advertising, err 0x%04x" +#~ msgstr "Não pode parar propaganda. status: 0x%02x" -#: py/builtinimport.c -msgid "module not found" -msgstr "" +#, fuzzy +#~ msgid "Failed to write attribute value, err 0x%04x" +#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" -#: py/compile.c -msgid "multiple *x in assignment" -msgstr "" +#, fuzzy +#~ msgid "Failed to write gatts value, err 0x%04x" +#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" -#: py/objtype.c -msgid "multiple bases have instance lay-out conflict" -msgstr "" +#~ msgid "File exists" +#~ msgstr "Arquivo já existe" -#: py/objtype.c -msgid "multiple inheritance not supported" -msgstr "" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 não suporta pull up." -#: py/emitnative.c -msgid "must raise an object" -msgstr "" +#~ msgid "I/O operation on closed file" +#~ msgstr "Operação I/O no arquivo fechado" -#: extmod/machine_spi.c -msgid "must specify all of sck/mosi/miso" -msgstr "deve especificar todos sck/mosi/miso" +#~ msgid "I2C operation not supported" +#~ msgstr "I2C operação não suportada" -#: py/modbuiltins.c -msgid "must use keyword argument for key function" -msgstr "" +#~ msgid "Invalid argument" +#~ msgstr "Argumento inválido" -#: py/runtime.c -msgid "name '%q' is not defined" -msgstr "" +#~ msgid "Invalid bit clock pin" +#~ msgstr "Pino de bit clock inválido" -#: shared-bindings/bleio/Peripheral.c #, fuzzy -msgid "name must be a string" -msgstr "heap deve ser uma lista" +#~ msgid "Invalid buffer size" +#~ msgstr "Arquivo inválido" -#: py/runtime.c -msgid "name not defined" -msgstr "nome não definido" +#, fuzzy +#~ msgid "Invalid channel count" +#~ msgstr "certificado inválido" -#: py/compile.c -msgid "name reused for argument" -msgstr "" +#~ msgid "Invalid clock pin" +#~ msgstr "Pino do Clock inválido" -#: py/emitnative.c -msgid "native yield" -msgstr "" +#~ msgid "Invalid data pin" +#~ msgstr "Pino de dados inválido" -#: py/runtime.c -#, c-format -msgid "need more than %d values to unpack" -msgstr "precisa de mais de %d valores para desempacotar" +#~ msgid "Invalid pin for left channel" +#~ msgstr "Pino inválido para canal esquerdo" -#: py/runtime.c py/objint_mpz.c py/objint_longlong.c -msgid "negative power with no float support" -msgstr "" +#~ msgid "Invalid pin for right channel" +#~ msgstr "Pino inválido para canal direito" -#: py/runtime.c py/objint_mpz.c -msgid "negative shift count" -msgstr "" +#~ msgid "Invalid pins" +#~ msgstr "Pinos inválidos" -#: py/vm.c -msgid "no active exception to reraise" -msgstr "" +#, fuzzy +#~ msgid "Invalid voice count" +#~ msgstr "certificado inválido" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" +#~ msgid "Length must be an int" +#~ msgstr "Tamanho deve ser um int" -#: py/compile.c -msgid "no binding for nonlocal found" -msgstr "" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "A frequência máxima PWM é de %dhz." -#: py/builtinimport.c -msgid "no module named '%q'" -msgstr "" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "A frequência mínima PWM é de 1hz" -#: shared-bindings/_pixelbuf/__init__.c py/runtime.c -msgid "no such attribute" -msgstr "" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Múltiplas frequências PWM não suportadas. PWM já definido para %dhz." -#: py/compile.c -msgid "non-default argument follows default argument" -msgstr "" +#~ msgid "No DAC on chip" +#~ msgstr "Nenhum DAC no chip" -#: extmod/modubinascii.c -msgid "non-hex digit found" -msgstr "" +#~ msgid "No DMA channel found" +#~ msgstr "Nenhum canal DMA encontrado" -#: py/compile.c -msgid "non-keyword arg after */**" -msgstr "" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Não há suporte para PulseIn no pino %q" -#: py/compile.c -msgid "non-keyword arg after keyword arg" -msgstr "" +#~ msgid "No RX pin" +#~ msgstr "Nenhum pino RX" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#~ msgid "No TX pin" +#~ msgstr "Nenhum pino TX" -#: ports/esp8266/machine_adc.c -#, c-format -msgid "not a valid ADC Channel: %d" -msgstr "não é um canal ADC válido: %d" +#~ msgid "No free GCLKs" +#~ msgstr "Não há GCLKs livre" -#: py/objstr.c -msgid "not all arguments converted during string formatting" -msgstr "" +#~ msgid "No hardware support for analog out." +#~ msgstr "Nenhum suporte de hardware para saída analógica." -#: py/objstr.c -msgid "not enough arguments for format string" -msgstr "" +#~ msgid "No hardware support on pin" +#~ msgstr "Nenhum suporte de hardware no pino" -#: py/obj.c -#, c-format -msgid "object '%s' is not a tuple or list" -msgstr "" - -#: py/obj.c -msgid "object does not support item assignment" -msgstr "" - -#: py/obj.c -msgid "object does not support item deletion" -msgstr "" +#, fuzzy +#~ msgid "Odd parity is not supported" +#~ msgstr "I2C operação não suportada" -#: py/obj.c -msgid "object has no len" -msgstr "" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Apenas formato Windows, BMP descomprimido suportado" -#: py/obj.c -msgid "object is not subscriptable" -msgstr "" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Apenas cores verdadeiras (24 bpp ou maior) BMP suportadas" -#: py/runtime.c -msgid "object not an iterator" -msgstr "" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Apenas TX suportado no UART1 (GPIO2)." -#: py/objtype.c py/runtime.c -msgid "object not callable" -msgstr "" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM não suportado no pino %d" -#: py/sequence.c -msgid "object not in sequence" -msgstr "objeto não em seqüência" +#~ msgid "Permission denied" +#~ msgstr "Permissão negada" -#: py/runtime.c -msgid "object not iterable" -msgstr "objeto não iterável" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pino %q não tem recursos de ADC" -#: py/obj.c -#, c-format -msgid "object of type '%s' has no len()" -msgstr "" +#~ msgid "Pin does not have ADC capabilities" +#~ msgstr "O pino não tem recursos de ADC" -#: py/obj.c -msgid "object with buffer protocol required" -msgstr "" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pino (16) não suporta pull" -#: extmod/modubinascii.c -msgid "odd-length string" -msgstr "" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pinos não válidos para SPI" -#: py/objstrunicode.c py/objstr.c -msgid "offset out of bounds" -msgstr "" +#, fuzzy +#~ msgid "Plus any modules on the filesystem\n" +#~ msgstr "Não é possível remontar o sistema de arquivos" -#: shared-bindings/nvm/ByteArray.c py/objarray.c py/objtuple.c -#: py/objstrunicode.c py/objstr.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" +#~ msgid "Read-only filesystem" +#~ msgstr "Sistema de arquivos somente leitura" -#: py/modbuiltins.c -msgid "ord expects a character" -msgstr "" +#~ msgid "Right channel unsupported" +#~ msgstr "Canal direito não suportado" -#: py/modbuiltins.c -#, c-format -msgid "ord() expected a character, but string of length %d found" -msgstr "" +#~ msgid "SDA or SCL needs a pull up" +#~ msgstr "SDA ou SCL precisa de um pull up" -#: py/objint_mpz.c -msgid "overflow converting long int to machine word" -msgstr "" +#~ msgid "STA must be active" +#~ msgstr "STA deve estar ativo" -#: shared-bindings/_stage/Text.c shared-bindings/_stage/Layer.c -msgid "palette must be 32 bytes long" -msgstr "" +#~ msgid "STA required" +#~ msgstr "STA requerido" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" +#~ msgid "Sample rate too high. It must be less than %d" +#~ msgstr "Taxa de amostragem muito alta. Deve ser menor que %d" -#: py/compile.c -msgid "parameter annotation must be an identifier" -msgstr "" +#~ msgid "Serializer in use" +#~ msgstr "Serializer em uso" -#: py/emitinlinextensa.c -msgid "parameters must be registers in sequence a2 to a5" -msgstr "" +#~ msgid "Too many channels in sample." +#~ msgstr "Muitos canais na amostra." -#: py/emitinlinethumb.c -msgid "parameters must be registers in sequence r0 to r3" -msgstr "" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) não existe" -#: ports/esp8266/machine_pin.c -msgid "pin does not have IRQ capabilities" -msgstr "Pino não tem recursos de IRQ" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) não pode ler" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" -msgstr "" +#~ msgid "Unable to allocate buffers for signed conversion" +#~ msgstr "Não é possível alocar buffers para conversão assinada" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#~ msgid "Unable to find free GCLK" +#~ msgstr "Não é possível encontrar GCLK livre" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Não é possível remontar o sistema de arquivos" -#: ports/atmel-samd/common-hal/pulseio/PulseIn.c -#: ports/nrf/common-hal/pulseio/PulseIn.c -#: ports/esp8266/common-hal/pulseio/PulseIn.c -msgid "pop from an empty PulseIn" -msgstr "" +#~ msgid "Unknown type" +#~ msgstr "Tipo desconhecido" -#: py/objset.c -msgid "pop from an empty set" -msgstr "" +#~ msgid "Unsupported baudrate" +#~ msgstr "Taxa de transmissão não suportada" -#: py/objlist.c -msgid "pop from empty list" -msgstr "" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "Use o esptool para apagar o flash e recarregar o Python" -#: py/objdict.c -msgid "popitem(): dictionary is empty" -msgstr "" +#~ msgid "abort() called" +#~ msgstr "abort() chamado" -#: py/objint_mpz.c -msgid "pow() 3rd argument cannot be 0" -msgstr "" +#~ msgid "address %08x is not aligned to %d bytes" +#~ msgstr "endereço %08x não está alinhado com %d bytes" -#: py/objint_mpz.c -msgid "pow() with 3 arguments requires integers" -msgstr "" +#~ msgid "argument has wrong type" +#~ msgstr "argumento tem tipo errado" -#: extmod/modutimeq.c -msgid "queue overflow" -msgstr "estouro de fila" +#~ msgid "attributes not supported yet" +#~ msgstr "atributos ainda não suportados" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "rawbuf is not the same size as buf" -msgstr "" +#~ msgid "bits must be 8" +#~ msgstr "bits devem ser 8" -#: shared-bindings/_pixelbuf/__init__.c #, fuzzy -msgid "readonly attribute" -msgstr "atributo ilegível" - -#: py/builtinimport.c -msgid "relative import" -msgstr "" - -#: py/obj.c -#, c-format -msgid "requested length %d but object has length %d" -msgstr "" +#~ msgid "bits_per_sample must be 8 or 16" +#~ msgstr "bits devem ser 8" -#: py/compile.c -msgid "return annotation must be an identifier" -msgstr "" - -#: py/emitnative.c -msgid "return expected '%q' but got '%q'" -msgstr "" - -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "Linha deve ser comprimida e com as palavras alinhadas" - -#: py/objstr.c -msgid "rsplit(None,n)" -msgstr "" - -#: shared-bindings/audioio/RawSample.c -msgid "" -"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " -"'B'" -msgstr "" - -#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c -msgid "sampling rate out of range" -msgstr "Taxa de amostragem fora do intervalo" - -#: ports/esp8266/modnetwork.c -msgid "scan failed" -msgstr "varredura falhou" - -#: py/modmicropython.c -msgid "schedule stack full" -msgstr "" - -#: lib/utils/pyexec.c py/builtinimport.c -msgid "script compilation not supported" -msgstr "compilação de script não suportada" - -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" - -#: py/objstr.c -msgid "sign not allowed in string format specifier" -msgstr "" - -#: py/objstr.c -msgid "sign not allowed with integer format specifier 'c'" -msgstr "" - -#: py/objstr.c -msgid "single '}' encountered in format string" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "" +#, fuzzy +#~ msgid "branch not in range" +#~ msgstr "Calibração está fora do intervalo" -#: py/objslice.c py/sequence.c -msgid "slice step cannot be zero" -msgstr "" +#~ msgid "buffer too long" +#~ msgstr "buffer muito longo" -#: py/sequence.c py/objint.c -msgid "small int overflow" -msgstr "" +#~ msgid "buffers must be the same length" +#~ msgstr "buffers devem ser o mesmo tamanho" -#: main.c -msgid "soft reboot\n" -msgstr "" +#~ msgid "bytes > 8 bits not supported" +#~ msgstr "bytes > 8 bits não suportado" -#: py/objstr.c -msgid "start/end indices" -msgstr "" +#~ msgid "calibration is out of range" +#~ msgstr "Calibração está fora do intervalo" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y deve ser um int" +#~ msgid "calibration is read only" +#~ msgstr "Calibração é somente leitura" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "o passo deve ser diferente de zero" +#~ msgid "calibration value out of range +/-127" +#~ msgstr "Valor de calibração fora do intervalo +/- 127" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "" +#~ msgid "can query only one param" +#~ msgstr "pode consultar apenas um parâmetro" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "" +#~ msgid "can't get AP config" +#~ msgstr "não pode obter configuração de AP" -#: py/stream.c -msgid "stream operation not supported" -msgstr "" +#~ msgid "can't get STA config" +#~ msgstr "não pode obter a configuração STA" -#: py/objstrunicode.c -msgid "string index out of range" -msgstr "" +#~ msgid "can't set AP config" +#~ msgstr "não é possível definir a configuração do AP" -#: py/objstrunicode.c -#, c-format -msgid "string indices must be integers, not %s" -msgstr "" +#~ msgid "can't set STA config" +#~ msgstr "não é possível definir a configuração STA" -#: py/stream.c -msgid "string not supported; use bytes or bytearray" -msgstr "" +#~ msgid "cannot create instance" +#~ msgstr "não é possível criar instância" -#: extmod/moductypes.c -msgid "struct: cannot index" -msgstr "struct: não pode indexar" +#~ msgid "cannot import name %q" +#~ msgstr "não pode importar nome %q" -#: extmod/moductypes.c -msgid "struct: index out of range" -msgstr "struct: índice fora do intervalo" +#~ msgid "constant must be an integer" +#~ msgstr "constante deve ser um inteiro" -#: extmod/moductypes.c -msgid "struct: no fields" -msgstr "struct: sem campos" +#~ msgid "destination_length must be an int >= 0" +#~ msgstr "destination_length deve ser um int >= 0" -#: py/objstr.c -msgid "substring not found" -msgstr "" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "pos ou kw args são permitidos" -#: py/compile.c -msgid "super() can't find self" -msgstr "" +#~ msgid "empty" +#~ msgstr "vazio" -#: extmod/modujson.c -msgid "syntax error in JSON" -msgstr "erro de sintaxe no JSON" +#~ msgid "empty heap" +#~ msgstr "heap vazia" -#: extmod/moductypes.c -msgid "syntax error in uctypes descriptor" -msgstr "" +#~ msgid "error = 0x%08lX" +#~ msgstr "erro = 0x%08lX" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "Limite deve estar no alcance de 0-65536" +#~ msgid "expecting a pin" +#~ msgstr "esperando um pino" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#~ msgid "extra keyword arguments given" +#~ msgstr "argumentos extras de palavras-chave passados" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "" +#~ msgid "extra positional arguments given" +#~ msgstr "argumentos extra posicionais passados" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "" +#~ msgid "firstbit must be MSB" +#~ msgstr "firstbit devem ser MSB" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits devem ser 8" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "o local do flash deve estar abaixo de 1 MByte" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "timestamp fora do intervalo para a plataforma time_t" +#~ msgid "float too big" +#~ msgstr "float muito grande" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "muitos argumentos" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "A frequência só pode ser 80Mhz ou 160MHz" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "Muitos argumentos fornecidos com o formato dado" +#~ msgid "full" +#~ msgstr "cheio" -#: py/runtime.c -#, c-format -msgid "too many values to unpack (expected %d)" -msgstr "" +#~ msgid "function does not take keyword arguments" +#~ msgstr "função não aceita argumentos de palavras-chave" -#: py/objstr.c -msgid "tuple index out of range" -msgstr "" +#~ msgid "function expected at most %d arguments, got %d" +#~ msgstr "função esperada na maioria dos %d argumentos, obteve %d" -#: py/obj.c -msgid "tuple/list has wrong length" -msgstr "" +#~ msgid "function missing %d required positional arguments" +#~ msgstr "função ausente %d requer argumentos posicionais" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "tuple/list required on RHS" -msgstr "" +#~ msgid "function takes %d positional arguments but %d were given" +#~ msgstr "função leva %d argumentos posicionais, mas apenas %d foram passadas" -#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c -msgid "tx and rx cannot both be None" -msgstr "TX e RX não podem ser ambos" +#~ msgid "heap must be a list" +#~ msgstr "heap deve ser uma lista" -#: py/objtype.c -msgid "type '%q' is not an acceptable base type" -msgstr "" +#~ msgid "impossible baudrate" +#~ msgstr "taxa de transmissão impossível" -#: py/objtype.c -msgid "type is not an acceptable base type" -msgstr "" +#~ msgid "incomplete format" +#~ msgstr "formato incompleto" -#: py/runtime.c -msgid "type object '%q' has no attribute '%q'" -msgstr "" +#~ msgid "incorrect padding" +#~ msgstr "preenchimento incorreto" -#: py/objtype.c -msgid "type takes 1 or 3 arguments" -msgstr "" +#~ msgid "index out of range" +#~ msgstr "Índice fora do intervalo" -#: py/objint_longlong.c -msgid "ulonglong too large" -msgstr "" +#~ msgid "integer required" +#~ msgstr "inteiro requerido" -#: py/emitnative.c -msgid "unary op %q not implemented" -msgstr "" +#~ msgid "invalid I2C peripheral" +#~ msgstr "periférico I2C inválido" -#: py/parse.c -msgid "unexpected indent" -msgstr "" +#~ msgid "invalid SPI peripheral" +#~ msgstr "periférico SPI inválido" -#: py/bc.c -msgid "unexpected keyword argument" -msgstr "" +#~ msgid "invalid alarm" +#~ msgstr "Alarme inválido" -#: py/objnamedtuple.c py/bc.c -msgid "unexpected keyword argument '%q'" -msgstr "" +#~ msgid "invalid arguments" +#~ msgstr "argumentos inválidos" -#: py/lexer.c -msgid "unicode name escapes" -msgstr "" +#~ msgid "invalid buffer length" +#~ msgstr "comprimento de buffer inválido" -#: py/parse.c -msgid "unindent does not match any outer indentation level" -msgstr "" +#~ msgid "invalid cert" +#~ msgstr "certificado inválido" -#: ports/esp8266/modnetwork.c -msgid "unknown config param" -msgstr "parâmetro configuração desconhecido" +#~ msgid "invalid data bits" +#~ msgstr "Bits de dados inválidos" -#: py/objstr.c -#, c-format -msgid "unknown conversion specifier %c" -msgstr "" +#~ msgid "invalid dupterm index" +#~ msgstr "Índice de dupterm inválido" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type '%s'" -msgstr "" +#~ msgid "invalid format" +#~ msgstr "formato inválido" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'float'" -msgstr "" +#~ msgid "invalid key" +#~ msgstr "chave inválida" -#: py/objstr.c -#, c-format -msgid "unknown format code '%c' for object of type 'str'" -msgstr "" +#~ msgid "invalid pin" +#~ msgstr "Pino inválido" -#: ports/esp8266/modnetwork.c -msgid "unknown status param" -msgstr "parâmetro de status desconhecido" +#~ msgid "invalid stop bits" +#~ msgstr "Bits de parada inválidos" -#: py/compile.c -msgid "unknown type" -msgstr "" +#~ msgid "len must be multiple of 4" +#~ msgstr "len deve ser múltiplo de 4" -#: py/emitnative.c -msgid "unknown type '%q'" -msgstr "" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "alocação de memória falhou, alocando %u bytes para código nativo" -#: py/objstr.c -msgid "unmatched '{' in format" -msgstr "" +#~ msgid "must specify all of sck/mosi/miso" +#~ msgstr "deve especificar todos sck/mosi/miso" -#: py/objtype.c py/runtime.c -msgid "unreadable attribute" -msgstr "atributo ilegível" +#~ msgid "name not defined" +#~ msgstr "nome não definido" -#: py/emitinlinethumb.c -#, c-format -msgid "unsupported Thumb instruction '%s' with %d arguments" -msgstr "" +#~ msgid "need more than %d values to unpack" +#~ msgstr "precisa de mais de %d valores para desempacotar" -#: py/emitinlinextensa.c -#, c-format -msgid "unsupported Xtensa instruction '%s' with %d arguments" -msgstr "" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "não é um canal ADC válido: %d" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "" +#~ msgid "object not in sequence" +#~ msgstr "objeto não em seqüência" -#: py/objstr.c -#, c-format -msgid "unsupported format character '%c' (0x%x) at index %d" -msgstr "" +#~ msgid "object not iterable" +#~ msgstr "objeto não iterável" -#: py/runtime.c -msgid "unsupported type for %q: '%s'" -msgstr "" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "Pino não tem recursos de IRQ" -#: py/runtime.c -msgid "unsupported type for operator" -msgstr "" +#~ msgid "queue overflow" +#~ msgstr "estouro de fila" -#: py/runtime.c -msgid "unsupported types for %q: '%s', '%s'" -msgstr "" +#, fuzzy +#~ msgid "readonly attribute" +#~ msgstr "atributo ilegível" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" +#~ msgid "sampling rate out of range" +#~ msgstr "Taxa de amostragem fora do intervalo" -#: ports/esp8266/modnetwork.c -msgid "wifi_set_ip_info() failed" -msgstr "wifi_set_ip_info() falhou" +#~ msgid "scan failed" +#~ msgstr "varredura falhou" -#: shared-bindings/_pixelbuf/PixelBuf.c -msgid "write_args must be a list, tuple, or None" -msgstr "" +#~ msgid "script compilation not supported" +#~ msgstr "compilação de script não suportada" -#: py/objstr.c -msgid "wrong number of arguments" -msgstr "" +#~ msgid "struct: cannot index" +#~ msgstr "struct: não pode indexar" -#: py/runtime.c -msgid "wrong number of values to unpack" -msgstr "" +#~ msgid "struct: index out of range" +#~ msgstr "struct: índice fora do intervalo" -#: shared-module/displayio/Shape.c -msgid "x value out of bounds" -msgstr "" +#~ msgid "struct: no fields" +#~ msgstr "struct: sem campos" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y deve ser um int" +#~ msgid "syntax error in JSON" +#~ msgstr "erro de sintaxe no JSON" -#: shared-module/displayio/Shape.c -msgid "y value out of bounds" -msgstr "" +#~ msgid "tx and rx cannot both be None" +#~ msgstr "TX e RX não podem ser ambos" -#: py/objrange.c -msgid "zero step" -msgstr "passo zero" +#~ msgid "unknown config param" +#~ msgstr "parâmetro configuração desconhecido" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" +#~ msgid "unknown status param" +#~ msgstr "parâmetro de status desconhecido" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#~ msgid "unreadable attribute" +#~ msgstr "atributo ilegível" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Apenas formato Windows, BMP descomprimido suportado" +#~ msgid "wifi_set_ip_info() failed" +#~ msgstr "wifi_set_ip_info() falhou" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Apenas cores verdadeiras (24 bpp ou maior) BMP suportadas" +#~ msgid "zero step" +#~ msgstr "passo zero" -- cgit v1.2.3 From f3ec0514cdfc818c57274cd80025f582ad562f22 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Wed, 27 Mar 2019 20:11:32 -0700 Subject: Simplified into fourwire only --- shared-bindings/displayio/FourWire.h | 2 -- shared-module/displayio/Display.c | 7 ------- shared-module/displayio/Display.h | 2 -- shared-module/displayio/FourWire.c | 11 ++++++----- 4 files changed, 6 insertions(+), 16 deletions(-) diff --git a/shared-bindings/displayio/FourWire.h b/shared-bindings/displayio/FourWire.h index a7fda2638..b8b00372c 100644 --- a/shared-bindings/displayio/FourWire.h +++ b/shared-bindings/displayio/FourWire.h @@ -47,6 +47,4 @@ void common_hal_displayio_fourwire_send(mp_obj_t self, bool command, uint8_t *da void common_hal_displayio_fourwire_end_transaction(mp_obj_t self); -void common_hal_displayio_fourwire_set_cs(mp_obj_t self, bool high); - #endif // MICROPY_INCLUDED_SHARED_BINDINGS_DISPLAYBUSIO_FOURWIRE_H diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c index c693d3c90..0e76a868f 100644 --- a/shared-module/displayio/Display.c +++ b/shared-module/displayio/Display.c @@ -59,12 +59,10 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, self->begin_transaction = common_hal_displayio_parallelbus_begin_transaction; self->send = common_hal_displayio_parallelbus_send; self->end_transaction = common_hal_displayio_parallelbus_end_transaction; - self->set_cs = NULL; } else if (MP_OBJ_IS_TYPE(bus, &displayio_fourwire_type)) { self->begin_transaction = common_hal_displayio_fourwire_begin_transaction; self->send = common_hal_displayio_fourwire_send; self->end_transaction = common_hal_displayio_fourwire_end_transaction; - self->set_cs = common_hal_displayio_fourwire_set_cs; } else { mp_raise_ValueError(translate("Unsupported display bus type")); } @@ -82,11 +80,6 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, bool delay = (data_size & DELAY) != 0; data_size &= ~DELAY; uint8_t *data = cmd + 2; - if (self->set_cs != NULL) { - self->set_cs(self->bus, true); - common_hal_time_delay_ms(1); - self->set_cs(self->bus, false); - } self->send(self->bus, true, cmd, 1); self->send(self->bus, false, data, data_size); uint16_t delay_length_ms = 10; diff --git a/shared-module/displayio/Display.h b/shared-module/displayio/Display.h index 70308daa2..04da68b63 100644 --- a/shared-module/displayio/Display.h +++ b/shared-module/displayio/Display.h @@ -34,7 +34,6 @@ typedef bool (*display_bus_begin_transaction)(mp_obj_t bus); typedef void (*display_bus_send)(mp_obj_t bus, bool command, uint8_t *data, uint32_t data_length); typedef void (*display_bus_end_transaction)(mp_obj_t bus); -typedef void (*display_bus_set_cs)(mp_obj_t bus, bool high); typedef struct { mp_obj_base_t base; @@ -53,7 +52,6 @@ typedef struct { display_bus_begin_transaction begin_transaction; display_bus_send send; display_bus_end_transaction end_transaction; - display_bus_set_cs set_cs; union { digitalio_digitalinout_obj_t backlight_inout; pulseio_pwmout_obj_t backlight_pwm; diff --git a/shared-module/displayio/FourWire.c b/shared-module/displayio/FourWire.c index ae1fde7ca..043f68e26 100644 --- a/shared-module/displayio/FourWire.c +++ b/shared-module/displayio/FourWire.c @@ -30,6 +30,7 @@ #include "shared-bindings/busio/SPI.h" #include "shared-bindings/digitalio/DigitalInOut.h" +#include "shared-bindings/time/__init__.h" #include "tick.h" @@ -78,6 +79,11 @@ bool common_hal_displayio_fourwire_begin_transaction(mp_obj_t obj) { void common_hal_displayio_fourwire_send(mp_obj_t obj, bool command, uint8_t *data, uint32_t data_length) { displayio_fourwire_obj_t* self = MP_OBJ_TO_PTR(obj); + if (command) { + common_hal_digitalio_digitalinout_set_value(&self->chip_select, true); + common_hal_time_delay_ms(1); + common_hal_digitalio_digitalinout_set_value(&self->chip_select, false); + } common_hal_digitalio_digitalinout_set_value(&self->command, !command); common_hal_busio_spi_write(self->bus, data, data_length); } @@ -87,8 +93,3 @@ void common_hal_displayio_fourwire_end_transaction(mp_obj_t obj) { common_hal_digitalio_digitalinout_set_value(&self->chip_select, true); common_hal_busio_spi_unlock(self->bus); } - -void common_hal_displayio_fourwire_set_cs(mp_obj_t obj, bool high) { - displayio_fourwire_obj_t* self = MP_OBJ_TO_PTR(obj); - common_hal_digitalio_digitalinout_set_value(&self->chip_select, high); -} -- cgit v1.2.3 From 02f1939df20d8622191e4a5a4bbc81ec167ae21b Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Thu, 28 Mar 2019 14:47:58 +1100 Subject: Reset translations to master --- locale/ID.po | 2608 ++++++++++++++++++++++++++---------- locale/circuitpython.pot | 2275 ++++++++++++++++++++++++++++---- locale/de_DE.po | 2923 ++++++++++++++++++++++++++--------------- locale/en_US.po | 2275 ++++++++++++++++++++++++++++---- locale/en_x_pirate.po | 2301 ++++++++++++++++++++++++++++---- locale/es.po | 3286 ++++++++++++++++++++++++++------------------- locale/fil.po | 3288 +++++++++++++++++++++++++++------------------- locale/fr.po | 3283 ++++++++++++++++++++++++++------------------- locale/it_IT.po | 3098 ++++++++++++++++++++++++++----------------- locale/pt_BR.po | 2521 +++++++++++++++++++++++++++-------- 10 files changed, 19626 insertions(+), 8232 deletions(-) diff --git a/locale/ID.po b/locale/ID.po index f858bf605..36023152c 100644 --- a/locale/ID.po +++ b/locale/ID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,16 +23,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr "" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr "" + #: main.c msgid " output:\n" msgstr "output:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" +#: py/obj.c +msgid "%q index out of range" +msgstr "" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "buffers harus mempunyai panjang yang sama" @@ -41,10 +62,162 @@ msgstr "buffers harus mempunyai panjang yang sama" msgid "%q should be an int" msgstr "" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "%q() mengambil posisi argumen %d tapi %d yang diberikan" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "'%q' argumen dibutuhkan" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "'%s' mengharapkan sebuah register" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "'%s' mengharapkan sebuah register spesial" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "'%s' mengharapkan sebuah FPU register" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "'%s' mengharapkan sebuah alamat dengan bentuk [a, b]" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "'%s' mengharapkan integer" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "'%s' mengharapkan setidaknya r%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "'%s' mengharapkan {r0, r1, ...}" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "'%s' integer 0x%x tidak cukup didalam mask 0x%x" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "'align' membutuhkan 1 argumen" + +#: py/compile.c +msgid "'await' outside function" +msgstr "'await' diluar fungsi" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "'break' diluar loop" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "'continue' diluar loop" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "'data' membutuhkan setidaknya 2 argumen" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "'data' membutuhkan argumen integer" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "'label' membutuhkan 1 argumen" + +#: py/compile.c +msgid "'return' outside function" +msgstr "'return' diluar fungsi" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "'yield' diluar fungsi" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "*x harus menjadi target assignment" + +#: py/obj.c +msgid ", in %q\n" +msgstr "" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Sebuah channel hardware interrupt sedang digunakan" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -55,14 +228,55 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "buffers harus mempunyai panjang yang sama" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "Semua perangkat I2C sedang digunakan" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "Semua perangkat SPI sedang digunakan" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "All UART peripherals are in use" +msgstr "Semua perangkat I2C sedang digunakan" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Semua channel event sedang digunakan" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "Semua channel event yang disinkronisasi sedang digunakan" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Semua timer untuk pin ini sedang digunakan" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Semua timer sedang digunakan" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "fungsionalitas AnalogOut tidak didukung" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "pin yang dipakai tidak mendukung AnalogOut" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Send yang lain sudah aktif" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -87,6 +301,18 @@ msgstr "" "Auto-reload aktif. Silahkan simpan data-data (files) melalui USB untuk " "menjalankannya atau masuk ke REPL untukmenonaktifkan.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "Bit clock dan word harus memiliki kesamaan pada clock unit" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Kedua pin harus mendukung hardware interrut" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -100,10 +326,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy, c-format +msgid "Bus pin %d is already in use" +msgstr "DAC sudah digunakan" + #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -113,6 +345,11 @@ msgstr "buffers harus mempunyai panjang yang sama" msgid "Bytes must be between 0 and 255." msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -129,26 +366,60 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "Tidak bisa mendapatkan pull pada saat mode output" + +#: ports/nrf/common-hal/microcontroller/Processor.c +#, fuzzy +msgid "Cannot get temperature" +msgstr "Tidak bisa mendapatkan temperatur. status: 0x%02x" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "" +"Tidak dapat menggunakan output di kedua channel dengan menggunakan pin yang " +"sama" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" +"Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader yang " +"terisi" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "tidak dapat mendapatkan ukuran scalar secara tidak ambigu" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -157,6 +428,10 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -169,6 +444,10 @@ msgstr "" msgid "Clock stretch too long" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Clock unit sedang digunakan" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -177,6 +456,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "Tidak dapat menginisialisasi UART" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -189,10 +477,34 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "DAC sudah digunakan" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +msgid "Data 0 pin must be byte aligned" +msgstr "" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy +msgid "Data too large for advertisement packet" +msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Data too large for the advertisement packet" +msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -201,8 +513,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "" -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "Channel EXTINT sedang digunakan" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "Error pada regex" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -211,8 +532,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c msgid "Expected a UUID" msgstr "" @@ -221,8 +542,186 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to acquire mutex" +msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Service.c +#, fuzzy, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "Gagal untuk menambahkan karakteristik, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to add service" +msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, fuzzy, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Gagal untuk mengalokasikan buffer RX" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Gagal untuk megalokasikan buffer RX dari %d byte" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to change softdevice state" +msgstr "Gagal untuk merubah status softdevice, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to connect:" +msgstr "Gagal untuk menyambungkan, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to continue scanning" +msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to create mutex" +msgstr "Gagal untuk membuat mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to discover services" +msgstr "Gagal untuk menemukan layanan, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get local address" +msgstr "Gagal untuk mendapatkan alamat lokal, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get softdevice state" +msgstr "Gagal untuk mendapatkan status softdevice, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "Gagal untuk menambahkan Vendor Spesific UUID, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to release mutex" +msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start advertising" +msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start scanning" +msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to stop advertising" +msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "Gagal untuk menulis nilai atribut, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" + +#: py/moduerrno.c +msgid "File exists" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -230,18 +729,66 @@ msgstr "" msgid "Group full" msgstr "" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "operasi I/O pada file tertutup" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "operasi I2C tidak didukung" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frekuensi PWM tidak valid" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Bit clock pada pin tidak valid" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "Ukuran buffer tidak valid" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Clock pada pin tidak valid" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "data pin tidak valid" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "" @@ -254,19 +801,37 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin tidak valid" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Pin untuk channel kiri tidak valid" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Pin untuk channel kanan tidak valid" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "Pin-pin tidak valid" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -274,14 +839,30 @@ msgstr "" msgid "Invalid run mode." msgstr "" +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "LHS dari keyword arg harus menjadi sebuah id" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" +#: py/objslice.c +msgid "Length must be an int" +msgstr "" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -310,10 +891,35 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "tidak ada channel DMA ditemukan" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Tidak pin RX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Tidak ada pin TX" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Tidak ada standar bus I2C" @@ -326,20 +932,49 @@ msgstr "Tidak ada standar bus SPI" msgid "No default UART bus" msgstr "Tidak ada standar bus UART" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Tidak ada GCLK yang kosong" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Tidak ada dukungan hardware untuk pin" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Tidak dapat menyambungkan ke AP" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." msgstr "" +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "Parity ganjil tidak didukung" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "Hanya 8 atau 16 bit mono dengan " + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -357,6 +992,14 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Only slices with step=1 (aka None) are supported" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -367,6 +1010,23 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" +#: py/moduerrno.c +msgid "Permission denied" +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +msgid "Plus any modules on the filesystem\n" +msgstr "Tambahkan module apapun pada filesystem\n" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -381,23 +1041,31 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Range out of bounds" msgstr "" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "sistem file (filesystem) bersifat Read-only" + #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "sistem file (filesystem) bersifat Read-only" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Channel Kanan tidak didukung" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -411,15 +1079,42 @@ msgid "Running in safe mode! Not running saved code.\n" msgstr "" "Berjalan di mode aman(safe mode)! tidak menjalankan kode yang tersimpan.\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "SDA atau SCL membutuhkan pull up" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "Nilai sampel terlalu tinggi. Nilai harus kurang dari %d" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Serializer sedang digunakan" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "Dukungan soft device, id: 0x%08lX, pc: 0x%08l" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "Memisahkan dengan menggunakan sub-captures" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -486,6 +1181,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Untuk keluar, silahkan reset board tanpa " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "Terlalu banyak channel dalam sampel" + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -494,6 +1193,10 @@ msgstr "" msgid "Too many displays" msgstr "" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "" @@ -518,6 +1221,20 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Tidak dapat menemukan GCLK yang kosong" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -526,6 +1243,19 @@ msgstr "" msgid "Unable to write to nvm." msgstr "" +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "Baudrate tidak didukung" + #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -535,10 +1265,18 @@ msgstr "Baudrate tidak didukung" msgid "Unsupported format" msgstr "" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "" +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "" + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "" @@ -547,6 +1285,22 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "PERINGATAN: Nama file kode anda mempunyai dua ekstensi\n" +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" +"Selamat datang ke Adafruit CircuitPython %s!\n" +"\n" +"Silahkan kunjungi learn.adafruit.com/category/circuitpython untuk panduan " +"project.\n" +"\n" +"Untuk menampilkan modul built-in silahkan ketik `help(\"modules\")`.\n" + #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -559,6 +1313,32 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Anda mengajukan untuk memulai mode aman pada (safe mode) pada " +#: py/objtype.c +msgid "__init__() should return None" +msgstr "" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "sebuah objek menyerupai byte (bytes-like) dibutuhkan" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "abort() dipanggil" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "alamat %08x tidak selaras dengan %d bytes" + #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "" @@ -567,538 +1347,1338 @@ msgstr "" msgid "addresses is empty" msgstr "" -#: shared-bindings/nvm/ByteArray.c +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "argumen num/types tidak cocok" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" + +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "mode compile buruk" + +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "" + +#: py/objstr.c +msgid "bad format string" +msgstr "" + +#: py/binary.c +msgid "bad typecode" +msgstr "typecode buruk" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "" + #: shared-bindings/busio/UART.c msgid "bits must be 7, 8 or 9" msgstr "" +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "bits harus memilki nilai 8" + +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "" + +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "" + #: shared-module/struct/__init__.c #, fuzzy msgid "buffer size must match format" msgstr "buffers harus mempunyai panjang yang sama" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "buffers harus mempunyai panjang yang sama" + #: shared-bindings/_pew/PewPew.c msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: py/vm.c +msgid "byte code not implemented" msgstr "" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "byte > 8 bit tidak didukung" + +#: py/objstr.c +msgid "bytes value out of range" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "kalibrasi keluar dari jangkauan" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "kalibrasi adalah read only" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "nilai kalibrasi keluar dari jangkauan +/-127" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "hanya mampu memiliki hingga 4 parameter untuk Thumb assembly" + +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +#: py/persistentcode.c +msgid "can only save bytecode" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" +#: py/objtype.c +msgid "can't add special method to already-subclassed class" msgstr "" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" +#: py/compile.c +msgid "can't assign to expression" +msgstr "tidak dapat menetapkan ke ekspresi" + +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" msgstr "" -#: shared-bindings/math/__init__.c -msgid "division by zero" +#: py/obj.c +#, c-format +msgid "can't convert %s to float" msgstr "" -#: shared-bindings/random/__init__.c -msgid "empty sequence" +#: py/obj.c +#, c-format +msgid "can't convert %s to int" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" +#: py/objint.c +msgid "can't convert NaN to int" msgstr "" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" msgstr "" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" +#: py/objint.c +msgid "can't convert inf to int" msgstr "" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" +#: py/obj.c +msgid "can't convert to complex" msgstr "" -#: shared-bindings/random/__init__.c -msgid "invalid step" +#: py/obj.c +msgid "can't convert to float" msgstr "" -#: shared-bindings/math/__init__.c -msgid "math domain error" +#: py/obj.c +msgid "can't convert to int" msgstr "" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "keyword harus berupa string" +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "tidak dapat mendeklarasikan nonlocal diluar jangkauan kode" + +#: py/compile.c +msgid "can't delete expression" +msgstr "tidak bisa menghapus ekspresi" + +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" +#: py/compile.c +msgid "can't have multiple **x" +msgstr "tidak bisa memiliki **x ganda" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "tidak bisa memiliki *x ganda" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" +#: py/emitnative.c +msgid "can't load from '%q'" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: py/emitnative.c +msgid "can't load with '%q' index" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: py/objnamedtuple.c +msgid "can't set attribute" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" +#: py/emitnative.c +msgid "can't store '%q'" msgstr "" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" +#: py/emitnative.c +msgid "can't store to '%q'" msgstr "" -#: main.c -msgid "soft reboot\n" -msgstr "memulai ulang software(soft reboot)\n" +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" msgstr "" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" +#: py/objtype.c +msgid "cannot create '%q' instances" msgstr "" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" +#: py/objtype.c +msgid "cannot create instance" msgstr "" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" +#: py/runtime.c +msgid "cannot import name %q" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "tidak dapat melakukan relative import" + +#: py/emitnative.c +msgid "casting" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" msgstr "" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits harus memilki nilai 8" +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" msgstr "" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" msgstr "" -#: shared-module/displayio/Shape.c -msgid "x value out of bounds" +#: py/objcomplex.c +msgid "complex division by zero" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" msgstr "" -#: shared-module/displayio/Shape.c -msgid "y value out of bounds" +#: extmod/moduzlib.c +msgid "compression header" +msgstr "kompresi header" + +#: py/parse.c +msgid "constant must be an integer" msgstr "" -#~ msgid "%q() takes %d positional arguments but %d were given" -#~ msgstr "%q() mengambil posisi argumen %d tapi %d yang diberikan" +#: py/emitnative.c +msgid "conversion to object" +msgstr "" -#~ msgid "'%q' argument required" -#~ msgstr "'%q' argumen dibutuhkan" +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "" -#~ msgid "'%s' expects a register" -#~ msgstr "'%s' mengharapkan sebuah register" +#: py/compile.c +msgid "default 'except' must be last" +msgstr "'except' standar harus terakhir" -#~ msgid "'%s' expects a special register" -#~ msgstr "'%s' mengharapkan sebuah register spesial" +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" -#~ msgid "'%s' expects an FPU register" -#~ msgstr "'%s' mengharapkan sebuah FPU register" +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" -#~ msgid "'%s' expects an address of the form [a, b]" -#~ msgstr "'%s' mengharapkan sebuah alamat dengan bentuk [a, b]" +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "" -#~ msgid "'%s' expects an integer" -#~ msgstr "'%s' mengharapkan integer" +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "" -#~ msgid "'%s' expects at most r%d" -#~ msgstr "'%s' mengharapkan setidaknya r%d" +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "" -#~ msgid "'%s' expects {r0, r1, ...}" -#~ msgstr "'%s' mengharapkan {r0, r1, ...}" +#: py/objdeque.c +msgid "empty" +msgstr "" -#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" -#~ msgstr "'%s' integer 0x%x tidak cukup didalam mask 0x%x" +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "heap kosong" -#~ msgid "'align' requires 1 argument" -#~ msgstr "'align' membutuhkan 1 argumen" +#: py/objstr.c +msgid "empty separator" +msgstr "" -#~ msgid "'await' outside function" -#~ msgstr "'await' diluar fungsi" +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "" -#~ msgid "'break' outside loop" -#~ msgstr "'break' diluar loop" +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" -#~ msgid "'continue' outside loop" -#~ msgstr "'continue' diluar loop" +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" +msgstr "" -#~ msgid "'data' requires at least 2 arguments" -#~ msgstr "'data' membutuhkan setidaknya 2 argumen" +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "error = 0x%08lX" -#~ msgid "'data' requires integer arguments" -#~ msgstr "'data' membutuhkan argumen integer" +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "" -#~ msgid "'label' requires 1 argument" -#~ msgstr "'label' membutuhkan 1 argumen" +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "" -#~ msgid "'return' outside function" -#~ msgstr "'return' diluar fungsi" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "" -#~ msgid "'yield' outside function" -#~ msgstr "'yield' diluar fungsi" +#: py/obj.c +msgid "expected tuple/list" +msgstr "" -#~ msgid "*x must be assignment target" -#~ msgstr "*x harus menjadi target assignment" +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "" -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Sebuah channel hardware interrupt sedang digunakan" +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "sebuah instruksi assembler diharapkan" -#~ msgid "AP required" -#~ msgstr "AP dibutuhkan" +#: py/compile.c +msgid "expecting just a value for set" +msgstr "hanya mengharapkan sebuah nilai (value) untuk set" -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Semua perangkat I2C sedang digunakan" +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "key:value diharapkan untuk dict" -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Semua perangkat SPI sedang digunakan" +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "argumen keyword ekstra telah diberikan" -#, fuzzy -#~ msgid "All UART peripherals are in use" -#~ msgstr "Semua perangkat I2C sedang digunakan" +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "argumen posisi ekstra telah diberikan" -#~ msgid "All event channels in use" -#~ msgstr "Semua channel event sedang digunakan" +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "" -#~ msgid "All sync event channels in use" -#~ msgstr "Semua channel event yang disinkronisasi sedang digunakan" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "" -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "fungsionalitas AnalogOut tidak didukung" +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "" -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "pin yang dipakai tidak mendukung AnalogOut" +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "bit pertama(firstbit) harus berupa MSB" -#~ msgid "Another send is already active" -#~ msgstr "Send yang lain sudah aktif" +#: py/objint.c +msgid "float too big" +msgstr "" -#~ msgid "Bit clock and word select must share a clock unit" -#~ msgstr "Bit clock dan word harus memiliki kesamaan pada clock unit" +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "" -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Kedua pin harus mendukung hardware interrut" +#: py/objstr.c +msgid "format requires a dict" +msgstr "" -#, fuzzy -#~ msgid "Bus pin %d is already in use" -#~ msgstr "DAC sudah digunakan" +#: py/objdeque.c +msgid "full" +msgstr "" -#~ msgid "C-level assert" -#~ msgstr "Dukungan C-level" +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "fungsi tidak dapat mengambil argumen keyword" -#~ msgid "Cannot connect to AP" -#~ msgstr "Tidak dapat menyambungkan ke AP" +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "fungsi diharapkan setidaknya %d argumen, hanya mendapatkan %d" -#~ msgid "Cannot disconnect from AP" -#~ msgstr "Tidak dapat memutuskna dari AP" +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "fungsi mendapatkan nilai ganda untuk argumen '%q'" + +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "fungsi kehilangan %d argumen posisi yang dibutuhkan" + +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "fungsi kehilangan argumen keyword-only" + +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "fungsi kehilangan argumen keyword '%q' yang dibutuhkan" + +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "fungsi kehilangan argumen posisi #%d yang dibutuhkan" + +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "fungsi mengambil posisi argumen %d tapi %d yang diberikan" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "" + +#: py/objgenerator.c +msgid "generator already executing" +msgstr "" + +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "" + +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "heap harus berupa sebuah list" + +#: py/compile.c +msgid "identifier redefined as global" +msgstr "identifier didefinisi ulang sebagai global" + +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "identifier didefinisi ulang sebagai nonlocal" + +#: py/objstr.c +msgid "incomplete format" +msgstr "" + +#: py/objstr.c +msgid "incomplete format key" +msgstr "" + +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "lapisan (padding) tidak benar" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "index keluar dari jangkauan" + +#: py/obj.c +msgid "indices must be integers" +msgstr "" + +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "inline assembler harus sebuah fungsi" + +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "" + +#: py/objstr.c +msgid "integer required" +msgstr "" + +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" + +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "perangkat I2C tidak valid" + +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "perangkat SPI tidak valid" + +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "argumen-argumen tidak valid" + +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "cert tidak valid" + +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "indeks dupterm tidak valid" + +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "format tidak valid" + +#: py/objstr.c +msgid "invalid format specifier" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "key tidak valid" + +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "micropython decorator tidak valid" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "" + +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "syntax tidak valid" + +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "" + +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" + +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" + +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "argumen keyword belum diimplementasi - gunakan args normal" + +#: py/bc.c +msgid "keywords must be strings" +msgstr "keyword harus berupa string" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "" + +#: py/compile.c +msgid "label redefined" +msgstr "label didefinis ulang" + +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "" + +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "" + +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "" + +#: py/objint.c +msgid "long int not supported in this build" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "" + +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" + +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "" + +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "" + +#: py/builtinimport.c +msgid "module not found" +msgstr "modul tidak ditemukan" + +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "perkalian *x dalam assignment" + +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" + +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "" + +#: py/emitnative.c +msgid "must raise an object" +msgstr "" + +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "harus menentukan semua pin sck/mosi/miso" + +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "" + +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "" + +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "keyword harus berupa string" + +#: py/runtime.c +msgid "name not defined" +msgstr "" + +#: py/compile.c +msgid "name reused for argument" +msgstr "nama digunakan kembali untuk argumen" + +#: py/emitnative.c +msgid "native yield" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "" + +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "" + +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "" + +#: py/vm.c +msgid "no active exception to reraise" +msgstr "" + +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "" + +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "tidak ada ikatan/bind pada temuan nonlocal" + +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "tidak ada modul yang bernama '%q'" + +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "" + +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "argumen non-default mengikuti argumen standar(default)" + +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "digit non-hex ditemukan" + +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "non-keyword arg setelah */**" + +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "non-keyword arg setelah keyword arg" + +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" + +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "" + +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "" + +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "" + +#: py/obj.c +msgid "object does not support item assignment" +msgstr "" + +#: py/obj.c +msgid "object does not support item deletion" +msgstr "" + +#: py/obj.c +msgid "object has no len" +msgstr "" -#~ msgid "Cannot get pull while in output mode" -#~ msgstr "Tidak bisa mendapatkan pull pada saat mode output" +#: py/obj.c +msgid "object is not subscriptable" +msgstr "" + +#: py/runtime.c +msgid "object not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "" + +#: py/sequence.c +msgid "object not in sequence" +msgstr "" + +#: py/runtime.c +msgid "object not iterable" +msgstr "" + +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "" + +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "" + +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "panjang data string memiliki keganjilan (odd-length)" + +#: py/objstr.c py/objstrunicode.c +#, fuzzy +msgid "offset out of bounds" +msgstr "modul tidak ditemukan" + +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "" + +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "" + +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "" + +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "" + +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "" + +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "anotasi parameter haruse sebuah identifier" + +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "" + +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" +msgstr "parameter harus menjadi register dalam urutan r0 sampai r3" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "Muncul dari PulseIn yang kosong" + +#: py/objset.c +msgid "pop from an empty set" +msgstr "" + +#: py/objlist.c +msgid "pop from empty list" +msgstr "" + +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "" + +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "" + +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "" + +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "antrian meluap (overflow)" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "" + +#: shared-bindings/_pixelbuf/__init__.c +msgid "readonly attribute" +msgstr "" + +#: py/builtinimport.c +msgid "relative import" +msgstr "relative import" + +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "" + +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "anotasi return harus sebuah identifier" + +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "" + +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "" + +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "nilai sampling keluar dari jangkauan" + +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "" + +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "kompilasi script tidak didukung" + +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "" + +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "" + +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "" + +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "" + +#: main.c +msgid "soft reboot\n" +msgstr "memulai ulang software(soft reboot)\n" + +#: py/objstr.c +msgid "start/end indices" +msgstr "" + +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "" + +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "" + +#: py/stream.c +msgid "stream operation not supported" +msgstr "" + +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "" + +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "" + +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: tidak bisa melakukan index" + +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: index keluar dari jangkauan" + +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: tidak ada fields" + +#: py/objstr.c +msgid "substring not found" +msgstr "" + +#: py/compile.c +msgid "super() can't find self" +msgstr "super() tidak dapat menemukan dirinya sendiri" + +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "sintaksis error pada JSON" + +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "sintaksis error pada pendeskripsi uctypes" + +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "" + +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" +#: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy -#~ msgid "Cannot get temperature" -#~ msgstr "Tidak bisa mendapatkan temperatur. status: 0x%02x" - -#~ msgid "Cannot output both channels on the same pin" -#~ msgstr "" -#~ "Tidak dapat menggunakan output di kedua channel dengan menggunakan pin " -#~ "yang sama" - -#~ msgid "Cannot reset into bootloader because no bootloader is present." -#~ msgstr "" -#~ "Tidak dapat melakukan reset ke bootloader karena tidak ada bootloader " -#~ "yang terisi" +msgid "timeout must be >= 0.0" +msgstr "bits harus memilki nilai 8" -#~ msgid "Cannot set STA config" -#~ msgstr "Tidak dapat mengatur konfigurasi STA" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "" -#~ msgid "Cannot unambiguously get sizeof scalar" -#~ msgstr "tidak dapat mendapatkan ukuran scalar secara tidak ambigu" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "" -#~ msgid "Cannot update i/f status" -#~ msgstr "Tidak dapat memperbarui status i/f" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "" -#~ msgid "Clock unit in use" -#~ msgstr "Clock unit sedang digunakan" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "" -#~ msgid "Could not initialize UART" -#~ msgstr "Tidak dapat menginisialisasi UART" +#: py/objstr.c +msgid "tuple index out of range" +msgstr "" -#~ msgid "DAC already in use" -#~ msgstr "DAC sudah digunakan" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "" -#, fuzzy -#~ msgid "Data too large for advertisement packet" -#~ msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#, fuzzy -#~ msgid "Data too large for the advertisement packet" -#~ msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "tx dan rx keduanya tidak boleh kosong" -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "Tidak tahu cara meloloskan objek ke fungsi native" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "" -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "ESP8266 tidak mendukung safe mode" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "" -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "ESP866 tidak mendukung pull down" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "" -#~ msgid "EXTINT channel already in use" -#~ msgstr "Channel EXTINT sedang digunakan" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "" -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Errod pada ffi_prep_cif" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "" -#~ msgid "Error in regex" -#~ msgstr "Error pada regex" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "" -#, fuzzy -#~ msgid "Failed to acquire mutex" -#~ msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" +#: py/parse.c +msgid "unexpected indent" +msgstr "" -#, fuzzy -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "Gagal untuk mendapatkan mutex, status: 0x%08lX" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "argumen keyword tidak diharapkan" -#, fuzzy -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "Gagal untuk menambahkan karakteristik, status: 0x%08lX" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "keyword argumen '%q' tidak diharapkan" -#, fuzzy -#~ msgid "Failed to add service" -#~ msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" -#, fuzzy -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "Gagal untuk menambahkan layanan, status: 0x%08lX" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Gagal untuk mengalokasikan buffer RX" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "" -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Gagal untuk megalokasikan buffer RX dari %d byte" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "" -#, fuzzy -#~ msgid "Failed to change softdevice state" -#~ msgstr "Gagal untuk merubah status softdevice, error: 0x%08lX" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "" -#, fuzzy -#~ msgid "Failed to connect:" -#~ msgstr "Gagal untuk menyambungkan, status: 0x%08lX" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "" -#, fuzzy -#~ msgid "Failed to continue scanning" -#~ msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" +#: py/compile.c +msgid "unknown type" +msgstr "tipe tidak diketahui" -#, fuzzy -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "Gagal untuk melanjutkan scanning, status: 0x%08lX" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "" -#, fuzzy -#~ msgid "Failed to create mutex" -#~ msgstr "Gagal untuk membuat mutex, status: 0x%08lX" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "" -#, fuzzy -#~ msgid "Failed to discover services" -#~ msgstr "Gagal untuk menemukan layanan, status: 0x%08lX" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "" -#, fuzzy -#~ msgid "Failed to get local address" -#~ msgstr "Gagal untuk mendapatkan alamat lokal, error: 0x%08lX" +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "" -#, fuzzy -#~ msgid "Failed to get softdevice state" -#~ msgstr "Gagal untuk mendapatkan status softdevice, error: 0x%08lX" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Gagal untuk melaporkan nilai atribut, status: 0x%08lX" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "" -#, fuzzy -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "" -#, fuzzy -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "" -#, fuzzy -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "Gagal untuk menambahkan Vendor Spesific UUID, status: 0x%08lX" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "" -#, fuzzy -#~ msgid "Failed to release mutex" -#~ msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#, fuzzy -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" -#, fuzzy -#~ msgid "Failed to start advertising" -#~ msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "" -#, fuzzy -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "" -#, fuzzy -#~ msgid "Failed to start scanning" -#~ msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" +#: shared-module/displayio/Shape.c +msgid "x value out of bounds" +msgstr "" -#, fuzzy -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "" -#, fuzzy -#~ msgid "Failed to stop advertising" -#~ msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" +#: shared-module/displayio/Shape.c +msgid "y value out of bounds" +msgstr "" -#, fuzzy -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" +#: py/objrange.c +msgid "zero step" +msgstr "" -#, fuzzy -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "Gagal untuk menulis nilai atribut, status: 0x%08lX" +#~ msgid "AP required" +#~ msgstr "AP dibutuhkan" -#, fuzzy -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "Gagal untuk menulis nilai gatts, status: 0x%08lX" +#~ msgid "C-level assert" +#~ msgstr "Dukungan C-level" -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "GPIO16 tidak mendukung pull up" +#~ msgid "Cannot connect to AP" +#~ msgstr "Tidak dapat menyambungkan ke AP" -#~ msgid "I/O operation on closed file" -#~ msgstr "operasi I/O pada file tertutup" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Tidak dapat memutuskna dari AP" -#~ msgid "I2C operation not supported" -#~ msgstr "operasi I2C tidak didukung" +#~ msgid "Cannot set STA config" +#~ msgstr "Tidak dapat mengatur konfigurasi STA" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Bit clock pada pin tidak valid" +#~ msgid "Cannot update i/f status" +#~ msgstr "Tidak dapat memperbarui status i/f" -#~ msgid "Invalid buffer size" -#~ msgstr "Ukuran buffer tidak valid" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Tidak tahu cara meloloskan objek ke fungsi native" -#~ msgid "Invalid clock pin" -#~ msgstr "Clock pada pin tidak valid" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8266 tidak mendukung safe mode" -#~ msgid "Invalid data pin" -#~ msgstr "data pin tidak valid" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP866 tidak mendukung pull down" -#~ msgid "Invalid pin for left channel" -#~ msgstr "Pin untuk channel kiri tidak valid" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Errod pada ffi_prep_cif" -#~ msgid "Invalid pin for right channel" -#~ msgstr "Pin untuk channel kanan tidak valid" +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Gagal untuk melaporkan nilai atribut, status: 0x%08lX" -#~ msgid "Invalid pins" -#~ msgstr "Pin-pin tidak valid" +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Gagal untuk membaca nilai atribut, status: 0x%08lX" -#~ msgid "LHS of keyword arg must be an id" -#~ msgstr "LHS dari keyword arg harus menjadi sebuah id" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 tidak mendukung pull up" #~ msgid "Maximum PWM frequency is %dhz." #~ msgstr "Nilai maksimum frekuensi PWM adalah %dhz" @@ -1110,36 +2690,12 @@ msgstr "" #~ msgstr "" #~ "Nilai Frekuensi PWM ganda tidak didukung. PWM sudah diatur pada %dhz" -#~ msgid "No DAC on chip" -#~ msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip" - -#~ msgid "No DMA channel found" -#~ msgstr "tidak ada channel DMA ditemukan" - #~ msgid "No PulseIn support for %q" #~ msgstr "Tidak ada dukungan PulseIn untuk %q" -#~ msgid "No RX pin" -#~ msgstr "Tidak pin RX" - -#~ msgid "No TX pin" -#~ msgstr "Tidak ada pin TX" - -#~ msgid "No free GCLKs" -#~ msgstr "Tidak ada GCLK yang kosong" - #~ msgid "No hardware support for analog out." #~ msgstr "Tidak dukungan hardware untuk analog out." -#~ msgid "No hardware support on pin" -#~ msgstr "Tidak ada dukungan hardware untuk pin" - -#~ msgid "Odd parity is not supported" -#~ msgstr "Parity ganjil tidak didukung" - -#~ msgid "Only 8 or 16 bit mono with " -#~ msgstr "Hanya 8 atau 16 bit mono dengan " - #~ msgid "Only tx supported on UART1 (GPIO2)." #~ msgstr "Hanya tx yang mendukung pada UART1 (GPIO2)." @@ -1149,419 +2705,109 @@ msgstr "" #~ msgid "Pin %q does not have ADC capabilities" #~ msgstr "Pin %q tidak memiliki kemampuan ADC" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "Pin tidak mempunya kemampuan untuk ADC (Analog Digital Converter)" - #~ msgid "Pin(16) doesn't support pull" #~ msgstr "Pin(16) tidak mendukung pull" #~ msgid "Pins not valid for SPI" #~ msgstr "Pin-pin tidak valid untuk SPI" -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "Tambahkan module apapun pada filesystem\n" - -#~ msgid "Read-only filesystem" -#~ msgstr "sistem file (filesystem) bersifat Read-only" - -#~ msgid "Right channel unsupported" -#~ msgstr "Channel Kanan tidak didukung" - -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "SDA atau SCL membutuhkan pull up" - #~ msgid "STA must be active" #~ msgstr "STA harus aktif" #~ msgid "STA required" #~ msgstr "STA dibutuhkan" -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "Nilai sampel terlalu tinggi. Nilai harus kurang dari %d" - -#~ msgid "Serializer in use" -#~ msgstr "Serializer sedang digunakan" - -#~ msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" -#~ msgstr "Dukungan soft device, id: 0x%08lX, pc: 0x%08l" - -#~ msgid "Splitting with sub-captures" -#~ msgstr "Memisahkan dengan menggunakan sub-captures" - -#~ msgid "Too many channels in sample." -#~ msgstr "Terlalu banyak channel dalam sampel" - #~ msgid "UART(%d) does not exist" #~ msgstr "UART(%d) tidak ada" #~ msgid "UART(1) can't read" #~ msgstr "UART(1) tidak dapat dibaca" -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "Tidak dapat mengalokasikan buffer untuk signed conversion" - -#~ msgid "Unable to find free GCLK" -#~ msgstr "Tidak dapat menemukan GCLK yang kosong" - #~ msgid "Unable to remount filesystem" #~ msgstr "Tidak dapat memasang filesystem kembali" #~ msgid "Unknown type" #~ msgstr "Tipe tidak diketahui" -#~ msgid "Unsupported baudrate" -#~ msgstr "Baudrate tidak didukung" - #~ msgid "Use esptool to erase flash and re-upload Python instead" #~ msgstr "" #~ "Gunakan esptool untuk menghapus flash dan upload ulang Python sebagai " #~ "gantinya" -#~ msgid "" -#~ "Welcome to Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Please visit learn.adafruit.com/category/circuitpython for project " -#~ "guides.\n" -#~ "\n" -#~ "To list built-in modules please do `help(\"modules\")`.\n" -#~ msgstr "" -#~ "Selamat datang ke Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Silahkan kunjungi learn.adafruit.com/category/circuitpython untuk panduan " -#~ "project.\n" -#~ "\n" -#~ "Untuk menampilkan modul built-in silahkan ketik `help(\"modules\")`.\n" - #~ msgid "[addrinfo error %d]" #~ msgstr "[addrinfo error %d]" -#~ msgid "a bytes-like object is required" -#~ msgstr "sebuah objek menyerupai byte (bytes-like) dibutuhkan" - -#~ msgid "abort() called" -#~ msgstr "abort() dipanggil" - -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "alamat %08x tidak selaras dengan %d bytes" - -#~ msgid "argument num/types mismatch" -#~ msgstr "argumen num/types tidak cocok" - -#~ msgid "bad compile mode" -#~ msgstr "mode compile buruk" - -#~ msgid "bad typecode" -#~ msgstr "typecode buruk" - -#~ msgid "bits must be 8" -#~ msgstr "bits harus memilki nilai 8" - #~ msgid "buffer too long" #~ msgstr "buffer terlalu panjang" -#~ msgid "buffers must be the same length" -#~ msgstr "buffers harus mempunyai panjang yang sama" - -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "byte > 8 bit tidak didukung" - -#~ msgid "calibration is out of range" -#~ msgstr "kalibrasi keluar dari jangkauan" - -#~ msgid "calibration is read only" -#~ msgstr "kalibrasi adalah read only" - -#~ msgid "calibration value out of range +/-127" -#~ msgstr "nilai kalibrasi keluar dari jangkauan +/-127" - -#~ msgid "can only have up to 4 parameters to Thumb assembly" -#~ msgstr "hanya mampu memiliki hingga 4 parameter untuk Thumb assembly" - #~ msgid "can query only one param" #~ msgstr "hanya bisa melakukan query satu param" -#~ msgid "can't assign to expression" -#~ msgstr "tidak dapat menetapkan ke ekspresi" - -#~ msgid "can't declare nonlocal in outer code" -#~ msgstr "tidak dapat mendeklarasikan nonlocal diluar jangkauan kode" - -#~ msgid "can't delete expression" -#~ msgstr "tidak bisa menghapus ekspresi" - #~ msgid "can't get AP config" #~ msgstr "tidak bisa mendapatkan konfigurasi AP" #~ msgid "can't get STA config" #~ msgstr "tidak bisa mendapatkan konfigurasi STA" -#~ msgid "can't have multiple **x" -#~ msgstr "tidak bisa memiliki **x ganda" - -#~ msgid "can't have multiple *x" -#~ msgstr "tidak bisa memiliki *x ganda" - #~ msgid "can't set AP config" #~ msgstr "tidak bisa mendapatkan konfigurasi AP" #~ msgid "can't set STA config" #~ msgstr "tidak bisa mendapatkan konfigurasi STA" -#~ msgid "cannot perform relative import" -#~ msgstr "tidak dapat melakukan relative import" - -#~ msgid "compression header" -#~ msgstr "kompresi header" - -#~ msgid "default 'except' must be last" -#~ msgstr "'except' standar harus terakhir" - #~ msgid "either pos or kw args are allowed" #~ msgstr "hanya antar pos atau kw args yang diperbolehkan" -#~ msgid "empty heap" -#~ msgstr "heap kosong" - -#~ msgid "error = 0x%08lX" -#~ msgstr "error = 0x%08lX" - #~ msgid "expecting a pin" #~ msgstr "mengharapkan sebuah pin" -#~ msgid "expecting an assembler instruction" -#~ msgstr "sebuah instruksi assembler diharapkan" - -#~ msgid "expecting just a value for set" -#~ msgstr "hanya mengharapkan sebuah nilai (value) untuk set" - -#~ msgid "expecting key:value for dict" -#~ msgstr "key:value diharapkan untuk dict" - -#~ msgid "extra keyword arguments given" -#~ msgstr "argumen keyword ekstra telah diberikan" - -#~ msgid "extra positional arguments given" -#~ msgstr "argumen posisi ekstra telah diberikan" - #~ msgid "ffi_prep_closure_loc" #~ msgstr "ffi_prep_closure_loc" -#~ msgid "firstbit must be MSB" -#~ msgstr "bit pertama(firstbit) harus berupa MSB" - #~ msgid "flash location must be below 1MByte" #~ msgstr "alokasi flash harus dibawah 1MByte" #~ msgid "frequency can only be either 80Mhz or 160MHz" #~ msgstr "frekuensi hanya bisa didefinisikan 80Mhz atau 160Mhz" -#~ msgid "function does not take keyword arguments" -#~ msgstr "fungsi tidak dapat mengambil argumen keyword" - -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "fungsi diharapkan setidaknya %d argumen, hanya mendapatkan %d" - -#~ msgid "function got multiple values for argument '%q'" -#~ msgstr "fungsi mendapatkan nilai ganda untuk argumen '%q'" - -#~ msgid "function missing %d required positional arguments" -#~ msgstr "fungsi kehilangan %d argumen posisi yang dibutuhkan" - -#~ msgid "function missing keyword-only argument" -#~ msgstr "fungsi kehilangan argumen keyword-only" - -#~ msgid "function missing required keyword argument '%q'" -#~ msgstr "fungsi kehilangan argumen keyword '%q' yang dibutuhkan" - -#~ msgid "function missing required positional argument #%d" -#~ msgstr "fungsi kehilangan argumen posisi #%d yang dibutuhkan" - -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "fungsi mengambil posisi argumen %d tapi %d yang diberikan" - -#~ msgid "heap must be a list" -#~ msgstr "heap harus berupa sebuah list" - -#~ msgid "identifier redefined as global" -#~ msgstr "identifier didefinisi ulang sebagai global" - -#~ msgid "identifier redefined as nonlocal" -#~ msgstr "identifier didefinisi ulang sebagai nonlocal" - #~ msgid "impossible baudrate" #~ msgstr "baudrate tidak memungkinkan" -#~ msgid "incorrect padding" -#~ msgstr "lapisan (padding) tidak benar" - -#~ msgid "index out of range" -#~ msgstr "index keluar dari jangkauan" - -#~ msgid "inline assembler must be a function" -#~ msgstr "inline assembler harus sebuah fungsi" - -#~ msgid "invalid I2C peripheral" -#~ msgstr "perangkat I2C tidak valid" - -#~ msgid "invalid SPI peripheral" -#~ msgstr "perangkat SPI tidak valid" - #~ msgid "invalid alarm" #~ msgstr "alarm tidak valid" -#~ msgid "invalid arguments" -#~ msgstr "argumen-argumen tidak valid" - #~ msgid "invalid buffer length" #~ msgstr "panjang buffer tidak valid" -#~ msgid "invalid cert" -#~ msgstr "cert tidak valid" - #~ msgid "invalid data bits" #~ msgstr "bit data tidak valid" -#~ msgid "invalid dupterm index" -#~ msgstr "indeks dupterm tidak valid" - -#~ msgid "invalid format" -#~ msgstr "format tidak valid" - -#~ msgid "invalid key" -#~ msgstr "key tidak valid" - -#~ msgid "invalid micropython decorator" -#~ msgstr "micropython decorator tidak valid" - #~ msgid "invalid pin" #~ msgstr "pin tidak valid" #~ msgid "invalid stop bits" #~ msgstr "stop bit tidak valid" -#~ msgid "invalid syntax" -#~ msgstr "syntax tidak valid" - -#~ msgid "keyword argument(s) not yet implemented - use normal args instead" -#~ msgstr "argumen keyword belum diimplementasi - gunakan args normal" - -#~ msgid "keywords must be strings" -#~ msgstr "keyword harus berupa string" - -#~ msgid "label redefined" -#~ msgstr "label didefinis ulang" - #~ msgid "len must be multiple of 4" #~ msgstr "len harus kelipatan dari 4" #~ msgid "memory allocation failed, allocating %u bytes for native code" #~ msgstr "alokasi memori gagal, mengalokasikan %u byte untuk kode native" -#~ msgid "module not found" -#~ msgstr "modul tidak ditemukan" - -#~ msgid "multiple *x in assignment" -#~ msgstr "perkalian *x dalam assignment" - -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "harus menentukan semua pin sck/mosi/miso" - -#~ msgid "name reused for argument" -#~ msgstr "nama digunakan kembali untuk argumen" - -#~ msgid "no binding for nonlocal found" -#~ msgstr "tidak ada ikatan/bind pada temuan nonlocal" - -#~ msgid "no module named '%q'" -#~ msgstr "tidak ada modul yang bernama '%q'" - -#~ msgid "non-default argument follows default argument" -#~ msgstr "argumen non-default mengikuti argumen standar(default)" - -#~ msgid "non-hex digit found" -#~ msgstr "digit non-hex ditemukan" - -#~ msgid "non-keyword arg after */**" -#~ msgstr "non-keyword arg setelah */**" - -#~ msgid "non-keyword arg after keyword arg" -#~ msgstr "non-keyword arg setelah keyword arg" - #~ msgid "not a valid ADC Channel: %d" #~ msgstr "tidak valid channel ADC: %d" -#~ msgid "odd-length string" -#~ msgstr "panjang data string memiliki keganjilan (odd-length)" - -#, fuzzy -#~ msgid "offset out of bounds" -#~ msgstr "modul tidak ditemukan" - -#~ msgid "parameter annotation must be an identifier" -#~ msgstr "anotasi parameter haruse sebuah identifier" - -#~ msgid "parameters must be registers in sequence r0 to r3" -#~ msgstr "parameter harus menjadi register dalam urutan r0 sampai r3" - #~ msgid "pin does not have IRQ capabilities" #~ msgstr "pin tidak memiliki kemampuan IRQ" -#~ msgid "pop from an empty PulseIn" -#~ msgstr "Muncul dari PulseIn yang kosong" - -#~ msgid "queue overflow" -#~ msgstr "antrian meluap (overflow)" - -#~ msgid "relative import" -#~ msgstr "relative import" - -#~ msgid "return annotation must be an identifier" -#~ msgstr "anotasi return harus sebuah identifier" - -#~ msgid "sampling rate out of range" -#~ msgstr "nilai sampling keluar dari jangkauan" - #~ msgid "scan failed" #~ msgstr "scan gagal" -#~ msgid "script compilation not supported" -#~ msgstr "kompilasi script tidak didukung" - -#~ msgid "struct: cannot index" -#~ msgstr "struct: tidak bisa melakukan index" - -#~ msgid "struct: index out of range" -#~ msgstr "struct: index keluar dari jangkauan" - -#~ msgid "struct: no fields" -#~ msgstr "struct: tidak ada fields" - -#~ msgid "super() can't find self" -#~ msgstr "super() tidak dapat menemukan dirinya sendiri" - -#~ msgid "syntax error in JSON" -#~ msgstr "sintaksis error pada JSON" - -#~ msgid "syntax error in uctypes descriptor" -#~ msgstr "sintaksis error pada pendeskripsi uctypes" - -#~ msgid "tx and rx cannot both be None" -#~ msgstr "tx dan rx keduanya tidak boleh kosong" - -#~ msgid "unexpected keyword argument" -#~ msgstr "argumen keyword tidak diharapkan" - -#~ msgid "unexpected keyword argument '%q'" -#~ msgstr "keyword argumen '%q' tidak diharapkan" - #~ msgid "unknown config param" #~ msgstr "konfigurasi param tidak diketahui" #~ msgid "unknown status param" #~ msgstr "status param tidak diketahui" -#~ msgid "unknown type" -#~ msgstr "tipe tidak diketahui" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "wifi_set_ip_info() gagal" diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index c8a883554..37b158902 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,16 +23,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr "" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr "" + #: main.c msgid " output:\n" msgstr "" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" +#: py/obj.c +msgid "%q index out of range" +msgstr "" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "" @@ -40,10 +61,162 @@ msgstr "" msgid "%q should be an int" msgstr "" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'await' outside function" +msgstr "" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'return' outside function" +msgstr "" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "" + +#: py/obj.c +msgid ", in %q\n" +msgstr "" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -54,14 +227,54 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "All UART peripherals are in use" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -84,6 +297,18 @@ msgid "" "disable.\n" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -97,10 +322,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, c-format +msgid "Bus pin %d is already in use" +msgstr "" + #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "" @@ -109,6 +340,11 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -125,26 +361,55 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "" + +#: ports/nrf/common-hal/microcontroller/Processor.c +msgid "Cannot get temperature" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -153,6 +418,10 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -165,6 +434,10 @@ msgstr "" msgid "Clock stretch too long" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -173,6 +446,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -185,10 +467,32 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +msgid "Data 0 pin must be byte aligned" +msgstr "" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "Data too large for advertisement packet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Data too large for the advertisement packet" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -197,8 +501,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "" -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -207,8 +520,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c msgid "Expected a UUID" msgstr "" @@ -217,179 +530,513 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c -msgid "Function requires lock" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to acquire mutex" msgstr "" -#: shared-module/displayio/Group.c -msgid "Group full" +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to acquire mutex, err 0x%04x" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "Incorrect buffer size" +#: ports/nrf/common-hal/bleio/Service.c +#, c-format +msgid "Failed to add characteristic, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -msgid "Invalid BMP file" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to add service" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid PWM frequency" +#: ports/nrf/common-hal/bleio/Peripheral.c +#, c-format +msgid "Failed to add service, err 0x%04x" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Invalid direction." +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid file" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid format chunk size" +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to change softdevice state" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid number of bits" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to connect:" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid phase" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to continue scanning" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid pin" +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to continue scanning, err 0x%04x" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid polarity" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to create mutex" msgstr "" -#: shared-bindings/microcontroller/__init__.c -msgid "Invalid run mode." +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to discover services" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid wave file" +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get local address" msgstr "" -#: shared-module/displayio/Group.c -msgid "Layer must be a Group or TileGrid subclass." +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get softdevice state" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"Looks like our core CircuitPython code crashed hard. Whoops!\n" -"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" -" with the contents of your CIRCUITPY drive and this message:\n" +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" msgstr "" -#: shared-module/bitbangio/SPI.c -msgid "MISO pin init failed." +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read CCCD value, err 0x%04x" msgstr "" -#: shared-module/bitbangio/SPI.c -msgid "MOSI pin init failed." +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" msgstr "" -#: shared-module/displayio/Shape.c +#: ports/nrf/common-hal/bleio/Characteristic.c #, c-format -msgid "Maximum x value when mirrored is %d" +msgid "Failed to read gatts value, err 0x%04x" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "MicroPython NLR jump failed. Likely memory corruption.\n" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "MicroPython fatal error.\n" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to release mutex" msgstr "" -#: shared-bindings/displayio/Display.c -msgid "Must be a Group subclass." +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to release mutex, err 0x%04x" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default I2C bus" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start advertising" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default SPI bus" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to start advertising, err 0x%04x" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default UART bus" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start scanning" msgstr "" -#: shared-bindings/os/__init__.c -msgid "No hardware random available" +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to start scanning, err 0x%04x" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to stop advertising" msgstr "" -#: shared-bindings/util.c -msgid "" -"Object has been deinitialized and can no longer be used. Create a new object." +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to stop advertising, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c +#: ports/nrf/common-hal/bleio/Characteristic.c #, c-format -msgid "" -"Only Windows format, uncompressed BMP supported: given header size is %d" +msgid "Failed to write attribute value, err 0x%04x" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "Only bit maps of 8 bit color or less are supported" +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to write gatts value, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -#, c-format -msgid "" -"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " -"given" +#: py/moduerrno.c +msgid "File exists" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM frequency not writable when variable_frequency is False on construction." +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" msgstr "" -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +msgid "Function requires lock" +msgstr "" + +#: shared-module/displayio/Group.c +msgid "Group full" +msgstr "" + +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" + +#: shared-bindings/_pew/PewPew.c +msgid "Incorrect buffer size" +msgstr "" + +#: py/moduerrno.c +msgid "Input/output error" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +msgid "Invalid BMP file" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +msgid "Invalid PWM frequency" +msgstr "" + +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Invalid direction." +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid file" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid format chunk size" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid number of bits" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid phase" +msgstr "" + +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid pin" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid polarity" +msgstr "" + +#: shared-bindings/microcontroller/__init__.c +msgid "Invalid run mode." +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid wave file" +msgstr "" + +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "" + +#: shared-module/displayio/Group.c +msgid "Layer must be a Group or TileGrid subclass." +msgstr "" + +#: py/objslice.c +msgid "Length must be an int" +msgstr "" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"Looks like our core CircuitPython code crashed hard. Whoops!\n" +"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" +" with the contents of your CIRCUITPY drive and this message:\n" +msgstr "" + +#: shared-module/bitbangio/SPI.c +msgid "MISO pin init failed." +msgstr "" + +#: shared-module/bitbangio/SPI.c +msgid "MOSI pin init failed." +msgstr "" + +#: shared-module/displayio/Shape.c +#, c-format +msgid "Maximum x value when mirrored is %d" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "MicroPython NLR jump failed. Likely memory corruption.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "MicroPython fatal error.\n" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" + +#: shared-bindings/displayio/Display.c +msgid "Must be a Group subclass." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default I2C bus" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default SPI bus" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default UART bus" +msgstr "" + +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "" + +#: shared-bindings/os/__init__.c +msgid "No hardware random available" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "" + +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "Not connected" +msgstr "" + +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "" + +#: shared-bindings/util.c +msgid "" +"Object has been deinitialized and can no longer be used. Create a new object." +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +#, c-format +msgid "" +"Only Windows format, uncompressed BMP supported: given header size is %d" +msgstr "" + +#: shared-module/displayio/Bitmap.c +msgid "Only bit maps of 8 bit color or less are supported" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +#, c-format +msgid "" +"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " +"given" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Only slices with step=1 (aka None) are supported" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "" + +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" +msgstr "" + +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM frequency not writable when variable_frequency is False on construction." +msgstr "" + +#: py/moduerrno.c +msgid "Permission denied" +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +msgid "Plus any modules on the filesystem\n" +msgstr "" + +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." msgstr "" #: shared-bindings/rtc/RTC.c msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Range out of bounds" msgstr "" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "" + #: shared-module/displayio/Bitmap.c msgid "Read-only object" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -402,15 +1049,42 @@ msgstr "" msgid "Running in safe mode! Not running saved code.\n" msgstr "" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -428,265 +1102,1235 @@ msgid "" "your CIRCUITPY drive:\n" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"The microcontroller's power dipped. Please make sure your power supply " -"provides\n" -"enough power for the whole circuit and press reset (after ejecting " -"CIRCUITPY).\n" +#: supervisor/shared/safe_mode.c +msgid "" +"The microcontroller's power dipped. Please make sure your power supply " +"provides\n" +"enough power for the whole circuit and press reset (after ejecting " +"CIRCUITPY).\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"The reset button was pressed while booting CircuitPython. Press again to " +"exit safe mode.\n" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's bits_per_sample does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's channel count does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's sample rate does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's signedness does not match the mixer's" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile height must exactly divide bitmap height" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile indices must be 0 - 255" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile width must exactly divide bitmap width" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "To exit, please reset the board without " +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "" + +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +msgid "Too many display busses" +msgstr "" + +#: shared-bindings/displayio/Display.c +msgid "Too many displays" +msgstr "" + +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "Tuple or struct_time argument required" +msgstr "" + +#: shared-module/usb_hid/Device.c +msgid "USB Busy" +msgstr "" + +#: shared-module/usb_hid/Device.c +msgid "USB Error" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID integer value not in range 0 to 0xffff" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID value is not str, int or byte buffer" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +msgid "Unable to read color palette data" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "Unable to write to nvm." +msgstr "" + +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "" + +#: shared-module/displayio/Display.c +msgid "Unsupported display bus type" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Unsupported format" +msgstr "" + +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Unsupported pull value." +msgstr "" + +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "Voice index too high" +msgstr "" + +#: main.c +msgid "WARNING: Your code filename has two extensions\n" +msgstr "" + +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " +msgstr "" + +#: py/objtype.c +msgid "__init__() should return None" +msgstr "" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "" + +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "" + +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" + +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "" + +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "" + +#: py/objstr.c +msgid "bad format string" +msgstr "" + +#: py/binary.c +msgid "bad typecode" +msgstr "" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "" + +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "" + +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "" + +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "" + +#: shared-module/struct/__init__.c +msgid "buffer size must match format" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "" + +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "" + +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "" + +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" + +#: py/vm.c +msgid "byte code not implemented" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "" + +#: py/objstr.c +msgid "bytes value out of range" +msgstr "" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "" + +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "" + +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "" + +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "" + +#: py/compile.c +msgid "can't assign to expression" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "" + +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "" + +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "" + +#: py/objint.c +msgid "can't convert inf to int" +msgstr "" + +#: py/obj.c +msgid "can't convert to complex" +msgstr "" + +#: py/obj.c +msgid "can't convert to float" +msgstr "" + +#: py/obj.c +msgid "can't convert to int" +msgstr "" + +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "" + +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "" + +#: py/compile.c +msgid "can't delete expression" +msgstr "" + +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "" + +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "" + +#: py/compile.c +msgid "can't have multiple **x" +msgstr "" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "" + +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "" + +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "" + +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" + +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "" + +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" + +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "" + +#: py/objtype.c +msgid "cannot create instance" +msgstr "" + +#: py/runtime.c +msgid "cannot import name %q" +msgstr "" + +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "" + +#: py/emitnative.c +msgid "casting" +msgstr "" + +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" + +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "" + +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "" + +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "" + +#: extmod/moduzlib.c +msgid "compression header" +msgstr "" + +#: py/parse.c +msgid "constant must be an integer" +msgstr "" + +#: py/emitnative.c +msgid "conversion to object" +msgstr "" + +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "" + +#: py/compile.c +msgid "default 'except' must be last" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "" + +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "" + +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "" + +#: py/objdeque.c +msgid "empty" +msgstr "" + +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "" + +#: py/objstr.c +msgid "empty separator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "" + +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" + +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "" + +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "" + +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "" + +#: py/obj.c +msgid "expected tuple/list" +msgstr "" + +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "" + +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "" + +#: py/compile.c +msgid "expecting just a value for set" +msgstr "" + +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "" + +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "" + +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "" + +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "" + +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "" + +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "" + +#: py/objint.c +msgid "float too big" +msgstr "" + +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "" + +#: py/objstr.c +msgid "format requires a dict" +msgstr "" + +#: py/objdeque.c +msgid "full" +msgstr "" + +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "" + +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "" + +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "" + +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "" + +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "" + +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "" + +#: py/objgenerator.c +msgid "generator already executing" +msgstr "" + +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "" + +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as global" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "" + +#: py/objstr.c +msgid "incomplete format" +msgstr "" + +#: py/objstr.c +msgid "incomplete format key" +msgstr "" + +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "" + +#: py/obj.c +msgid "indices must be integers" +msgstr "" + +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "" + +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "" + +#: py/objstr.c +msgid "integer required" +msgstr "" + +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" + +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "" + +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "" + +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "" + +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "" + +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "" + +#: py/objstr.c +msgid "invalid format specifier" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "" + +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "" + +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "" + +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" + +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" + +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" + +#: py/bc.c +msgid "keywords must be strings" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "" + +#: py/compile.c +msgid "label redefined" +msgstr "" + +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "" + +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "" + +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "" + +#: py/objint.c +msgid "long int not supported in this build" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "" + +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" + +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "" + +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "" + +#: py/builtinimport.c +msgid "module not found" +msgstr "" + +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "" + +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" + +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "" + +#: py/emitnative.c +msgid "must raise an object" +msgstr "" + +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "" + +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "" + +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "" + +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" +msgstr "" + +#: py/runtime.c +msgid "name not defined" +msgstr "" + +#: py/compile.c +msgid "name reused for argument" +msgstr "" + +#: py/emitnative.c +msgid "native yield" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"The reset button was pressed while booting CircuitPython. Press again to " -"exit safe mode.\n" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's bits_per_sample does not match the mixer's" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's channel count does not match the mixer's" +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's sample rate does not match the mixer's" +#: py/vm.c +msgid "no active exception to reraise" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's signedness does not match the mixer's" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile height must exactly divide bitmap height" +#: py/compile.c +msgid "no binding for nonlocal found" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile indices must be 0 - 255" +#: py/builtinimport.c +msgid "no module named '%q'" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile width must exactly divide bitmap width" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "To exit, please reset the board without " +#: py/compile.c +msgid "non-default argument follows default argument" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c -msgid "Too many display busses" +#: extmod/modubinascii.c +msgid "non-hex digit found" msgstr "" -#: shared-bindings/displayio/Display.c -msgid "Too many displays" +#: py/compile.c +msgid "non-keyword arg after */**" msgstr "" -#: shared-bindings/time/__init__.c -msgid "Tuple or struct_time argument required" +#: py/compile.c +msgid "non-keyword arg after keyword arg" msgstr "" -#: shared-module/usb_hid/Device.c -msgid "USB Busy" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: shared-module/usb_hid/Device.c -msgid "USB Error" +#: py/objstr.c +msgid "not all arguments converted during string formatting" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID integer value not in range 0 to 0xffff" +#: py/objstr.c +msgid "not enough arguments for format string" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID value is not str, int or byte buffer" +#: py/obj.c +msgid "object does not support item assignment" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -msgid "Unable to read color palette data" +#: py/obj.c +msgid "object does not support item deletion" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "Unable to write to nvm." +#: py/obj.c +msgid "object has no len" msgstr "" -#: shared-module/displayio/Display.c -msgid "Unsupported display bus type" +#: py/obj.c +msgid "object is not subscriptable" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Unsupported format" +#: py/runtime.c +msgid "object not an iterator" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Unsupported pull value." +#: py/objtype.c py/runtime.c +msgid "object not callable" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "Voice index too high" +#: py/sequence.c +msgid "object not in sequence" msgstr "" -#: main.c -msgid "WARNING: Your code filename has two extensions\n" +#: py/runtime.c +msgid "object not iterable" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"You are running in safe mode which means something unanticipated happened.\n" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " +#: py/obj.c +msgid "object with buffer protocol required" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" +#: extmod/modubinascii.c +msgid "odd-length string" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" +#: py/objstr.c py/objstrunicode.c +msgid "offset out of bounds" msgstr "" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c -msgid "array/bytes required on right side" +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" +#: py/modbuiltins.c +msgid "ord expects a character" msgstr "" -#: shared-module/struct/__init__.c -msgid "buffer size must match format" +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -msgid "buffer too small" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: py/compile.c +msgid "parameter annotation must be an identifier" msgstr "" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" msgstr "" -#: shared-bindings/math/__init__.c -msgid "division by zero" +#: py/objset.c +msgid "pop from an empty set" msgstr "" -#: shared-bindings/random/__init__.c -msgid "empty sequence" +#: py/objlist.c +msgid "pop from empty list" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" +#: py/objdict.c +msgid "popitem(): dictionary is empty" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" msgstr "" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" msgstr "" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" +#: extmod/modutimeq.c +msgid "queue overflow" msgstr "" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" msgstr "" -#: shared-bindings/random/__init__.c -msgid "invalid step" +#: shared-bindings/_pixelbuf/__init__.c +msgid "readonly attribute" msgstr "" -#: shared-bindings/math/__init__.c -msgid "math domain error" +#: py/builtinimport.c +msgid "relative import" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" msgstr "" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" +#: py/compile.c +msgid "return annotation must be an identifier" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" +#: py/objstr.c +msgid "rsplit(None,n)" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: py/modmicropython.c +msgid "schedule stack full" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" msgstr "" #: shared-bindings/bleio/Peripheral.c msgid "services includes an object that is not a Service" msgstr "" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "" + +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "" + #: shared-bindings/time/__init__.c msgid "sleep length must be non-negative" msgstr "" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "" + +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "" + #: main.c msgid "soft reboot\n" msgstr "" +#: py/objstr.c +msgid "start/end indices" +msgstr "" + #: shared-bindings/displayio/Shape.c msgid "start_x should be an int" msgstr "" @@ -703,6 +2347,51 @@ msgstr "" msgid "stop not reachable from start" msgstr "" +#: py/stream.c +msgid "stream operation not supported" +msgstr "" + +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "" + +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "" + +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "" + +#: py/objstr.c +msgid "substring not found" +msgstr "" + +#: py/compile.c +msgid "super() can't find self" +msgstr "" + +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "" + +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "" + #: shared-bindings/touchio/TouchIn.c msgid "threshold must be in the range 0-65536" msgstr "" @@ -739,14 +2428,154 @@ msgstr "" msgid "too many arguments provided with the given format" msgstr "" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "" + +#: py/objstr.c +msgid "tuple index out of range" +msgstr "" + +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "" + +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "" + +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "" + +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "" + +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "" + +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "" + +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "" + +#: py/parse.c +msgid "unexpected indent" +msgstr "" + +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "" + +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "" + +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" + +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "" + +#: py/compile.c +msgid "unknown type" +msgstr "" + +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "" + +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "" + +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "" + #: shared-bindings/displayio/TileGrid.c msgid "unsupported bitmap type" msgstr "" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "" + +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "" + +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "" + +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "" + #: shared-bindings/displayio/Bitmap.c msgid "value_count must be > 0" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" + +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "" + +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "" + #: shared-module/displayio/Shape.c msgid "x value out of bounds" msgstr "" @@ -758,3 +2587,7 @@ msgstr "" #: shared-module/displayio/Shape.c msgid "y value out of bounds" msgstr "" + +#: py/objrange.c +msgid "zero step" +msgstr "" diff --git a/locale/de_DE.po b/locale/de_DE.po index 1485878e2..26b519d4d 100644 --- a/locale/de_DE.po +++ b/locale/de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: Pascal Deneaux\n" "Language-Team: Sebastian Plamauer, Pascal Deneaux\n" @@ -25,16 +25,37 @@ msgstr "" "\n" "Der Code wurde ausgeführt. Warte auf reload.\n" +#: py/obj.c +msgid " File \"%q\"" +msgstr " Datei \"%q\"" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr " Datei \"%q\", Zeile %d" + #: main.c msgid " output:\n" msgstr " Ausgabe:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "%%c erwartet int oder char" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q in Benutzung" +#: py/obj.c +msgid "%q index out of range" +msgstr "Der Index %q befindet sich außerhalb der Reihung" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "%q Indizes müssen ganze Zahlen sein, nicht %s" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "%q muss >= 1 sein" @@ -42,10 +63,162 @@ msgstr "%q muss >= 1 sein" msgid "%q should be an int" msgstr "%q sollte ein int sein" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "'%q' Argument erforderlich" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "'%s' erwartet ein Label" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "'%s' erwartet ein Register" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "'%s' erwartet ein Spezialregister" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "'%s' erwartet ein FPU-Register" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "'%s' erwartet eine Adresse in der Form [a, b]" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "'%s' erwartet ein Integer" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "'%s' erwartet höchstens r%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "'%s' erwartet {r0, r1, ...}" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "'%s' integer %d ist nicht im Bereich %d..%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "'%s' Integer 0x%x passt nicht in Maske 0x%x" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "'%s' Objekt unterstützt keine item assignment" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "'%s' Objekt unterstützt das Löschen von Elementen nicht" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "'%s' Objekt hat kein Attribut '%q'" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "'%s' Objekt ist kein Iterator" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "'%s' object ist nicht callable" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "'%s' Objekt nicht iterierbar" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "'%s' Objekt hat keine '__getitem__'-Methode (not subscriptable)" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "'='-Ausrichtung ist im String-Formatbezeichner nicht zulässig" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' und 'O' sind keine unterstützten Formattypen" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "'align' erfordert genau ein Argument" + +#: py/compile.c +msgid "'await' outside function" +msgstr "'await' außerhalb einer Funktion" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "'break' außerhalb einer Schleife" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "'continue' außerhalb einer Schleife" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "'data' erfordert mindestens zwei Argumente" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "'data' erfordert Integer-Argumente" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "'label' erfordert genau ein Argument" + +#: py/compile.c +msgid "'return' outside function" +msgstr "'return' außerhalb einer Funktion" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "'yield' außerhalb einer Funktion" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "*x muss Zuordnungsziel sein" + +#: py/obj.c +msgid ", in %q\n" +msgstr "" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "3-arg pow() wird nicht unterstützt" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Ein Hardware Interrupt Kanal wird schon benutzt" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -56,14 +229,54 @@ msgstr "Die Adresse ist nicht %d Bytes lang oder das Format ist falsch" msgid "Address must be %d bytes long" msgstr "Die Adresse muss %d Bytes lang sein" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "Alle I2C-Peripheriegeräte sind in Benutzung" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "Alle SPI-Peripheriegeräte sind in Benutzung" + +#: ports/nrf/common-hal/busio/UART.c +msgid "All UART peripherals are in use" +msgstr "Alle UART-Peripheriegeräte sind in Benutzung" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Alle event Kanäle werden benutzt" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "Alle sync event Kanäle werden benutzt" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Alle timer für diesen Pin werden bereits benutzt" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Alle timer werden benutzt" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "AnalogOut-Funktion wird nicht unterstützt" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "AnalogOut kann nur 16 Bit. Der Wert muss unter 65536 liegen." + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "AnalogOut ist an diesem Pin nicht unterstützt" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Ein anderer Sendevorgang ist schon aktiv" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "Array muss Halbwörter enthalten (type 'H')" @@ -88,6 +301,18 @@ msgstr "" "Automatisches Neuladen ist aktiv. Speichere Dateien über USB um sie " "auszuführen oder verbinde dich mit der REPL zum Deaktivieren.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "Bit clock und word select müssen eine clock unit teilen" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "Bit depth muss ein Vielfaches von 8 sein." + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Beide pins müssen Hardware Interrupts unterstützen" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "Die Helligkeit muss zwischen 0 und 255 liegen" @@ -101,10 +326,16 @@ msgstr "Die Helligkeit ist nicht einstellbar" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Der Puffergröße ist inkorrekt. Sie sollte %d bytes haben." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Der Puffer muss eine Mindestenslänge von 1 haben" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, c-format +msgid "Bus pin %d is already in use" +msgstr "Bus pin %d wird schon benutzt" + #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "Der Puffer muss 16 Bytes lang sein" @@ -113,6 +344,11 @@ msgstr "Der Puffer muss 16 Bytes lang sein" msgid "Bytes must be between 0 and 255." msgstr "Ein Bytes kann nur Werte zwischen 0 und 255 annehmen." +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "Kann dotstar nicht mit %s verwenden" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "Im Central mode können Dienste nicht hinzugefügt werden" @@ -129,26 +365,55 @@ msgstr "Im Central mode kann name nicht geändert werden" msgid "Can't connect in Peripheral mode" msgstr "Im Peripheral mode kann keine Verbindung hergestellt werden" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Kann Werte nicht löschen" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "Pull up im Ausgabemodus nicht möglich" + +#: ports/nrf/common-hal/microcontroller/Processor.c +msgid "Cannot get temperature" +msgstr "Kann Temperatur nicht holen" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "Kann nicht beite Kanäle auf dem gleichen Pin ausgeben" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Kann ohne MISO-Pin nicht lesen." +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "Aufnahme in eine Datei nicht möglich" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Kann '/' nicht remounten when USB aktiv ist" +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Der Wert kann nicht gesetzt werden, wenn die Richtung input ist." +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Übertragung ohne MOSI- und MISO-Pins nicht möglich." +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "sizeof scalar kann nicht eindeutig bestimmt werden" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Kann nicht ohne MOSI-Pin schreiben." @@ -157,6 +422,10 @@ msgstr "Kann nicht ohne MOSI-Pin schreiben." msgid "Characteristic UUID doesn't match Service UUID" msgstr "Characteristic UUID stimmt nicht mit der Service-UUID überein" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "Characteristic wird bereits von einem anderen Dienst verwendet." + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "Schreiben von CharacteristicBuffer ist nicht vorgesehen" @@ -169,6 +438,10 @@ msgstr "Clock pin init fehlgeschlagen." msgid "Clock stretch too long" msgstr "Clock stretch zu lang" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Clock unit wird benutzt" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -177,6 +450,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "Der Befehl muss ein int zwischen 0 und 255 sein" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "Konnte ble_uuid nicht decodieren. Status: 0x%04x" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "Konnte UART nicht initialisieren" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Konnte first buffer nicht zuteilen" @@ -189,10 +471,32 @@ msgstr "Konnte second buffer nicht zuteilen" msgid "Crash into the HardFault_Handler.\n" msgstr "Absturz in HardFault_Handler.\n" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "DAC wird schon benutzt" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +msgid "Data 0 pin must be byte aligned" +msgstr "Data 0 pin muss am Byte ausgerichtet sein" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "Data too large for advertisement packet" +msgstr "Zu vielen Daten für das advertisement packet" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Data too large for the advertisement packet" +msgstr "Daten sind zu groß für das advertisement packet" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "Die Zielkapazität ist kleiner als destination_length." + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "Die Rotation der Anzeige muss in 90-Grad-Schritten erfolgen" @@ -201,8 +505,17 @@ msgstr "Die Rotation der Anzeige muss in 90-Grad-Schritten erfolgen" msgid "Drive mode not used when direction is input." msgstr "Drive mode wird nicht verwendet, wenn die Richtung input ist." -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "EXTINT Kanal ist schon in Benutzung" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "Fehler in regex" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Erwartet ein(e) %q" @@ -211,8 +524,8 @@ msgstr "Erwartet ein(e) %q" msgid "Expected a Characteristic" msgstr "Characteristic wird erwartet" -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c msgid "Expected a UUID" msgstr "Eine UUID wird erwartet" @@ -221,8 +534,173 @@ msgstr "Eine UUID wird erwartet" msgid "Expected tuple of length %d, got %d" msgstr "Habe ein Tupel der Länge %d erwartet aber %d erhalten" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to acquire mutex" +msgstr "Akquirieren des Mutex gescheitert" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "Mutex konnte nicht akquiriert werden. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Service.c +#, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "Hinzufügen des Characteristic ist gescheitert. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to add service" +msgstr "Dienst konnte nicht hinzugefügt werden" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "Dienst konnte nicht hinzugefügt werden. Status: 0x%04x" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Konnte keinen RX Buffer allozieren" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Konnte keine RX Buffer mit %d allozieren" + +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to change softdevice state" +msgstr "Fehler beim Ändern des Softdevice-Status" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to connect:" +msgstr "Verbindung fehlgeschlagen:" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to continue scanning" +msgstr "Der Scanvorgang kann nicht fortgesetzt werden" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "Der Scanvorgang kann nicht fortgesetzt werden. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to create mutex" +msgstr "Erstellen des Mutex ist fehlgeschlagen" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to discover services" +msgstr "Es konnten keine Dienste gefunden werden" + +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get local address" +msgstr "Lokale Adresse konnte nicht abgerufen werden" + +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get softdevice state" +msgstr "Fehler beim Abrufen des Softdevice-Status" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "Kann CCCD value nicht lesen. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "gatts value konnte nicht gelesen werden. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "Kann keine herstellerspezifische UUID hinzufügen. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to release mutex" +msgstr "Loslassen des Mutex gescheitert" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "Mutex konnte nicht freigegeben werden. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start advertising" +msgstr "Kann advertisement nicht starten" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "Kann advertisement nicht starten. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start scanning" +msgstr "Der Scanvorgang kann nicht gestartet werden" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "Der Scanvorgang kann nicht gestartet werden. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to stop advertising" +msgstr "Kann advertisement nicht stoppen" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "Kann advertisement nicht stoppen. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "Kann den Attributwert nicht schreiben. Status: 0x%04x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "gatts value konnte nicht geschrieben werden. Status: 0x%04x" + +#: py/moduerrno.c +msgid "File exists" +msgstr "Datei existiert" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" @@ -230,18 +708,68 @@ msgstr "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" msgid "Group full" msgstr "Gruppe voll" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "Lese/Schreibe-operation an geschlossener Datei" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "I2C-operation nicht unterstützt" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" +"Inkompatible mpy-Datei. Bitte aktualisieren Sie alle mpy-Dateien. Siehe " +"http://adafru.it/mpy-update für weitere Informationen." + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "Eingabe-/Ausgabefehler" + #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Ungültige BMP-Datei" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Ungültige PWM Frequenz" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "Ungültiges Argument" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Ungültiges bit clock pin" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "Ungültige Puffergröße" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "Ungültige Anzahl von Kanälen" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Ungültiger clock pin" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "Ungültiger data pin" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Ungültige Richtung" @@ -254,19 +782,37 @@ msgstr "Ungültige Datei" msgid "Invalid format chunk size" msgstr "Ungültige format chunk size" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Ungültige Anzahl von Bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Ungültige Phase" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Ungültiger Pin" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Ungültiger Pin für linken Kanal" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Ungültiger Pin für rechten Kanal" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "Ungültige Pins" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Ungültige Polarität" @@ -274,14 +820,30 @@ msgstr "Ungültige Polarität" msgid "Invalid run mode." msgstr "Ungültiger Ausführungsmodus" +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "Ungültige Anzahl von Stimmen" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Ungültige wave Datei" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "LHS des Schlüsselwortarguments muss eine id sein" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "Layer muss eine Group- oder TileGrid-Unterklasse sein." +#: py/objslice.c +msgid "Length must be an int" +msgstr "Länge muss ein int sein" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "Länge darf nicht negativ sein" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -316,10 +878,36 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "Schwerwiegender MicroPython-Fehler\n" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" +"Die Startverzögerung des Mikrofons muss im Bereich von 0,0 bis 1,0 liegen" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Kein DAC im Chip vorhanden" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "Kein DMA Kanal gefunden" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Kein RX Pin" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Kein TX Pin" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Kein Standard I2C Bus" @@ -332,14 +920,35 @@ msgstr "Kein Standard SPI Bus" msgid "No default UART bus" msgstr "Kein Standard UART Bus" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Keine freien GCLKs" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Kein hardware random verfügbar" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Keine Hardwareunterstützung an diesem Pin" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "Kein Speicherplatz auf Gerät" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "Keine solche Datei/Verzeichnis" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "Not connected" msgstr "Nicht verbunden" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "Spielt nicht" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -347,6 +956,14 @@ msgstr "" "Objekt wurde deinitialisiert und kann nicht mehr verwendet werden. Erstelle " "ein neues Objekt." +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "Eine ungerade Parität wird nicht unterstützt" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "Nur 8 oder 16 bit mono mit " + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -365,6 +982,14 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Only slices with step=1 (aka None) are supported" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "Oversample muss ein Vielfaches von 8 sein." + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -375,6 +1000,23 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "Die PWM-Frequenz ist nicht schreibbar wenn variable_Frequenz = False." +#: py/moduerrno.c +msgid "Permission denied" +msgstr "Zugang verweigert" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "Pin hat keine ADC Funktionalität" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "Pixel außerhalb der Puffergrenzen" + +#: py/builtinhelp.c +msgid "Plus any modules on the filesystem\n" +msgstr "und alle Module im Dateisystem \n" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -389,22 +1031,30 @@ msgstr "Pull wird nicht verwendet, wenn die Richtung output ist." msgid "RTC calibration is not supported on this board" msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "Eine RTC wird auf diesem Board nicht unterstützt" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" -msgstr "Die RTC-Änderung wird auf diesem Board nicht unterstützt" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Range out of bounds" +msgstr "" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Nur lesen möglich, da Schreibgeschützt" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "Schreibgeschützte Dateisystem" + #: shared-module/displayio/Bitmap.c msgid "Read-only object" msgstr "Schreibgeschützte Objekt" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Rechter Kanal wird nicht unterstützt" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -417,15 +1067,42 @@ msgstr "Sicherheitsmodus aktiv! Automatisches Neuladen ist deaktiviert.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Sicherheitsmodus aktiv! Gespeicherter Code wird nicht ausgeführt\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "SDA oder SCL brauchen pull up" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "Abtastrate muss positiv sein" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "Abtastrate zu hoch. Wert muss unter %d liegen" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Serializer wird benutzt" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "Slice und Wert (value) haben unterschiedliche Längen." -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Slices werden nicht unterstützt" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "Splitting mit sub-captures" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "Die Stackgröße sollte mindestens 256 sein" @@ -501,6 +1178,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Zum beenden, resette bitte das board ohne " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "Zu viele Kanäle im sample" + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -509,6 +1190,10 @@ msgstr "" msgid "Too many displays" msgstr "Zu viele displays" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "Zurückverfolgung (jüngste Aufforderung zuletzt):\n" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Tuple- oder struct_time-Argument erforderlich" @@ -533,6 +1218,20 @@ msgstr "UUID Zeichenfolge ist nicht 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" msgid "UUID value is not str, int or byte buffer" msgstr "Der UUID-Wert ist kein str-, int- oder Byte-Puffer" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Konnte keinen freien GCLK finden" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "Parser konnte nicht gestartet werden" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -541,6 +1240,21 @@ msgstr "" msgid "Unable to write to nvm." msgstr "Schreiben in nvm nicht möglich." +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "Unerwarteter nrfx uuid-Typ" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" +"Nicht übereinstimmende Anzahl von Elementen auf der rechten Seite (erwartet " +"%d, %d erhalten)." + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "Baudrate wird nicht unterstützt" + #: shared-module/displayio/Display.c msgid "Unsupported display bus type" msgstr "Nicht unterstützter display bus type" @@ -549,10 +1263,18 @@ msgstr "Nicht unterstützter display bus type" msgid "Unsupported format" msgstr "Nicht unterstütztes Format" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "Nicht unterstützte Operation" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Nicht unterstützter Pull-Wert" +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "Viper-Funktionen unterstützen derzeit nicht mehr als 4 Argumente" + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Voice index zu hoch" @@ -562,6 +1284,22 @@ msgid "WARNING: Your code filename has two extensions\n" msgstr "" "WARNUNG: Der Dateiname deines Programms hat zwei Dateityperweiterungen\n" +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" +"Willkommen bei Adafruit CircuitPython %s!\n" +"\n" +"Projektleitfäden findest du auf learn.adafruit.com/category/circuitpython \n" +"\n" +"Um die integrierten Module aufzulisten, führe bitte `help(\"modules\")` " +"aus.\n" + #: supervisor/shared/safe_mode.c msgid "" "You are running in safe mode which means something unanticipated happened.\n" @@ -573,6 +1311,32 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Du hast das Starten im Sicherheitsmodus ausgelöst durch " +#: py/objtype.c +msgid "__init__() should return None" +msgstr "__init__() sollte None zurückgeben" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "__init__() sollte None zurückgeben, nicht '%s'" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "__new__ arg muss user-type sein" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "ein Byte-ähnliches Objekt ist erforderlich" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "abort() wurde aufgerufen" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "Addresse %08x ist nicht an %d bytes ausgerichtet" + #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "Adresse außerhalb der Grenzen" @@ -581,1428 +1345,1465 @@ msgstr "Adresse außerhalb der Grenzen" msgid "addresses is empty" msgstr "adresses ist leer" -#: shared-bindings/nvm/ByteArray.c +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "arg ist eine leere Sequenz" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "Argument hat falschen Typ" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "Anzahl/Type der Argumente passen nicht" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "Argument sollte '%q' sein, nicht '%q'" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "Array/Bytes auf der rechten Seite erforderlich" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits muss 7, 8 oder 9 sein" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "Attribute werden noch nicht unterstützt" -#: shared-module/struct/__init__.c -msgid "buffer size must match format" -msgstr "Die Puffergröße muss zum Format passen" +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "Puffersegmente müssen gleich lang sein" +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "" + +#: py/objstr.c +msgid "bad format string" +msgstr "" + +#: py/binary.c +msgid "bad typecode" +msgstr "" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "Der binäre Operator %q ist nicht implementiert" + +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits muss 7, 8 oder 9 sein" + +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "bits müssen 8 sein" + +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "Es müssen 8 oder 16 bits_per_sample sein" + +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "Zweig ist außerhalb der Reichweite" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "buf ist zu klein. brauche %d Bytes" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "Puffer muss ein bytes-artiges Objekt sein" + +#: shared-module/struct/__init__.c +msgid "buffer size must match format" +msgstr "Die Puffergröße muss zum Format passen" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "Puffersegmente müssen gleich lang sein" + +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "Der Puffer ist zu klein" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "Buffer müssen gleich lang sein" + #: shared-bindings/_pew/PewPew.c msgid "buttons must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "kann Adresse nicht in int konvertieren" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" +#: py/vm.c +msgid "byte code not implemented" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "" +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "bytes mit mehr als 8 bits werden nicht unterstützt" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +#: py/objstr.c +msgid "bytes value out of range" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "Kalibrierung ist außerhalb der Reichweite" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "Kalibrierung ist Schreibgeschützt" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "Kalibrierwert nicht im Bereich von +/-127" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" msgstr "" -#: shared-bindings/math/__init__.c -msgid "division by zero" -msgstr "Division durch Null" +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "kann nur bis zu 4 Parameter für die Xtensa assembly haben" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "leere Sequenz" +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "kann nur Bytecode speichern" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" +#: py/objtype.c +msgid "can't add special method to already-subclassed class" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "erwarte DigitalInOut" +#: py/compile.c +msgid "can't assign to expression" +msgstr "kann keinem Ausdruck zuweisen" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" -msgstr "Die Datei muss eine im Byte-Modus geöffnete Datei sein" +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "kann %s nicht nach complex konvertieren" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "Das Dateisystem muss eine Mount-Methode bereitstellen" +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "kann %s nicht nach float konvertieren" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "Funktion benötigt genau 9 Argumente" +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "kann %s nicht nach int konvertieren" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "ungültiger Schritt (step)" +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren" -#: shared-bindings/math/__init__.c -msgid "math domain error" -msgstr "" +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "kann NaN nicht nach int konvertieren" -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" -msgstr "name muss ein String sein" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "kann Adresse nicht in int konvertieren" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "" +#: py/objint.c +msgid "can't convert inf to int" +msgstr "kann inf nicht nach int konvertieren" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "keine 128-bit UUID" +#: py/obj.c +msgid "can't convert to complex" +msgstr "kann nicht nach complex konvertieren" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "" +#: py/obj.c +msgid "can't convert to float" +msgstr "kann nicht nach float konvertieren" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "" +#: py/obj.c +msgid "can't convert to int" +msgstr "kann nicht nach int konvertieren" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" -msgstr "Pixelkoordinaten außerhalb der Grenzen" +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "Kann nicht implizit nach str konvertieren" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "kann im äußeren Code nicht als nonlocal deklarieren" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein" +#: py/compile.c +msgid "can't delete expression" +msgstr "Ausdruck kann nicht gelöscht werden" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "" +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "Eine binäre Operation zwischen '%q' und '%q' ist nicht möglich" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "kann mit einer komplexen Zahl keine abgeschnittene Division ausführen" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" +#: py/compile.c +msgid "can't have multiple **x" +msgstr "mehrere **x sind nicht gestattet" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "mehrere *x sind nicht gestattet" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "Kann '%q' nicht implizit nach 'bool' konvertieren" + +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "Laden von '%q' nicht möglich" + +#: py/emitnative.c +msgid "can't load with '%q' index" msgstr "" -#: main.c -msgid "soft reboot\n" -msgstr "weicher reboot\n" +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "start_x should be an int" +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" msgstr "" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "Schritt (step) darf nicht Null sein" +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop muss 1 oder 2 sein" +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "Speichern von '%q' nicht möglich" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop ist von start aus nicht erreichbar" +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "Speichern in/nach '%q' nicht möglich" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "threshold muss im Intervall 0-65536 liegen" +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "Speichern mit '%q' Index nicht möglich" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" +#: py/objtype.c +msgid "cannot create '%q' instances" msgstr "" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: py/objtype.c +msgid "cannot create instance" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "timeout must be >= 0.0" -msgstr "timeout muss >= 0.0 sein" +#: py/runtime.c +msgid "cannot import name %q" +msgstr "Name %q kann nicht importiert werden" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "kann keinen relativen Import durchführen" + +#: py/emitnative.c +msgid "casting" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "zu viele Argumente" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "Nicht unterstützter Bitmap-Typ" +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "chr() arg ist nicht in range(0x110000)" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "chr() arg ist nicht in range(256)" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" -#: shared-module/displayio/Shape.c -msgid "x value out of bounds" -msgstr "x Wert außerhalb der Grenzen" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y sollte ein int sein" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" -#: shared-module/displayio/Shape.c -msgid "y value out of bounds" -msgstr "y Wert außerhalb der Grenzen" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "" -#~ msgid " File \"%q\"" -#~ msgstr " Datei \"%q\"" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "" -#~ msgid " File \"%q\", line %d" -#~ msgstr " Datei \"%q\", Zeile %d" +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "" -#~ msgid "%%c requires int or char" -#~ msgstr "%%c erwartet int oder char" +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "" -#~ msgid "%q index out of range" -#~ msgstr "Der Index %q befindet sich außerhalb der Reihung" +#: extmod/moduzlib.c +msgid "compression header" +msgstr "kompression header" -#~ msgid "%q indices must be integers, not %s" -#~ msgstr "%q Indizes müssen ganze Zahlen sein, nicht %s" +#: py/parse.c +msgid "constant must be an integer" +msgstr "" -#~ msgid "%q() takes %d positional arguments but %d were given" -#~ msgstr "" -#~ "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" +#: py/emitnative.c +msgid "conversion to object" +msgstr "" -#~ msgid "'%q' argument required" -#~ msgstr "'%q' Argument erforderlich" +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "" -#~ msgid "'%s' expects a label" -#~ msgstr "'%s' erwartet ein Label" +#: py/compile.c +msgid "default 'except' must be last" +msgstr "Die Standart-Ausnahmebehandlung muss als letztes sein" -#~ msgid "'%s' expects a register" -#~ msgstr "'%s' erwartet ein Register" +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" -#~ msgid "'%s' expects a special register" -#~ msgstr "'%s' erwartet ein Spezialregister" +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" -#~ msgid "'%s' expects an FPU register" -#~ msgstr "'%s' erwartet ein FPU-Register" +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "" -#~ msgid "'%s' expects an address of the form [a, b]" -#~ msgstr "'%s' erwartet eine Adresse in der Form [a, b]" +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "" -#~ msgid "'%s' expects an integer" -#~ msgstr "'%s' erwartet ein Integer" +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "Division durch Null" -#~ msgid "'%s' expects at most r%d" -#~ msgstr "'%s' erwartet höchstens r%d" +#: py/objdeque.c +msgid "empty" +msgstr "leer" -#~ msgid "'%s' expects {r0, r1, ...}" -#~ msgstr "'%s' erwartet {r0, r1, ...}" +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "leerer heap" -#~ msgid "'%s' integer %d is not within range %d..%d" -#~ msgstr "'%s' integer %d ist nicht im Bereich %d..%d" +#: py/objstr.c +msgid "empty separator" +msgstr "leeres Trennzeichen" -#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" -#~ msgstr "'%s' Integer 0x%x passt nicht in Maske 0x%x" +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "leere Sequenz" -#~ msgid "'%s' object does not support item assignment" -#~ msgstr "'%s' Objekt unterstützt keine item assignment" +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" -#~ msgid "'%s' object does not support item deletion" -#~ msgstr "'%s' Objekt unterstützt das Löschen von Elementen nicht" +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" +msgstr "" -#~ msgid "'%s' object has no attribute '%q'" -#~ msgstr "'%s' Objekt hat kein Attribut '%q'" +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "" -#~ msgid "'%s' object is not an iterator" -#~ msgstr "'%s' Objekt ist kein Iterator" +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "Exceptions müssen von BaseException abgeleitet sein" -#~ msgid "'%s' object is not callable" -#~ msgstr "'%s' object ist nicht callable" +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "erwarte ':' nach format specifier" -#~ msgid "'%s' object is not iterable" -#~ msgstr "'%s' Objekt nicht iterierbar" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "erwarte DigitalInOut" -#~ msgid "'%s' object is not subscriptable" -#~ msgstr "'%s' Objekt hat keine '__getitem__'-Methode (not subscriptable)" +#: py/obj.c +msgid "expected tuple/list" +msgstr "erwarte tuple/list" -#~ msgid "'=' alignment not allowed in string format specifier" -#~ msgstr "'='-Ausrichtung ist im String-Formatbezeichner nicht zulässig" +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "erwarte ein dict als Keyword-Argumente" -#~ msgid "'align' requires 1 argument" -#~ msgstr "'align' erfordert genau ein Argument" +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "erwartet eine Assembler-Anweisung" -#~ msgid "'await' outside function" -#~ msgstr "'await' außerhalb einer Funktion" +#: py/compile.c +msgid "expecting just a value for set" +msgstr "Erwarte nur einen Wert für set" -#~ msgid "'break' outside loop" -#~ msgstr "'break' außerhalb einer Schleife" +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "Erwarte key:value für dict" -#~ msgid "'continue' outside loop" -#~ msgstr "'continue' außerhalb einer Schleife" +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "Es wurden zusätzliche Keyword-Argumente angegeben" -#~ msgid "'data' requires at least 2 arguments" -#~ msgstr "'data' erfordert mindestens zwei Argumente" +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben" -#~ msgid "'data' requires integer arguments" -#~ msgstr "'data' erfordert Integer-Argumente" +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "Die Datei muss eine im Byte-Modus geöffnete Datei sein" -#~ msgid "'label' requires 1 argument" -#~ msgstr "'label' erfordert genau ein Argument" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "Das Dateisystem muss eine Mount-Methode bereitstellen" -#~ msgid "'return' outside function" -#~ msgstr "'return' außerhalb einer Funktion" +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "Das erste Argument für super() muss type sein" -#~ msgid "'yield' outside function" -#~ msgstr "'yield' außerhalb einer Funktion" +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "Erstes Bit muss das höchstwertigste Bit (MSB) sein" -#~ msgid "*x must be assignment target" -#~ msgstr "*x muss Zuordnungsziel sein" +#: py/objint.c +msgid "float too big" +msgstr "float zu groß" -#~ msgid "3-arg pow() not supported" -#~ msgstr "3-arg pow() wird nicht unterstützt" +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "Die Schriftart (font) muss 2048 Byte lang sein" -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Ein Hardware Interrupt Kanal wird schon benutzt" +#: py/objstr.c +msgid "format requires a dict" +msgstr "" -#~ msgid "AP required" -#~ msgstr "AP erforderlich" +#: py/objdeque.c +msgid "full" +msgstr "voll" -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Alle I2C-Peripheriegeräte sind in Benutzung" +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "Funktion akzeptiert keine Keyword-Argumente" -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Alle SPI-Peripheriegeräte sind in Benutzung" +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "Funktion erwartet maximal %d Argumente, aber hat %d erhalten" -#~ msgid "All UART peripherals are in use" -#~ msgstr "Alle UART-Peripheriegeräte sind in Benutzung" +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "Funktion hat mehrere Werte für Argument '%q'" -#~ msgid "All event channels in use" -#~ msgstr "Alle event Kanäle werden benutzt" +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "Funktion vermisst %d benötigte Argumente ohne Keyword" -#~ msgid "All sync event channels in use" -#~ msgstr "Alle sync event Kanäle werden benutzt" +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "Funktion vermisst Keyword-only-Argument" -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "AnalogOut-Funktion wird nicht unterstützt" +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "Funktion vermisst benötigtes Keyword-Argumente '%q'" -#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." -#~ msgstr "AnalogOut kann nur 16 Bit. Der Wert muss unter 65536 liegen." +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "Funktion vermisst benötigtes Argumente ohne Keyword #%d" -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "AnalogOut ist an diesem Pin nicht unterstützt" +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "" +"Funktion nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" -#~ msgid "Another send is already active" -#~ msgstr "Ein anderer Sendevorgang ist schon aktiv" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "Funktion benötigt genau 9 Argumente" -#~ msgid "Bit clock and word select must share a clock unit" -#~ msgstr "Bit clock und word select müssen eine clock unit teilen" +#: py/objgenerator.c +msgid "generator already executing" +msgstr "Generator läuft bereits" -#~ msgid "Bit depth must be multiple of 8." -#~ msgstr "Bit depth muss ein Vielfaches von 8 sein." +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "Generator ignoriert GeneratorExit" -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Beide pins müssen Hardware Interrupts unterstützen" +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "graphic muss 2048 Byte lang sein" -#~ msgid "Bus pin %d is already in use" -#~ msgstr "Bus pin %d wird schon benutzt" +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "heap muss eine Liste sein" -#~ msgid "C-level assert" -#~ msgstr "C-Level Assert" +#: py/compile.c +msgid "identifier redefined as global" +msgstr "Bezeichner als global neu definiert" -#~ msgid "Can not use dotstar with %s" -#~ msgstr "Kann dotstar nicht mit %s verwenden" +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "Bezeichner als nonlocal definiert" -#~ msgid "Cannot connect to AP" -#~ msgstr "Kann nicht zu AP verbinden" +#: py/objstr.c +msgid "incomplete format" +msgstr "unvollständiges Format" -#~ msgid "Cannot disconnect from AP" -#~ msgstr "Kann nicht trennen von AP" +#: py/objstr.c +msgid "incomplete format key" +msgstr "unvollständiger Formatschlüssel" -#~ msgid "Cannot get pull while in output mode" -#~ msgstr "Pull up im Ausgabemodus nicht möglich" +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "padding ist inkorrekt" -#~ msgid "Cannot get temperature" -#~ msgstr "Kann Temperatur nicht holen" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "index außerhalb der Reichweite" -#~ msgid "Cannot output both channels on the same pin" -#~ msgstr "Kann nicht beite Kanäle auf dem gleichen Pin ausgeben" +#: py/obj.c +msgid "indices must be integers" +msgstr "Indizes müssen ganze Zahlen sein" -#~ msgid "Cannot record to a file" -#~ msgstr "Aufnahme in eine Datei nicht möglich" +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "inline assembler muss eine function sein" -#~ msgid "Cannot reset into bootloader because no bootloader is present." -#~ msgstr "Reset zum bootloader nicht möglich da bootloader nicht vorhanden" +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "int() arg 2 muss >= 2 und <= 36 sein" -#~ msgid "Cannot set STA config" -#~ msgstr "Kann STA Konfiguration nicht setzen" +#: py/objstr.c +msgid "integer required" +msgstr "integer erforderlich" -#~ msgid "Cannot unambiguously get sizeof scalar" -#~ msgstr "sizeof scalar kann nicht eindeutig bestimmt werden" +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "Das Interval ist nicht im Bereich 0.0020 bis 10.24" -#~ msgid "Cannot update i/f status" -#~ msgstr "Kann i/f Status nicht updaten" +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "ungültige I2C Schnittstelle" -#~ msgid "Characteristic already in use by another Service." -#~ msgstr "Characteristic wird bereits von einem anderen Dienst verwendet." +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "ungültige SPI Schnittstelle" -#~ msgid "Clock unit in use" -#~ msgstr "Clock unit wird benutzt" +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "ungültige argumente" -#~ msgid "Could not decode ble_uuid, err 0x%04x" -#~ msgstr "Konnte ble_uuid nicht decodieren. Status: 0x%04x" +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "ungültiges cert" -#~ msgid "Could not initialize UART" -#~ msgstr "Konnte UART nicht initialisieren" +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "ungültiger dupterm index" -#~ msgid "DAC already in use" -#~ msgstr "DAC wird schon benutzt" +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "ungültiges Format" -#~ msgid "Data 0 pin must be byte aligned" -#~ msgstr "Data 0 pin muss am Byte ausgerichtet sein" +#: py/objstr.c +msgid "invalid format specifier" +msgstr "ungültiger Formatbezeichner" -#~ msgid "Data too large for advertisement packet" -#~ msgstr "Zu vielen Daten für das advertisement packet" +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "ungültiger Schlüssel" -#~ msgid "Data too large for the advertisement packet" -#~ msgstr "Daten sind zu groß für das advertisement packet" +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "ungültiger micropython decorator" -#~ msgid "Destination capacity is smaller than destination_length." -#~ msgstr "Die Zielkapazität ist kleiner als destination_length." +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "ungültiger Schritt (step)" -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "" -#~ "Ich weiß nicht, wie man das Objekt an die native Funktion übergeben kann" +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "ungültige Syntax" -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "ESP8226 hat keinen Sicherheitsmodus" +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "ungültige Syntax für integer" -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "ESP8266 unterstützt pull down nicht" +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "ungültige Syntax für integer mit Basis %d" -#~ msgid "EXTINT channel already in use" -#~ msgstr "EXTINT Kanal ist schon in Benutzung" +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "ungültige Syntax für number" -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Fehler in ffi_prep_cif" +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "issubclass() arg 1 muss eine Klasse sein" -#~ msgid "Error in regex" -#~ msgstr "Fehler in regex" +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "issubclass() arg 2 muss eine Klasse oder ein Tupel von Klassen sein" -#~ msgid "Failed to acquire mutex" -#~ msgstr "Akquirieren des Mutex gescheitert" +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" +"join erwartet eine Liste von str/bytes-Objekten, die mit dem self-Objekt " +"übereinstimmen" -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "Mutex konnte nicht akquiriert werden. Status: 0x%04x" +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" +"Keyword-Argument(e) noch nicht implementiert - verwenden Sie stattdessen " +"normale Argumente" -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "Hinzufügen des Characteristic ist gescheitert. Status: 0x%04x" +#: py/bc.c +msgid "keywords must be strings" +msgstr "Schlüsselwörter müssen Zeichenfolgen sein" -#~ msgid "Failed to add service" -#~ msgstr "Dienst konnte nicht hinzugefügt werden" +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "Label '%q' nicht definiert" -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "Dienst konnte nicht hinzugefügt werden. Status: 0x%04x" +#: py/compile.c +msgid "label redefined" +msgstr "Label neu definiert" -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Konnte keinen RX Buffer allozieren" +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "Für diesen Typ ist length nicht zulässig" -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Konnte keine RX Buffer mit %d allozieren" +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "lhs und rhs sollten kompatibel sein" -#~ msgid "Failed to change softdevice state" -#~ msgstr "Fehler beim Ändern des Softdevice-Status" +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "Lokales '%q' hat den Typ '%q', aber die Quelle ist '%q'" -#~ msgid "Failed to connect:" -#~ msgstr "Verbindung fehlgeschlagen:" +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "Lokales '%q' verwendet bevor Typ bekannt" -#~ msgid "Failed to continue scanning" -#~ msgstr "Der Scanvorgang kann nicht fortgesetzt werden" +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "" +"Es wurde versucht auf eine Variable zuzugreifen, die es (noch) nicht gibt. " +"Variablen immer zuerst Zuweisen!" -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "Der Scanvorgang kann nicht fortgesetzt werden. Status: 0x%04x" +#: py/objint.c +msgid "long int not supported in this build" +msgstr "long int wird in diesem Build nicht unterstützt" -#~ msgid "Failed to create mutex" -#~ msgstr "Erstellen des Mutex ist fehlgeschlagen" +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "map buffer zu klein" -#~ msgid "Failed to discover services" -#~ msgstr "Es konnten keine Dienste gefunden werden" +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" -#~ msgid "Failed to get local address" -#~ msgstr "Lokale Adresse konnte nicht abgerufen werden" +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "maximale Rekursionstiefe überschritten" -#~ msgid "Failed to get softdevice state" -#~ msgstr "Fehler beim Abrufen des Softdevice-Status" - -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Kann den Attributwert nicht mitteilen. Status: 0x%04x" - -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "Kann CCCD value nicht lesen. Status: 0x%04x" - -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Kann den Attributwert nicht lesen. Status: 0x%04x" - -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "gatts value konnte nicht gelesen werden. Status: 0x%04x" - -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "Kann keine herstellerspezifische UUID hinzufügen. Status: 0x%04x" +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "Speicherzuordnung fehlgeschlagen, Zuweisung von %u Bytes" -#~ msgid "Failed to release mutex" -#~ msgstr "Loslassen des Mutex gescheitert" +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt" -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "Mutex konnte nicht freigegeben werden. Status: 0x%04x" +#: py/builtinimport.c +msgid "module not found" +msgstr "Modul nicht gefunden" -#~ msgid "Failed to start advertising" -#~ msgstr "Kann advertisement nicht starten" +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "mehrere *x in Zuordnung" -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "Kann advertisement nicht starten. Status: 0x%04x" +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" -#~ msgid "Failed to start scanning" -#~ msgstr "Der Scanvorgang kann nicht gestartet werden" +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "" -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "Der Scanvorgang kann nicht gestartet werden. Status: 0x%04x" +#: py/emitnative.c +msgid "must raise an object" +msgstr "" -#~ msgid "Failed to stop advertising" -#~ msgstr "Kann advertisement nicht stoppen" +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "sck/mosi/miso müssen alle spezifiziert sein" -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "Kann advertisement nicht stoppen. Status: 0x%04x" +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "muss Schlüsselwortargument für key function verwenden" -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "Kann den Attributwert nicht schreiben. Status: 0x%04x" +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "Name '%q' ist nirgends definiert worden (Schreibweise kontrollieren)" -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "gatts value konnte nicht geschrieben werden. Status: 0x%04x" +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" +msgstr "name muss ein String sein" -#~ msgid "File exists" -#~ msgstr "Datei existiert" +#: py/runtime.c +msgid "name not defined" +msgstr "Dieser Name ist nirgends definiert worden (Schreibweise kontrollieren)" -#~ msgid "Function requires lock." -#~ msgstr "" -#~ "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" +#: py/compile.c +msgid "name reused for argument" +msgstr "Name für Argumente wiederverwendet" -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "GPIO16 unterstützt pull up nicht" +#: py/emitnative.c +msgid "native yield" +msgstr "" -#~ msgid "I/O operation on closed file" -#~ msgstr "Lese/Schreibe-operation an geschlossener Datei" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "" -#~ msgid "I2C operation not supported" -#~ msgstr "I2C-operation nicht unterstützt" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "" -#~ msgid "" -#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." -#~ "it/mpy-update for more info." -#~ msgstr "" -#~ "Inkompatible mpy-Datei. Bitte aktualisieren Sie alle mpy-Dateien. Siehe " -#~ "http://adafru.it/mpy-update für weitere Informationen." +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "" -#~ msgid "Input/output error" -#~ msgstr "Eingabe-/Ausgabefehler" +#: py/vm.c +msgid "no active exception to reraise" +msgstr "" -#~ msgid "Invalid argument" -#~ msgstr "Ungültiges Argument" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Ungültiges bit clock pin" +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "" -#~ msgid "Invalid buffer size" -#~ msgstr "Ungültige Puffergröße" +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "Kein Modul mit dem Namen '%q'" -#~ msgid "Invalid channel count" -#~ msgstr "Ungültige Anzahl von Kanälen" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "" -#~ msgid "Invalid clock pin" -#~ msgstr "Ungültiger clock pin" +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "ein non-default argument folgt auf ein default argument" -#~ msgid "Invalid data pin" -#~ msgstr "Ungültiger data pin" +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "eine nicht-hex zahl wurde gefunden" -#~ msgid "Invalid pin for left channel" -#~ msgstr "Ungültiger Pin für linken Kanal" +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "" -#~ msgid "Invalid pin for right channel" -#~ msgstr "Ungültiger Pin für rechten Kanal" +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "" -#~ msgid "Invalid pins" -#~ msgstr "Ungültige Pins" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "keine 128-bit UUID" -#~ msgid "Invalid voice count" -#~ msgstr "Ungültige Anzahl von Stimmen" +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "" -#~ msgid "LHS of keyword arg must be an id" -#~ msgstr "LHS des Schlüsselwortarguments muss eine id sein" +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "" -#~ msgid "Length must be an int" -#~ msgstr "Länge muss ein int sein" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "Objekt '%s' ist weder tupel noch list" -#~ msgid "Length must be non-negative" -#~ msgstr "Länge darf nicht negativ sein" +#: py/obj.c +msgid "object does not support item assignment" +msgstr "Objekt unterstützt keine item assignment" -#~ msgid "Maximum PWM frequency is %dhz." -#~ msgstr "Maximale PWM Frequenz ist %dHz" +#: py/obj.c +msgid "object does not support item deletion" +msgstr "Objekt unterstützt das Löschen von Elementen nicht" -#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" -#~ msgstr "" -#~ "Die Startverzögerung des Mikrofons muss im Bereich von 0,0 bis 1,0 liegen" +#: py/obj.c +msgid "object has no len" +msgstr "Objekt hat keine len" -#~ msgid "Minimum PWM frequency is 1hz." -#~ msgstr "Minimale PWM Frequenz ist %dHz" +#: py/obj.c +msgid "object is not subscriptable" +msgstr "Objekt hat keine '__getitem__'-Methode (not subscriptable)" -#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -#~ msgstr "" -#~ "Mehrere PWM Frequenzen werden nicht unterstützt. PWM wurde bereits auf " -#~ "%dHz gesetzt." +#: py/runtime.c +msgid "object not an iterator" +msgstr "Objekt ist kein Iterator" -#~ msgid "No DAC on chip" -#~ msgstr "Kein DAC im Chip vorhanden" +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "" -#~ msgid "No DMA channel found" -#~ msgstr "Kein DMA Kanal gefunden" +#: py/sequence.c +msgid "object not in sequence" +msgstr "Objekt ist nicht in sequence" -#~ msgid "No PulseIn support for %q" -#~ msgstr "Keine PulseIn Unterstützung für %q" +#: py/runtime.c +msgid "object not iterable" +msgstr "Objekt nicht iterierbar" -#~ msgid "No RX pin" -#~ msgstr "Kein RX Pin" - -#~ msgid "No TX pin" -#~ msgstr "Kein TX Pin" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "Objekt vom Typ '%s' hat keine len()" -#~ msgid "No free GCLKs" -#~ msgstr "Keine freien GCLKs" +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "Objekt mit Pufferprotokoll (buffer protocol) erforderlich" -#~ msgid "No hardware support for analog out." -#~ msgstr "Keine Hardwareunterstützung für analog out" +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "String mit ungerader Länge" -#~ msgid "No hardware support on pin" -#~ msgstr "Keine Hardwareunterstützung an diesem Pin" +#: py/objstr.c py/objstrunicode.c +msgid "offset out of bounds" +msgstr "offset außerhalb der Grenzen" -#~ msgid "No space left on device" -#~ msgstr "Kein Speicherplatz auf Gerät" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "" -#~ msgid "No such file/directory" -#~ msgstr "Keine solche Datei/Verzeichnis" +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "ord erwartet ein Zeichen" -#~ msgid "Not connected." -#~ msgstr "Nicht verbunden." +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "" +"ord() erwartet ein Zeichen aber es wurde eine Zeichenfolge mit Länge %d " +"gefunden" -#~ msgid "Not playing" -#~ msgstr "Spielt nicht" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "" -#~ msgid "Odd parity is not supported" -#~ msgstr "Eine ungerade Parität wird nicht unterstützt" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "" -#~ msgid "Only 8 or 16 bit mono with " -#~ msgstr "Nur 8 oder 16 bit mono mit " +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Nur unkomprimiertes Windows-Format (BMP) unterstützt %d" +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "parameter annotation muss ein identifier sein" -#~ msgid "Only tx supported on UART1 (GPIO2)." -#~ msgstr "UART1 (GPIO2) unterstützt nur tx" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "Die Parameter müssen Register der Reihenfolge a2 bis a5 sein" -#~ msgid "Oversample must be multiple of 8." -#~ msgstr "Oversample muss ein Vielfaches von 8 sein." +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" +msgstr "" -#~ msgid "PWM not supported on pin %d" -#~ msgstr "PWM nicht unterstützt an Pin %d" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" +msgstr "Pixelkoordinaten außerhalb der Grenzen" -#~ msgid "Permission denied" -#~ msgstr "Zugang verweigert" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" -#~ msgid "Pin %q does not have ADC capabilities" -#~ msgstr "Pin %q hat keine ADC Funktion" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader muss displayio.Palette oder displayio.ColorConverter sein" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "Pin hat keine ADC Funktionalität" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "pop von einem leeren PulseIn" -#~ msgid "Pin(16) doesn't support pull" -#~ msgstr "Pin(16) unterstützt kein pull" +#: py/objset.c +msgid "pop from an empty set" +msgstr "pop von einer leeren Menge (set)" -#~ msgid "Pins not valid for SPI" -#~ msgstr "Pins nicht gültig für SPI" +#: py/objlist.c +msgid "pop from empty list" +msgstr "pop von einer leeren Liste" -#~ msgid "Pixel beyond bounds of buffer" -#~ msgstr "Pixel außerhalb der Puffergrenzen" +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "popitem(): dictionary ist leer" -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "und alle Module im Dateisystem \n" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "pow() drittes Argument darf nicht 0 sein" -#~ msgid "Read-only filesystem" -#~ msgstr "Schreibgeschützte Dateisystem" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "" -#~ msgid "Right channel unsupported" -#~ msgstr "Rechter Kanal wird nicht unterstützt" +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "Warteschlangenüberlauf" -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "SDA oder SCL brauchen pull up" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "rawbuf hat nicht die gleiche Größe wie buf" -#~ msgid "STA must be active" -#~ msgstr "STA muss aktiv sein" +#: shared-bindings/_pixelbuf/__init__.c +msgid "readonly attribute" +msgstr "Readonly-Attribut" -#~ msgid "STA required" -#~ msgstr "STA erforderlich" +#: py/builtinimport.c +msgid "relative import" +msgstr "relativer Import" -#~ msgid "Sample rate must be positive" -#~ msgstr "Abtastrate muss positiv sein" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "die ersuchte Länge ist %d, aber das Objekt hat eine Länge von %d" -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "Abtastrate zu hoch. Wert muss unter %d liegen" +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "return annotation muss ein identifier sein" -#~ msgid "Serializer in use" -#~ msgstr "Serializer wird benutzt" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "" -#~ msgid "Splitting with sub-captures" -#~ msgstr "Splitting mit sub-captures" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "" -#~ msgid "Too many channels in sample." -#~ msgstr "Zu viele Kanäle im sample" +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "" -#~ msgid "Traceback (most recent call last):\n" -#~ msgstr "Zurückverfolgung (jüngste Aufforderung zuletzt):\n" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" +"sample_source buffer muss ein Bytearray oder ein Array vom Typ 'h', 'H', 'b' " +"oder 'B' sein" -#~ msgid "UART(%d) does not exist" -#~ msgstr "UART(%d) existiert nicht" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "Abtastrate außerhalb der Reichweite" -#~ msgid "UART(1) can't read" -#~ msgstr "UART(1) kann nicht lesen" +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "Der schedule stack ist voll" -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "Konnte keine Buffer für Vorzeichenumwandlung allozieren" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "kompilieren von Skripten ist nicht unterstützt" -#~ msgid "Unable to find free GCLK" -#~ msgstr "Konnte keinen freien GCLK finden" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#~ msgid "Unable to init parser" -#~ msgstr "Parser konnte nicht gestartet werden" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "" -#~ msgid "Unable to remount filesystem" -#~ msgstr "Dateisystem konnte nicht wieder eingebunden werden." +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "" -#~ msgid "Unexpected nrfx uuid type" -#~ msgstr "Unerwarteter nrfx uuid-Typ" +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "" -#~ msgid "Unknown type" -#~ msgstr "Unbekannter Typ" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "" -#~ msgid "Unmatched number of items on RHS (expected %d, got %d)." -#~ msgstr "" -#~ "Nicht übereinstimmende Anzahl von Elementen auf der rechten Seite " -#~ "(erwartet %d, %d erhalten)." +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "" -#~ msgid "Unsupported baudrate" -#~ msgstr "Baudrate wird nicht unterstützt" +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "small int Überlauf" -#~ msgid "Unsupported operation" -#~ msgstr "Nicht unterstützte Operation" +#: main.c +msgid "soft reboot\n" +msgstr "weicher reboot\n" -#~ msgid "Use esptool to erase flash and re-upload Python instead" -#~ msgstr "" -#~ "Benutze das esptool um den flash zu löschen und Python erneut hochzuladen" +#: py/objstr.c +msgid "start/end indices" +msgstr "" -#~ msgid "Viper functions don't currently support more than 4 arguments" -#~ msgstr "Viper-Funktionen unterstützen derzeit nicht mehr als 4 Argumente" +#: shared-bindings/displayio/Shape.c +msgid "start_x should be an int" +msgstr "" -#~ msgid "" -#~ "Welcome to Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Please visit learn.adafruit.com/category/circuitpython for project " -#~ "guides.\n" -#~ "\n" -#~ "To list built-in modules please do `help(\"modules\")`.\n" -#~ msgstr "" -#~ "Willkommen bei Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Projektleitfäden findest du auf learn.adafruit.com/category/" -#~ "circuitpython \n" -#~ "\n" -#~ "Um die integrierten Module aufzulisten, führe bitte `help(\"modules\")` " -#~ "aus.\n" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "Schritt (step) darf nicht Null sein" -#~ msgid "__init__() should return None" -#~ msgstr "__init__() sollte None zurückgeben" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop muss 1 oder 2 sein" -#~ msgid "__init__() should return None, not '%s'" -#~ msgstr "__init__() sollte None zurückgeben, nicht '%s'" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop ist von start aus nicht erreichbar" -#~ msgid "__new__ arg must be a user-type" -#~ msgstr "__new__ arg muss user-type sein" +#: py/stream.c +msgid "stream operation not supported" +msgstr "stream operation ist nicht unterstützt" -#~ msgid "a bytes-like object is required" -#~ msgstr "ein Byte-ähnliches Objekt ist erforderlich" +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "" -#~ msgid "abort() called" -#~ msgstr "abort() wurde aufgerufen" +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "" -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "Addresse %08x ist nicht an %d bytes ausgerichtet" +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" +"Zeichenfolgen werden nicht unterstützt; Verwenden Sie bytes oder bytearray" -#~ msgid "arg is an empty sequence" -#~ msgstr "arg ist eine leere Sequenz" +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: kann nicht indexieren" -#~ msgid "argument has wrong type" -#~ msgstr "Argument hat falschen Typ" +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: index außerhalb gültigen Bereichs" -#~ msgid "argument num/types mismatch" -#~ msgstr "Anzahl/Type der Argumente passen nicht" +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: keine Felder" -#~ msgid "argument should be a '%q' not a '%q'" -#~ msgstr "Argument sollte '%q' sein, nicht '%q'" +#: py/objstr.c +msgid "substring not found" +msgstr "substring nicht gefunden" -#~ msgid "attributes not supported yet" -#~ msgstr "Attribute werden noch nicht unterstützt" +#: py/compile.c +msgid "super() can't find self" +msgstr "super() kann self nicht finden" -#~ msgid "binary op %q not implemented" -#~ msgstr "Der binäre Operator %q ist nicht implementiert" +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "Syntaxfehler in JSON" -#~ msgid "bits must be 8" -#~ msgstr "bits müssen 8 sein" +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "Syntaxfehler in uctypes Deskriptor" -#~ msgid "bits_per_sample must be 8 or 16" -#~ msgstr "Es müssen 8 oder 16 bits_per_sample sein" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "threshold muss im Intervall 0-65536 liegen" -#~ msgid "branch not in range" -#~ msgstr "Zweig ist außerhalb der Reichweite" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#~ msgid "buf is too small. need %d bytes" -#~ msgstr "buf ist zu klein. brauche %d Bytes" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" -#~ msgid "buffer must be a bytes-like object" -#~ msgstr "Puffer muss ein bytes-artiges Objekt sein" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "" -#~ msgid "buffer too long" -#~ msgstr "Buffer zu lang" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" -#~ msgid "buffers must be the same length" -#~ msgstr "Buffer müssen gleich lang sein" +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "timeout must be >= 0.0" +msgstr "timeout muss >= 0.0 sein" -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "bytes mit mehr als 8 bits werden nicht unterstützt" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "" -#~ msgid "calibration is out of range" -#~ msgstr "Kalibrierung ist außerhalb der Reichweite" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "zu viele Argumente" -#~ msgid "calibration is read only" -#~ msgstr "Kalibrierung ist Schreibgeschützt" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "" -#~ msgid "calibration value out of range +/-127" -#~ msgstr "Kalibrierwert nicht im Bereich von +/-127" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "" -#~ msgid "can only have up to 4 parameters to Xtensa assembly" -#~ msgstr "kann nur bis zu 4 Parameter für die Xtensa assembly haben" +#: py/objstr.c +msgid "tuple index out of range" +msgstr "" -#~ msgid "can only save bytecode" -#~ msgstr "kann nur Bytecode speichern" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "tupel/list hat falsche Länge" -#~ msgid "can't assign to expression" -#~ msgstr "kann keinem Ausdruck zuweisen" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#~ msgid "can't convert %s to complex" -#~ msgstr "kann %s nicht nach complex konvertieren" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "tx und rx können nicht beide None sein" -#~ msgid "can't convert %s to float" -#~ msgstr "kann %s nicht nach float konvertieren" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "" -#~ msgid "can't convert %s to int" -#~ msgstr "kann %s nicht nach int konvertieren" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "" -#~ msgid "can't convert '%q' object to %q implicitly" -#~ msgstr "Kann '%q' Objekt nicht implizit nach %q konvertieren" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "" -#~ msgid "can't convert NaN to int" -#~ msgstr "kann NaN nicht nach int konvertieren" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "" -#~ msgid "can't convert inf to int" -#~ msgstr "kann inf nicht nach int konvertieren" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "" -#~ msgid "can't convert to complex" -#~ msgstr "kann nicht nach complex konvertieren" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "Der unäre Operator %q ist nicht implementiert" -#~ msgid "can't convert to float" -#~ msgstr "kann nicht nach float konvertieren" +#: py/parse.c +msgid "unexpected indent" +msgstr "" +"unerwarteter Einzug (Einrückung) Bitte Leerzeichen am Zeilenanfang " +"kontrollieren!" -#~ msgid "can't convert to int" -#~ msgstr "kann nicht nach int konvertieren" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "unerwartetes Keyword-Argument" -#~ msgid "can't convert to str implicitly" -#~ msgstr "Kann nicht implizit nach str konvertieren" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "unerwartetes Keyword-Argument '%q'" -#~ msgid "can't declare nonlocal in outer code" -#~ msgstr "kann im äußeren Code nicht als nonlocal deklarieren" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" -#~ msgid "can't delete expression" -#~ msgstr "Ausdruck kann nicht gelöscht werden" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" +"Einrückung entspricht keiner äußeren Einrückungsebene. Bitte Leerzeichen am " +"Zeilenanfang kontrollieren!" -#~ msgid "can't do binary op between '%q' and '%q'" -#~ msgstr "Eine binäre Operation zwischen '%q' und '%q' ist nicht möglich" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "" -#~ msgid "can't do truncated division of a complex number" -#~ msgstr "" -#~ "kann mit einer komplexen Zahl keine abgeschnittene Division ausführen" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "" -#~ msgid "can't have multiple **x" -#~ msgstr "mehrere **x sind nicht gestattet" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "" -#~ msgid "can't have multiple *x" -#~ msgstr "mehrere *x sind nicht gestattet" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "" -#~ msgid "can't implicitly convert '%q' to 'bool'" -#~ msgstr "Kann '%q' nicht implizit nach 'bool' konvertieren" +#: py/compile.c +msgid "unknown type" +msgstr "unbekannter Typ" -#~ msgid "can't load from '%q'" -#~ msgstr "Laden von '%q' nicht möglich" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "unbekannter Typ '%q'" -#~ msgid "can't store '%q'" -#~ msgstr "Speichern von '%q' nicht möglich" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "" -#~ msgid "can't store to '%q'" -#~ msgstr "Speichern in/nach '%q' nicht möglich" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "nicht lesbares Attribut" -#~ msgid "can't store with '%q' index" -#~ msgstr "Speichern mit '%q' Index nicht möglich" +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "nicht unterstützter Thumb-Befehl '%s' mit %d Argumenten" -#~ msgid "cannot import name %q" -#~ msgstr "Name %q kann nicht importiert werden" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "" -#~ msgid "cannot perform relative import" -#~ msgstr "kann keinen relativen Import durchführen" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "Nicht unterstützter Bitmap-Typ" -#~ msgid "chr() arg not in range(0x110000)" -#~ msgstr "chr() arg ist nicht in range(0x110000)" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "" -#~ msgid "chr() arg not in range(256)" -#~ msgstr "chr() arg ist nicht in range(256)" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "nicht unterstützter Type für %q: '%s'" -#~ msgid "compression header" -#~ msgstr "kompression header" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "nicht unterstützter Typ für Operator" -#~ msgid "default 'except' must be last" -#~ msgstr "Die Standart-Ausnahmebehandlung muss als letztes sein" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "nicht unterstützte Typen für %q: '%s', '%s'" -#~ msgid "empty" -#~ msgstr "leer" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#~ msgid "empty heap" -#~ msgstr "leerer heap" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "write_args muss eine Liste, ein Tupel oder None sein" -#~ msgid "empty separator" -#~ msgstr "leeres Trennzeichen" +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "falsche Anzahl an Argumenten" -#~ msgid "exceptions must derive from BaseException" -#~ msgstr "Exceptions müssen von BaseException abgeleitet sein" +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "falsche Anzahl zu entpackender Werte" -#~ msgid "expected ':' after format specifier" -#~ msgstr "erwarte ':' nach format specifier" +#: shared-module/displayio/Shape.c +msgid "x value out of bounds" +msgstr "x Wert außerhalb der Grenzen" -#~ msgid "expected tuple/list" -#~ msgstr "erwarte tuple/list" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y sollte ein int sein" -#~ msgid "expecting a dict for keyword args" -#~ msgstr "erwarte ein dict als Keyword-Argumente" +#: shared-module/displayio/Shape.c +msgid "y value out of bounds" +msgstr "y Wert außerhalb der Grenzen" -#~ msgid "expecting a pin" -#~ msgstr "Ein Pin wird erwartet" +#: py/objrange.c +msgid "zero step" +msgstr "" -#~ msgid "expecting an assembler instruction" -#~ msgstr "erwartet eine Assembler-Anweisung" +#~ msgid "AP required" +#~ msgstr "AP erforderlich" -#~ msgid "expecting just a value for set" -#~ msgstr "Erwarte nur einen Wert für set" +#~ msgid "C-level assert" +#~ msgstr "C-Level Assert" -#~ msgid "expecting key:value for dict" -#~ msgstr "Erwarte key:value für dict" +#~ msgid "Cannot connect to AP" +#~ msgstr "Kann nicht zu AP verbinden" -#~ msgid "extra keyword arguments given" -#~ msgstr "Es wurden zusätzliche Keyword-Argumente angegeben" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Kann nicht trennen von AP" -#~ msgid "extra positional arguments given" -#~ msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben" +#~ msgid "Cannot set STA config" +#~ msgstr "Kann STA Konfiguration nicht setzen" -#~ msgid "ffi_prep_closure_loc" -#~ msgstr "ffi_prep_closure_loc" +#~ msgid "Cannot update i/f status" +#~ msgstr "Kann i/f Status nicht updaten" -#~ msgid "first argument to super() must be type" -#~ msgstr "Das erste Argument für super() muss type sein" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "" +#~ "Ich weiß nicht, wie man das Objekt an die native Funktion übergeben kann" -#~ msgid "firstbit must be MSB" -#~ msgstr "Erstes Bit muss das höchstwertigste Bit (MSB) sein" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8226 hat keinen Sicherheitsmodus" -#~ msgid "flash location must be below 1MByte" -#~ msgstr "flash location muss unter 1MByte sein" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 unterstützt pull down nicht" -#~ msgid "float too big" -#~ msgstr "float zu groß" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Fehler in ffi_prep_cif" -#~ msgid "font must be 2048 bytes long" -#~ msgstr "Die Schriftart (font) muss 2048 Byte lang sein" +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Kann den Attributwert nicht mitteilen. Status: 0x%04x" -#~ msgid "frequency can only be either 80Mhz or 160MHz" -#~ msgstr "Die Frequenz kann nur 80Mhz oder 160Mhz sein" +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Kann den Attributwert nicht lesen. Status: 0x%04x" -#~ msgid "full" -#~ msgstr "voll" +#~ msgid "Function requires lock." +#~ msgstr "" +#~ "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" -#~ msgid "function does not take keyword arguments" -#~ msgstr "Funktion akzeptiert keine Keyword-Argumente" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 unterstützt pull up nicht" -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "Funktion erwartet maximal %d Argumente, aber hat %d erhalten" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Maximale PWM Frequenz ist %dHz" -#~ msgid "function got multiple values for argument '%q'" -#~ msgstr "Funktion hat mehrere Werte für Argument '%q'" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Minimale PWM Frequenz ist %dHz" -#~ msgid "function missing %d required positional arguments" -#~ msgstr "Funktion vermisst %d benötigte Argumente ohne Keyword" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "Mehrere PWM Frequenzen werden nicht unterstützt. PWM wurde bereits auf " +#~ "%dHz gesetzt." -#~ msgid "function missing keyword-only argument" -#~ msgstr "Funktion vermisst Keyword-only-Argument" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Keine PulseIn Unterstützung für %q" -#~ msgid "function missing required keyword argument '%q'" -#~ msgstr "Funktion vermisst benötigtes Keyword-Argumente '%q'" +#~ msgid "No hardware support for analog out." +#~ msgstr "Keine Hardwareunterstützung für analog out" -#~ msgid "function missing required positional argument #%d" -#~ msgstr "Funktion vermisst benötigtes Argumente ohne Keyword #%d" +#~ msgid "Not connected." +#~ msgstr "Nicht verbunden." -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "" -#~ "Funktion nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Nur unkomprimiertes Windows-Format (BMP) unterstützt %d" -#~ msgid "generator already executing" -#~ msgstr "Generator läuft bereits" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "UART1 (GPIO2) unterstützt nur tx" -#~ msgid "generator ignored GeneratorExit" -#~ msgstr "Generator ignoriert GeneratorExit" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM nicht unterstützt an Pin %d" -#~ msgid "graphic must be 2048 bytes long" -#~ msgstr "graphic muss 2048 Byte lang sein" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q hat keine ADC Funktion" -#~ msgid "heap must be a list" -#~ msgstr "heap muss eine Liste sein" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) unterstützt kein pull" -#~ msgid "identifier redefined as global" -#~ msgstr "Bezeichner als global neu definiert" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pins nicht gültig für SPI" -#~ msgid "identifier redefined as nonlocal" -#~ msgstr "Bezeichner als nonlocal definiert" +#~ msgid "STA must be active" +#~ msgstr "STA muss aktiv sein" -#~ msgid "impossible baudrate" -#~ msgstr "Unmögliche Baudrate" +#~ msgid "STA required" +#~ msgstr "STA erforderlich" -#~ msgid "incomplete format" -#~ msgstr "unvollständiges Format" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) existiert nicht" -#~ msgid "incomplete format key" -#~ msgstr "unvollständiger Formatschlüssel" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) kann nicht lesen" -#~ msgid "incorrect padding" -#~ msgstr "padding ist inkorrekt" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Dateisystem konnte nicht wieder eingebunden werden." -#~ msgid "index out of range" -#~ msgstr "index außerhalb der Reichweite" +#~ msgid "Unknown type" +#~ msgstr "Unbekannter Typ" -#~ msgid "indices must be integers" -#~ msgstr "Indizes müssen ganze Zahlen sein" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Benutze das esptool um den flash zu löschen und Python erneut hochzuladen" -#~ msgid "inline assembler must be a function" -#~ msgstr "inline assembler muss eine function sein" +#~ msgid "buffer too long" +#~ msgstr "Buffer zu lang" -#~ msgid "int() arg 2 must be >= 2 and <= 36" -#~ msgstr "int() arg 2 muss >= 2 und <= 36 sein" +#~ msgid "expecting a pin" +#~ msgstr "Ein Pin wird erwartet" -#~ msgid "integer required" -#~ msgstr "integer erforderlich" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#~ msgid "interval not in range 0.0020 to 10.24" -#~ msgstr "Das Interval ist nicht im Bereich 0.0020 bis 10.24" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "flash location muss unter 1MByte sein" -#~ msgid "invalid I2C peripheral" -#~ msgstr "ungültige I2C Schnittstelle" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "Die Frequenz kann nur 80Mhz oder 160Mhz sein" -#~ msgid "invalid SPI peripheral" -#~ msgstr "ungültige SPI Schnittstelle" +#~ msgid "impossible baudrate" +#~ msgstr "Unmögliche Baudrate" #~ msgid "invalid alarm" #~ msgstr "ungültiger Alarm" -#~ msgid "invalid arguments" -#~ msgstr "ungültige argumente" - #~ msgid "invalid buffer length" #~ msgstr "ungültige Pufferlänge" -#~ msgid "invalid cert" -#~ msgstr "ungültiges cert" - #~ msgid "invalid data bits" #~ msgstr "ungültige Datenbits" -#~ msgid "invalid dupterm index" -#~ msgstr "ungültiger dupterm index" - -#~ msgid "invalid format" -#~ msgstr "ungültiges Format" - -#~ msgid "invalid format specifier" -#~ msgstr "ungültiger Formatbezeichner" - -#~ msgid "invalid key" -#~ msgstr "ungültiger Schlüssel" - -#~ msgid "invalid micropython decorator" -#~ msgstr "ungültiger micropython decorator" - #~ msgid "invalid pin" #~ msgstr "ungültiger Pin" #~ msgid "invalid stop bits" #~ msgstr "ungültige Stopbits" -#~ msgid "invalid syntax" -#~ msgstr "ungültige Syntax" - -#~ msgid "invalid syntax for integer" -#~ msgstr "ungültige Syntax für integer" - -#~ msgid "invalid syntax for integer with base %d" -#~ msgstr "ungültige Syntax für integer mit Basis %d" - -#~ msgid "invalid syntax for number" -#~ msgstr "ungültige Syntax für number" - -#~ msgid "issubclass() arg 1 must be a class" -#~ msgstr "issubclass() arg 1 muss eine Klasse sein" - -#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" -#~ msgstr "issubclass() arg 2 muss eine Klasse oder ein Tupel von Klassen sein" - -#~ msgid "join expects a list of str/bytes objects consistent with self object" -#~ msgstr "" -#~ "join erwartet eine Liste von str/bytes-Objekten, die mit dem self-Objekt " -#~ "übereinstimmen" - -#~ msgid "keyword argument(s) not yet implemented - use normal args instead" -#~ msgstr "" -#~ "Keyword-Argument(e) noch nicht implementiert - verwenden Sie stattdessen " -#~ "normale Argumente" - -#~ msgid "keywords must be strings" -#~ msgstr "Schlüsselwörter müssen Zeichenfolgen sein" - -#~ msgid "label '%q' not defined" -#~ msgstr "Label '%q' nicht definiert" - -#~ msgid "label redefined" -#~ msgstr "Label neu definiert" - #~ msgid "len must be multiple of 4" #~ msgstr "len muss ein vielfaches von 4 sein" -#~ msgid "length argument not allowed for this type" -#~ msgstr "Für diesen Typ ist length nicht zulässig" - -#~ msgid "lhs and rhs should be compatible" -#~ msgstr "lhs und rhs sollten kompatibel sein" - -#~ msgid "local '%q' has type '%q' but source is '%q'" -#~ msgstr "Lokales '%q' hat den Typ '%q', aber die Quelle ist '%q'" - -#~ msgid "local '%q' used before type known" -#~ msgstr "Lokales '%q' verwendet bevor Typ bekannt" - -#~ msgid "local variable referenced before assignment" -#~ msgstr "" -#~ "Es wurde versucht auf eine Variable zuzugreifen, die es (noch) nicht " -#~ "gibt. Variablen immer zuerst Zuweisen!" - -#~ msgid "long int not supported in this build" -#~ msgstr "long int wird in diesem Build nicht unterstützt" - -#~ msgid "map buffer too small" -#~ msgstr "map buffer zu klein" - -#~ msgid "maximum recursion depth exceeded" -#~ msgstr "maximale Rekursionstiefe überschritten" - -#~ msgid "memory allocation failed, allocating %u bytes" -#~ msgstr "Speicherzuordnung fehlgeschlagen, Zuweisung von %u Bytes" - #~ msgid "memory allocation failed, allocating %u bytes for native code" #~ msgstr "" #~ "Speicherallozierung fehlgeschlagen, alloziere %u Bytes für nativen Code" -#~ msgid "memory allocation failed, heap is locked" -#~ msgstr "Speicherzuweisung fehlgeschlagen, der Heap ist gesperrt" - -#~ msgid "module not found" -#~ msgstr "Modul nicht gefunden" - -#~ msgid "multiple *x in assignment" -#~ msgstr "mehrere *x in Zuordnung" - -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "sck/mosi/miso müssen alle spezifiziert sein" - -#~ msgid "must use keyword argument for key function" -#~ msgstr "muss Schlüsselwortargument für key function verwenden" - -#~ msgid "name '%q' is not defined" -#~ msgstr "" -#~ "Name '%q' ist nirgends definiert worden (Schreibweise kontrollieren)" - -#~ msgid "name not defined" -#~ msgstr "" -#~ "Dieser Name ist nirgends definiert worden (Schreibweise kontrollieren)" - -#~ msgid "name reused for argument" -#~ msgstr "Name für Argumente wiederverwendet" - -#~ msgid "no module named '%q'" -#~ msgstr "Kein Modul mit dem Namen '%q'" - -#~ msgid "non-default argument follows default argument" -#~ msgstr "ein non-default argument folgt auf ein default argument" - -#~ msgid "non-hex digit found" -#~ msgstr "eine nicht-hex zahl wurde gefunden" - #~ msgid "not a valid ADC Channel: %d" #~ msgstr "Kein gültiger ADC Kanal: %d" -#~ msgid "object '%s' is not a tuple or list" -#~ msgstr "Objekt '%s' ist weder tupel noch list" - -#~ msgid "object does not support item assignment" -#~ msgstr "Objekt unterstützt keine item assignment" - -#~ msgid "object does not support item deletion" -#~ msgstr "Objekt unterstützt das Löschen von Elementen nicht" - -#~ msgid "object has no len" -#~ msgstr "Objekt hat keine len" - -#~ msgid "object is not subscriptable" -#~ msgstr "Objekt hat keine '__getitem__'-Methode (not subscriptable)" - -#~ msgid "object not an iterator" -#~ msgstr "Objekt ist kein Iterator" - -#~ msgid "object not in sequence" -#~ msgstr "Objekt ist nicht in sequence" - -#~ msgid "object not iterable" -#~ msgstr "Objekt nicht iterierbar" - -#~ msgid "object of type '%s' has no len()" -#~ msgstr "Objekt vom Typ '%s' hat keine len()" - -#~ msgid "object with buffer protocol required" -#~ msgstr "Objekt mit Pufferprotokoll (buffer protocol) erforderlich" - -#~ msgid "odd-length string" -#~ msgstr "String mit ungerader Länge" - -#~ msgid "offset out of bounds" -#~ msgstr "offset außerhalb der Grenzen" - -#~ msgid "ord expects a character" -#~ msgstr "ord erwartet ein Zeichen" - -#~ msgid "ord() expected a character, but string of length %d found" -#~ msgstr "" -#~ "ord() erwartet ein Zeichen aber es wurde eine Zeichenfolge mit Länge %d " -#~ "gefunden" - -#~ msgid "parameter annotation must be an identifier" -#~ msgstr "parameter annotation muss ein identifier sein" - -#~ msgid "parameters must be registers in sequence a2 to a5" -#~ msgstr "Die Parameter müssen Register der Reihenfolge a2 bis a5 sein" - #~ msgid "pin does not have IRQ capabilities" #~ msgstr "Pin hat keine IRQ Fähigkeiten" -#~ msgid "pop from an empty PulseIn" -#~ msgstr "pop von einem leeren PulseIn" - -#~ msgid "pop from an empty set" -#~ msgstr "pop von einer leeren Menge (set)" - -#~ msgid "pop from empty list" -#~ msgstr "pop von einer leeren Liste" - -#~ msgid "popitem(): dictionary is empty" -#~ msgstr "popitem(): dictionary ist leer" - -#~ msgid "pow() 3rd argument cannot be 0" -#~ msgstr "pow() drittes Argument darf nicht 0 sein" - -#~ msgid "queue overflow" -#~ msgstr "Warteschlangenüberlauf" - -#~ msgid "rawbuf is not the same size as buf" -#~ msgstr "rawbuf hat nicht die gleiche Größe wie buf" - -#~ msgid "readonly attribute" -#~ msgstr "Readonly-Attribut" - -#~ msgid "relative import" -#~ msgstr "relativer Import" - -#~ msgid "requested length %d but object has length %d" -#~ msgstr "die ersuchte Länge ist %d, aber das Objekt hat eine Länge von %d" - -#~ msgid "return annotation must be an identifier" -#~ msgstr "return annotation muss ein identifier sein" - -#~ msgid "" -#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " -#~ "or 'B'" -#~ msgstr "" -#~ "sample_source buffer muss ein Bytearray oder ein Array vom Typ 'h', 'H', " -#~ "'b' oder 'B' sein" - -#~ msgid "sampling rate out of range" -#~ msgstr "Abtastrate außerhalb der Reichweite" - #~ msgid "scan failed" #~ msgstr "Scan fehlgeschlagen" -#~ msgid "schedule stack full" -#~ msgstr "Der schedule stack ist voll" - -#~ msgid "script compilation not supported" -#~ msgstr "kompilieren von Skripten ist nicht unterstützt" - -#~ msgid "small int overflow" -#~ msgstr "small int Überlauf" - -#~ msgid "stream operation not supported" -#~ msgstr "stream operation ist nicht unterstützt" - -#~ msgid "string not supported; use bytes or bytearray" -#~ msgstr "" -#~ "Zeichenfolgen werden nicht unterstützt; Verwenden Sie bytes oder bytearray" - -#~ msgid "struct: cannot index" -#~ msgstr "struct: kann nicht indexieren" - -#~ msgid "struct: index out of range" -#~ msgstr "struct: index außerhalb gültigen Bereichs" - -#~ msgid "struct: no fields" -#~ msgstr "struct: keine Felder" - -#~ msgid "substring not found" -#~ msgstr "substring nicht gefunden" - -#~ msgid "super() can't find self" -#~ msgstr "super() kann self nicht finden" - -#~ msgid "syntax error in JSON" -#~ msgstr "Syntaxfehler in JSON" - -#~ msgid "syntax error in uctypes descriptor" -#~ msgstr "Syntaxfehler in uctypes Deskriptor" - -#~ msgid "tuple/list has wrong length" -#~ msgstr "tupel/list hat falsche Länge" - -#~ msgid "tx and rx cannot both be None" -#~ msgstr "tx und rx können nicht beide None sein" - -#~ msgid "unary op %q not implemented" -#~ msgstr "Der unäre Operator %q ist nicht implementiert" - -#~ msgid "unexpected indent" -#~ msgstr "" -#~ "unerwarteter Einzug (Einrückung) Bitte Leerzeichen am Zeilenanfang " -#~ "kontrollieren!" - -#~ msgid "unexpected keyword argument" -#~ msgstr "unerwartetes Keyword-Argument" - -#~ msgid "unexpected keyword argument '%q'" -#~ msgstr "unerwartetes Keyword-Argument '%q'" - -#~ msgid "unindent does not match any outer indentation level" -#~ msgstr "" -#~ "Einrückung entspricht keiner äußeren Einrückungsebene. Bitte Leerzeichen " -#~ "am Zeilenanfang kontrollieren!" - #~ msgid "unknown status param" #~ msgstr "Unbekannter Statusparameter" -#~ msgid "unknown type" -#~ msgstr "unbekannter Typ" - -#~ msgid "unknown type '%q'" -#~ msgstr "unbekannter Typ '%q'" - -#~ msgid "unreadable attribute" -#~ msgstr "nicht lesbares Attribut" - -#~ msgid "unsupported Thumb instruction '%s' with %d arguments" -#~ msgstr "nicht unterstützter Thumb-Befehl '%s' mit %d Argumenten" - -#~ msgid "unsupported type for %q: '%s'" -#~ msgstr "nicht unterstützter Type für %q: '%s'" - -#~ msgid "unsupported type for operator" -#~ msgstr "nicht unterstützter Typ für Operator" - -#~ msgid "unsupported types for %q: '%s', '%s'" -#~ msgstr "nicht unterstützte Typen für %q: '%s', '%s'" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "wifi_set_ip_info() fehlgeschlagen" - -#~ msgid "write_args must be a list, tuple, or None" -#~ msgstr "write_args muss eine Liste, ein Tupel oder None sein" - -#~ msgid "wrong number of arguments" -#~ msgstr "falsche Anzahl an Argumenten" - -#~ msgid "wrong number of values to unpack" -#~ msgstr "falsche Anzahl zu entpackender Werte" diff --git a/locale/en_US.po b/locale/en_US.po index 50cb385cc..b16d22b3b 100644 --- a/locale/en_US.po +++ b/locale/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,16 +23,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr "" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr "" + #: main.c msgid " output:\n" msgstr "" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" +#: py/obj.c +msgid "%q index out of range" +msgstr "" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "" @@ -40,10 +61,162 @@ msgstr "" msgid "%q should be an int" msgstr "" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'await' outside function" +msgstr "" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'return' outside function" +msgstr "" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "" + +#: py/obj.c +msgid ", in %q\n" +msgstr "" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -54,14 +227,54 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "All UART peripherals are in use" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -84,6 +297,18 @@ msgid "" "disable.\n" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -97,10 +322,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, c-format +msgid "Bus pin %d is already in use" +msgstr "" + #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "" @@ -109,6 +340,11 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -125,26 +361,55 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "" + +#: ports/nrf/common-hal/microcontroller/Processor.c +msgid "Cannot get temperature" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -153,6 +418,10 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -165,6 +434,10 @@ msgstr "" msgid "Clock stretch too long" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -173,6 +446,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -185,10 +467,32 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +msgid "Data 0 pin must be byte aligned" +msgstr "" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "Data too large for advertisement packet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Data too large for the advertisement packet" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -197,8 +501,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "" -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -207,8 +520,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c msgid "Expected a UUID" msgstr "" @@ -217,179 +530,513 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c -msgid "Function requires lock" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to acquire mutex" msgstr "" -#: shared-module/displayio/Group.c -msgid "Group full" +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to acquire mutex, err 0x%04x" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "Incorrect buffer size" +#: ports/nrf/common-hal/bleio/Service.c +#, c-format +msgid "Failed to add characteristic, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -msgid "Invalid BMP file" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to add service" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid PWM frequency" +#: ports/nrf/common-hal/bleio/Peripheral.c +#, c-format +msgid "Failed to add service, err 0x%04x" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Invalid direction." +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid file" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid format chunk size" +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to change softdevice state" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid number of bits" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to connect:" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid phase" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to continue scanning" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid pin" +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to continue scanning, err 0x%04x" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid polarity" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to create mutex" msgstr "" -#: shared-bindings/microcontroller/__init__.c -msgid "Invalid run mode." +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to discover services" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid wave file" +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get local address" msgstr "" -#: shared-module/displayio/Group.c -msgid "Layer must be a Group or TileGrid subclass." +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get softdevice state" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"Looks like our core CircuitPython code crashed hard. Whoops!\n" -"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" -" with the contents of your CIRCUITPY drive and this message:\n" +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" msgstr "" -#: shared-module/bitbangio/SPI.c -msgid "MISO pin init failed." +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read CCCD value, err 0x%04x" msgstr "" -#: shared-module/bitbangio/SPI.c -msgid "MOSI pin init failed." +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" msgstr "" -#: shared-module/displayio/Shape.c +#: ports/nrf/common-hal/bleio/Characteristic.c #, c-format -msgid "Maximum x value when mirrored is %d" +msgid "Failed to read gatts value, err 0x%04x" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "MicroPython NLR jump failed. Likely memory corruption.\n" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "MicroPython fatal error.\n" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to release mutex" msgstr "" -#: shared-bindings/displayio/Display.c -msgid "Must be a Group subclass." +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to release mutex, err 0x%04x" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default I2C bus" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start advertising" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default SPI bus" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to start advertising, err 0x%04x" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default UART bus" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start scanning" msgstr "" -#: shared-bindings/os/__init__.c -msgid "No hardware random available" +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to start scanning, err 0x%04x" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to stop advertising" msgstr "" -#: shared-bindings/util.c -msgid "" -"Object has been deinitialized and can no longer be used. Create a new object." +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to stop advertising, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c +#: ports/nrf/common-hal/bleio/Characteristic.c #, c-format -msgid "" -"Only Windows format, uncompressed BMP supported: given header size is %d" +msgid "Failed to write attribute value, err 0x%04x" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "Only bit maps of 8 bit color or less are supported" +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to write gatts value, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -#, c-format -msgid "" -"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " -"given" +#: py/moduerrno.c +msgid "File exists" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM frequency not writable when variable_frequency is False on construction." +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" msgstr "" -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +msgid "Function requires lock" +msgstr "" + +#: shared-module/displayio/Group.c +msgid "Group full" +msgstr "" + +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" + +#: shared-bindings/_pew/PewPew.c +msgid "Incorrect buffer size" +msgstr "" + +#: py/moduerrno.c +msgid "Input/output error" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +msgid "Invalid BMP file" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +msgid "Invalid PWM frequency" +msgstr "" + +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Invalid direction." +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid file" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid format chunk size" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid number of bits" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid phase" +msgstr "" + +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid pin" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid polarity" +msgstr "" + +#: shared-bindings/microcontroller/__init__.c +msgid "Invalid run mode." +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid wave file" +msgstr "" + +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "" + +#: shared-module/displayio/Group.c +msgid "Layer must be a Group or TileGrid subclass." +msgstr "" + +#: py/objslice.c +msgid "Length must be an int" +msgstr "" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"Looks like our core CircuitPython code crashed hard. Whoops!\n" +"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" +" with the contents of your CIRCUITPY drive and this message:\n" +msgstr "" + +#: shared-module/bitbangio/SPI.c +msgid "MISO pin init failed." +msgstr "" + +#: shared-module/bitbangio/SPI.c +msgid "MOSI pin init failed." +msgstr "" + +#: shared-module/displayio/Shape.c +#, c-format +msgid "Maximum x value when mirrored is %d" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "MicroPython NLR jump failed. Likely memory corruption.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "MicroPython fatal error.\n" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" + +#: shared-bindings/displayio/Display.c +msgid "Must be a Group subclass." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default I2C bus" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default SPI bus" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default UART bus" +msgstr "" + +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "" + +#: shared-bindings/os/__init__.c +msgid "No hardware random available" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "" + +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "Not connected" +msgstr "" + +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "" + +#: shared-bindings/util.c +msgid "" +"Object has been deinitialized and can no longer be used. Create a new object." +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +#, c-format +msgid "" +"Only Windows format, uncompressed BMP supported: given header size is %d" +msgstr "" + +#: shared-module/displayio/Bitmap.c +msgid "Only bit maps of 8 bit color or less are supported" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +#, c-format +msgid "" +"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " +"given" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Only slices with step=1 (aka None) are supported" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "" + +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" +msgstr "" + +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM frequency not writable when variable_frequency is False on construction." +msgstr "" + +#: py/moduerrno.c +msgid "Permission denied" +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +msgid "Plus any modules on the filesystem\n" +msgstr "" + +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." msgstr "" #: shared-bindings/rtc/RTC.c msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Range out of bounds" msgstr "" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "" + #: shared-module/displayio/Bitmap.c msgid "Read-only object" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -402,15 +1049,42 @@ msgstr "" msgid "Running in safe mode! Not running saved code.\n" msgstr "" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -428,265 +1102,1235 @@ msgid "" "your CIRCUITPY drive:\n" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"The microcontroller's power dipped. Please make sure your power supply " -"provides\n" -"enough power for the whole circuit and press reset (after ejecting " -"CIRCUITPY).\n" +#: supervisor/shared/safe_mode.c +msgid "" +"The microcontroller's power dipped. Please make sure your power supply " +"provides\n" +"enough power for the whole circuit and press reset (after ejecting " +"CIRCUITPY).\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"The reset button was pressed while booting CircuitPython. Press again to " +"exit safe mode.\n" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's bits_per_sample does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's channel count does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's sample rate does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's signedness does not match the mixer's" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile height must exactly divide bitmap height" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile indices must be 0 - 255" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile width must exactly divide bitmap width" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "To exit, please reset the board without " +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "" + +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +msgid "Too many display busses" +msgstr "" + +#: shared-bindings/displayio/Display.c +msgid "Too many displays" +msgstr "" + +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "Tuple or struct_time argument required" +msgstr "" + +#: shared-module/usb_hid/Device.c +msgid "USB Busy" +msgstr "" + +#: shared-module/usb_hid/Device.c +msgid "USB Error" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID integer value not in range 0 to 0xffff" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID value is not str, int or byte buffer" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +msgid "Unable to read color palette data" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "Unable to write to nvm." +msgstr "" + +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "" + +#: shared-module/displayio/Display.c +msgid "Unsupported display bus type" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Unsupported format" +msgstr "" + +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Unsupported pull value." +msgstr "" + +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "Voice index too high" +msgstr "" + +#: main.c +msgid "WARNING: Your code filename has two extensions\n" +msgstr "" + +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " +msgstr "" + +#: py/objtype.c +msgid "__init__() should return None" +msgstr "" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "" + +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "" + +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" + +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "" + +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "" + +#: py/objstr.c +msgid "bad format string" +msgstr "" + +#: py/binary.c +msgid "bad typecode" +msgstr "" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "" + +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "" + +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "" + +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "" + +#: shared-module/struct/__init__.c +msgid "buffer size must match format" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "" + +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "" + +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "" + +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" + +#: py/vm.c +msgid "byte code not implemented" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "" + +#: py/objstr.c +msgid "bytes value out of range" +msgstr "" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "" + +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "" + +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "" + +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "" + +#: py/compile.c +msgid "can't assign to expression" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "" + +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "" + +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "" + +#: py/objint.c +msgid "can't convert inf to int" +msgstr "" + +#: py/obj.c +msgid "can't convert to complex" +msgstr "" + +#: py/obj.c +msgid "can't convert to float" +msgstr "" + +#: py/obj.c +msgid "can't convert to int" +msgstr "" + +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "" + +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "" + +#: py/compile.c +msgid "can't delete expression" +msgstr "" + +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "" + +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "" + +#: py/compile.c +msgid "can't have multiple **x" +msgstr "" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "" + +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "" + +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "" + +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" + +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "" + +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" + +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "" + +#: py/objtype.c +msgid "cannot create instance" +msgstr "" + +#: py/runtime.c +msgid "cannot import name %q" +msgstr "" + +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "" + +#: py/emitnative.c +msgid "casting" +msgstr "" + +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" + +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "" + +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "" + +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "" + +#: extmod/moduzlib.c +msgid "compression header" +msgstr "" + +#: py/parse.c +msgid "constant must be an integer" +msgstr "" + +#: py/emitnative.c +msgid "conversion to object" +msgstr "" + +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "" + +#: py/compile.c +msgid "default 'except' must be last" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "" + +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "" + +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "" + +#: py/objdeque.c +msgid "empty" +msgstr "" + +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "" + +#: py/objstr.c +msgid "empty separator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "" + +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" + +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "" + +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "" + +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "" + +#: py/obj.c +msgid "expected tuple/list" +msgstr "" + +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "" + +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "" + +#: py/compile.c +msgid "expecting just a value for set" +msgstr "" + +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "" + +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "" + +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "" + +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "" + +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "" + +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "" + +#: py/objint.c +msgid "float too big" +msgstr "" + +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "" + +#: py/objstr.c +msgid "format requires a dict" +msgstr "" + +#: py/objdeque.c +msgid "full" +msgstr "" + +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "" + +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "" + +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "" + +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "" + +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "" + +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "" + +#: py/objgenerator.c +msgid "generator already executing" +msgstr "" + +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "" + +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as global" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "" + +#: py/objstr.c +msgid "incomplete format" +msgstr "" + +#: py/objstr.c +msgid "incomplete format key" +msgstr "" + +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "" + +#: py/obj.c +msgid "indices must be integers" +msgstr "" + +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "" + +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "" + +#: py/objstr.c +msgid "integer required" +msgstr "" + +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" + +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "" + +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "" + +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "" + +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "" + +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "" + +#: py/objstr.c +msgid "invalid format specifier" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "" + +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "" + +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "" + +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" + +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" + +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" + +#: py/bc.c +msgid "keywords must be strings" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "" + +#: py/compile.c +msgid "label redefined" +msgstr "" + +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "" + +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "" + +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "" + +#: py/objint.c +msgid "long int not supported in this build" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "" + +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" + +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "" + +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "" + +#: py/builtinimport.c +msgid "module not found" +msgstr "" + +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "" + +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" + +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "" + +#: py/emitnative.c +msgid "must raise an object" +msgstr "" + +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "" + +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "" + +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "" + +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" +msgstr "" + +#: py/runtime.c +msgid "name not defined" +msgstr "" + +#: py/compile.c +msgid "name reused for argument" +msgstr "" + +#: py/emitnative.c +msgid "native yield" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"The reset button was pressed while booting CircuitPython. Press again to " -"exit safe mode.\n" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's bits_per_sample does not match the mixer's" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's channel count does not match the mixer's" +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's sample rate does not match the mixer's" +#: py/vm.c +msgid "no active exception to reraise" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's signedness does not match the mixer's" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile height must exactly divide bitmap height" +#: py/compile.c +msgid "no binding for nonlocal found" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile indices must be 0 - 255" +#: py/builtinimport.c +msgid "no module named '%q'" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile width must exactly divide bitmap width" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "To exit, please reset the board without " +#: py/compile.c +msgid "non-default argument follows default argument" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c -msgid "Too many display busses" +#: extmod/modubinascii.c +msgid "non-hex digit found" msgstr "" -#: shared-bindings/displayio/Display.c -msgid "Too many displays" +#: py/compile.c +msgid "non-keyword arg after */**" msgstr "" -#: shared-bindings/time/__init__.c -msgid "Tuple or struct_time argument required" +#: py/compile.c +msgid "non-keyword arg after keyword arg" msgstr "" -#: shared-module/usb_hid/Device.c -msgid "USB Busy" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: shared-module/usb_hid/Device.c -msgid "USB Error" +#: py/objstr.c +msgid "not all arguments converted during string formatting" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID integer value not in range 0 to 0xffff" +#: py/objstr.c +msgid "not enough arguments for format string" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID value is not str, int or byte buffer" +#: py/obj.c +msgid "object does not support item assignment" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -msgid "Unable to read color palette data" +#: py/obj.c +msgid "object does not support item deletion" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "Unable to write to nvm." +#: py/obj.c +msgid "object has no len" msgstr "" -#: shared-module/displayio/Display.c -msgid "Unsupported display bus type" +#: py/obj.c +msgid "object is not subscriptable" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Unsupported format" +#: py/runtime.c +msgid "object not an iterator" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Unsupported pull value." +#: py/objtype.c py/runtime.c +msgid "object not callable" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "Voice index too high" +#: py/sequence.c +msgid "object not in sequence" msgstr "" -#: main.c -msgid "WARNING: Your code filename has two extensions\n" +#: py/runtime.c +msgid "object not iterable" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"You are running in safe mode which means something unanticipated happened.\n" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " +#: py/obj.c +msgid "object with buffer protocol required" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" +#: extmod/modubinascii.c +msgid "odd-length string" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" +#: py/objstr.c py/objstrunicode.c +msgid "offset out of bounds" msgstr "" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c -msgid "array/bytes required on right side" +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" +#: py/modbuiltins.c +msgid "ord expects a character" msgstr "" -#: shared-module/struct/__init__.c -msgid "buffer size must match format" +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -msgid "buffer too small" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: py/compile.c +msgid "parameter annotation must be an identifier" msgstr "" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" msgstr "" -#: shared-bindings/math/__init__.c -msgid "division by zero" +#: py/objset.c +msgid "pop from an empty set" msgstr "" -#: shared-bindings/random/__init__.c -msgid "empty sequence" +#: py/objlist.c +msgid "pop from empty list" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" +#: py/objdict.c +msgid "popitem(): dictionary is empty" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" msgstr "" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" msgstr "" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" +#: extmod/modutimeq.c +msgid "queue overflow" msgstr "" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" msgstr "" -#: shared-bindings/random/__init__.c -msgid "invalid step" +#: shared-bindings/_pixelbuf/__init__.c +msgid "readonly attribute" msgstr "" -#: shared-bindings/math/__init__.c -msgid "math domain error" +#: py/builtinimport.c +msgid "relative import" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" msgstr "" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" +#: py/compile.c +msgid "return annotation must be an identifier" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" +#: py/objstr.c +msgid "rsplit(None,n)" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: py/modmicropython.c +msgid "schedule stack full" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" msgstr "" #: shared-bindings/bleio/Peripheral.c msgid "services includes an object that is not a Service" msgstr "" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "" + +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "" + #: shared-bindings/time/__init__.c msgid "sleep length must be non-negative" msgstr "" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "" + +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "" + #: main.c msgid "soft reboot\n" msgstr "" +#: py/objstr.c +msgid "start/end indices" +msgstr "" + #: shared-bindings/displayio/Shape.c msgid "start_x should be an int" msgstr "" @@ -703,6 +2347,51 @@ msgstr "" msgid "stop not reachable from start" msgstr "" +#: py/stream.c +msgid "stream operation not supported" +msgstr "" + +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "" + +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "" + +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "" + +#: py/objstr.c +msgid "substring not found" +msgstr "" + +#: py/compile.c +msgid "super() can't find self" +msgstr "" + +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "" + +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "" + #: shared-bindings/touchio/TouchIn.c msgid "threshold must be in the range 0-65536" msgstr "" @@ -739,14 +2428,154 @@ msgstr "" msgid "too many arguments provided with the given format" msgstr "" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "" + +#: py/objstr.c +msgid "tuple index out of range" +msgstr "" + +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "" + +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "" + +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "" + +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "" + +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "" + +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "" + +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "" + +#: py/parse.c +msgid "unexpected indent" +msgstr "" + +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "" + +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "" + +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" + +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "" + +#: py/compile.c +msgid "unknown type" +msgstr "" + +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "" + +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "" + +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "" + #: shared-bindings/displayio/TileGrid.c msgid "unsupported bitmap type" msgstr "" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "" + +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "" + +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "" + +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "" + #: shared-bindings/displayio/Bitmap.c msgid "value_count must be > 0" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" + +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "" + +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "" + #: shared-module/displayio/Shape.c msgid "x value out of bounds" msgstr "" @@ -758,3 +2587,7 @@ msgstr "" #: shared-module/displayio/Shape.c msgid "y value out of bounds" msgstr "" + +#: py/objrange.c +msgid "zero step" +msgstr "" diff --git a/locale/en_x_pirate.po b/locale/en_x_pirate.po index bf6c925e6..5c1d74722 100644 --- a/locale/en_x_pirate.po +++ b/locale/en_x_pirate.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:50+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: @sommersoft, @MrCertainly\n" @@ -25,16 +25,37 @@ msgstr "" "\n" "Captin's orders are complete. Holdin' fast fer reload.\n" +#: py/obj.c +msgid " File \"%q\"" +msgstr "" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr "" + #: main.c msgid " output:\n" msgstr "" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "" +#: py/obj.c +msgid "%q index out of range" +msgstr "" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c msgid "%q must be >= 1" msgstr "" @@ -42,10 +63,162 @@ msgstr "" msgid "%q should be an int" msgstr "" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'await' outside function" +msgstr "" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'return' outside function" +msgstr "" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "" + +#: py/obj.c +msgid ", in %q\n" +msgstr "" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Avast! A hardware interrupt channel be used already" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -56,14 +229,54 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "All UART peripherals are in use" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Belay that! thar be another active send" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -88,6 +301,18 @@ msgstr "" "Auto-reload be on. Put yer files on USB to weigh anchor, er' bring'er about " "t' the REPL t' scuttle.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "" @@ -101,10 +326,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, c-format +msgid "Bus pin %d is already in use" +msgstr "Belay that! Bus pin %d already be in use" + #: shared-bindings/bleio/UUID.c msgid "Byte buffer must be 16 bytes." msgstr "" @@ -113,6 +344,11 @@ msgstr "" msgid "Bytes must be between 0 and 255." msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -129,26 +365,55 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "" + +#: ports/nrf/common-hal/microcontroller/Processor.c +msgid "Cannot get temperature" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "" +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "" +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "" @@ -157,6 +422,10 @@ msgstr "" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -169,6 +438,10 @@ msgstr "" msgid "Clock stretch too long" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -177,6 +450,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "" @@ -189,10 +471,32 @@ msgstr "" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +msgid "Data 0 pin must be byte aligned" +msgstr "" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "Data too large for advertisement packet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Data too large for the advertisement packet" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -201,8 +505,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "" -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "Avast! EXTINT channel already in use" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -211,8 +524,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c msgid "Expected a UUID" msgstr "" @@ -221,179 +534,513 @@ msgstr "" msgid "Expected tuple of length %d, got %d" msgstr "" -#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c -msgid "Function requires lock" -msgstr "" - -#: shared-module/displayio/Group.c -msgid "Group full" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to acquire mutex" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "Incorrect buffer size" +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to acquire mutex, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -msgid "Invalid BMP file" +#: ports/nrf/common-hal/bleio/Service.c +#, c-format +msgid "Failed to add characteristic, err 0x%04x" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid PWM frequency" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to add service" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Invalid direction." +#: ports/nrf/common-hal/bleio/Peripheral.c +#, c-format +msgid "Failed to add service, err 0x%04x" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid file" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid format chunk size" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid number of bits" +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to change softdevice state" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid phase" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to connect:" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "Invalid pin" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to continue scanning" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "Invalid polarity" +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to continue scanning, err 0x%04x" msgstr "" -#: shared-bindings/microcontroller/__init__.c -msgid "Invalid run mode." +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to create mutex" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Invalid wave file" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to discover services" msgstr "" -#: shared-module/displayio/Group.c -msgid "Layer must be a Group or TileGrid subclass." +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get local address" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"Looks like our core CircuitPython code crashed hard. Whoops!\n" -"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" -" with the contents of your CIRCUITPY drive and this message:\n" +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get softdevice state" msgstr "" -#: shared-module/bitbangio/SPI.c -msgid "MISO pin init failed." +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" msgstr "" -#: shared-module/bitbangio/SPI.c -msgid "MOSI pin init failed." +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read CCCD value, err 0x%04x" msgstr "" -#: shared-module/displayio/Shape.c +#: ports/nrf/common-hal/bleio/Characteristic.c #, c-format -msgid "Maximum x value when mirrored is %d" +msgid "Failed to read attribute value, err 0x%04x" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "MicroPython NLR jump failed. Likely memory corruption.\n" +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read gatts value, err 0x%04x" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "MicroPython fatal error.\n" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" msgstr "" -#: shared-bindings/displayio/Display.c -msgid "Must be a Group subclass." +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to release mutex" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default I2C bus" +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, c-format +msgid "Failed to release mutex, err 0x%04x" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default SPI bus" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start advertising" msgstr "" -#: supervisor/shared/board_busses.c -msgid "No default UART bus" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, c-format +msgid "Failed to start advertising, err 0x%04x" msgstr "" -#: shared-bindings/os/__init__.c -msgid "No hardware random available" +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to start scanning" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -msgid "Not connected" +#: ports/nrf/common-hal/bleio/Scanner.c +#, c-format +msgid "Failed to start scanning, err 0x%04x" msgstr "" -#: shared-bindings/util.c -msgid "" -"Object has been deinitialized and can no longer be used. Create a new object." +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to stop advertising" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c #, c-format -msgid "" -"Only Windows format, uncompressed BMP supported: given header size is %d" +msgid "Failed to stop advertising, err 0x%04x" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "Only bit maps of 8 bit color or less are supported" +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to write attribute value, err 0x%04x" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c +#: ports/nrf/common-hal/bleio/Characteristic.c #, c-format -msgid "" -"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " -"given" +msgid "Failed to write gatts value, err 0x%04x" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" +#: py/moduerrno.c +msgid "File exists" msgstr "" -#: shared-bindings/pulseio/PWMOut.c -msgid "" -"PWM frequency not writable when variable_frequency is False on construction." +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" msgstr "" -#: main.c -msgid "Press any key to enter the REPL. Use CTRL-D to reload." +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Pull not used when direction is output." +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" msgstr "" -#: shared-bindings/rtc/RTC.c -msgid "RTC calibration is not supported on this board" +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" msgstr "" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c -msgid "RTC is not supported on this board" +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +msgid "Function requires lock" +msgstr "" + +#: shared-module/displayio/Group.c +msgid "Group full" +msgstr "" + +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" + +#: shared-bindings/_pew/PewPew.c +msgid "Incorrect buffer size" +msgstr "" + +#: py/moduerrno.c +msgid "Input/output error" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +msgid "Invalid BMP file" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c +msgid "Invalid PWM frequency" +msgstr "" + +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Avast! Clock pin be invalid" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Invalid direction." +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid file" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid format chunk size" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid number of bits" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid phase" +msgstr "" + +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: shared-bindings/pulseio/PWMOut.c +msgid "Invalid pin" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Belay that! Invalid pin for port-side channel" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Belay that! Invalid pin for starboard-side channel" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "Invalid polarity" +msgstr "" + +#: shared-bindings/microcontroller/__init__.c +msgid "Invalid run mode." +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Invalid wave file" +msgstr "" + +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "" + +#: shared-module/displayio/Group.c +msgid "Layer must be a Group or TileGrid subclass." +msgstr "" + +#: py/objslice.c +msgid "Length must be an int" +msgstr "" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"Looks like our core CircuitPython code crashed hard. Whoops!\n" +"Please file an issue at https://github.com/adafruit/circuitpython/issues\n" +" with the contents of your CIRCUITPY drive and this message:\n" +msgstr "" + +#: shared-module/bitbangio/SPI.c +msgid "MISO pin init failed." +msgstr "" + +#: shared-module/bitbangio/SPI.c +msgid "MOSI pin init failed." +msgstr "" + +#: shared-module/displayio/Shape.c +#, c-format +msgid "Maximum x value when mirrored is %d" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "MicroPython NLR jump failed. Likely memory corruption.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "MicroPython fatal error.\n" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" + +#: shared-bindings/displayio/Display.c +msgid "Must be a Group subclass." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Shiver me timbers! There be no DAC on this chip" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default I2C bus" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default SPI bus" +msgstr "" + +#: supervisor/shared/board_busses.c +msgid "No default UART bus" +msgstr "" + +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "" + +#: shared-bindings/os/__init__.c +msgid "No hardware random available" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "" + +#: shared-bindings/bleio/CharacteristicBuffer.c +msgid "Not connected" +msgstr "" + +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "" + +#: shared-bindings/util.c +msgid "" +"Object has been deinitialized and can no longer be used. Create a new object." +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +#, c-format +msgid "" +"Only Windows format, uncompressed BMP supported: given header size is %d" +msgstr "" + +#: shared-module/displayio/Bitmap.c +msgid "Only bit maps of 8 bit color or less are supported" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +#, c-format +msgid "" +"Only monochrome, indexed 8bpp, and 16bpp or greater BMPs supported: %d bpp " +"given" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Only slices with step=1 (aka None) are supported" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "" + +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" +msgstr "" + +#: shared-bindings/pulseio/PWMOut.c +msgid "" +"PWM frequency not writable when variable_frequency is False on construction." +msgstr "" + +#: py/moduerrno.c +msgid "Permission denied" +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "Belay that! Th' Pin be not ADC capable" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +msgid "Plus any modules on the filesystem\n" +msgstr "" + +#: main.c +msgid "Press any key to enter the REPL. Use CTRL-D to reload." +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Pull not used when direction is output." +msgstr "" + +#: shared-bindings/rtc/RTC.c +msgid "RTC calibration is not supported on this board" +msgstr "" + +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +msgid "RTC is not supported on this board" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Range out of bounds" msgstr "" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "" + #: shared-module/displayio/Bitmap.c msgid "Read-only object" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -406,15 +1053,42 @@ msgstr "Runnin' in safe mode! Auto-reload be off.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Runnin' in safe mode! Nay runnin' saved code.\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -450,247 +1124,1217 @@ msgstr "" msgid "The sample's bits_per_sample does not match the mixer's" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's channel count does not match the mixer's" +#: shared-module/audioio/Mixer.c +msgid "The sample's channel count does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's sample rate does not match the mixer's" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "The sample's signedness does not match the mixer's" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile height must exactly divide bitmap height" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile indices must be 0 - 255" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "Tile width must exactly divide bitmap width" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "To exit, please reset the board without " +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "" + +#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +msgid "Too many display busses" +msgstr "" + +#: shared-bindings/displayio/Display.c +msgid "Too many displays" +msgstr "" + +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "Tuple or struct_time argument required" +msgstr "" + +#: shared-module/usb_hid/Device.c +msgid "USB Busy" +msgstr "" + +#: shared-module/usb_hid/Device.c +msgid "USB Error" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID integer value not in range 0 to 0xffff" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "UUID value is not str, int or byte buffer" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Arr! No free GCLK be in sight" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "" + +#: shared-module/displayio/OnDiskBitmap.c +msgid "Unable to read color palette data" +msgstr "" + +#: shared-bindings/nvm/ByteArray.c +msgid "Unable to write to nvm." +msgstr "" + +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "" + +#: shared-module/displayio/Display.c +msgid "Unsupported display bus type" +msgstr "" + +#: shared-module/audioio/WaveFile.c +msgid "Unsupported format" +msgstr "" + +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "" + +#: shared-bindings/digitalio/DigitalInOut.c +msgid "Unsupported pull value." +msgstr "" + +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "" + +#: shared-module/audioio/Mixer.c +msgid "Voice index too high" +msgstr "" + +#: main.c +msgid "WARNING: Your code filename has two extensions\n" +msgstr "Blimey! Yer code filename has two extensions\n" + +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" +msgstr "" + +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " +msgstr "" + +#: py/objtype.c +msgid "__init__() should return None" +msgstr "" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "" + +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "" + +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" + +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "" + +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "" + +#: py/objstr.c +msgid "bad format string" +msgstr "" + +#: py/binary.c +msgid "bad typecode" +msgstr "" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "" + +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "" + +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "pieces must be of 8" + +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "" + +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "" + +#: shared-module/struct/__init__.c +msgid "buffer size must match format" +msgstr "" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "" + +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "" + +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "yer buffers must be of the same length" + +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" + +#: py/vm.c +msgid "byte code not implemented" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "" + +#: py/objstr.c +msgid "bytes value out of range" +msgstr "" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "" + +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "" + +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "" + +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "" + +#: py/compile.c +msgid "can't assign to expression" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "" + +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "" + +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "" + +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "" + +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "" + +#: py/objint.c +msgid "can't convert inf to int" +msgstr "" + +#: py/obj.c +msgid "can't convert to complex" +msgstr "" + +#: py/obj.c +msgid "can't convert to float" +msgstr "" + +#: py/obj.c +msgid "can't convert to int" +msgstr "" + +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "" + +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "" + +#: py/compile.c +msgid "can't delete expression" +msgstr "" + +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "" + +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "" + +#: py/compile.c +msgid "can't have multiple **x" +msgstr "" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "" + +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "" + +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "" + +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" + +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "" + +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "" + +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" + +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "" + +#: py/objtype.c +msgid "cannot create instance" +msgstr "" + +#: py/runtime.c +msgid "cannot import name %q" +msgstr "" + +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "" + +#: py/emitnative.c +msgid "casting" +msgstr "" + +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" + +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "" + +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "" + +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "" + +#: extmod/moduzlib.c +msgid "compression header" +msgstr "" + +#: py/parse.c +msgid "constant must be an integer" +msgstr "" + +#: py/emitnative.c +msgid "conversion to object" +msgstr "" + +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "" + +#: py/compile.c +msgid "default 'except' must be last" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "" + +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "" + +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "" + +#: py/objdeque.c +msgid "empty" +msgstr "" + +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "" + +#: py/objstr.c +msgid "empty separator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "" + +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" + +#: shared-bindings/displayio/Shape.c +msgid "end_x should be an int" +msgstr "" + +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "" + +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "" + +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "" + +#: py/obj.c +msgid "expected tuple/list" +msgstr "" + +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "" + +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "" + +#: py/compile.c +msgid "expecting just a value for set" +msgstr "" + +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "" + +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "" + +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "" + +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "" + +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "" + +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "" + +#: py/objint.c +msgid "float too big" +msgstr "" + +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "" + +#: py/objstr.c +msgid "format requires a dict" +msgstr "" + +#: py/objdeque.c +msgid "full" +msgstr "" + +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "" + +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "" + +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "" + +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "" + +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "" + +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "" + +#: py/objgenerator.c +msgid "generator already executing" +msgstr "" + +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "" + +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as global" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "" + +#: py/objstr.c +msgid "incomplete format" +msgstr "" + +#: py/objstr.c +msgid "incomplete format key" +msgstr "" + +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "" + +#: py/obj.c +msgid "indices must be integers" +msgstr "" + +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "" + +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "" + +#: py/objstr.c +msgid "integer required" +msgstr "" + +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" + +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "Belay that! I2C peripheral be invalid" + +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "Arr! SPI peripheral be invalid" + +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "" + +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "" + +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "" + +#: py/objstr.c +msgid "invalid format specifier" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "" + +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "" + +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "" + +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" + +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" + +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" + +#: py/bc.c +msgid "keywords must be strings" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "" + +#: py/compile.c +msgid "label redefined" +msgstr "" + +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "" + +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "" + +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "" + +#: py/objint.c +msgid "long int not supported in this build" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "" + +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" + +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "" + +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "" + +#: py/builtinimport.c +msgid "module not found" +msgstr "" + +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "" + +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" + +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "" + +#: py/emitnative.c +msgid "must raise an object" +msgstr "" + +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "" + +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "" + +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "" + +#: shared-bindings/bleio/Peripheral.c +msgid "name must be a string" +msgstr "" + +#: py/runtime.c +msgid "name not defined" +msgstr "" + +#: py/compile.c +msgid "name reused for argument" +msgstr "" + +#: py/emitnative.c +msgid "native yield" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "" + +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "" + +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's sample rate does not match the mixer's" +#: py/vm.c +msgid "no active exception to reraise" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "The sample's signedness does not match the mixer's" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile height must exactly divide bitmap height" +#: py/compile.c +msgid "no binding for nonlocal found" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile indices must be 0 - 255" +#: py/builtinimport.c +msgid "no module named '%q'" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "Tile width must exactly divide bitmap width" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "To exit, please reset the board without " +#: py/compile.c +msgid "non-default argument follows default argument" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c -msgid "Too many display busses" +#: extmod/modubinascii.c +msgid "non-hex digit found" msgstr "" -#: shared-bindings/displayio/Display.c -msgid "Too many displays" +#: py/compile.c +msgid "non-keyword arg after */**" msgstr "" -#: shared-bindings/time/__init__.c -msgid "Tuple or struct_time argument required" +#: py/compile.c +msgid "non-keyword arg after keyword arg" msgstr "" -#: shared-module/usb_hid/Device.c -msgid "USB Busy" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" msgstr "" -#: shared-module/usb_hid/Device.c -msgid "USB Error" +#: py/objstr.c +msgid "not all arguments converted during string formatting" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID integer value not in range 0 to 0xffff" +#: py/objstr.c +msgid "not enough arguments for format string" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID string not 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "UUID value is not str, int or byte buffer" +#: py/obj.c +msgid "object does not support item assignment" msgstr "" -#: shared-module/displayio/OnDiskBitmap.c -msgid "Unable to read color palette data" +#: py/obj.c +msgid "object does not support item deletion" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "Unable to write to nvm." +#: py/obj.c +msgid "object has no len" msgstr "" -#: shared-module/displayio/Display.c -msgid "Unsupported display bus type" +#: py/obj.c +msgid "object is not subscriptable" msgstr "" -#: shared-module/audioio/WaveFile.c -msgid "Unsupported format" +#: py/runtime.c +msgid "object not an iterator" msgstr "" -#: shared-bindings/digitalio/DigitalInOut.c -msgid "Unsupported pull value." +#: py/objtype.c py/runtime.c +msgid "object not callable" msgstr "" -#: shared-module/audioio/Mixer.c -msgid "Voice index too high" +#: py/sequence.c +msgid "object not in sequence" msgstr "" -#: main.c -msgid "WARNING: Your code filename has two extensions\n" -msgstr "Blimey! Yer code filename has two extensions\n" +#: py/runtime.c +msgid "object not iterable" +msgstr "" -#: supervisor/shared/safe_mode.c -msgid "" -"You are running in safe mode which means something unanticipated happened.\n" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" msgstr "" -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " +#: py/obj.c +msgid "object with buffer protocol required" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" +#: extmod/modubinascii.c +msgid "odd-length string" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" +#: py/objstr.c py/objstrunicode.c +msgid "offset out of bounds" msgstr "" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c -msgid "array/bytes required on right side" +msgid "only slices with step=1 (aka None) are supported" msgstr "" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" +#: py/modbuiltins.c +msgid "ord expects a character" msgstr "" -#: shared-module/struct/__init__.c -msgid "buffer size must match format" +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -msgid "buffer too small" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: py/compile.c +msgid "parameter annotation must be an identifier" msgstr "" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" msgstr "" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" msgstr "" -#: shared-bindings/math/__init__.c -msgid "division by zero" +#: py/objset.c +msgid "pop from an empty set" msgstr "" -#: shared-bindings/random/__init__.c -msgid "empty sequence" +#: py/objlist.c +msgid "pop from empty list" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "end_x should be an int" +#: py/objdict.c +msgid "popitem(): dictionary is empty" msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" msgstr "" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" msgstr "" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" +#: extmod/modutimeq.c +msgid "queue overflow" msgstr "" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" msgstr "" -#: shared-bindings/random/__init__.c -msgid "invalid step" +#: shared-bindings/_pixelbuf/__init__.c +msgid "readonly attribute" msgstr "" -#: shared-bindings/math/__init__.c -msgid "math domain error" +#: py/builtinimport.c +msgid "relative import" msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "name must be a string" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" msgstr "" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" +#: py/compile.c +msgid "return annotation must be an identifier" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" +#: py/objstr.c +msgid "rsplit(None,n)" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: py/modmicropython.c +msgid "schedule stack full" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" msgstr "" #: shared-bindings/bleio/Peripheral.c msgid "services includes an object that is not a Service" msgstr "" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "" + +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "" + #: shared-bindings/time/__init__.c msgid "sleep length must be non-negative" msgstr "" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "" + +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "" + #: main.c msgid "soft reboot\n" msgstr "" +#: py/objstr.c +msgid "start/end indices" +msgstr "" + #: shared-bindings/displayio/Shape.c msgid "start_x should be an int" msgstr "" @@ -707,6 +2351,51 @@ msgstr "" msgid "stop not reachable from start" msgstr "" +#: py/stream.c +msgid "stream operation not supported" +msgstr "" + +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "" + +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "" + +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "" + +#: py/objstr.c +msgid "substring not found" +msgstr "" + +#: py/compile.c +msgid "super() can't find self" +msgstr "" + +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "" + +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "" + #: shared-bindings/touchio/TouchIn.c msgid "threshold must be in the range 0-65536" msgstr "" @@ -743,14 +2432,154 @@ msgstr "" msgid "too many arguments provided with the given format" msgstr "" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "" + +#: py/objstr.c +msgid "tuple index out of range" +msgstr "" + +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "" + +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "" + +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "" + +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "" + +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "" + +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "" + +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "" + +#: py/parse.c +msgid "unexpected indent" +msgstr "" + +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "" + +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "" + +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" + +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "" + +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "" + +#: py/compile.c +msgid "unknown type" +msgstr "" + +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "" + +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "" + +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "" + #: shared-bindings/displayio/TileGrid.c msgid "unsupported bitmap type" msgstr "" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "" + +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "" + +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "" + +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "" + #: shared-bindings/displayio/Bitmap.c msgid "value_count must be > 0" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" + +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "" + +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "" + #: shared-module/displayio/Shape.c msgid "x value out of bounds" msgstr "" @@ -763,8 +2592,9 @@ msgstr "" msgid "y value out of bounds" msgstr "" -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Avast! A hardware interrupt channel be used already" +#: py/objrange.c +msgid "zero step" +msgstr "" #~ msgid "All event channels " #~ msgstr "Avast! All th' event channels " @@ -772,47 +2602,8 @@ msgstr "" #~ msgid "All timers " #~ msgstr "Heave-to! All th' timers be used" -#~ msgid "Another send is already active" -#~ msgstr "Belay that! thar be another active send" - -#~ msgid "Bus pin %d is already in use" -#~ msgstr "Belay that! Bus pin %d already be in use" - #~ msgid "Clock unit " #~ msgstr "Blimey! Clock unit " #~ msgid "DAC already " #~ msgstr "Blimey! DAC already under sail" - -#~ msgid "EXTINT channel already in use" -#~ msgstr "Avast! EXTINT channel already in use" - -#~ msgid "Invalid clock pin" -#~ msgstr "Avast! Clock pin be invalid" - -#~ msgid "Invalid pin for left channel" -#~ msgstr "Belay that! Invalid pin for port-side channel" - -#~ msgid "Invalid pin for right channel" -#~ msgstr "Belay that! Invalid pin for starboard-side channel" - -#~ msgid "No DAC on chip" -#~ msgstr "Shiver me timbers! There be no DAC on this chip" - -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "Belay that! Th' Pin be not ADC capable" - -#~ msgid "Unable to find free GCLK" -#~ msgstr "Arr! No free GCLK be in sight" - -#~ msgid "bits must be 8" -#~ msgstr "pieces must be of 8" - -#~ msgid "buffers must be the same length" -#~ msgstr "yer buffers must be of the same length" - -#~ msgid "invalid I2C peripheral" -#~ msgstr "Belay that! I2C peripheral be invalid" - -#~ msgid "invalid SPI peripheral" -#~ msgstr "Arr! SPI peripheral be invalid" diff --git a/locale/es.po b/locale/es.po index 8f47e65b7..3d1d6a2a5 100644 --- a/locale/es.po +++ b/locale/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-08-24 22:56-0500\n" "Last-Translator: \n" "Language-Team: \n" @@ -24,16 +24,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr " Archivo \"%q\"" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr " Archivo \"%q\", línea %d" + #: main.c msgid " output:\n" msgstr " salida:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "%%c requiere int o char" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q está siendo utilizado" +#: py/obj.c +msgid "%q index out of range" +msgstr "%w indice fuera de rango" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "%q indices deben ser enteros, no %s" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "los buffers deben de tener la misma longitud" @@ -43,10 +64,163 @@ msgstr "los buffers deben de tener la misma longitud" msgid "%q should be an int" msgstr "y deberia ser un int" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "%q() toma %d argumentos posicionales pero %d fueron dados" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "argumento '%q' requerido" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "'%s' espera una etiqueta" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "'%s' espera un registro" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "ord espera un carácter" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "'%s' espera un registro de FPU" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "'%s' espera una dirección de forma [a, b]" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "'%s' espera un entero" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "'%s' espera a lo sumo r%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "'%s' espera {r0, r1, ...}" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "'%s' entero %d no esta dentro del rango %d..%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "'%s' entero 0x%x no cabe en la máscara 0x%x" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "el objeto '%s' no soporta la asignación de elementos" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "objeto '%s' no soporta la eliminación de elementos" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "objeto '%s' no tiene atributo '%q'" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "objeto '%s' no es un iterator" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "objeto '%s' no puede ser llamado" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "objeto '%s' no es iterable" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "el objeto '%s' no es suscriptable" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "'=' alineación no permitida en el especificador string format" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' y 'O' no son compatibles con los tipos de formato" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "'align' requiere 1 argumento" + +#: py/compile.c +msgid "'await' outside function" +msgstr "'await' fuera de la función" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "'break' fuera de un bucle" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "'continue' fuera de un bucle" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "'data' requiere como minomo 2 argumentos" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "'data' requiere argumentos de tipo entero" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "'label' requiere 1 argumento" + +#: py/compile.c +msgid "'return' outside function" +msgstr "'return' fuera de una función" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "" +"No es posible reiniciar en modo bootloader porque no hay bootloader presente." + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "*x debe ser objetivo de la tarea" + +#: py/obj.c +msgid ", in %q\n" +msgstr ", en %q\n" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "0.0 a una potencia compleja" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "pow() con 3 argumentos no soportado" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "El canal EXTINT ya está siendo utilizado" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -57,14 +231,57 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "palette debe ser 32 bytes de largo" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "Todos los timers están siendo usados" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "Todos los timers están siendo usados" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "All UART peripherals are in use" +msgstr "Todos los timers están siendo usados" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Todos los canales de eventos en uso" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "" +"Todos los canales de eventos de sincronización(sync event channels) están " +"siendo utilizados" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Todos los timers para este pin están siendo utilizados" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Todos los timers en uso" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "Funcionalidad AnalogOut no soportada" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "AnalogOut es solo de 16 bits. Value debe ser menos a 65536." + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "El pin proporcionado no soporta AnalogOut" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Otro envío ya está activo" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -89,6 +306,18 @@ msgstr "" "Auto-reload habilitado. Simplemente guarda los archivos via USB para " "ejecutarlos o entra al REPL para desabilitarlos.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "Bit clock y word select deben compartir una unidad de reloj" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "La profundidad de bits debe ser múltiplo de 8." + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Ambos pines deben soportar interrupciones por hardware" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "Brightness debe estar entro 0 y 255" @@ -102,10 +331,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Tamaño de buffer incorrecto. Debe ser de %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Buffer debe ser de longitud 1 como minimo" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy, c-format +msgid "Bus pin %d is already in use" +msgstr "DAC ya está siendo utilizado" + #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -115,6 +350,11 @@ msgstr "buffer debe de ser un objeto bytes-like" msgid "Bytes must be between 0 and 255." msgstr "Bytes debe estar entre 0 y 255." +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "No se pueden agregar servicio en modo Central" @@ -131,26 +371,56 @@ msgstr "No se puede cambiar el nombre en modo Central" msgid "Can't connect in Peripheral mode" msgstr "No se puede conectar en modo Peripheral" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "No se puede eliminar valores" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "No puede ser pull mientras este en modo de salida" + +#: ports/nrf/common-hal/microcontroller/Processor.c +#, fuzzy +msgid "Cannot get temperature" +msgstr "No se puede obtener la temperatura. status: 0x%02x" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "No se puede tener ambos canales en el mismo pin" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "No se puede leer sin pin MISO." +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "No se puede grabar en un archivo" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "No se puede volver a montar '/' cuando el USB esta activo." +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "No se puede reiniciar a bootloader porque no hay bootloader presente." + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "No se puede asignar un valor cuando la dirección es input." +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "No se puede transferir sin pines MOSI y MISO." +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "No se puede obtener inequívocamente sizeof escalar" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "No se puede escribir sin pin MOSI." @@ -159,6 +429,10 @@ msgstr "No se puede escribir sin pin MOSI." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -171,6 +445,10 @@ msgstr "Clock pin init fallido" msgid "Clock stretch too long" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Clock unit está siendo utilizado" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -180,6 +458,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "Bytes debe estar entre 0 y 255." +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "No se puede inicializar la UART" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "No se pudo asignar el primer buffer" @@ -192,10 +479,35 @@ msgstr "No se pudo asignar el segundo buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "DAC ya está siendo utilizado" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy +msgid "Data 0 pin must be byte aligned" +msgstr "graphic debe ser 2048 bytes de largo" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy +msgid "Data too large for advertisement packet" +msgstr "Los datos no caben en el paquete de anuncio." + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Data too large for the advertisement packet" +msgstr "Los datos no caben en el paquete de anuncio." + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "Capacidad de destino es mas pequeña que destination_length." + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -204,8 +516,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "Modo Drive no se usa cuando la dirección es input." -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "El canal EXTINT ya está siendo utilizado" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "Error en regex" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Se espera un %q" @@ -215,8 +536,8 @@ msgstr "Se espera un %q" msgid "Expected a Characteristic" msgstr "No se puede agregar la Característica." -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c #, fuzzy msgid "Expected a UUID" msgstr "Se espera un %q" @@ -226,8 +547,186 @@ msgstr "Se espera un %q" msgid "Expected tuple of length %d, got %d" msgstr "" +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to acquire mutex" +msgstr "No se puede adquirir el mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "No se puede adquirir el mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Service.c +#, fuzzy, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "No se puede añadir caracteristica, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to add service" +msgstr "No se puede detener el anuncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, fuzzy, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "No se puede detener el anuncio. status: 0x%02x" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Ha fallado la asignación del buffer RX" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Falló la asignación del buffer RX de %d bytes" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to change softdevice state" +msgstr "No se puede cambiar el estado del softdevice, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to connect:" +msgstr "No se puede conectar. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to continue scanning" +msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to create mutex" +msgstr "No se puede leer el valor del atributo. status 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to discover services" +msgstr "No se puede descubrir servicios, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get local address" +msgstr "No se puede obtener la dirección local, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get softdevice state" +msgstr "No se puede obtener el estado del softdevice, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "No se puede leer el valor del atributo. status 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "No se puede escribir el valor del atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "No se puede agregar el Vendor Specific 128-bit UUID." + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to release mutex" +msgstr "No se puede liberar el mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "No se puede liberar el mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start advertising" +msgstr "No se puede inicar el anuncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "No se puede inicar el anuncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start scanning" +msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "No se puede iniciar el escaneo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to stop advertising" +msgstr "No se puede detener el anuncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "No se puede detener el anuncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "No se puede escribir el valor del atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "No se puede escribir el valor del atributo. status: 0x%02x" + +#: py/moduerrno.c +msgid "File exists" +msgstr "El archivo ya existe" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "La función requiere lock" @@ -235,18 +734,68 @@ msgstr "La función requiere lock" msgid "Group full" msgstr "Group lleno" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "Operación I/O en archivo cerrado" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "operación I2C no soportada" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" +"Archivo .mpy incompatible. Actualice todos los archivos .mpy. Consulte " +"http://adafru.it/mpy-update para más información" + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "error Input/output" + #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Archivo BMP inválido" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frecuencia PWM inválida" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "Argumento inválido" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Pin bit clock inválido" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "Tamaño de buffer inválido" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "Cuenta de canales inválida" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Pin clock inválido" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "Pin de datos inválido" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Dirección inválida." @@ -259,19 +808,37 @@ msgstr "Archivo inválido" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Numero inválido de bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Fase inválida" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin inválido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Pin inválido para canal izquierdo" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Pin inválido para canal derecho" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "pines inválidos" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Polaridad inválida" @@ -279,14 +846,30 @@ msgstr "Polaridad inválida" msgid "Invalid run mode." msgstr "Modo de ejecución inválido." +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "Cuenta de voces inválida" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Archivo wave inválido" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "LHS del agumento por palabra clave deberia ser un identificador" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" +#: py/objslice.c +msgid "Length must be an int" +msgstr "Length debe ser un int" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "Longitud no deberia ser negativa" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -319,10 +902,35 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "El chip no tiene DAC" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "No se encontró el canal DMA" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Sin pin RX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Sin pin TX" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Sin bus I2C por defecto" @@ -335,15 +943,36 @@ msgstr "Sin bus SPI por defecto" msgid "No default UART bus" msgstr "Sin bus UART por defecto" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Sin GCLKs libres" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "No hay hardware random disponible" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Sin soporte de hardware en pin" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "No existe el archivo/directorio" + #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "No se puede conectar a AP" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -351,6 +980,14 @@ msgstr "" "El objeto se ha desinicializado y ya no se puede utilizar. Crea un nuevo " "objeto" +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "Paridad impar no soportada" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "Solo mono de 8 o 16 bit con " + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -368,6 +1005,15 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Only slices with step=1 (aka None) are supported" +msgstr "solo se admiten segmentos con step=1 (alias None)" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -378,6 +1024,24 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" +#: py/moduerrno.c +msgid "Permission denied" +msgstr "Permiso denegado" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "Pin no tiene capacidad ADC" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +#, fuzzy +msgid "Plus any modules on the filesystem\n" +msgstr "Incapaz de montar de nuevo el sistema de archivos" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -391,23 +1055,32 @@ msgstr "Pull no se usa cuando la dirección es output." msgid "RTC calibration is not supported on this board" msgstr "Calibración de RTC no es soportada en esta placa" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "RTC no soportado en esta placa" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" -msgstr "El cambio de RTC no soportado en esta placa" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Range out of bounds" +msgstr "address fuera de límites" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Solo-lectura" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "Sistema de archivos de solo-Lectura" + #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Solo-lectura" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Canal derecho no soportado" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -420,15 +1093,42 @@ msgstr "Ejecutando en modo seguro! La auto-recarga esta deshabilitada.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Ejecutando en modo seguro! No se esta ejecutando el código guardado.\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "SDA o SCL necesitan una pull up" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "Sample rate debe ser positivo" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "Frecuencia de muestreo demasiado alta. Debe ser menor a %d" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Serializer está siendo utilizado" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "Dividiendo con sub-capturas" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "" @@ -499,6 +1199,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Para salir, por favor reinicia la tarjeta sin " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "Demasiados canales en sample." + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -507,6 +1211,10 @@ msgstr "" msgid "Too many displays" msgstr "" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "Traceback (ultima llamada reciente):\n" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Argumento tuple o struct_time requerido" @@ -531,6 +1239,20 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "No se pudieron asignar buffers para la conversión con signo" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "No se pudo encontrar un GCLK libre" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "Incapaz de inicializar el parser" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -539,6 +1261,19 @@ msgstr "" msgid "Unable to write to nvm." msgstr "Imposible escribir en nvm" +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "Baudrate no soportado" + #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -548,10 +1283,18 @@ msgstr "tipo de bitmap no soportado" msgid "Unsupported format" msgstr "Formato no soportado" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "Operación no soportada" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "valor pull no soportado." +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "funciones Viper actualmente no soportan más de 4 argumentos." + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Index de voz demasiado alto" @@ -560,8 +1303,24 @@ msgstr "Index de voz demasiado alto" msgid "WARNING: Your code filename has two extensions\n" msgstr "ADVERTENCIA: El nombre de archivo de tu código tiene dos extensiones\n" -#: supervisor/shared/safe_mode.c -#, fuzzy +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" +"Bienvenido a Adafruit CircuitPython %s!\n" +"\n" +"Visita learn.adafruit.com/category/circuitpython para obtener guías de " +"proyectos.\n" +"\n" +"Para listar los módulos incorporados por favor haga `help(\"modules\")`.\n" + +#: supervisor/shared/safe_mode.c +#, fuzzy msgid "" "You are running in safe mode which means something unanticipated happened.\n" msgstr "" @@ -572,6 +1331,32 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Solicitaste iniciar en modo seguro por " +#: py/objtype.c +msgid "__init__() should return None" +msgstr "__init__() deberia devolver None" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "__init__() deberia devolver None, no '%s'" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "__new__ arg debe ser un user-type" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "se requiere un objeto bytes-like" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "se llamó abort()" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "la dirección %08x no esta alineada a %d bytes" + #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "address fuera de límites" @@ -580,39 +1365,308 @@ msgstr "address fuera de límites" msgid "addresses is empty" msgstr "addresses esta vacío" -#: shared-bindings/nvm/ByteArray.c +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "argumento es una secuencia vacía" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "el argumento tiene un tipo erroneo" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "argumento número/tipos no coinciden" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "argumento deberia ser un '%q' no un '%q'" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "array/bytes requeridos en el lado derecho" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "atributos aún no soportados" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" + +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "modo de compilación erroneo" + +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "especificador de conversion erroneo" + +#: py/objstr.c +msgid "bad format string" +msgstr "formato de string erroneo" + +#: py/binary.c +msgid "bad typecode" +msgstr "typecode erroneo" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "operacion binaria %q no implementada" + #: shared-bindings/busio/UART.c msgid "bits must be 7, 8 or 9" msgstr "bits deben ser 7, 8 o 9" +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "bits debe ser 8" + +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "bits_per_sample debe ser 8 o 16" + +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "El argumento de chr() no esta en el rango(256)" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "buffer debe de ser un objeto bytes-like" + #: shared-module/struct/__init__.c #, fuzzy msgid "buffer size must match format" msgstr "los buffers deben de tener la misma longitud" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "buffer demasiado pequeño" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "los buffers deben de tener la misma longitud" + #: shared-bindings/_pew/PewPew.c msgid "buttons must be digitalio.DigitalInOut" msgstr "" +#: py/vm.c +msgid "byte code not implemented" +msgstr "codigo byte no implementado" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "bytes > 8 bits no soportados" + +#: py/objstr.c +msgid "bytes value out of range" +msgstr "valor de bytes fuera de rango" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "calibration esta fuera de rango" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "calibration es de solo lectura" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "Valor de calibración fuera del rango +/-127" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "solo puede tener hasta 4 parámetros para ensamblar Thumb" + +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "solo puede tener hasta 4 parámetros para ensamblador Xtensa" + +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "solo puede almacenar bytecode" + +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "no se puede agregar un método a una clase ya subclasificada" + +#: py/compile.c +msgid "can't assign to expression" +msgstr "no se puede asignar a la expresión" + +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "no se puede convertir %s a complejo" + +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "no se puede convertir %s a float" + +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "no se puede convertir %s a int" + +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "no se puede convertir el objeto '%q' a %q implícitamente" + +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "no se puede convertir Nan a int" + #: shared-bindings/i2cslave/I2CSlave.c msgid "can't convert address to int" msgstr "no se puede convertir address a int" +#: py/objint.c +msgid "can't convert inf to int" +msgstr "no se puede convertir inf en int" + +#: py/obj.c +msgid "can't convert to complex" +msgstr "no se puede convertir a complejo" + +#: py/obj.c +msgid "can't convert to float" +msgstr "no se puede convertir a float" + +#: py/obj.c +msgid "can't convert to int" +msgstr "no se puede convertir a int" + +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "no se puede convertir a str implícitamente" + +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "no se puede declarar nonlocal" + +#: py/compile.c +msgid "can't delete expression" +msgstr "no se puede borrar la expresión" + +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "no se puede hacer una operacion binaria entre '%q' y '%q'" + +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "no se puede hacer la división truncada de un número complejo" + +#: py/compile.c +msgid "can't have multiple **x" +msgstr "no puede tener multiples *x" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "no puede tener multiples *x" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "no se puede convertir implícitamente '%q' a 'bool'" + +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "no se puede cargar desde '%q'" + +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "no se puede cargar con el índice '%q'" + +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "no se puede colgar al generador recién iniciado" + +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" +"no se puede enviar un valor que no sea None a un generador recién iniciado" + +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "no se puede asignar el atributo" + +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "no se puede almacenar '%q'" + +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "no se puede almacenar para '%q'" + +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "no se puede almacenar con el indice '%q'" + +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" +"no se puede cambiar de la numeración automática de campos a la " +"especificación de campo manual" + +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" +"no se puede cambiar de especificación de campo manual a numeración " +"automática de campos" + +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "no se pueden crear '%q' instancias" + +#: py/objtype.c +msgid "cannot create instance" +msgstr "no se puede crear instancia" + +#: py/runtime.c +msgid "cannot import name %q" +msgstr "no se puede importar name '%q'" + +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "no se puedo realizar importación relativa" + +#: py/emitnative.c +msgid "casting" +msgstr "" + #: shared-bindings/bleio/Service.c msgid "characteristics includes an object that is not a Characteristic" msgstr "" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "chars buffer muy pequeño" + +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "El argumento de chr() esta fuera de rango(0x110000)" + +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "El argumento de chr() no esta en el rango(256)" + #: shared-bindings/displayio/Palette.c msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" @@ -633,24 +1687,129 @@ msgstr "color debe estar entre 0x000000 y 0xffffff" msgid "color should be an int" msgstr "color deberia ser un int" +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "división compleja por cero" + +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "valores complejos no soportados" + +#: extmod/moduzlib.c +msgid "compression header" +msgstr "encabezado de compresión" + +#: py/parse.c +msgid "constant must be an integer" +msgstr "constant debe ser un entero" + +#: py/emitnative.c +msgid "conversion to object" +msgstr "conversión a objeto" + +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "números decimales no soportados" + +#: py/compile.c +msgid "default 'except' must be last" +msgstr "'except' por defecto deberia estar de último" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" +"el buffer de destino debe ser un bytearray o array de tipo 'B' para " +"bit_depth = 8" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "el buffer de destino debe ser un array de tipo 'H' para bit_depth = 16" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "destination_length debe ser un int >= 0" + +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "la secuencia de actualizacion del dict tiene una longitud incorrecta" + +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "división por cero" +#: py/objdeque.c +msgid "empty" +msgstr "vacío" + +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "heap vacío" + +#: py/objstr.c +msgid "empty separator" +msgstr "separator vacío" + #: shared-bindings/random/__init__.c msgid "empty sequence" msgstr "secuencia vacía" +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "el final del formato mientras se busca el especificador de conversión" + #: shared-bindings/displayio/Shape.c #, fuzzy msgid "end_x should be an int" msgstr "y deberia ser un int" +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "error = 0x%08lx" + +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "las excepciones deben derivar de BaseException" + +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "se espera ':' despues de un especificaro de tipo format" + #: shared-bindings/gamepad/GamePad.c msgid "expected a DigitalInOut" msgstr "se espera un DigitalInOut" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +#: py/obj.c +msgid "expected tuple/list" +msgstr "tupla/lista esperada" + +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "esperando un diccionario para argumentos por palabra clave" + +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "esperando una instrucción de ensamblador" + +#: py/compile.c +msgid "expecting just a value for set" +msgstr "esperando solo un valor para set" + +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "esperando la clave:valor para dict" + +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "argumento(s) por palabra clave adicionales fueron dados" + +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "argumento posicional adicional dado" + +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "el archivo deberia ser una archivo abierto en modo byte" @@ -658,1587 +1817,1042 @@ msgstr "el archivo deberia ser una archivo abierto en modo byte" msgid "filesystem must provide mount method" msgstr "sistema de archivos debe proporcionar método de montaje" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "la función toma exactamente 9 argumentos." +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "primer argumento para super() debe ser de tipo" -#: shared-bindings/random/__init__.c -msgid "invalid step" +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "firstbit debe ser MSB" + +#: py/objint.c +msgid "float too big" msgstr "" -#: shared-bindings/math/__init__.c -msgid "math domain error" -msgstr "error de dominio matemático" +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "font debe ser 2048 bytes de largo" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "palabras clave deben ser strings" +#: py/objstr.c +msgid "format requires a dict" +msgstr "format requiere un dict" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "NIC no disponible" +#: py/objdeque.c +msgid "full" +msgstr "lleno" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "la función no tiene argumentos por palabra clave" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "solo se admiten segmentos con step=1 (alias None)" +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "la función esperaba minimo %d argumentos, tiene %d" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "palette_index deberia ser un int" +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "la función tiene múltiples valores para el argumento '%q'" -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "address fuera de límites" +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "a la función le hacen falta %d argumentos posicionales requeridos" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "falta palabra clave para función" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter" +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "la función requiere del argumento por palabra clave '%q'" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "la fila debe estar empacada y la palabra alineada" +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "la función requiere del argumento posicional #%d" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "la función toma %d argumentos posicionales pero le fueron dados %d" #: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "la longitud de sleep no puede ser negativa" +msgid "function takes exactly 9 arguments" +msgstr "la función toma exactamente 9 argumentos." -#: main.c -msgid "soft reboot\n" -msgstr "reinicio suave\n" +#: py/objgenerator.c +msgid "generator already executing" +msgstr "generador ya se esta ejecutando" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y deberia ser un int" +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "generador ignorado GeneratorExit" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "" +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "graphic debe ser 2048 bytes de largo" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop debe ser 1 o 2" +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "heap debe ser una lista" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "" +#: py/compile.c +msgid "identifier redefined as global" +msgstr "identificador redefinido como global" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "" +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "identificador redefinido como nonlocal" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#: py/objstr.c +msgid "incomplete format" +msgstr "formato incompleto" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: py/objstr.c +msgid "incomplete format key" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() acepta exactamente 1 argumento" - -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "" +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "relleno (padding) incorrecto" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits debe ser 8" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "index fuera de rango" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "" +#: py/obj.c +msgid "indices must be integers" +msgstr "indices deben ser enteros" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "muchos argumentos" +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "ensamblador en línea debe ser una función" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "demasiados argumentos provistos con el formato dado" +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "int() arg 2 debe ser >= 2 y <= 36" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "tipo de bitmap no soportado" +#: py/objstr.c +msgid "integer required" +msgstr "Entero requerido" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" msgstr "" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "x value out of bounds" -msgstr "address fuera de límites" +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "periférico I2C inválido" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y deberia ser un int" +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "periférico SPI inválido" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "address fuera de límites" +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "argumentos inválidos" -#~ msgid " File \"%q\"" -#~ msgstr " Archivo \"%q\"" +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "certificado inválido" -#~ msgid " File \"%q\", line %d" -#~ msgstr " Archivo \"%q\", línea %d" +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "index dupterm inválido" -#~ msgid "%%c requires int or char" -#~ msgstr "%%c requiere int o char" +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "formato inválido" -#~ msgid "%q index out of range" -#~ msgstr "%w indice fuera de rango" +#: py/objstr.c +msgid "invalid format specifier" +msgstr "especificador de formato inválido" -#~ msgid "%q indices must be integers, not %s" -#~ msgstr "%q indices deben ser enteros, no %s" +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "llave inválida" -#~ msgid "%q() takes %d positional arguments but %d were given" -#~ msgstr "%q() toma %d argumentos posicionales pero %d fueron dados" +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "decorador de micropython inválido" -#~ msgid "'%q' argument required" -#~ msgstr "argumento '%q' requerido" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "" -#~ msgid "'%s' expects a label" -#~ msgstr "'%s' espera una etiqueta" +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "sintaxis inválida" -#~ msgid "'%s' expects a register" -#~ msgstr "'%s' espera un registro" +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "sintaxis inválida para entero" -#~ msgid "'%s' expects a special register" -#~ msgstr "ord espera un carácter" +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "sintaxis inválida para entero con base %d" -#~ msgid "'%s' expects an FPU register" -#~ msgstr "'%s' espera un registro de FPU" +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "sintaxis inválida para número" -#~ msgid "'%s' expects an address of the form [a, b]" -#~ msgstr "'%s' espera una dirección de forma [a, b]" +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "issubclass() arg 1 debe ser una clase" -#~ msgid "'%s' expects an integer" -#~ msgstr "'%s' espera un entero" +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "issubclass() arg 2 debe ser una clase o tuple de clases" -#~ msgid "'%s' expects at most r%d" -#~ msgstr "'%s' espera a lo sumo r%d" +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" +"join espera una lista de objetos str/bytes consistentes con el mismo objeto" -#~ msgid "'%s' expects {r0, r1, ...}" -#~ msgstr "'%s' espera {r0, r1, ...}" +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" +"argumento(s) por palabra clave aún no implementados - usa argumentos " +"normales en su lugar" -#~ msgid "'%s' integer %d is not within range %d..%d" -#~ msgstr "'%s' entero %d no esta dentro del rango %d..%d" +#: py/bc.c +msgid "keywords must be strings" +msgstr "palabras clave deben ser strings" -#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" -#~ msgstr "'%s' entero 0x%x no cabe en la máscara 0x%x" +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "etiqueta '%q' no definida" -#~ msgid "'%s' object does not support item assignment" -#~ msgstr "el objeto '%s' no soporta la asignación de elementos" +#: py/compile.c +msgid "label redefined" +msgstr "etiqueta redefinida" -#~ msgid "'%s' object does not support item deletion" -#~ msgstr "objeto '%s' no soporta la eliminación de elementos" +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "argumento length no permitido para este tipo" -#~ msgid "'%s' object has no attribute '%q'" -#~ msgstr "objeto '%s' no tiene atributo '%q'" +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "lhs y rhs deben ser compatibles" -#~ msgid "'%s' object is not an iterator" -#~ msgstr "objeto '%s' no es un iterator" +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "la variable local '%q' tiene el tipo '%q' pero la fuente es '%q'" -#~ msgid "'%s' object is not callable" -#~ msgstr "objeto '%s' no puede ser llamado" +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "variable local '%q' usada antes del tipo conocido" -#~ msgid "'%s' object is not iterable" -#~ msgstr "objeto '%s' no es iterable" +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "variable local referenciada antes de la asignación" -#~ msgid "'%s' object is not subscriptable" -#~ msgstr "el objeto '%s' no es suscriptable" +#: py/objint.c +msgid "long int not supported in this build" +msgstr "long int no soportado en esta compilación" -#~ msgid "'=' alignment not allowed in string format specifier" -#~ msgstr "'=' alineación no permitida en el especificador string format" +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "map buffer muy pequeño" -#~ msgid "'align' requires 1 argument" -#~ msgstr "'align' requiere 1 argumento" +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "error de dominio matemático" -#~ msgid "'await' outside function" -#~ msgstr "'await' fuera de la función" +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "profundidad máxima de recursión excedida" -#~ msgid "'break' outside loop" -#~ msgstr "'break' fuera de un bucle" +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "la asignación de memoria falló, asignando %u bytes" -#~ msgid "'continue' outside loop" -#~ msgstr "'continue' fuera de un bucle" +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "la asignación de memoria falló, el heap está bloqueado" -#~ msgid "'data' requires at least 2 arguments" -#~ msgstr "'data' requiere como minomo 2 argumentos" +#: py/builtinimport.c +msgid "module not found" +msgstr "módulo no encontrado" -#~ msgid "'data' requires integer arguments" -#~ msgstr "'data' requiere argumentos de tipo entero" +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "múltiples *x en la asignación" -#~ msgid "'label' requires 1 argument" -#~ msgstr "'label' requiere 1 argumento" +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" -#~ msgid "'return' outside function" -#~ msgstr "'return' fuera de una función" +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "herencia multiple no soportada" -#~ msgid "'yield' outside function" -#~ msgstr "" -#~ "No es posible reiniciar en modo bootloader porque no hay bootloader " -#~ "presente." +#: py/emitnative.c +msgid "must raise an object" +msgstr "debe hacer un raise de un objeto" -#~ msgid "*x must be assignment target" -#~ msgstr "*x debe ser objetivo de la tarea" +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "se deben de especificar sck/mosi/miso" -#~ msgid ", in %q\n" -#~ msgstr ", en %q\n" +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "debe utilizar argumento de palabra clave para la función clave" -#~ msgid "0.0 to a complex power" -#~ msgstr "0.0 a una potencia compleja" +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "name '%q' no esta definido" -#~ msgid "3-arg pow() not supported" -#~ msgstr "pow() con 3 argumentos no soportado" +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "palabras clave deben ser strings" -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "El canal EXTINT ya está siendo utilizado" +#: py/runtime.c +msgid "name not defined" +msgstr "name no definido" -#~ msgid "AP required" -#~ msgstr "AP requerido" +#: py/compile.c +msgid "name reused for argument" +msgstr "nombre reusado para argumento" -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Todos los timers están siendo usados" - -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Todos los timers están siendo usados" - -#, fuzzy -#~ msgid "All UART peripherals are in use" -#~ msgstr "Todos los timers están siendo usados" - -#~ msgid "All event channels in use" -#~ msgstr "Todos los canales de eventos en uso" - -#~ msgid "All sync event channels in use" -#~ msgstr "" -#~ "Todos los canales de eventos de sincronización(sync event channels) están " -#~ "siendo utilizados" - -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "Funcionalidad AnalogOut no soportada" - -#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." -#~ msgstr "AnalogOut es solo de 16 bits. Value debe ser menos a 65536." - -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "El pin proporcionado no soporta AnalogOut" - -#~ msgid "Another send is already active" -#~ msgstr "Otro envío ya está activo" - -#~ msgid "Bit clock and word select must share a clock unit" -#~ msgstr "Bit clock y word select deben compartir una unidad de reloj" - -#~ msgid "Bit depth must be multiple of 8." -#~ msgstr "La profundidad de bits debe ser múltiplo de 8." - -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Ambos pines deben soportar interrupciones por hardware" - -#, fuzzy -#~ msgid "Bus pin %d is already in use" -#~ msgstr "DAC ya está siendo utilizado" - -#~ msgid "Cannot connect to AP" -#~ msgstr "No se puede conectar a AP" - -#~ msgid "Cannot disconnect from AP" -#~ msgstr "No se puede desconectar de AP" - -#~ msgid "Cannot get pull while in output mode" -#~ msgstr "No puede ser pull mientras este en modo de salida" - -#, fuzzy -#~ msgid "Cannot get temperature" -#~ msgstr "No se puede obtener la temperatura. status: 0x%02x" - -#~ msgid "Cannot output both channels on the same pin" -#~ msgstr "No se puede tener ambos canales en el mismo pin" - -#~ msgid "Cannot record to a file" -#~ msgstr "No se puede grabar en un archivo" - -#~ msgid "Cannot reset into bootloader because no bootloader is present." -#~ msgstr "" -#~ "No se puede reiniciar a bootloader porque no hay bootloader presente." - -#~ msgid "Cannot set STA config" -#~ msgstr "No se puede establecer STA config" - -#~ msgid "Cannot unambiguously get sizeof scalar" -#~ msgstr "No se puede obtener inequívocamente sizeof escalar" - -#~ msgid "Cannot update i/f status" -#~ msgstr "No se puede actualizar i/f status" - -#~ msgid "Clock unit in use" -#~ msgstr "Clock unit está siendo utilizado" - -#~ msgid "Could not initialize UART" -#~ msgstr "No se puede inicializar la UART" - -#~ msgid "DAC already in use" -#~ msgstr "DAC ya está siendo utilizado" - -#, fuzzy -#~ msgid "Data 0 pin must be byte aligned" -#~ msgstr "graphic debe ser 2048 bytes de largo" - -#, fuzzy -#~ msgid "Data too large for advertisement packet" -#~ msgstr "Los datos no caben en el paquete de anuncio." - -#, fuzzy -#~ msgid "Data too large for the advertisement packet" -#~ msgstr "Los datos no caben en el paquete de anuncio." - -#~ msgid "Destination capacity is smaller than destination_length." -#~ msgstr "Capacidad de destino es mas pequeña que destination_length." - -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "No se sabe cómo pasar objeto a función nativa" - -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "ESP8226 no soporta modo seguro." - -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "ESP8266 no soporta pull down." - -#~ msgid "EXTINT channel already in use" -#~ msgstr "El canal EXTINT ya está siendo utilizado" - -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Error en ffi_prep_cif" - -#~ msgid "Error in regex" -#~ msgstr "Error en regex" - -#, fuzzy -#~ msgid "Failed to acquire mutex" -#~ msgstr "No se puede adquirir el mutex, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "No se puede adquirir el mutex, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "No se puede añadir caracteristica, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to add service" -#~ msgstr "No se puede detener el anuncio. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "No se puede detener el anuncio. status: 0x%02x" - -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Ha fallado la asignación del buffer RX" - -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Falló la asignación del buffer RX de %d bytes" - -#, fuzzy -#~ msgid "Failed to change softdevice state" -#~ msgstr "No se puede cambiar el estado del softdevice, error: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to connect:" -#~ msgstr "No se puede conectar. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to continue scanning" -#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to create mutex" -#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" - -#, fuzzy -#~ msgid "Failed to discover services" -#~ msgstr "No se puede descubrir servicios, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to get local address" -#~ msgstr "No se puede obtener la dirección local, error: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to get softdevice state" -#~ msgstr "No se puede obtener el estado del softdevice, error: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "No se puede notificar el valor del anuncio. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" - -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" - -#, fuzzy -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "No se puede escribir el valor del atributo. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "No se puede agregar el Vendor Specific 128-bit UUID." - -#, fuzzy -#~ msgid "Failed to release mutex" -#~ msgstr "No se puede liberar el mutex, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "No se puede liberar el mutex, status: 0x%08lX" - -#, fuzzy -#~ msgid "Failed to start advertising" -#~ msgstr "No se puede inicar el anuncio. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "No se puede inicar el anuncio. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to start scanning" -#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "No se puede iniciar el escaneo. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to stop advertising" -#~ msgstr "No se puede detener el anuncio. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "No se puede detener el anuncio. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "No se puede escribir el valor del atributo. status: 0x%02x" - -#, fuzzy -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "No se puede escribir el valor del atributo. status: 0x%02x" - -#~ msgid "File exists" -#~ msgstr "El archivo ya existe" - -#~ msgid "Function requires lock." -#~ msgstr "La función requiere lock" - -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "GPIO16 no soporta pull up." - -#~ msgid "I/O operation on closed file" -#~ msgstr "Operación I/O en archivo cerrado" - -#~ msgid "I2C operation not supported" -#~ msgstr "operación I2C no soportada" - -#~ msgid "" -#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." -#~ "it/mpy-update for more info." -#~ msgstr "" -#~ "Archivo .mpy incompatible. Actualice todos los archivos .mpy. Consulte " -#~ "http://adafru.it/mpy-update para más información" - -#~ msgid "Input/output error" -#~ msgstr "error Input/output" - -#~ msgid "Invalid argument" -#~ msgstr "Argumento inválido" +#: py/emitnative.c +msgid "native yield" +msgstr "" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Pin bit clock inválido" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "necesita más de %d valores para descomprimir" -#~ msgid "Invalid buffer size" -#~ msgstr "Tamaño de buffer inválido" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "potencia negativa sin float support" -#~ msgid "Invalid channel count" -#~ msgstr "Cuenta de canales inválida" +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "cuenta negativa de turnos" -#~ msgid "Invalid clock pin" -#~ msgstr "Pin clock inválido" +#: py/vm.c +msgid "no active exception to reraise" +msgstr "exception no activa para reraise" -#~ msgid "Invalid data pin" -#~ msgstr "Pin de datos inválido" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "NIC no disponible" -#~ msgid "Invalid pin for left channel" -#~ msgstr "Pin inválido para canal izquierdo" +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "no se ha encontrado ningún enlace para nonlocal" -#~ msgid "Invalid pin for right channel" -#~ msgstr "Pin inválido para canal derecho" +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "ningún módulo se llama '%q'" -#~ msgid "Invalid pins" -#~ msgstr "pines inválidos" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "no hay tal atributo" -#~ msgid "Invalid voice count" -#~ msgstr "Cuenta de voces inválida" +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "argumento no predeterminado sigue argumento predeterminado" -#~ msgid "LHS of keyword arg must be an id" -#~ msgstr "LHS del agumento por palabra clave deberia ser un identificador" +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "digito non-hex encontrado" -#~ msgid "Length must be an int" -#~ msgstr "Length debe ser un int" +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "no deberia estar/tener agumento por palabra clave despues de */**" -#~ msgid "Length must be non-negative" -#~ msgstr "Longitud no deberia ser negativa" +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "" +"no deberia estar/tener agumento por palabra clave despues de argumento por " +"palabra clave" -#~ msgid "Maximum PWM frequency is %dhz." -#~ msgstr "La frecuencia máxima del PWM es %dhz." +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" -#~ msgid "Minimum PWM frequency is 1hz." -#~ msgstr "La frecuencia mínima del PWM es 1hz" +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "" +"no todos los argumentos fueron convertidos durante el formato de string" -#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -#~ msgstr "" -#~ "PWM de múltiples frecuencias no soportado. El PWM ya se estableció a %dhz" +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "no suficientes argumentos para format string" -#~ msgid "No DAC on chip" -#~ msgstr "El chip no tiene DAC" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "el objeto '%s' no es una tupla o lista" -#~ msgid "No DMA channel found" -#~ msgstr "No se encontró el canal DMA" +#: py/obj.c +msgid "object does not support item assignment" +msgstr "el objeto no soporta la asignación de elementos" -#~ msgid "No PulseIn support for %q" -#~ msgstr "Sin soporte PulseIn para %q" +#: py/obj.c +msgid "object does not support item deletion" +msgstr "object no soporta la eliminación de elementos" -#~ msgid "No RX pin" -#~ msgstr "Sin pin RX" +#: py/obj.c +msgid "object has no len" +msgstr "el objeto no tiene longitud" -#~ msgid "No TX pin" -#~ msgstr "Sin pin TX" +#: py/obj.c +msgid "object is not subscriptable" +msgstr "el objeto no es suscriptable" -#~ msgid "No free GCLKs" -#~ msgstr "Sin GCLKs libres" +#: py/runtime.c +msgid "object not an iterator" +msgstr "objeto no es un iterator" -#~ msgid "No hardware support for analog out." -#~ msgstr "Sin soporte de hardware para analog out" +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "objeto no puede ser llamado" -#~ msgid "No hardware support on pin" -#~ msgstr "Sin soporte de hardware en pin" +#: py/sequence.c +msgid "object not in sequence" +msgstr "objeto no en secuencia" -#~ msgid "No such file/directory" -#~ msgstr "No existe el archivo/directorio" +#: py/runtime.c +msgid "object not iterable" +msgstr "objeto no iterable" -#~ msgid "Odd parity is not supported" -#~ msgstr "Paridad impar no soportada" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "el objeto de tipo '%s' no tiene len()" -#~ msgid "Only 8 or 16 bit mono with " -#~ msgstr "Solo mono de 8 o 16 bit con " +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "objeto con protocolo de buffer requerido" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Solo formato Windows, BMP sin comprimir soportado %d" +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "string de longitud impar" +#: py/objstr.c py/objstrunicode.c #, fuzzy -#~ msgid "Only slices with step=1 (aka None) are supported" -#~ msgstr "solo se admiten segmentos con step=1 (alias None)" +msgid "offset out of bounds" +msgstr "address fuera de límites" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Solo color verdadero (24 bpp o superior) BMP admitido %x" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "solo se admiten segmentos con step=1 (alias None)" -#~ msgid "Only tx supported on UART1 (GPIO2)." -#~ msgstr "Solo tx soportada en UART1 (GPIO2)" +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "ord espera un carácter" -#~ msgid "PWM not supported on pin %d" -#~ msgstr "El pin %d no soporta PWM" +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "ord() espera un carácter, pero encontró un string de longitud %d" -#~ msgid "Permission denied" -#~ msgstr "Permiso denegado" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "desbordamiento convirtiendo long int a palabra de máquina" -#~ msgid "Pin %q does not have ADC capabilities" -#~ msgstr "Pin %q no tiene capacidades de ADC" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "palette debe ser 32 bytes de largo" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "Pin no tiene capacidad ADC" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "palette_index deberia ser un int" -#~ msgid "Pin(16) doesn't support pull" -#~ msgstr "Pin(16) no soporta para pull" +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "parámetro de anotación debe ser un identificador" -#~ msgid "Pins not valid for SPI" -#~ msgstr "Pines no válidos para SPI" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "los parámetros deben ser registros en secuencia de a2 a a5" -#, fuzzy -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "Incapaz de montar de nuevo el sistema de archivos" +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" +msgstr "los parametros deben ser registros en secuencia del r0 al r3" +#: shared-bindings/displayio/Bitmap.c #, fuzzy -#~ msgid "Range out of bounds" -#~ msgstr "address fuera de límites" - -#~ msgid "Read-only filesystem" -#~ msgstr "Sistema de archivos de solo-Lectura" - -#~ msgid "Right channel unsupported" -#~ msgstr "Canal derecho no soportado" - -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "SDA o SCL necesitan una pull up" - -#~ msgid "STA must be active" -#~ msgstr "STA debe estar activo" - -#~ msgid "STA required" -#~ msgstr "STA requerido" - -#~ msgid "Sample rate must be positive" -#~ msgstr "Sample rate debe ser positivo" - -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "Frecuencia de muestreo demasiado alta. Debe ser menor a %d" - -#~ msgid "Serializer in use" -#~ msgstr "Serializer está siendo utilizado" - -#~ msgid "Splitting with sub-captures" -#~ msgstr "Dividiendo con sub-capturas" - -#~ msgid "Too many channels in sample." -#~ msgstr "Demasiados canales en sample." - -#~ msgid "Traceback (most recent call last):\n" -#~ msgstr "Traceback (ultima llamada reciente):\n" - -#~ msgid "UART(%d) does not exist" -#~ msgstr "UART(%d) no existe" - -#~ msgid "UART(1) can't read" -#~ msgstr "UART(1) no puede leer" - -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "No se pudieron asignar buffers para la conversión con signo" - -#~ msgid "Unable to find free GCLK" -#~ msgstr "No se pudo encontrar un GCLK libre" - -#~ msgid "Unable to init parser" -#~ msgstr "Incapaz de inicializar el parser" - -#~ msgid "Unable to remount filesystem" -#~ msgstr "Incapaz de montar de nuevo el sistema de archivos" - -#~ msgid "Unknown type" -#~ msgstr "Tipo desconocido" - -#~ msgid "Unsupported baudrate" -#~ msgstr "Baudrate no soportado" - -#~ msgid "Unsupported operation" -#~ msgstr "Operación no soportada" - -#~ msgid "Use esptool to erase flash and re-upload Python instead" -#~ msgstr "" -#~ "Usa esptool para borrar la flash y vuelve a cargar Python en su lugar" - -#~ msgid "Viper functions don't currently support more than 4 arguments" -#~ msgstr "funciones Viper actualmente no soportan más de 4 argumentos." - -#~ msgid "" -#~ "Welcome to Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Please visit learn.adafruit.com/category/circuitpython for project " -#~ "guides.\n" -#~ "\n" -#~ "To list built-in modules please do `help(\"modules\")`.\n" -#~ msgstr "" -#~ "Bienvenido a Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Visita learn.adafruit.com/category/circuitpython para obtener guías de " -#~ "proyectos.\n" -#~ "\n" -#~ "Para listar los módulos incorporados por favor haga `help(\"modules\")`.\n" - -#~ msgid "__init__() should return None" -#~ msgstr "__init__() deberia devolver None" - -#~ msgid "__init__() should return None, not '%s'" -#~ msgstr "__init__() deberia devolver None, no '%s'" - -#~ msgid "__new__ arg must be a user-type" -#~ msgstr "__new__ arg debe ser un user-type" - -#~ msgid "a bytes-like object is required" -#~ msgstr "se requiere un objeto bytes-like" - -#~ msgid "abort() called" -#~ msgstr "se llamó abort()" - -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "la dirección %08x no esta alineada a %d bytes" - -#~ msgid "arg is an empty sequence" -#~ msgstr "argumento es una secuencia vacía" - -#~ msgid "argument has wrong type" -#~ msgstr "el argumento tiene un tipo erroneo" - -#~ msgid "argument num/types mismatch" -#~ msgstr "argumento número/tipos no coinciden" - -#~ msgid "argument should be a '%q' not a '%q'" -#~ msgstr "argumento deberia ser un '%q' no un '%q'" - -#~ msgid "attributes not supported yet" -#~ msgstr "atributos aún no soportados" - -#~ msgid "bad compile mode" -#~ msgstr "modo de compilación erroneo" - -#~ msgid "bad conversion specifier" -#~ msgstr "especificador de conversion erroneo" - -#~ msgid "bad format string" -#~ msgstr "formato de string erroneo" - -#~ msgid "bad typecode" -#~ msgstr "typecode erroneo" - -#~ msgid "binary op %q not implemented" -#~ msgstr "operacion binaria %q no implementada" - -#~ msgid "bits must be 8" -#~ msgstr "bits debe ser 8" - -#~ msgid "bits_per_sample must be 8 or 16" -#~ msgstr "bits_per_sample debe ser 8 o 16" - -#~ msgid "branch not in range" -#~ msgstr "El argumento de chr() no esta en el rango(256)" - -#~ msgid "buffer must be a bytes-like object" -#~ msgstr "buffer debe de ser un objeto bytes-like" - -#~ msgid "buffer too long" -#~ msgstr "buffer demasiado largo" - -#~ msgid "buffers must be the same length" -#~ msgstr "los buffers deben de tener la misma longitud" - -#~ msgid "byte code not implemented" -#~ msgstr "codigo byte no implementado" - -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "bytes > 8 bits no soportados" - -#~ msgid "bytes value out of range" -#~ msgstr "valor de bytes fuera de rango" - -#~ msgid "calibration is out of range" -#~ msgstr "calibration esta fuera de rango" - -#~ msgid "calibration is read only" -#~ msgstr "calibration es de solo lectura" - -#~ msgid "calibration value out of range +/-127" -#~ msgstr "Valor de calibración fuera del rango +/-127" - -#~ msgid "can only have up to 4 parameters to Thumb assembly" -#~ msgstr "solo puede tener hasta 4 parámetros para ensamblar Thumb" - -#~ msgid "can only have up to 4 parameters to Xtensa assembly" -#~ msgstr "solo puede tener hasta 4 parámetros para ensamblador Xtensa" - -#~ msgid "can only save bytecode" -#~ msgstr "solo puede almacenar bytecode" - -#~ msgid "can query only one param" -#~ msgstr "puede consultar solo un param" - -#~ msgid "can't add special method to already-subclassed class" -#~ msgstr "no se puede agregar un método a una clase ya subclasificada" - -#~ msgid "can't assign to expression" -#~ msgstr "no se puede asignar a la expresión" - -#~ msgid "can't convert %s to complex" -#~ msgstr "no se puede convertir %s a complejo" - -#~ msgid "can't convert %s to float" -#~ msgstr "no se puede convertir %s a float" - -#~ msgid "can't convert %s to int" -#~ msgstr "no se puede convertir %s a int" - -#~ msgid "can't convert '%q' object to %q implicitly" -#~ msgstr "no se puede convertir el objeto '%q' a %q implícitamente" - -#~ msgid "can't convert NaN to int" -#~ msgstr "no se puede convertir Nan a int" - -#~ msgid "can't convert inf to int" -#~ msgstr "no se puede convertir inf en int" - -#~ msgid "can't convert to complex" -#~ msgstr "no se puede convertir a complejo" - -#~ msgid "can't convert to float" -#~ msgstr "no se puede convertir a float" - -#~ msgid "can't convert to int" -#~ msgstr "no se puede convertir a int" - -#~ msgid "can't convert to str implicitly" -#~ msgstr "no se puede convertir a str implícitamente" - -#~ msgid "can't declare nonlocal in outer code" -#~ msgstr "no se puede declarar nonlocal" - -#~ msgid "can't delete expression" -#~ msgstr "no se puede borrar la expresión" - -#~ msgid "can't do binary op between '%q' and '%q'" -#~ msgstr "no se puede hacer una operacion binaria entre '%q' y '%q'" - -#~ msgid "can't do truncated division of a complex number" -#~ msgstr "no se puede hacer la división truncada de un número complejo" - -#~ msgid "can't get AP config" -#~ msgstr "no se puede obtener AP config" - -#~ msgid "can't get STA config" -#~ msgstr "no se puede obtener STA config" - -#~ msgid "can't have multiple **x" -#~ msgstr "no puede tener multiples *x" - -#~ msgid "can't have multiple *x" -#~ msgstr "no puede tener multiples *x" - -#~ msgid "can't implicitly convert '%q' to 'bool'" -#~ msgstr "no se puede convertir implícitamente '%q' a 'bool'" - -#~ msgid "can't load from '%q'" -#~ msgstr "no se puede cargar desde '%q'" - -#~ msgid "can't load with '%q' index" -#~ msgstr "no se puede cargar con el índice '%q'" - -#~ msgid "can't pend throw to just-started generator" -#~ msgstr "no se puede colgar al generador recién iniciado" - -#~ msgid "can't send non-None value to a just-started generator" -#~ msgstr "" -#~ "no se puede enviar un valor que no sea None a un generador recién iniciado" - -#~ msgid "can't set AP config" -#~ msgstr "no se puede establecer AP config" - -#~ msgid "can't set STA config" -#~ msgstr "no se puede establecer STA config" - -#~ msgid "can't set attribute" -#~ msgstr "no se puede asignar el atributo" - -#~ msgid "can't store '%q'" -#~ msgstr "no se puede almacenar '%q'" - -#~ msgid "can't store to '%q'" -#~ msgstr "no se puede almacenar para '%q'" - -#~ msgid "can't store with '%q' index" -#~ msgstr "no se puede almacenar con el indice '%q'" - -#~ msgid "" -#~ "can't switch from automatic field numbering to manual field specification" -#~ msgstr "" -#~ "no se puede cambiar de la numeración automática de campos a la " -#~ "especificación de campo manual" - -#~ msgid "" -#~ "can't switch from manual field specification to automatic field numbering" -#~ msgstr "" -#~ "no se puede cambiar de especificación de campo manual a numeración " -#~ "automática de campos" - -#~ msgid "cannot create '%q' instances" -#~ msgstr "no se pueden crear '%q' instancias" - -#~ msgid "cannot create instance" -#~ msgstr "no se puede crear instancia" - -#~ msgid "cannot import name %q" -#~ msgstr "no se puede importar name '%q'" - -#~ msgid "cannot perform relative import" -#~ msgstr "no se puedo realizar importación relativa" - -#~ msgid "chars buffer too small" -#~ msgstr "chars buffer muy pequeño" - -#~ msgid "chr() arg not in range(0x110000)" -#~ msgstr "El argumento de chr() esta fuera de rango(0x110000)" - -#~ msgid "chr() arg not in range(256)" -#~ msgstr "El argumento de chr() no esta en el rango(256)" - -#~ msgid "complex division by zero" -#~ msgstr "división compleja por cero" - -#~ msgid "complex values not supported" -#~ msgstr "valores complejos no soportados" - -#~ msgid "compression header" -#~ msgstr "encabezado de compresión" - -#~ msgid "constant must be an integer" -#~ msgstr "constant debe ser un entero" - -#~ msgid "conversion to object" -#~ msgstr "conversión a objeto" - -#~ msgid "decimal numbers not supported" -#~ msgstr "números decimales no soportados" - -#~ msgid "default 'except' must be last" -#~ msgstr "'except' por defecto deberia estar de último" - -#~ msgid "" -#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " -#~ "= 8" -#~ msgstr "" -#~ "el buffer de destino debe ser un bytearray o array de tipo 'B' para " -#~ "bit_depth = 8" - -#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -#~ msgstr "" -#~ "el buffer de destino debe ser un array de tipo 'H' para bit_depth = 16" - -#~ msgid "destination_length must be an int >= 0" -#~ msgstr "destination_length debe ser un int >= 0" - -#~ msgid "dict update sequence has wrong length" -#~ msgstr "" -#~ "la secuencia de actualizacion del dict tiene una longitud incorrecta" - -#~ msgid "either pos or kw args are allowed" -#~ msgstr "ya sea pos o kw args son permitidos" - -#~ msgid "empty" -#~ msgstr "vacío" - -#~ msgid "empty heap" -#~ msgstr "heap vacío" - -#~ msgid "empty separator" -#~ msgstr "separator vacío" - -#~ msgid "end of format while looking for conversion specifier" -#~ msgstr "" -#~ "el final del formato mientras se busca el especificador de conversión" - -#~ msgid "error = 0x%08lX" -#~ msgstr "error = 0x%08lx" - -#~ msgid "exceptions must derive from BaseException" -#~ msgstr "las excepciones deben derivar de BaseException" - -#~ msgid "expected ':' after format specifier" -#~ msgstr "se espera ':' despues de un especificaro de tipo format" - -#~ msgid "expected tuple/list" -#~ msgstr "tupla/lista esperada" - -#~ msgid "expecting a dict for keyword args" -#~ msgstr "esperando un diccionario para argumentos por palabra clave" - -#~ msgid "expecting a pin" -#~ msgstr "esperando un pin" - -#~ msgid "expecting an assembler instruction" -#~ msgstr "esperando una instrucción de ensamblador" - -#~ msgid "expecting just a value for set" -#~ msgstr "esperando solo un valor para set" - -#~ msgid "expecting key:value for dict" -#~ msgstr "esperando la clave:valor para dict" - -#~ msgid "extra keyword arguments given" -#~ msgstr "argumento(s) por palabra clave adicionales fueron dados" - -#~ msgid "extra positional arguments given" -#~ msgstr "argumento posicional adicional dado" - -#~ msgid "ffi_prep_closure_loc" -#~ msgstr "ffi_prep_closure_loc" - -#~ msgid "first argument to super() must be type" -#~ msgstr "primer argumento para super() debe ser de tipo" - -#~ msgid "firstbit must be MSB" -#~ msgstr "firstbit debe ser MSB" - -#~ msgid "flash location must be below 1MByte" -#~ msgstr "la ubicación de la flash debe estar debajo de 1MByte" - -#~ msgid "font must be 2048 bytes long" -#~ msgstr "font debe ser 2048 bytes de largo" - -#~ msgid "format requires a dict" -#~ msgstr "format requiere un dict" - -#~ msgid "frequency can only be either 80Mhz or 160MHz" -#~ msgstr "la frecuencia solo puede ser 80MHz o 160MHz" - -#~ msgid "full" -#~ msgstr "lleno" - -#~ msgid "function does not take keyword arguments" -#~ msgstr "la función no tiene argumentos por palabra clave" - -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "la función esperaba minimo %d argumentos, tiene %d" - -#~ msgid "function got multiple values for argument '%q'" -#~ msgstr "la función tiene múltiples valores para el argumento '%q'" +msgid "pixel coordinates out of bounds" +msgstr "address fuera de límites" -#~ msgid "function missing %d required positional arguments" -#~ msgstr "a la función le hacen falta %d argumentos posicionales requeridos" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" -#~ msgid "function missing keyword-only argument" -#~ msgstr "falta palabra clave para función" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader debe ser displayio.Palette o displayio.ColorConverter" -#~ msgid "function missing required keyword argument '%q'" -#~ msgstr "la función requiere del argumento por palabra clave '%q'" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "pop de un PulseIn vacío" -#~ msgid "function missing required positional argument #%d" -#~ msgstr "la función requiere del argumento posicional #%d" +#: py/objset.c +msgid "pop from an empty set" +msgstr "pop desde un set vacío" -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "la función toma %d argumentos posicionales pero le fueron dados %d" +#: py/objlist.c +msgid "pop from empty list" +msgstr "pop desde una lista vacía" -#~ msgid "generator already executing" -#~ msgstr "generador ya se esta ejecutando" +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "popitem(): diccionario vacío" -#~ msgid "generator ignored GeneratorExit" -#~ msgstr "generador ignorado GeneratorExit" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "el 3er argumento de pow() no puede ser 0" -#~ msgid "graphic must be 2048 bytes long" -#~ msgstr "graphic debe ser 2048 bytes de largo" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "pow() con 3 argumentos requiere enteros" -#~ msgid "heap must be a list" -#~ msgstr "heap debe ser una lista" +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "desbordamiento de cola(queue)" -#~ msgid "identifier redefined as global" -#~ msgstr "identificador redefinido como global" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "" -#~ msgid "identifier redefined as nonlocal" -#~ msgstr "identificador redefinido como nonlocal" +#: shared-bindings/_pixelbuf/__init__.c +#, fuzzy +msgid "readonly attribute" +msgstr "atributo no legible" -#~ msgid "impossible baudrate" -#~ msgstr "baudrate imposible" +#: py/builtinimport.c +msgid "relative import" +msgstr "import relativo" -#~ msgid "incomplete format" -#~ msgstr "formato incompleto" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "longitud solicitada %d pero el objeto tiene longitud %d" -#~ msgid "incorrect padding" -#~ msgstr "relleno (padding) incorrecto" +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "la anotación de retorno debe ser un identificador" -#~ msgid "index out of range" -#~ msgstr "index fuera de rango" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "retorno esperado '%q' pero se obtuvo '%q'" -#~ msgid "indices must be integers" -#~ msgstr "indices deben ser enteros" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "la fila debe estar empacada y la palabra alineada" -#~ msgid "inline assembler must be a function" -#~ msgstr "ensamblador en línea debe ser una función" +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "" -#~ msgid "int() arg 2 must be >= 2 and <= 36" -#~ msgstr "int() arg 2 debe ser >= 2 y <= 36" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" +"sample_source buffer debe ser un bytearray o un array de tipo 'h', 'H', 'b' " +"o'B'" -#~ msgid "integer required" -#~ msgstr "Entero requerido" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "frecuencia de muestreo fuera de rango" -#~ msgid "invalid I2C peripheral" -#~ msgstr "periférico I2C inválido" +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "" -#~ msgid "invalid SPI peripheral" -#~ msgstr "periférico SPI inválido" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "script de compilación no soportado" -#~ msgid "invalid alarm" -#~ msgstr "alarma inválida" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#~ msgid "invalid arguments" -#~ msgstr "argumentos inválidos" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "signo no permitido en el espeficador de string format" -#~ msgid "invalid buffer length" -#~ msgstr "longitud de buffer inválida" +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "signo no permitido con el especificador integer format 'c'" -#~ msgid "invalid cert" -#~ msgstr "certificado inválido" +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "un solo '}' encontrado en format string" -#~ msgid "invalid data bits" -#~ msgstr "data bits inválidos" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "la longitud de sleep no puede ser negativa" -#~ msgid "invalid dupterm index" -#~ msgstr "index dupterm inválido" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "slice step no puede ser cero" -#~ msgid "invalid format" -#~ msgstr "formato inválido" +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "pequeño int desbordamiento" -#~ msgid "invalid format specifier" -#~ msgstr "especificador de formato inválido" +#: main.c +msgid "soft reboot\n" +msgstr "reinicio suave\n" -#~ msgid "invalid key" -#~ msgstr "llave inválida" +#: py/objstr.c +msgid "start/end indices" +msgstr "índices inicio/final" -#~ msgid "invalid micropython decorator" -#~ msgstr "decorador de micropython inválido" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y deberia ser un int" -#~ msgid "invalid pin" -#~ msgstr "pin inválido" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "" -#~ msgid "invalid stop bits" -#~ msgstr "stop bits inválidos" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop debe ser 1 o 2" -#~ msgid "invalid syntax" -#~ msgstr "sintaxis inválida" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "" -#~ msgid "invalid syntax for integer" -#~ msgstr "sintaxis inválida para entero" +#: py/stream.c +msgid "stream operation not supported" +msgstr "operación stream no soportada" -#~ msgid "invalid syntax for integer with base %d" -#~ msgstr "sintaxis inválida para entero con base %d" +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "string index fuera de rango" -#~ msgid "invalid syntax for number" -#~ msgstr "sintaxis inválida para número" +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "índices de string deben ser enteros, no %s" -#~ msgid "issubclass() arg 1 must be a class" -#~ msgstr "issubclass() arg 1 debe ser una clase" +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "string no soportado; usa bytes o bytearray" -#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" -#~ msgstr "issubclass() arg 2 debe ser una clase o tuple de clases" +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: no se puede indexar" -#~ msgid "join expects a list of str/bytes objects consistent with self object" -#~ msgstr "" -#~ "join espera una lista de objetos str/bytes consistentes con el mismo " -#~ "objeto" +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: index fuera de rango" -#~ msgid "keyword argument(s) not yet implemented - use normal args instead" -#~ msgstr "" -#~ "argumento(s) por palabra clave aún no implementados - usa argumentos " -#~ "normales en su lugar" +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: sin campos" -#~ msgid "keywords must be strings" -#~ msgstr "palabras clave deben ser strings" +#: py/objstr.c +msgid "substring not found" +msgstr "substring no encontrado" -#~ msgid "label '%q' not defined" -#~ msgstr "etiqueta '%q' no definida" +#: py/compile.c +msgid "super() can't find self" +msgstr "super() no puede encontrar self" -#~ msgid "label redefined" -#~ msgstr "etiqueta redefinida" +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "error de sintaxis en JSON" -#~ msgid "len must be multiple of 4" -#~ msgstr "len debe de ser múltiple de 4" +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "error de sintaxis en el descriptor uctypes" -#~ msgid "length argument not allowed for this type" -#~ msgstr "argumento length no permitido para este tipo" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "" -#~ msgid "lhs and rhs should be compatible" -#~ msgstr "lhs y rhs deben ser compatibles" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#~ msgid "local '%q' has type '%q' but source is '%q'" -#~ msgstr "la variable local '%q' tiene el tipo '%q' pero la fuente es '%q'" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" -#~ msgid "local '%q' used before type known" -#~ msgstr "variable local '%q' usada antes del tipo conocido" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() acepta exactamente 1 argumento" -#~ msgid "local variable referenced before assignment" -#~ msgstr "variable local referenciada antes de la asignación" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" -#~ msgid "long int not supported in this build" -#~ msgstr "long int no soportado en esta compilación" +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "bits debe ser 8" -#~ msgid "map buffer too small" -#~ msgstr "map buffer muy pequeño" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "" -#~ msgid "maximum recursion depth exceeded" -#~ msgstr "profundidad máxima de recursión excedida" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "muchos argumentos" -#~ msgid "memory allocation failed, allocating %u bytes" -#~ msgstr "la asignación de memoria falló, asignando %u bytes" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "demasiados argumentos provistos con el formato dado" -#~ msgid "memory allocation failed, allocating %u bytes for native code" -#~ msgstr "" -#~ "falló la asignación de memoria, asignando %u bytes para código nativo" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "demasiados valores para descomprimir (%d esperado)" -#~ msgid "memory allocation failed, heap is locked" -#~ msgstr "la asignación de memoria falló, el heap está bloqueado" +#: py/objstr.c +msgid "tuple index out of range" +msgstr "tuple index fuera de rango" -#~ msgid "module not found" -#~ msgstr "módulo no encontrado" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "tupla/lista tiene una longitud incorrecta" -#~ msgid "multiple *x in assignment" -#~ msgstr "múltiples *x en la asignación" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#~ msgid "multiple inheritance not supported" -#~ msgstr "herencia multiple no soportada" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "Ambos tx y rx no pueden ser None" -#~ msgid "must raise an object" -#~ msgstr "debe hacer un raise de un objeto" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "type '%q' no es un tipo de base aceptable" -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "se deben de especificar sck/mosi/miso" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "type no es un tipo de base aceptable" -#~ msgid "must use keyword argument for key function" -#~ msgstr "debe utilizar argumento de palabra clave para la función clave" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "objeto de tipo '%q' no tiene atributo '%q'" -#~ msgid "name '%q' is not defined" -#~ msgstr "name '%q' no esta definido" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "type acepta 1 o 3 argumentos" -#~ msgid "name not defined" -#~ msgstr "name no definido" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "ulonglong muy largo" -#~ msgid "name reused for argument" -#~ msgstr "nombre reusado para argumento" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "Operación unica %q no implementada" -#~ msgid "need more than %d values to unpack" -#~ msgstr "necesita más de %d valores para descomprimir" +#: py/parse.c +msgid "unexpected indent" +msgstr "sangría inesperada" -#~ msgid "negative power with no float support" -#~ msgstr "potencia negativa sin float support" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "argumento por palabra clave inesperado" -#~ msgid "negative shift count" -#~ msgstr "cuenta negativa de turnos" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "argumento por palabra clave inesperado '%q'" -#~ msgid "no active exception to reraise" -#~ msgstr "exception no activa para reraise" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" -#~ msgid "no binding for nonlocal found" -#~ msgstr "no se ha encontrado ningún enlace para nonlocal" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "sangría no coincide con ningún nivel exterior" -#~ msgid "no module named '%q'" -#~ msgstr "ningún módulo se llama '%q'" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "especificador de conversión %c desconocido" -#~ msgid "no such attribute" -#~ msgstr "no hay tal atributo" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "codigo format desconocido '%c' para el typo de objeto '%s'" -#~ msgid "non-default argument follows default argument" -#~ msgstr "argumento no predeterminado sigue argumento predeterminado" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "codigo format desconocido '%c' para el typo de objeto 'float'" -#~ msgid "non-hex digit found" -#~ msgstr "digito non-hex encontrado" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "codigo format desconocido '%c' para objeto de tipo 'str'" -#~ msgid "non-keyword arg after */**" -#~ msgstr "no deberia estar/tener agumento por palabra clave despues de */**" +#: py/compile.c +msgid "unknown type" +msgstr "tipo desconocido" -#~ msgid "non-keyword arg after keyword arg" -#~ msgstr "" -#~ "no deberia estar/tener agumento por palabra clave despues de argumento " -#~ "por palabra clave" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "tipo desconocido '%q'" -#~ msgid "not a valid ADC Channel: %d" -#~ msgstr "no es un canal ADC válido: %d" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "No coinciden '{' en format" -#~ msgid "not all arguments converted during string formatting" -#~ msgstr "" -#~ "no todos los argumentos fueron convertidos durante el formato de string" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "atributo no legible" -#~ msgid "not enough arguments for format string" -#~ msgstr "no suficientes argumentos para format string" +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "instrucción de tipo Thumb no admitida '%s' con %d argumentos" -#~ msgid "object '%s' is not a tuple or list" -#~ msgstr "el objeto '%s' no es una tupla o lista" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "instrucción Xtensa '%s' con %d argumentos no soportada" -#~ msgid "object does not support item assignment" -#~ msgstr "el objeto no soporta la asignación de elementos" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "tipo de bitmap no soportado" -#~ msgid "object does not support item deletion" -#~ msgstr "object no soporta la eliminación de elementos" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "carácter no soportado '%c' (0x%x) en índice %d" -#~ msgid "object has no len" -#~ msgstr "el objeto no tiene longitud" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "tipo no soportado para %q: '%s'" -#~ msgid "object is not subscriptable" -#~ msgstr "el objeto no es suscriptable" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "tipo de operador no soportado" -#~ msgid "object not an iterator" -#~ msgstr "objeto no es un iterator" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "tipos no soportados para %q: '%s', '%s'" -#~ msgid "object not callable" -#~ msgstr "objeto no puede ser llamado" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#~ msgid "object not in sequence" -#~ msgstr "objeto no en secuencia" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" -#~ msgid "object not iterable" -#~ msgstr "objeto no iterable" +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "numero erroneo de argumentos" -#~ msgid "object of type '%s' has no len()" -#~ msgstr "el objeto de tipo '%s' no tiene len()" +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "numero erroneo de valores a descomprimir" -#~ msgid "object with buffer protocol required" -#~ msgstr "objeto con protocolo de buffer requerido" +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "address fuera de límites" -#~ msgid "odd-length string" -#~ msgstr "string de longitud impar" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y deberia ser un int" +#: shared-module/displayio/Shape.c #, fuzzy -#~ msgid "offset out of bounds" -#~ msgstr "address fuera de límites" +msgid "y value out of bounds" +msgstr "address fuera de límites" -#~ msgid "ord expects a character" -#~ msgstr "ord espera un carácter" +#: py/objrange.c +msgid "zero step" +msgstr "paso cero" -#~ msgid "ord() expected a character, but string of length %d found" -#~ msgstr "ord() espera un carácter, pero encontró un string de longitud %d" +#~ msgid "AP required" +#~ msgstr "AP requerido" -#~ msgid "overflow converting long int to machine word" -#~ msgstr "desbordamiento convirtiendo long int a palabra de máquina" +#~ msgid "Cannot connect to AP" +#~ msgstr "No se puede conectar a AP" -#~ msgid "palette must be 32 bytes long" -#~ msgstr "palette debe ser 32 bytes de largo" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "No se puede desconectar de AP" -#~ msgid "parameter annotation must be an identifier" -#~ msgstr "parámetro de anotación debe ser un identificador" +#~ msgid "Cannot set STA config" +#~ msgstr "No se puede establecer STA config" -#~ msgid "parameters must be registers in sequence a2 to a5" -#~ msgstr "los parámetros deben ser registros en secuencia de a2 a a5" +#~ msgid "Cannot update i/f status" +#~ msgstr "No se puede actualizar i/f status" -#~ msgid "parameters must be registers in sequence r0 to r3" -#~ msgstr "los parametros deben ser registros en secuencia del r0 al r3" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "No se sabe cómo pasar objeto a función nativa" -#~ msgid "pin does not have IRQ capabilities" -#~ msgstr "pin sin capacidades IRQ" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8226 no soporta modo seguro." -#~ msgid "pop from an empty PulseIn" -#~ msgstr "pop de un PulseIn vacío" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 no soporta pull down." -#~ msgid "pop from an empty set" -#~ msgstr "pop desde un set vacío" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Error en ffi_prep_cif" -#~ msgid "pop from empty list" -#~ msgstr "pop desde una lista vacía" +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "No se puede notificar el valor del anuncio. status: 0x%02x" -#~ msgid "popitem(): dictionary is empty" -#~ msgstr "popitem(): diccionario vacío" +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "No se puede leer el valor del atributo. status 0x%02x" -#~ msgid "position must be 2-tuple" -#~ msgstr "posición debe ser 2-tuple" +#~ msgid "Function requires lock." +#~ msgstr "La función requiere lock" -#~ msgid "pow() 3rd argument cannot be 0" -#~ msgstr "el 3er argumento de pow() no puede ser 0" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 no soporta pull up." -#~ msgid "pow() with 3 arguments requires integers" -#~ msgstr "pow() con 3 argumentos requiere enteros" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "La frecuencia máxima del PWM es %dhz." -#~ msgid "queue overflow" -#~ msgstr "desbordamiento de cola(queue)" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "La frecuencia mínima del PWM es 1hz" -#, fuzzy -#~ msgid "readonly attribute" -#~ msgstr "atributo no legible" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "" +#~ "PWM de múltiples frecuencias no soportado. El PWM ya se estableció a %dhz" -#~ msgid "relative import" -#~ msgstr "import relativo" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Sin soporte PulseIn para %q" -#~ msgid "requested length %d but object has length %d" -#~ msgstr "longitud solicitada %d pero el objeto tiene longitud %d" +#~ msgid "No hardware support for analog out." +#~ msgstr "Sin soporte de hardware para analog out" -#~ msgid "return annotation must be an identifier" -#~ msgstr "la anotación de retorno debe ser un identificador" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Solo formato Windows, BMP sin comprimir soportado %d" -#~ msgid "return expected '%q' but got '%q'" -#~ msgstr "retorno esperado '%q' pero se obtuvo '%q'" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Solo color verdadero (24 bpp o superior) BMP admitido %x" -#~ msgid "" -#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " -#~ "or 'B'" -#~ msgstr "" -#~ "sample_source buffer debe ser un bytearray o un array de tipo 'h', 'H', " -#~ "'b' o'B'" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Solo tx soportada en UART1 (GPIO2)" -#~ msgid "sampling rate out of range" -#~ msgstr "frecuencia de muestreo fuera de rango" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "El pin %d no soporta PWM" -#~ msgid "scan failed" -#~ msgstr "scan ha fallado" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Pin %q no tiene capacidades de ADC" -#~ msgid "script compilation not supported" -#~ msgstr "script de compilación no soportado" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) no soporta para pull" -#~ msgid "sign not allowed in string format specifier" -#~ msgstr "signo no permitido en el espeficador de string format" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pines no válidos para SPI" -#~ msgid "sign not allowed with integer format specifier 'c'" -#~ msgstr "signo no permitido con el especificador integer format 'c'" +#~ msgid "STA must be active" +#~ msgstr "STA debe estar activo" -#~ msgid "single '}' encountered in format string" -#~ msgstr "un solo '}' encontrado en format string" +#~ msgid "STA required" +#~ msgstr "STA requerido" -#~ msgid "slice step cannot be zero" -#~ msgstr "slice step no puede ser cero" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) no existe" -#~ msgid "small int overflow" -#~ msgstr "pequeño int desbordamiento" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) no puede leer" -#~ msgid "start/end indices" -#~ msgstr "índices inicio/final" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Incapaz de montar de nuevo el sistema de archivos" -#~ msgid "stream operation not supported" -#~ msgstr "operación stream no soportada" +#~ msgid "Unknown type" +#~ msgstr "Tipo desconocido" -#~ msgid "string index out of range" -#~ msgstr "string index fuera de rango" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Usa esptool para borrar la flash y vuelve a cargar Python en su lugar" -#~ msgid "string indices must be integers, not %s" -#~ msgstr "índices de string deben ser enteros, no %s" +#~ msgid "buffer too long" +#~ msgstr "buffer demasiado largo" -#~ msgid "string not supported; use bytes or bytearray" -#~ msgstr "string no soportado; usa bytes o bytearray" +#~ msgid "can query only one param" +#~ msgstr "puede consultar solo un param" -#~ msgid "struct: cannot index" -#~ msgstr "struct: no se puede indexar" +#~ msgid "can't get AP config" +#~ msgstr "no se puede obtener AP config" -#~ msgid "struct: index out of range" -#~ msgstr "struct: index fuera de rango" +#~ msgid "can't get STA config" +#~ msgstr "no se puede obtener STA config" -#~ msgid "struct: no fields" -#~ msgstr "struct: sin campos" +#~ msgid "can't set AP config" +#~ msgstr "no se puede establecer AP config" -#~ msgid "substring not found" -#~ msgstr "substring no encontrado" +#~ msgid "can't set STA config" +#~ msgstr "no se puede establecer STA config" -#~ msgid "super() can't find self" -#~ msgstr "super() no puede encontrar self" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "ya sea pos o kw args son permitidos" -#~ msgid "syntax error in JSON" -#~ msgstr "error de sintaxis en JSON" +#~ msgid "expecting a pin" +#~ msgstr "esperando un pin" -#~ msgid "syntax error in uctypes descriptor" -#~ msgstr "error de sintaxis en el descriptor uctypes" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#~ msgid "too many values to unpack (expected %d)" -#~ msgstr "demasiados valores para descomprimir (%d esperado)" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "la ubicación de la flash debe estar debajo de 1MByte" -#~ msgid "tuple index out of range" -#~ msgstr "tuple index fuera de rango" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la frecuencia solo puede ser 80MHz o 160MHz" -#~ msgid "tuple/list has wrong length" -#~ msgstr "tupla/lista tiene una longitud incorrecta" +#~ msgid "impossible baudrate" +#~ msgstr "baudrate imposible" -#~ msgid "tx and rx cannot both be None" -#~ msgstr "Ambos tx y rx no pueden ser None" +#~ msgid "invalid alarm" +#~ msgstr "alarma inválida" -#~ msgid "type '%q' is not an acceptable base type" -#~ msgstr "type '%q' no es un tipo de base aceptable" +#~ msgid "invalid buffer length" +#~ msgstr "longitud de buffer inválida" -#~ msgid "type is not an acceptable base type" -#~ msgstr "type no es un tipo de base aceptable" +#~ msgid "invalid data bits" +#~ msgstr "data bits inválidos" -#~ msgid "type object '%q' has no attribute '%q'" -#~ msgstr "objeto de tipo '%q' no tiene atributo '%q'" +#~ msgid "invalid pin" +#~ msgstr "pin inválido" -#~ msgid "type takes 1 or 3 arguments" -#~ msgstr "type acepta 1 o 3 argumentos" +#~ msgid "invalid stop bits" +#~ msgstr "stop bits inválidos" -#~ msgid "ulonglong too large" -#~ msgstr "ulonglong muy largo" +#~ msgid "len must be multiple of 4" +#~ msgstr "len debe de ser múltiple de 4" -#~ msgid "unary op %q not implemented" -#~ msgstr "Operación unica %q no implementada" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "falló la asignación de memoria, asignando %u bytes para código nativo" -#~ msgid "unexpected indent" -#~ msgstr "sangría inesperada" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "no es un canal ADC válido: %d" -#~ msgid "unexpected keyword argument" -#~ msgstr "argumento por palabra clave inesperado" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "pin sin capacidades IRQ" -#~ msgid "unexpected keyword argument '%q'" -#~ msgstr "argumento por palabra clave inesperado '%q'" +#~ msgid "position must be 2-tuple" +#~ msgstr "posición debe ser 2-tuple" -#~ msgid "unindent does not match any outer indentation level" -#~ msgstr "sangría no coincide con ningún nivel exterior" +#~ msgid "scan failed" +#~ msgstr "scan ha fallado" #~ msgid "unknown config param" #~ msgstr "parámetro config desconocido" -#~ msgid "unknown conversion specifier %c" -#~ msgstr "especificador de conversión %c desconocido" - -#~ msgid "unknown format code '%c' for object of type '%s'" -#~ msgstr "codigo format desconocido '%c' para el typo de objeto '%s'" - -#~ msgid "unknown format code '%c' for object of type 'float'" -#~ msgstr "codigo format desconocido '%c' para el typo de objeto 'float'" - -#~ msgid "unknown format code '%c' for object of type 'str'" -#~ msgstr "codigo format desconocido '%c' para objeto de tipo 'str'" - #~ msgid "unknown status param" #~ msgstr "status param desconocido" -#~ msgid "unknown type" -#~ msgstr "tipo desconocido" - -#~ msgid "unknown type '%q'" -#~ msgstr "tipo desconocido '%q'" - -#~ msgid "unmatched '{' in format" -#~ msgstr "No coinciden '{' en format" - -#~ msgid "unreadable attribute" -#~ msgstr "atributo no legible" - -#~ msgid "unsupported Thumb instruction '%s' with %d arguments" -#~ msgstr "instrucción de tipo Thumb no admitida '%s' con %d argumentos" - -#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" -#~ msgstr "instrucción Xtensa '%s' con %d argumentos no soportada" - -#~ msgid "unsupported format character '%c' (0x%x) at index %d" -#~ msgstr "carácter no soportado '%c' (0x%x) en índice %d" - -#~ msgid "unsupported type for %q: '%s'" -#~ msgstr "tipo no soportado para %q: '%s'" - -#~ msgid "unsupported type for operator" -#~ msgstr "tipo de operador no soportado" - -#~ msgid "unsupported types for %q: '%s', '%s'" -#~ msgstr "tipos no soportados para %q: '%s', '%s'" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "wifi_set_ip_info() ha fallado" - -#~ msgid "wrong number of arguments" -#~ msgstr "numero erroneo de argumentos" - -#~ msgid "wrong number of values to unpack" -#~ msgstr "numero erroneo de valores a descomprimir" - -#~ msgid "zero step" -#~ msgstr "paso cero" diff --git a/locale/fil.po b/locale/fil.po index 6ac0df2b3..c0aaf93bb 100644 --- a/locale/fil.po +++ b/locale/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-12-20 22:15-0800\n" "Last-Translator: Timothy \n" "Language-Team: fil\n" @@ -23,16 +23,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr " File \"%q\"" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr " File \"%q\", line %d" + #: main.c msgid " output:\n" msgstr " output:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "%%c nangangailangan ng int o char" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q ay ginagamit" +#: py/obj.c +msgid "%q index out of range" +msgstr "%q indeks wala sa sakop" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "%q indeks ay dapat integers, hindi %s" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "aarehas na haba dapat ang buffer slices" @@ -42,10 +63,163 @@ msgstr "aarehas na haba dapat ang buffer slices" msgid "%q should be an int" msgstr "y ay dapat int" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "" +"Ang %q() ay kumukuha ng %d positional arguments pero %d lang ang binigay" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "'%q' argument kailangan" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "'%s' umaasa ng label" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "Inaasahan ng '%s' ang isang rehistro" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "Inaasahan ng '%s' ang isang espesyal na register" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "Inaasahan ng '%s' ang isang FPU register" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "Inaasahan ng '%s' ang isang address sa [a, b]" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "Inaasahan ng '%s' ang isang integer" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "Inaasahan ng '%s' ang hangang r%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "Inaasahan ng '%s' ay {r0, r1, …}" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "'%s' integer %d ay wala sa sakop ng %d..%d" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "'%s' integer 0x%x ay wala sa mask na sakop ng 0x%x" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "'%s' object hindi sumusuporta ng item assignment" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "'%s' object ay hindi sumusuporta sa pagtanggal ng item" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "'%s' object ay walang attribute '%q'" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "'%s' object ay hindi iterator" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "'%s' object hindi matatawag" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "'%s' object ay hindi ma i-iterable" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "'%s' object ay hindi maaaring i-subscript" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "'=' Gindi pinapayagan ang alignment sa pag specify ng string format" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "Ang 'S' at 'O' ay hindi suportadong uri ng format" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "'align' kailangan ng 1 argument" + +#: py/compile.c +msgid "'await' outside function" +msgstr "'await' sa labas ng function" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "'break' sa labas ng loop" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "'continue' sa labas ng loop" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "'data' kailangan ng hindi bababa sa 2 argument" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "'data' kailangan ng integer arguments" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "'label' kailangan ng 1 argument" + +#: py/compile.c +msgid "'return' outside function" +msgstr "'return' sa labas ng function" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "'yield' sa labas ng function" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "*x ay dapat na assignment target" + +#: py/obj.c +msgid ", in %q\n" +msgstr ", sa %q\n" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "0.0 para sa complex power" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "3-arg pow() hindi suportado" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Isang channel ng hardware interrupt ay ginagamit na" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -56,14 +230,55 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "ang palette ay dapat 32 bytes ang haba" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "Lahat ng I2C peripherals ginagamit" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "Lahat ng SPI peripherals ay ginagamit" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "All UART peripherals are in use" +msgstr "Lahat ng I2C peripherals ginagamit" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Lahat ng event channels ginagamit" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "Lahat ng sync event channels ay ginagamit" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Lahat ng timers para sa pin na ito ay ginagamit" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Lahat ng timer ginagamit" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "Hindi supportado ang AnalogOut" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "AnalogOut ay 16 bits. Value ay dapat hindi hihigit pa sa 65536." + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "Hindi supportado ang AnalogOut sa ibinigay na pin" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Isa pang send ay aktibo na" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "May halfwords (type 'H') dapat ang array" @@ -88,6 +303,18 @@ msgstr "" "Ang awtomatikong pag re-reload ay ON. i-save lamang ang mga files sa USB " "para patakbuhin sila o pasukin ang REPL para i-disable ito.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "Ang bit clock at word select dapat makibahagi sa isang clock unit" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "Bit depth ay dapat multiple ng 8." + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Ang parehong mga pin ay dapat na sumusuporta sa hardware interrupts" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "Ang liwanag ay dapat sa gitna ng 0 o 255" @@ -101,10 +328,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Mali ang size ng buffer. Dapat %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Buffer dapat ay hindi baba sa 1 na haba" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy, c-format +msgid "Bus pin %d is already in use" +msgstr "Ginagamit na ang DAC" + #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -114,6 +347,11 @@ msgstr "buffer ay dapat bytes-like object" msgid "Bytes must be between 0 and 255." msgstr "Sa gitna ng 0 o 255 dapat ang bytes." +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "Hindi maarang maglagay ng service sa Central mode" @@ -130,26 +368,56 @@ msgstr "Hindi mapalitan ang pangalan sa Central mode" msgid "Can't connect in Peripheral mode" msgstr "Hindi maconnect sa Peripheral mode" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Hindi mabura ang values" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "Hindi makakakuha ng pull habang nasa output mode" + +#: ports/nrf/common-hal/microcontroller/Processor.c +#, fuzzy +msgid "Cannot get temperature" +msgstr "Hindi makuha ang temperatura. status 0x%02x" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "Hindi maaaring output ang mga parehong channel sa parehong pin" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Hindi maaring mabasa kapag walang MISO pin." +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "Hindi ma-record sa isang file" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Hindi ma-remount '/' kapag aktibo ang USB." +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "Hindi ma-reset sa bootloader dahil walang bootloader." + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Hindi ma i-set ang value kapag ang direksyon ay input." +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "Hindi magawa ang sublcass slice" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Hindi maaaring ilipat kapag walang MOSI at MISO pin." +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "Hindi puedeng hindi sigurado ang get sizeof scalar" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Hindi maaring isulat kapag walang MOSI pin." @@ -158,6 +426,10 @@ msgstr "Hindi maaring isulat kapag walang MOSI pin." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -170,6 +442,10 @@ msgstr "Nabigo sa pag init ng Clock pin." msgid "Clock stretch too long" msgstr "Masyadong mahaba ang Clock stretch" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Clock unit ginagamit" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -179,6 +455,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "Sa gitna ng 0 o 255 dapat ang bytes." +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "Hindi ma-initialize ang UART" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Hindi ma-iallocate ang first buffer" @@ -191,10 +476,36 @@ msgstr "Hindi ma-iallocate ang second buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "Nagcrash sa HardFault_Handler.\n" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "Ginagamit na ang DAC" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy +msgid "Data 0 pin must be byte aligned" +msgstr "graphic ay dapat 2048 bytes ang haba" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "Dapat sunurin ng Data chunk ang fmt chunk" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy +msgid "Data too large for advertisement packet" +msgstr "Hindi makasya ang data sa loob ng advertisement packet" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Data too large for the advertisement packet" +msgstr "Hindi makasya ang data sa loob ng advertisement packet" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "" +"Ang kapasidad ng destinasyon ay mas maliit kaysa sa destination_length." + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -203,8 +514,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "Drive mode ay hindi ginagamit kapag ang direksyon ay input." -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "Ginagamit na ang EXTINT channel" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "May pagkakamali sa REGEX" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Umasa ng %q" @@ -214,8 +534,8 @@ msgstr "Umasa ng %q" msgid "Expected a Characteristic" msgstr "Hindi mabasa and Characteristic." -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c #, fuzzy msgid "Expected a UUID" msgstr "Umasa ng %q" @@ -225,8 +545,186 @@ msgstr "Umasa ng %q" msgid "Expected tuple of length %d, got %d" msgstr "" +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to acquire mutex" +msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Service.c +#, fuzzy, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "Nabigo sa paglagay ng characteristic, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to add service" +msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, fuzzy, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Nabigong ilaan ang RX buffer" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Nabigong ilaan ang RX buffer ng %d bytes" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to change softdevice state" +msgstr "Nabigo sa pagbago ng softdevice state, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to connect:" +msgstr "Hindi makaconnect, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to continue scanning" +msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to create mutex" +msgstr "Hindi matagumpay ang pagbuo ng mutex, status: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to discover services" +msgstr "Nabigo sa pagdiscover ng services, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get local address" +msgstr "Nabigo sa pagkuha ng local na address, , error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get softdevice state" +msgstr "Nabigo sa pagkuha ng softdevice state, error: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "Hindi matagumpay ang paglagay ng Vender Specific UUID, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to release mutex" +msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start advertising" +msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start scanning" +msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to stop advertising" +msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "Hindi maisulat ang attribute value, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" + +#: py/moduerrno.c +msgid "File exists" +msgstr "Mayroong file" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "Function nangangailangan ng lock" @@ -234,18 +732,68 @@ msgstr "Function nangangailangan ng lock" msgid "Group full" msgstr "Puno ang group" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "I/O operasyon sa saradong file" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "Hindi supportado ang operasyong I2C" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" +".mpy file hindi compatible. Maaring i-update lahat ng .mpy files. See http://" +"adafru.it/mpy-update for more info." + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "May mali sa Input/Output" + #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Mali ang BMP file" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Mali ang PWM frequency" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "Maling argumento" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Mali ang bit clock pin" + +#: ports/nrf/common-hal/busio/UART.c +msgid "Invalid buffer size" +msgstr "Mali ang buffer size" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +msgid "Invalid channel count" +msgstr "Maling bilang ng channel" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Mali ang clock pin" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "Mali ang data pin" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Mali ang direksyon." @@ -258,19 +806,37 @@ msgstr "Mali ang file" msgid "Invalid format chunk size" msgstr "Mali ang format ng chunk size" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Mali ang bilang ng bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Mali ang phase" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Mali ang pin" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Mali ang pin para sa kaliwang channel" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Mali ang pin para sa kanang channel" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "Mali ang pins" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Mali ang polarity" @@ -278,14 +844,30 @@ msgstr "Mali ang polarity" msgid "Invalid run mode." msgstr "Mali ang run mode." +#: shared-bindings/audioio/Mixer.c +msgid "Invalid voice count" +msgstr "Maling bilang ng voice" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "May hindi tama sa wave file" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "LHS ng keyword arg ay dapat na id" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" +#: py/objslice.c +msgid "Length must be an int" +msgstr "Haba ay dapat int" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "Haba ay dapat hindi negatibo" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -318,10 +900,35 @@ msgstr "CircuitPython NLR jump nabigo. Maaring memory corruption.\n" msgid "MicroPython fatal error.\n" msgstr "CircuitPython fatal na pagkakamali.\n" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "Ang delay ng startup ng mikropono ay dapat na nasa 0.0 hanggang 1.0" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Walang DAC sa chip" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "Walang DMA channel na mahanap" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Walang RX pin" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Walang TX pin" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Walang default na I2C bus" @@ -334,15 +941,36 @@ msgstr "Walang default SPI bus" msgid "No default UART bus" msgstr "Walang default UART bus" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Walang libreng GCLKs" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Walang magagamit na hardware random" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Walang support sa hardware ang pin" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "Walang file/directory" + #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Hindi maka connect sa AP" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "Hindi playing" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -350,6 +978,14 @@ msgstr "" "Object ay deinitialized at hindi na magagamit. Lumikha ng isang bagong " "Object." +#: ports/nrf/common-hal/busio/UART.c +msgid "Odd parity is not supported" +msgstr "Odd na parity ay hindi supportado" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "Tanging 8 o 16 na bit mono na may " + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -367,6 +1003,15 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Only slices with step=1 (aka None) are supported" +msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "Oversample ay dapat multiple ng 8." + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -378,6 +1023,23 @@ msgid "" msgstr "" "PWM frequency hindi writable kapag variable_frequency ay False sa pag buo." +#: py/moduerrno.c +msgid "Permission denied" +msgstr "Walang pahintulot" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "Ang pin ay walang kakayahan sa ADC" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +msgid "Plus any modules on the filesystem\n" +msgstr "Kasama ang kung ano pang modules na sa filesystem\n" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -392,23 +1054,32 @@ msgstr "Pull hindi ginagamit kapag ang direksyon ay output." msgid "RTC calibration is not supported on this board" msgstr "RTC calibration ay hindi supportado ng board na ito" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "Hindi supportado ang RTC sa board na ito" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" -msgstr "Hindi sinusuportahan ang pagbabago ng RTC sa board na ito" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Range out of bounds" +msgstr "wala sa sakop ang address" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Basahin-lamang" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "Basahin-lamang mode" + #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Basahin-lamang" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Hindi supportado ang kanang channel" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -421,15 +1092,42 @@ msgstr "Tumatakbo sa safe mode! Awtomatikong pag re-reload ay OFF.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Tumatakbo sa safe mode! Hindi tumatakbo ang nai-save na code.\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "Kailangan ng pull up resistors ang SDA o SCL" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "Sample rate ay dapat positibo" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "Sample rate ay masyadong mataas. Ito ay dapat hindi hiigit sa %d" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Serializer ginagamit" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "Slice at value iba't ibang haba." -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Hindi suportado ang Slices" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "Binibiyak gamit ang sub-captures" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "Ang laki ng stack ay dapat na hindi bababa sa 256" @@ -503,6 +1201,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Para lumabas, paki-reset ang board na wala ang " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "Sobra ang channels sa sample." + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -511,6 +1213,10 @@ msgstr "" msgid "Too many displays" msgstr "" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "Traceback (pinakahuling huling tawag): \n" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Tuple o struct_time argument kailangan" @@ -535,6 +1241,20 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Hindi mahanap ang libreng GCLK" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "Hindi ma-init ang parser" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -543,6 +1263,20 @@ msgstr "" msgid "Unable to write to nvm." msgstr "Hindi ma i-sulat sa NVM." +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy +msgid "Unexpected nrfx uuid type" +msgstr "hindi inaasahang indent" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "Hindi supportadong baudrate" + #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -552,10 +1286,20 @@ msgstr "Hindi supportadong tipo ng bitmap" msgid "Unsupported format" msgstr "Hindi supportadong format" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "Hindi sinusuportahang operasyon" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Hindi suportado ang pull value." +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "" +"Ang mga function ng Viper ay kasalukuyang hindi sumusuporta sa higit sa 4 na " +"argumento" + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Index ng Voice ay masyadong mataas" @@ -564,1732 +1308,1562 @@ msgstr "Index ng Voice ay masyadong mataas" msgid "WARNING: Your code filename has two extensions\n" msgstr "BABALA: Ang pangalan ng file ay may dalawang extension\n" -#: supervisor/shared/safe_mode.c +#: py/builtinhelp.c +#, c-format msgid "" -"You are running in safe mode which means something unanticipated happened.\n" -msgstr "Ikaw ay tumatakbo sa safe mode dahil may masamang nangyari.\n" - -#: supervisor/shared/safe_mode.c -msgid "You requested starting safe mode by " -msgstr "Ikaw ang humiling sa safe mode sa pamamagitan ng " - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "wala sa sakop ang address" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "walang laman ang address" - -#: shared-bindings/nvm/ByteArray.c -msgid "array/bytes required on right side" -msgstr "array/bytes kinakailangan sa kanang bahagi" - -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits ay dapat 7, 8 o 9" - -#: shared-module/struct/__init__.c -#, fuzzy -msgid "buffer size must match format" -msgstr "aarehas na haba dapat ang buffer slices" - -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "aarehas na haba dapat ang buffer slices" - -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -msgid "buffer too small" -msgstr "masyadong maliit ang buffer" - -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" -msgstr "hindi ma i-convert ang address sa INT" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "color buffer ay dapat na 3 bytes (RGB) o 4 bytes (RGB + pad byte)" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" -msgstr "color buffer ay dapat buffer or int" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "ang color buffer ay dapat bytearray o array na type ‘b’ or ‘B’" - -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "color ay dapat mula sa 0x000000 hangang 0xffffff" - -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "color ay dapat na int" - -#: shared-bindings/math/__init__.c -msgid "division by zero" -msgstr "dibisyon ng zero" - -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "walang laman ang sequence" - -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "end_x should be an int" -msgstr "y ay dapat int" - -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "umasa ng DigitalInOut" - -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" -msgstr "file ay dapat buksan sa byte mode" - -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "ang filesystem dapat mag bigay ng mount method" - -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "function kumukuha ng 9 arguments" - -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "mali ang step" - -#: shared-bindings/math/__init__.c -msgid "math domain error" -msgstr "may pagkakamali sa math domain" - -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "ang keywords dapat strings" - -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" -msgstr "walang magagamit na NIC" - -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" - -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "palette_index ay dapat na int" - -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "wala sa sakop ang address" - -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter" - -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "row ay dapat packed at ang word nakahanay" - -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "sleep length ay dapat hindi negatibo" - -#: main.c -msgid "soft reboot\n" -msgstr "malambot na reboot\n" - -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y ay dapat int" - -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "step ay dapat hindi zero" - -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop dapat 1 o 2" - -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop hindi maabot sa simula" - -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "ang threshold ay dapat sa range 0-65536" - -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "time.struct_time() kumukuha ng 9-sequence" - -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() kumukuha ng 1 argument" - -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "timeout >100 (units ay seconds, hindi na msecs)" - -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits ay dapat walo (8)" - -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "wala sa sakop ng timestamp ang platform time_t" - -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "masyadong maraming argumento" - -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "masyadong maraming mga argumento na ibinigay sa ibinigay na format" - -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "Hindi supportadong tipo ng bitmap" - -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" msgstr "" +"Mabuhay sa Adafruit CircuitPython %s!\n" +"\n" +"Mangyaring bisitahin ang learn.adafruit.com/category/circuitpython para sa " +"project guides.\n" +"\n" +"Para makita ang listahan ng modules, `help(“modules”)`.\n" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "x value out of bounds" -msgstr "wala sa sakop ang address" - -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y ay dapat int" - -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "wala sa sakop ang address" - -#~ msgid " File \"%q\"" -#~ msgstr " File \"%q\"" - -#~ msgid " File \"%q\", line %d" -#~ msgstr " File \"%q\", line %d" - -#~ msgid "%%c requires int or char" -#~ msgstr "%%c nangangailangan ng int o char" - -#~ msgid "%q index out of range" -#~ msgstr "%q indeks wala sa sakop" - -#~ msgid "%q indices must be integers, not %s" -#~ msgstr "%q indeks ay dapat integers, hindi %s" - -#~ msgid "%q() takes %d positional arguments but %d were given" -#~ msgstr "" -#~ "Ang %q() ay kumukuha ng %d positional arguments pero %d lang ang binigay" - -#~ msgid "'%q' argument required" -#~ msgstr "'%q' argument kailangan" - -#~ msgid "'%s' expects a label" -#~ msgstr "'%s' umaasa ng label" - -#~ msgid "'%s' expects a register" -#~ msgstr "Inaasahan ng '%s' ang isang rehistro" - -#~ msgid "'%s' expects a special register" -#~ msgstr "Inaasahan ng '%s' ang isang espesyal na register" - -#~ msgid "'%s' expects an FPU register" -#~ msgstr "Inaasahan ng '%s' ang isang FPU register" - -#~ msgid "'%s' expects an address of the form [a, b]" -#~ msgstr "Inaasahan ng '%s' ang isang address sa [a, b]" - -#~ msgid "'%s' expects an integer" -#~ msgstr "Inaasahan ng '%s' ang isang integer" - -#~ msgid "'%s' expects at most r%d" -#~ msgstr "Inaasahan ng '%s' ang hangang r%d" - -#~ msgid "'%s' expects {r0, r1, ...}" -#~ msgstr "Inaasahan ng '%s' ay {r0, r1, …}" - -#~ msgid "'%s' integer %d is not within range %d..%d" -#~ msgstr "'%s' integer %d ay wala sa sakop ng %d..%d" - -#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" -#~ msgstr "'%s' integer 0x%x ay wala sa mask na sakop ng 0x%x" - -#~ msgid "'%s' object does not support item assignment" -#~ msgstr "'%s' object hindi sumusuporta ng item assignment" - -#~ msgid "'%s' object does not support item deletion" -#~ msgstr "'%s' object ay hindi sumusuporta sa pagtanggal ng item" - -#~ msgid "'%s' object has no attribute '%q'" -#~ msgstr "'%s' object ay walang attribute '%q'" - -#~ msgid "'%s' object is not an iterator" -#~ msgstr "'%s' object ay hindi iterator" - -#~ msgid "'%s' object is not callable" -#~ msgstr "'%s' object hindi matatawag" - -#~ msgid "'%s' object is not iterable" -#~ msgstr "'%s' object ay hindi ma i-iterable" - -#~ msgid "'%s' object is not subscriptable" -#~ msgstr "'%s' object ay hindi maaaring i-subscript" - -#~ msgid "'=' alignment not allowed in string format specifier" -#~ msgstr "'=' Gindi pinapayagan ang alignment sa pag specify ng string format" - -#~ msgid "'align' requires 1 argument" -#~ msgstr "'align' kailangan ng 1 argument" - -#~ msgid "'await' outside function" -#~ msgstr "'await' sa labas ng function" - -#~ msgid "'break' outside loop" -#~ msgstr "'break' sa labas ng loop" - -#~ msgid "'continue' outside loop" -#~ msgstr "'continue' sa labas ng loop" - -#~ msgid "'data' requires at least 2 arguments" -#~ msgstr "'data' kailangan ng hindi bababa sa 2 argument" - -#~ msgid "'data' requires integer arguments" -#~ msgstr "'data' kailangan ng integer arguments" - -#~ msgid "'label' requires 1 argument" -#~ msgstr "'label' kailangan ng 1 argument" - -#~ msgid "'return' outside function" -#~ msgstr "'return' sa labas ng function" - -#~ msgid "'yield' outside function" -#~ msgstr "'yield' sa labas ng function" - -#~ msgid "*x must be assignment target" -#~ msgstr "*x ay dapat na assignment target" - -#~ msgid ", in %q\n" -#~ msgstr ", sa %q\n" - -#~ msgid "0.0 to a complex power" -#~ msgstr "0.0 para sa complex power" - -#~ msgid "3-arg pow() not supported" -#~ msgstr "3-arg pow() hindi suportado" - -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Isang channel ng hardware interrupt ay ginagamit na" - -#~ msgid "AP required" -#~ msgstr "AP kailangan" - -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Lahat ng I2C peripherals ginagamit" - -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Lahat ng SPI peripherals ay ginagamit" - -#, fuzzy -#~ msgid "All UART peripherals are in use" -#~ msgstr "Lahat ng I2C peripherals ginagamit" - -#~ msgid "All event channels in use" -#~ msgstr "Lahat ng event channels ginagamit" - -#~ msgid "All sync event channels in use" -#~ msgstr "Lahat ng sync event channels ay ginagamit" - -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "Hindi supportado ang AnalogOut" - -#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." -#~ msgstr "AnalogOut ay 16 bits. Value ay dapat hindi hihigit pa sa 65536." - -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "Hindi supportado ang AnalogOut sa ibinigay na pin" - -#~ msgid "Another send is already active" -#~ msgstr "Isa pang send ay aktibo na" - -#~ msgid "Bit clock and word select must share a clock unit" -#~ msgstr "Ang bit clock at word select dapat makibahagi sa isang clock unit" - -#~ msgid "Bit depth must be multiple of 8." -#~ msgstr "Bit depth ay dapat multiple ng 8." - -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Ang parehong mga pin ay dapat na sumusuporta sa hardware interrupts" - -#, fuzzy -#~ msgid "Bus pin %d is already in use" -#~ msgstr "Ginagamit na ang DAC" - -#~ msgid "C-level assert" -#~ msgstr "C-level assert" - -#~ msgid "Cannot connect to AP" -#~ msgstr "Hindi maka connect sa AP" - -#~ msgid "Cannot disconnect from AP" -#~ msgstr "Hindi ma disconnect sa AP" - -#~ msgid "Cannot get pull while in output mode" -#~ msgstr "Hindi makakakuha ng pull habang nasa output mode" - -#, fuzzy -#~ msgid "Cannot get temperature" -#~ msgstr "Hindi makuha ang temperatura. status 0x%02x" - -#~ msgid "Cannot output both channels on the same pin" -#~ msgstr "Hindi maaaring output ang mga parehong channel sa parehong pin" - -#~ msgid "Cannot record to a file" -#~ msgstr "Hindi ma-record sa isang file" - -#~ msgid "Cannot reset into bootloader because no bootloader is present." -#~ msgstr "Hindi ma-reset sa bootloader dahil walang bootloader." - -#~ msgid "Cannot set STA config" -#~ msgstr "Hindi ma-set ang STA Config" - -#~ msgid "Cannot subclass slice" -#~ msgstr "Hindi magawa ang sublcass slice" - -#~ msgid "Cannot unambiguously get sizeof scalar" -#~ msgstr "Hindi puedeng hindi sigurado ang get sizeof scalar" - -#~ msgid "Cannot update i/f status" -#~ msgstr "Hindi ma-update i/f status" - -#~ msgid "Clock unit in use" -#~ msgstr "Clock unit ginagamit" - -#~ msgid "Could not initialize UART" -#~ msgstr "Hindi ma-initialize ang UART" - -#~ msgid "DAC already in use" -#~ msgstr "Ginagamit na ang DAC" - -#, fuzzy -#~ msgid "Data 0 pin must be byte aligned" -#~ msgstr "graphic ay dapat 2048 bytes ang haba" - -#, fuzzy -#~ msgid "Data too large for advertisement packet" -#~ msgstr "Hindi makasya ang data sa loob ng advertisement packet" - -#, fuzzy -#~ msgid "Data too large for the advertisement packet" -#~ msgstr "Hindi makasya ang data sa loob ng advertisement packet" - -#~ msgid "Destination capacity is smaller than destination_length." -#~ msgstr "" -#~ "Ang kapasidad ng destinasyon ay mas maliit kaysa sa destination_length." +#: supervisor/shared/safe_mode.c +msgid "" +"You are running in safe mode which means something unanticipated happened.\n" +msgstr "Ikaw ay tumatakbo sa safe mode dahil may masamang nangyari.\n" -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "Hindi alam ipasa ang object sa native function" +#: supervisor/shared/safe_mode.c +msgid "You requested starting safe mode by " +msgstr "Ikaw ang humiling sa safe mode sa pamamagitan ng " -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "Walang safemode support ang ESP8266." +#: py/objtype.c +msgid "__init__() should return None" +msgstr "__init __ () dapat magbalik na None" -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "Walang pull down support ang ESP8266." +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "__init__() dapat magbalink na None, hindi '%s'" -#~ msgid "EXTINT channel already in use" -#~ msgstr "Ginagamit na ang EXTINT channel" +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "__new__ arg ay dapat na user-type" -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Pagkakamali sa ffi_prep_cif" +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "a bytes-like object ay kailangan" -#~ msgid "Error in regex" -#~ msgstr "May pagkakamali sa REGEX" +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "abort() tinawag" -#, fuzzy -#~ msgid "Failed to acquire mutex" -#~ msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "address %08x ay hindi pantay sa %d bytes" -#, fuzzy -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "Nabigo sa pag kuha ng mutex, status: 0x%08lX" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "address out of bounds" +msgstr "wala sa sakop ang address" -#, fuzzy -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "Nabigo sa paglagay ng characteristic, status: 0x%08lX" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "walang laman ang address" -#, fuzzy -#~ msgid "Failed to add service" -#~ msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "arg ay walang laman na sequence" -#, fuzzy -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "Hindi matagumpay ang paglagay ng service, status: 0x%08lX" +#: py/runtime.c +msgid "argument has wrong type" +msgstr "may maling type ang argument" -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Nabigong ilaan ang RX buffer" +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "hindi tugma ang argument num/types" -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Nabigong ilaan ang RX buffer ng %d bytes" +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "argument ay dapat na '%q' hindi '%q'" -#, fuzzy -#~ msgid "Failed to change softdevice state" -#~ msgstr "Nabigo sa pagbago ng softdevice state, error: 0x%08lX" +#: py/objarray.c shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "array/bytes kinakailangan sa kanang bahagi" -#, fuzzy -#~ msgid "Failed to connect:" -#~ msgstr "Hindi makaconnect, status: 0x%08lX" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "attributes hindi sinusuportahan" -#, fuzzy -#~ msgid "Failed to continue scanning" -#~ msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" -#, fuzzy -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "Hindi maituloy ang pag scan, status: 0x%0xlX" +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "masamang mode ng compile" -#, fuzzy -#~ msgid "Failed to create mutex" -#~ msgstr "Hindi matagumpay ang pagbuo ng mutex, status: 0x%0xlX" +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "masamang pag convert na specifier" -#, fuzzy -#~ msgid "Failed to discover services" -#~ msgstr "Nabigo sa pagdiscover ng services, status: 0x%08lX" +#: py/objstr.c +msgid "bad format string" +msgstr "maling format ang string" -#, fuzzy -#~ msgid "Failed to get local address" -#~ msgstr "Nabigo sa pagkuha ng local na address, , error: 0x%08lX" +#: py/binary.c +msgid "bad typecode" +msgstr "masamang typecode" -#, fuzzy -#~ msgid "Failed to get softdevice state" -#~ msgstr "Nabigo sa pagkuha ng softdevice state, error: 0x%08lX" +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "binary op %q hindi implemented" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Hindi mabalitaan ang attribute value, status: 0x%08lX" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits ay dapat 7, 8 o 9" -#, fuzzy -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "bits ay dapat walo (8)" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" +#: shared-bindings/audioio/Mixer.c +msgid "bits_per_sample must be 8 or 16" +msgstr "bits_per_sample ay dapat 8 o 16" -#, fuzzy -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" +#: py/emitinlinethumb.c +msgid "branch not in range" +msgstr "branch wala sa range" -#, fuzzy -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "" -#~ "Hindi matagumpay ang paglagay ng Vender Specific UUID, status: 0x%08lX" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" -#, fuzzy -#~ msgid "Failed to release mutex" -#~ msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "buffer ay dapat bytes-like object" +#: shared-module/struct/__init__.c #, fuzzy -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" +msgid "buffer size must match format" +msgstr "aarehas na haba dapat ang buffer slices" -#, fuzzy -#~ msgid "Failed to start advertising" -#~ msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "aarehas na haba dapat ang buffer slices" -#, fuzzy -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "masyadong maliit ang buffer" -#, fuzzy -#~ msgid "Failed to start scanning" -#~ msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "ang buffers ay dapat parehas sa haba" -#, fuzzy -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" -#, fuzzy -#~ msgid "Failed to stop advertising" -#~ msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" +#: py/vm.c +msgid "byte code not implemented" +msgstr "byte code hindi pa implemented" -#, fuzzy -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" -#, fuzzy -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "Hindi maisulat ang attribute value, status: 0x%08lX" +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "hindi sinusuportahan ang bytes > 8 bits" -#, fuzzy -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "Hindi maisulat ang gatts value, status: 0x%08lX" +#: py/objstr.c +msgid "bytes value out of range" +msgstr "bytes value wala sa sakop" -#~ msgid "File exists" -#~ msgstr "Mayroong file" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "kalibrasion ay wala sa sakop" -#~ msgid "Function requires lock." -#~ msgstr "Kailangan ng lock ang function." +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "pagkakalibrate ay basahin lamang" -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "Walang pull down support ang GPI016." +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "ang halaga ng pagkakalibrate ay wala sa sakop +/-127" -#~ msgid "I/O operation on closed file" -#~ msgstr "I/O operasyon sa saradong file" +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Thumb assembly" -#~ msgid "I2C operation not supported" -#~ msgstr "Hindi supportado ang operasyong I2C" +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "maaari lamang magkaroon ng hanggang 4 na parameter sa Xtensa assembly" -#~ msgid "" -#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." -#~ "it/mpy-update for more info." -#~ msgstr "" -#~ ".mpy file hindi compatible. Maaring i-update lahat ng .mpy files. See " -#~ "http://adafru.it/mpy-update for more info." +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "maaring i-save lamang ang bytecode" -#~ msgid "Input/output error" -#~ msgstr "May mali sa Input/Output" +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "" +"hindi madagdag ang isang espesyal na method sa isang na i-subclass na class" -#~ msgid "Invalid argument" -#~ msgstr "Maling argumento" +#: py/compile.c +msgid "can't assign to expression" +msgstr "hindi ma i-assign sa expression" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Mali ang bit clock pin" +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "hindi ma-convert %s sa complex" -#~ msgid "Invalid buffer size" -#~ msgstr "Mali ang buffer size" +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "hindi ma-convert %s sa int" -#~ msgid "Invalid channel count" -#~ msgstr "Maling bilang ng channel" +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "hindi ma-convert %s sa int" -#~ msgid "Invalid clock pin" -#~ msgstr "Mali ang clock pin" +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig" -#~ msgid "Invalid data pin" -#~ msgstr "Mali ang data pin" +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "hindi ma i-convert NaN sa int" -#~ msgid "Invalid pin for left channel" -#~ msgstr "Mali ang pin para sa kaliwang channel" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "hindi ma i-convert ang address sa INT" -#~ msgid "Invalid pin for right channel" -#~ msgstr "Mali ang pin para sa kanang channel" +#: py/objint.c +msgid "can't convert inf to int" +msgstr "hindi ma i-convert inf sa int" -#~ msgid "Invalid pins" -#~ msgstr "Mali ang pins" +#: py/obj.c +msgid "can't convert to complex" +msgstr "hindi ma-convert sa complex" -#~ msgid "Invalid voice count" -#~ msgstr "Maling bilang ng voice" +#: py/obj.c +msgid "can't convert to float" +msgstr "hindi ma-convert sa float" -#~ msgid "LHS of keyword arg must be an id" -#~ msgstr "LHS ng keyword arg ay dapat na id" +#: py/obj.c +msgid "can't convert to int" +msgstr "hindi ma-convert sa int" -#~ msgid "Length must be an int" -#~ msgstr "Haba ay dapat int" +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "hindi ma i-convert sa string ng walang pahiwatig" -#~ msgid "Length must be non-negative" -#~ msgstr "Haba ay dapat hindi negatibo" +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "hindi madeclare nonlocal sa outer code" -#~ msgid "Maximum PWM frequency is %dhz." -#~ msgstr "Pinakamataas na PWM frequency ay %dhz." +#: py/compile.c +msgid "can't delete expression" +msgstr "hindi mabura ang expression" -#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" -#~ msgstr "Ang delay ng startup ng mikropono ay dapat na nasa 0.0 hanggang 1.0" +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "hindi magawa ang binary op sa gitna ng '%q' at '%q'" -#~ msgid "Minimum PWM frequency is 1hz." -#~ msgstr "Pinakamababang PWM frequency ay 1hz." +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "" +"hindi maaaring gawin ang truncated division ng isang kumplikadong numero" -#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -#~ msgstr "" -#~ "Hindi sinusuportahan ang maraming mga PWM frequency. PWM na naka-set sa " -#~ "%dhz." +#: py/compile.c +msgid "can't have multiple **x" +msgstr "hindi puede ang maraming **x" -#~ msgid "No DAC on chip" -#~ msgstr "Walang DAC sa chip" +#: py/compile.c +msgid "can't have multiple *x" +msgstr "hindi puede ang maraming *x" -#~ msgid "No DMA channel found" -#~ msgstr "Walang DMA channel na mahanap" +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "hindi maaaring ma-convert ang '% qt' sa 'bool'" -#~ msgid "No PulseIn support for %q" -#~ msgstr "Walang PulseIn support sa %q" +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "hidi ma i-load galing sa '%q'" -#~ msgid "No RX pin" -#~ msgstr "Walang RX pin" +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "hindi ma i-load gamit ng '%q' na index" -#~ msgid "No TX pin" -#~ msgstr "Walang TX pin" +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "hindi mapadala ang send throw sa isang kaka umpisang generator" -#~ msgid "No free GCLKs" -#~ msgstr "Walang libreng GCLKs" +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator" -#~ msgid "No hardware support for analog out." -#~ msgstr "Hindi supportado ng hardware ang analog out." +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "hindi ma i-set ang attribute" -#~ msgid "No hardware support on pin" -#~ msgstr "Walang support sa hardware ang pin" +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "hindi ma i-store ang '%q'" -#~ msgid "No such file/directory" -#~ msgstr "Walang file/directory" +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "hindi ma i-store sa '%q'" -#~ msgid "Not playing" -#~ msgstr "Hindi playing" +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "hindi ma i-store gamit ng '%q' na index" -#~ msgid "Odd parity is not supported" -#~ msgstr "Odd na parity ay hindi supportado" +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" +"hindi mapalitan ang awtomatikong field numbering sa manual field " +"specification" -#~ msgid "Only 8 or 16 bit mono with " -#~ msgstr "Tanging 8 o 16 na bit mono na may " +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" +"hindi mapalitan ang manual field specification sa awtomatikong field " +"numbering" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Tanging Windows format, uncompressed BMP lamang ang supportado %d" +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "hindi magawa '%q' instances" -#, fuzzy -#~ msgid "Only slices with step=1 (aka None) are supported" -#~ msgstr "" -#~ "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" +#: py/objtype.c +msgid "cannot create instance" +msgstr "hindi magawa ang instance" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Dapat true color (24 bpp o mas mataas) BMP lamang ang supportado %x" +#: py/runtime.c +msgid "cannot import name %q" +msgstr "hindi ma-import ang name %q" -#~ msgid "Only tx supported on UART1 (GPIO2)." -#~ msgstr "Tanging suportado ang TX sa UART1 (GPIO2)." +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "hindi maaring isagawa ang relative import" -#~ msgid "Oversample must be multiple of 8." -#~ msgstr "Oversample ay dapat multiple ng 8." +#: py/emitnative.c +msgid "casting" +msgstr "casting" -#~ msgid "PWM not supported on pin %d" -#~ msgstr "Walang PWM support sa pin %d" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" -#~ msgid "Permission denied" -#~ msgstr "Walang pahintulot" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "masyadong maliit ang buffer" -#~ msgid "Pin %q does not have ADC capabilities" -#~ msgstr "Walang kakayahang ADC ang pin %q" +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "chr() arg wala sa sakop ng range(0x110000)" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "Ang pin ay walang kakayahan sa ADC" +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "chr() arg wala sa sakop ng range(256)" -#~ msgid "Pin(16) doesn't support pull" -#~ msgstr "Walang pull support ang Pin(16)" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "color buffer ay dapat na 3 bytes (RGB) o 4 bytes (RGB + pad byte)" -#~ msgid "Pins not valid for SPI" -#~ msgstr "Mali ang pins para sa SPI" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "color buffer ay dapat buffer or int" -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "Kasama ang kung ano pang modules na sa filesystem\n" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "ang color buffer ay dapat bytearray o array na type ‘b’ or ‘B’" -#, fuzzy -#~ msgid "Range out of bounds" -#~ msgstr "wala sa sakop ang address" +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "color ay dapat mula sa 0x000000 hangang 0xffffff" -#~ msgid "Read-only filesystem" -#~ msgstr "Basahin-lamang mode" +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "color ay dapat na int" -#~ msgid "Right channel unsupported" -#~ msgstr "Hindi supportado ang kanang channel" +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "kumplikadong dibisyon sa pamamagitan ng zero" -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "Kailangan ng pull up resistors ang SDA o SCL" +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "kumplikadong values hindi sinusuportahan" -#~ msgid "STA must be active" -#~ msgstr "Dapat aktibo ang STA" +#: extmod/moduzlib.c +msgid "compression header" +msgstr "compression header" -#~ msgid "STA required" -#~ msgstr "STA kailangan" +#: py/parse.c +msgid "constant must be an integer" +msgstr "constant ay dapat na integer" -#~ msgid "Sample rate must be positive" -#~ msgstr "Sample rate ay dapat positibo" +#: py/emitnative.c +msgid "conversion to object" +msgstr "kombersyon to object" -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "Sample rate ay masyadong mataas. Ito ay dapat hindi hiigit sa %d" +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "decimal numbers hindi sinusuportahan" -#~ msgid "Serializer in use" -#~ msgstr "Serializer ginagamit" +#: py/compile.c +msgid "default 'except' must be last" +msgstr "default 'except' ay dapat sa huli" -#~ msgid "Splitting with sub-captures" -#~ msgstr "Binibiyak gamit ang sub-captures" +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" +"ang destination buffer ay dapat na isang bytearray o array ng uri na 'B' " +"para sa bit_depth = 8" -#~ msgid "Too many channels in sample." -#~ msgstr "Sobra ang channels sa sample." +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" +"ang destination buffer ay dapat na isang array ng uri 'H' para sa bit_depth " +"= 16" -#~ msgid "Traceback (most recent call last):\n" -#~ msgstr "Traceback (pinakahuling huling tawag): \n" +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "ang destination_length ay dapat na isang int >= 0" -#~ msgid "UART(%d) does not exist" -#~ msgstr "Walang UART(%d)" +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "may mali sa haba ng dict update sequence" -#~ msgid "UART(1) can't read" -#~ msgstr "Hindi mabasa ang UART(1)" +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "dibisyon ng zero" -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "Hindi ma-allocate ang buffers para sa naka-sign na conversion" +#: py/objdeque.c +msgid "empty" +msgstr "walang laman" -#~ msgid "Unable to find free GCLK" -#~ msgstr "Hindi mahanap ang libreng GCLK" +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "walang laman ang heap" -#~ msgid "Unable to init parser" -#~ msgstr "Hindi ma-init ang parser" +#: py/objstr.c +msgid "empty separator" +msgstr "walang laman na separator" -#~ msgid "Unable to remount filesystem" -#~ msgstr "Hindi ma-remount ang filesystem" +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "walang laman ang sequence" +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "sa huli ng format habang naghahanap sa conversion specifier" + +#: shared-bindings/displayio/Shape.c #, fuzzy -#~ msgid "Unexpected nrfx uuid type" -#~ msgstr "hindi inaasahang indent" +msgid "end_x should be an int" +msgstr "y ay dapat int" -#~ msgid "Unknown type" -#~ msgstr "Hindi alam ang type" +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "" -#~ msgid "Unsupported baudrate" -#~ msgstr "Hindi supportadong baudrate" +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "ang mga exceptions ay dapat makuha mula sa BaseException" -#~ msgid "Unsupported operation" -#~ msgstr "Hindi sinusuportahang operasyon" +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "umaasa ng ':' pagkatapos ng format specifier" -#~ msgid "Use esptool to erase flash and re-upload Python instead" -#~ msgstr "" -#~ "Gamitin ang esptool upang burahin ang flash at muling i-upload ang Python" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "umasa ng DigitalInOut" -#~ msgid "Viper functions don't currently support more than 4 arguments" -#~ msgstr "" -#~ "Ang mga function ng Viper ay kasalukuyang hindi sumusuporta sa higit sa 4 " -#~ "na argumento" - -#~ msgid "" -#~ "Welcome to Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Please visit learn.adafruit.com/category/circuitpython for project " -#~ "guides.\n" -#~ "\n" -#~ "To list built-in modules please do `help(\"modules\")`.\n" -#~ msgstr "" -#~ "Mabuhay sa Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Mangyaring bisitahin ang learn.adafruit.com/category/circuitpython para " -#~ "sa project guides.\n" -#~ "\n" -#~ "Para makita ang listahan ng modules, `help(“modules”)`.\n" +#: py/obj.c +msgid "expected tuple/list" +msgstr "umaasa ng tuple/list" -#~ msgid "[addrinfo error %d]" -#~ msgstr "[addrinfo error %d]" +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "umaasa ng dict para sa keyword args" -#~ msgid "__init__() should return None" -#~ msgstr "__init __ () dapat magbalik na None" +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "umaasa ng assembler instruction" -#~ msgid "__init__() should return None, not '%s'" -#~ msgstr "__init__() dapat magbalink na None, hindi '%s'" +#: py/compile.c +msgid "expecting just a value for set" +msgstr "umaasa sa value para sa set" -#~ msgid "__new__ arg must be a user-type" -#~ msgstr "__new__ arg ay dapat na user-type" +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "umaasang key: halaga para sa dict" -#~ msgid "a bytes-like object is required" -#~ msgstr "a bytes-like object ay kailangan" +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "dagdag na keyword argument na ibinigay" -#~ msgid "abort() called" -#~ msgstr "abort() tinawag" +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "dagdag na positional argument na ibinigay" -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "address %08x ay hindi pantay sa %d bytes" +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "file ay dapat buksan sa byte mode" -#~ msgid "arg is an empty sequence" -#~ msgstr "arg ay walang laman na sequence" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "ang filesystem dapat mag bigay ng mount method" -#~ msgid "argument has wrong type" -#~ msgstr "may maling type ang argument" +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "unang argument ng super() ay dapat type" -#~ msgid "argument num/types mismatch" -#~ msgstr "hindi tugma ang argument num/types" +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "firstbit ay dapat MSB" -#~ msgid "argument should be a '%q' not a '%q'" -#~ msgstr "argument ay dapat na '%q' hindi '%q'" +#: py/objint.c +msgid "float too big" +msgstr "masyadong malaki ang float" -#~ msgid "attributes not supported yet" -#~ msgstr "attributes hindi sinusuportahan" +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "font ay dapat 2048 bytes ang haba" -#~ msgid "bad compile mode" -#~ msgstr "masamang mode ng compile" +#: py/objstr.c +msgid "format requires a dict" +msgstr "kailangan ng format ng dict" -#~ msgid "bad conversion specifier" -#~ msgstr "masamang pag convert na specifier" +#: py/objdeque.c +msgid "full" +msgstr "puno" -#~ msgid "bad format string" -#~ msgstr "maling format ang string" +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "ang function ay hindi kumukuha ng mga argumento ng keyword" -#~ msgid "bad typecode" -#~ msgstr "masamang typecode" +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "function na inaasahang %d ang argumento, ngunit %d ang nakuha" -#~ msgid "binary op %q not implemented" -#~ msgstr "binary op %q hindi implemented" +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "ang function ay nakakuha ng maraming values para sa argument '%q'" -#~ msgid "bits must be 8" -#~ msgstr "bits ay dapat walo (8)" +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "function kulang ng %d required na positional arguments" -#~ msgid "bits_per_sample must be 8 or 16" -#~ msgstr "bits_per_sample ay dapat 8 o 16" +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "function nangangailangan ng keyword-only argument" -#~ msgid "branch not in range" -#~ msgstr "branch wala sa range" +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "function nangangailangan ng keyword argument '%q'" -#~ msgid "buffer must be a bytes-like object" -#~ msgstr "buffer ay dapat bytes-like object" +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "function nangangailangan ng positional argument #%d" -#~ msgid "buffer too long" -#~ msgstr "masyadong mahaba ng buffer" +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "" +"ang function ay kumuhuha ng %d positional arguments ngunit %d ang ibinigay" -#~ msgid "buffers must be the same length" -#~ msgstr "ang buffers ay dapat parehas sa haba" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "function kumukuha ng 9 arguments" -#~ msgid "byte code not implemented" -#~ msgstr "byte code hindi pa implemented" +#: py/objgenerator.c +msgid "generator already executing" +msgstr "insinasagawa na ng generator" -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "hindi sinusuportahan ang bytes > 8 bits" +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "hindi pinansin ng generator ang GeneratorExit" -#~ msgid "bytes value out of range" -#~ msgstr "bytes value wala sa sakop" +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "graphic ay dapat 2048 bytes ang haba" -#~ msgid "calibration is out of range" -#~ msgstr "kalibrasion ay wala sa sakop" +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "list dapat ang heap" -#~ msgid "calibration is read only" -#~ msgstr "pagkakalibrate ay basahin lamang" +#: py/compile.c +msgid "identifier redefined as global" +msgstr "identifier ginawang global" -#~ msgid "calibration value out of range +/-127" -#~ msgstr "ang halaga ng pagkakalibrate ay wala sa sakop +/-127" +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "identifier ginawang nonlocal" -#~ msgid "can only have up to 4 parameters to Thumb assembly" -#~ msgstr "" -#~ "maaari lamang magkaroon ng hanggang 4 na parameter sa Thumb assembly" +#: py/objstr.c +msgid "incomplete format" +msgstr "hindi kumpleto ang format" -#~ msgid "can only have up to 4 parameters to Xtensa assembly" -#~ msgstr "" -#~ "maaari lamang magkaroon ng hanggang 4 na parameter sa Xtensa assembly" +#: py/objstr.c +msgid "incomplete format key" +msgstr "hindi kumpleto ang format key" -#~ msgid "can only save bytecode" -#~ msgstr "maaring i-save lamang ang bytecode" +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "mali ang padding" -#~ msgid "can query only one param" -#~ msgstr "maaaring i-query lamang ang isang param" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "index wala sa sakop" -#~ msgid "can't add special method to already-subclassed class" -#~ msgstr "" -#~ "hindi madagdag ang isang espesyal na method sa isang na i-subclass na " -#~ "class" +#: py/obj.c +msgid "indices must be integers" +msgstr "ang mga indeks ay dapat na integer" -#~ msgid "can't assign to expression" -#~ msgstr "hindi ma i-assign sa expression" +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "inline assembler ay dapat na function" -#~ msgid "can't convert %s to complex" -#~ msgstr "hindi ma-convert %s sa complex" +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "int() arg 2 ay dapat >=2 at <= 36" -#~ msgid "can't convert %s to float" -#~ msgstr "hindi ma-convert %s sa int" +#: py/objstr.c +msgid "integer required" +msgstr "kailangan ng int" -#~ msgid "can't convert %s to int" -#~ msgstr "hindi ma-convert %s sa int" +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" -#~ msgid "can't convert '%q' object to %q implicitly" -#~ msgstr "" -#~ "hindi maaaring i-convert ang '%q' na bagay sa %q nang walang pahiwatig" +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "maling I2C peripheral" -#~ msgid "can't convert NaN to int" -#~ msgstr "hindi ma i-convert NaN sa int" +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "hindi wastong SPI peripheral" -#~ msgid "can't convert inf to int" -#~ msgstr "hindi ma i-convert inf sa int" +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "mali ang mga argumento" -#~ msgid "can't convert to complex" -#~ msgstr "hindi ma-convert sa complex" +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "mali ang cert" -#~ msgid "can't convert to float" -#~ msgstr "hindi ma-convert sa float" +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "mali ang dupterm index" -#~ msgid "can't convert to int" -#~ msgstr "hindi ma-convert sa int" +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "hindi wastong pag-format" -#~ msgid "can't convert to str implicitly" -#~ msgstr "hindi ma i-convert sa string ng walang pahiwatig" +#: py/objstr.c +msgid "invalid format specifier" +msgstr "mali ang format specifier" -#~ msgid "can't declare nonlocal in outer code" -#~ msgstr "hindi madeclare nonlocal sa outer code" +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "mali ang key" -#~ msgid "can't delete expression" -#~ msgstr "hindi mabura ang expression" +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "mali ang micropython decorator" -#~ msgid "can't do binary op between '%q' and '%q'" -#~ msgstr "hindi magawa ang binary op sa gitna ng '%q' at '%q'" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "mali ang step" -#~ msgid "can't do truncated division of a complex number" -#~ msgstr "" -#~ "hindi maaaring gawin ang truncated division ng isang kumplikadong numero" +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "mali ang sintaks" -#~ msgid "can't get AP config" -#~ msgstr "hindi makuha ang AP config" +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "maling sintaks sa integer" -#~ msgid "can't get STA config" -#~ msgstr "hindi makuha ang STA config" +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "maling sintaks sa integer na may base %d" -#~ msgid "can't have multiple **x" -#~ msgstr "hindi puede ang maraming **x" +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "maling sintaks sa number" -#~ msgid "can't have multiple *x" -#~ msgstr "hindi puede ang maraming *x" +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "issubclass() arg 1 ay dapat na class" -#~ msgid "can't implicitly convert '%q' to 'bool'" -#~ msgstr "hindi maaaring ma-convert ang '% qt' sa 'bool'" +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "issubclass() arg 2 ay dapat na class o tuple ng classes" -#~ msgid "can't load from '%q'" -#~ msgstr "hidi ma i-load galing sa '%q'" +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" +"join umaaasang may listahan ng str/bytes objects na naalinsunod sa self " +"object" -#~ msgid "can't load with '%q' index" -#~ msgstr "hindi ma i-load gamit ng '%q' na index" +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" +"kindi pa ipinapatupad ang (mga) argument(s) ng keyword - gumamit ng normal " +"args" -#~ msgid "can't pend throw to just-started generator" -#~ msgstr "hindi mapadala ang send throw sa isang kaka umpisang generator" +#: py/bc.c +msgid "keywords must be strings" +msgstr "ang keywords dapat strings" -#~ msgid "can't send non-None value to a just-started generator" -#~ msgstr "hindi mapadala ang non-None value sa isang kaka umpisang generator" +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "label '%d' kailangan na i-define" -#~ msgid "can't set AP config" -#~ msgstr "hindi makuha ang AP config" +#: py/compile.c +msgid "label redefined" +msgstr "ang label ay na-define ulit" -#~ msgid "can't set STA config" -#~ msgstr "hindi makuha ang STA config" +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "length argument ay walang pahintulot sa ganitong type" -#~ msgid "can't set attribute" -#~ msgstr "hindi ma i-set ang attribute" +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "lhs at rhs ay dapat magkasundo" -#~ msgid "can't store '%q'" -#~ msgstr "hindi ma i-store ang '%q'" +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "local '%q' ay may type '%q' pero ang source ay '%q'" -#~ msgid "can't store to '%q'" -#~ msgstr "hindi ma i-store sa '%q'" +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "local '%q' ginamit bago alam ang type" -#~ msgid "can't store with '%q' index" -#~ msgstr "hindi ma i-store gamit ng '%q' na index" +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "local variable na reference bago na i-assign" -#~ msgid "" -#~ "can't switch from automatic field numbering to manual field specification" -#~ msgstr "" -#~ "hindi mapalitan ang awtomatikong field numbering sa manual field " -#~ "specification" +#: py/objint.c +msgid "long int not supported in this build" +msgstr "long int hindi sinusuportahan sa build na ito" -#~ msgid "" -#~ "can't switch from manual field specification to automatic field numbering" -#~ msgstr "" -#~ "hindi mapalitan ang manual field specification sa awtomatikong field " -#~ "numbering" +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "masyadong maliit ang buffer map" -#~ msgid "cannot create '%q' instances" -#~ msgstr "hindi magawa '%q' instances" +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "may pagkakamali sa math domain" -#~ msgid "cannot create instance" -#~ msgstr "hindi magawa ang instance" +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "lumagpas ang maximum recursion depth" -#~ msgid "cannot import name %q" -#~ msgstr "hindi ma-import ang name %q" +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "nabigo ang paglalaan ng memorya, paglalaan ng %u bytes" -#~ msgid "cannot perform relative import" -#~ msgstr "hindi maaring isagawa ang relative import" +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock" -#~ msgid "casting" -#~ msgstr "casting" +#: py/builtinimport.c +msgid "module not found" +msgstr "module hindi nakita" -#~ msgid "chars buffer too small" -#~ msgstr "masyadong maliit ang buffer" +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "maramihang *x sa assignment" -#~ msgid "chr() arg not in range(0x110000)" -#~ msgstr "chr() arg wala sa sakop ng range(0x110000)" +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "maraming bases ay may instance lay-out conflict" -#~ msgid "chr() arg not in range(256)" -#~ msgstr "chr() arg wala sa sakop ng range(256)" +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "maraming inhertance hindi sinusuportahan" -#~ msgid "complex division by zero" -#~ msgstr "kumplikadong dibisyon sa pamamagitan ng zero" +#: py/emitnative.c +msgid "must raise an object" +msgstr "dapat itaas ang isang object" -#~ msgid "complex values not supported" -#~ msgstr "kumplikadong values hindi sinusuportahan" +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "dapat tukuyin lahat ng SCK/MOSI/MISO" -#~ msgid "compression header" -#~ msgstr "compression header" +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "dapat gumamit ng keyword argument para sa key function" -#~ msgid "constant must be an integer" -#~ msgstr "constant ay dapat na integer" +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "name '%q' ay hindi defined" -#~ msgid "conversion to object" -#~ msgstr "kombersyon to object" +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "ang keywords dapat strings" -#~ msgid "decimal numbers not supported" -#~ msgstr "decimal numbers hindi sinusuportahan" +#: py/runtime.c +msgid "name not defined" +msgstr "name hindi na define" -#~ msgid "default 'except' must be last" -#~ msgstr "default 'except' ay dapat sa huli" +#: py/compile.c +msgid "name reused for argument" +msgstr "name muling ginamit para sa argument" -#~ msgid "" -#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " -#~ "= 8" -#~ msgstr "" -#~ "ang destination buffer ay dapat na isang bytearray o array ng uri na 'B' " -#~ "para sa bit_depth = 8" +#: py/emitnative.c +msgid "native yield" +msgstr "native yield" -#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -#~ msgstr "" -#~ "ang destination buffer ay dapat na isang array ng uri 'H' para sa " -#~ "bit_depth = 16" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "kailangan ng higit sa %d na halaga upang i-unpack" -#~ msgid "destination_length must be an int >= 0" -#~ msgstr "ang destination_length ay dapat na isang int >= 0" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "negatibong power na walang float support" -#~ msgid "dict update sequence has wrong length" -#~ msgstr "may mali sa haba ng dict update sequence" +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "negative shift count" -#~ msgid "either pos or kw args are allowed" -#~ msgstr "pos o kw args ang pinahihintulutan" +#: py/vm.c +msgid "no active exception to reraise" +msgstr "walang aktibong exception para i-reraise" -#~ msgid "empty" -#~ msgstr "walang laman" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "walang magagamit na NIC" -#~ msgid "empty heap" -#~ msgstr "walang laman ang heap" +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "no binding para sa nonlocal, nahanap" -#~ msgid "empty separator" -#~ msgstr "walang laman na separator" +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "walang module na '%q'" -#~ msgid "end of format while looking for conversion specifier" -#~ msgstr "sa huli ng format habang naghahanap sa conversion specifier" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "walang ganoon na attribute" -#~ msgid "exceptions must derive from BaseException" -#~ msgstr "ang mga exceptions ay dapat makuha mula sa BaseException" +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "non-default argument sumusunod sa default argument" -#~ msgid "expected ':' after format specifier" -#~ msgstr "umaasa ng ':' pagkatapos ng format specifier" +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "non-hex digit nahanap" -#~ msgid "expected tuple/list" -#~ msgstr "umaasa ng tuple/list" +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "non-keyword arg sa huli ng */**" -#~ msgid "expecting a dict for keyword args" -#~ msgstr "umaasa ng dict para sa keyword args" +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "non-keyword arg sa huli ng keyword arg" -#~ msgid "expecting a pin" -#~ msgstr "umaasa ng isang pin" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" -#~ msgid "expecting an assembler instruction" -#~ msgstr "umaasa ng assembler instruction" +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "hindi lahat ng arguments na i-convert habang string formatting" -#~ msgid "expecting just a value for set" -#~ msgstr "umaasa sa value para sa set" +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "kulang sa arguments para sa format string" -#~ msgid "expecting key:value for dict" -#~ msgstr "umaasang key: halaga para sa dict" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "object '%s' ay hindi tuple o list" -#~ msgid "extra keyword arguments given" -#~ msgstr "dagdag na keyword argument na ibinigay" +#: py/obj.c +msgid "object does not support item assignment" +msgstr "ang object na '%s' ay hindi maaaring i-subscript" -#~ msgid "extra positional arguments given" -#~ msgstr "dagdag na positional argument na ibinigay" +#: py/obj.c +msgid "object does not support item deletion" +msgstr "ang object ay hindi sumusuporta sa pagbura ng item" -#~ msgid "ffi_prep_closure_loc" -#~ msgstr "ffi_prep_closure_loc" +#: py/obj.c +msgid "object has no len" +msgstr "object walang len" -#~ msgid "first argument to super() must be type" -#~ msgstr "unang argument ng super() ay dapat type" +#: py/obj.c +msgid "object is not subscriptable" +msgstr "ang bagay ay hindi maaaring ma-subscript" -#~ msgid "firstbit must be MSB" -#~ msgstr "firstbit ay dapat MSB" +#: py/runtime.c +msgid "object not an iterator" +msgstr "object ay hindi iterator" -#~ msgid "flash location must be below 1MByte" -#~ msgstr "dapat na mas mababa sa 1MB ang lokasyon ng flash" +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "hindi matatawag ang object" -#~ msgid "float too big" -#~ msgstr "masyadong malaki ang float" +#: py/sequence.c +msgid "object not in sequence" +msgstr "object wala sa sequence" -#~ msgid "font must be 2048 bytes long" -#~ msgstr "font ay dapat 2048 bytes ang haba" +#: py/runtime.c +msgid "object not iterable" +msgstr "object hindi ma i-iterable" -#~ msgid "format requires a dict" -#~ msgstr "kailangan ng format ng dict" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "object na type '%s' walang len()" -#~ msgid "frequency can only be either 80Mhz or 160MHz" -#~ msgstr "ang frequency ay dapat 80Mhz or 160MHz lamang" +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "object na may buffer protocol kinakailangan" -#~ msgid "full" -#~ msgstr "puno" +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "odd-length string" -#~ msgid "function does not take keyword arguments" -#~ msgstr "ang function ay hindi kumukuha ng mga argumento ng keyword" +#: py/objstr.c py/objstrunicode.c +#, fuzzy +msgid "offset out of bounds" +msgstr "wala sa sakop ang address" -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "function na inaasahang %d ang argumento, ngunit %d ang nakuha" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" -#~ msgid "function got multiple values for argument '%q'" -#~ msgstr "ang function ay nakakuha ng maraming values para sa argument '%q'" +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "ord umaasa ng character" -#~ msgid "function missing %d required positional arguments" -#~ msgstr "function kulang ng %d required na positional arguments" +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "ord() umaasa ng character pero string ng %d haba ang nakita" -#~ msgid "function missing keyword-only argument" -#~ msgstr "function nangangailangan ng keyword-only argument" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "overflow nagcoconvert ng long int sa machine word" -#~ msgid "function missing required keyword argument '%q'" -#~ msgstr "function nangangailangan ng keyword argument '%q'" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "ang palette ay dapat 32 bytes ang haba" -#~ msgid "function missing required positional argument #%d" -#~ msgstr "function nangangailangan ng positional argument #%d" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "palette_index ay dapat na int" -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "" -#~ "ang function ay kumuhuha ng %d positional arguments ngunit %d ang ibinigay" +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "parameter annotation ay dapat na identifier" -#~ msgid "generator already executing" -#~ msgstr "insinasagawa na ng generator" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence a2 hanggang a5" -#~ msgid "generator ignored GeneratorExit" -#~ msgstr "hindi pinansin ng generator ang GeneratorExit" +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" +msgstr "ang mga parameter ay dapat na nagrerehistro sa sequence r0 hanggang r3" -#~ msgid "graphic must be 2048 bytes long" -#~ msgstr "graphic ay dapat 2048 bytes ang haba" +#: shared-bindings/displayio/Bitmap.c +#, fuzzy +msgid "pixel coordinates out of bounds" +msgstr "wala sa sakop ang address" -#~ msgid "heap must be a list" -#~ msgstr "list dapat ang heap" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" -#~ msgid "identifier redefined as global" -#~ msgstr "identifier ginawang global" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader ay dapat displayio.Palette o displayio.ColorConverter" -#~ msgid "identifier redefined as nonlocal" -#~ msgstr "identifier ginawang nonlocal" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "pop mula sa walang laman na PulseIn" -#~ msgid "impossible baudrate" -#~ msgstr "impossibleng baudrate" +#: py/objset.c +msgid "pop from an empty set" +msgstr "pop sa walang laman na set" -#~ msgid "incomplete format" -#~ msgstr "hindi kumpleto ang format" +#: py/objlist.c +msgid "pop from empty list" +msgstr "pop galing sa walang laman na list" -#~ msgid "incomplete format key" -#~ msgstr "hindi kumpleto ang format key" +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "popitem(): dictionary ay walang laman" -#~ msgid "incorrect padding" -#~ msgstr "mali ang padding" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "pow() 3rd argument ay hindi maaring 0" -#~ msgid "index out of range" -#~ msgstr "index wala sa sakop" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "pow() na may 3 argumento kailangan ng integers" -#~ msgid "indices must be integers" -#~ msgstr "ang mga indeks ay dapat na integer" +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "puno na ang pila (overflow)" -#~ msgid "inline assembler must be a function" -#~ msgstr "inline assembler ay dapat na function" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "" -#~ msgid "int() arg 2 must be >= 2 and <= 36" -#~ msgstr "int() arg 2 ay dapat >=2 at <= 36" +#: shared-bindings/_pixelbuf/__init__.c +#, fuzzy +msgid "readonly attribute" +msgstr "hindi mabasa ang attribute" -#~ msgid "integer required" -#~ msgstr "kailangan ng int" +#: py/builtinimport.c +msgid "relative import" +msgstr "relative import" -#~ msgid "invalid I2C peripheral" -#~ msgstr "maling I2C peripheral" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "hiniling ang haba %d ngunit may haba ang object na %d" -#~ msgid "invalid SPI peripheral" -#~ msgstr "hindi wastong SPI peripheral" +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "return annotation ay dapat na identifier" -#~ msgid "invalid alarm" -#~ msgstr "mali ang alarm" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "return umasa ng '%q' pero ang nakuha ay ‘%q’" -#~ msgid "invalid arguments" -#~ msgstr "mali ang mga argumento" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "row ay dapat packed at ang word nakahanay" -#~ msgid "invalid buffer length" -#~ msgstr "mali ang buffer length" +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "rsplit(None,n)" -#~ msgid "invalid cert" -#~ msgstr "mali ang cert" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" +"ang sample_source buffer ay dapat na isang bytearray o array ng uri na 'h', " +"'H', 'b' o'B'" -#~ msgid "invalid data bits" -#~ msgstr "mali ang data bits" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "pagpili ng rate wala sa sakop" -#~ msgid "invalid dupterm index" -#~ msgstr "mali ang dupterm index" +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "puno na ang schedule stack" -#~ msgid "invalid format" -#~ msgstr "hindi wastong pag-format" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "script kompilasyon hindi supportado" -#~ msgid "invalid format specifier" -#~ msgstr "mali ang format specifier" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#~ msgid "invalid key" -#~ msgstr "mali ang key" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "sign hindi maaring string format specifier" -#~ msgid "invalid micropython decorator" -#~ msgstr "mali ang micropython decorator" +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "sign hindi maari sa integer format specifier 'c'" -#~ msgid "invalid pin" -#~ msgstr "mali ang pin" +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "isang '}' nasalubong sa format string" -#~ msgid "invalid stop bits" -#~ msgstr "mali ang stop bits" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "sleep length ay dapat hindi negatibo" -#~ msgid "invalid syntax" -#~ msgstr "mali ang sintaks" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "slice step ay hindi puedeng 0" -#~ msgid "invalid syntax for integer" -#~ msgstr "maling sintaks sa integer" +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "small int overflow" -#~ msgid "invalid syntax for integer with base %d" -#~ msgstr "maling sintaks sa integer na may base %d" +#: main.c +msgid "soft reboot\n" +msgstr "malambot na reboot\n" -#~ msgid "invalid syntax for number" -#~ msgstr "maling sintaks sa number" +#: py/objstr.c +msgid "start/end indices" +msgstr "start/end indeks" -#~ msgid "issubclass() arg 1 must be a class" -#~ msgstr "issubclass() arg 1 ay dapat na class" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y ay dapat int" -#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" -#~ msgstr "issubclass() arg 2 ay dapat na class o tuple ng classes" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "step ay dapat hindi zero" -#~ msgid "join expects a list of str/bytes objects consistent with self object" -#~ msgstr "" -#~ "join umaaasang may listahan ng str/bytes objects na naalinsunod sa self " -#~ "object" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop dapat 1 o 2" -#~ msgid "keyword argument(s) not yet implemented - use normal args instead" -#~ msgstr "" -#~ "kindi pa ipinapatupad ang (mga) argument(s) ng keyword - gumamit ng " -#~ "normal args" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop hindi maabot sa simula" -#~ msgid "keywords must be strings" -#~ msgstr "ang keywords dapat strings" +#: py/stream.c +msgid "stream operation not supported" +msgstr "stream operation hindi sinusuportahan" -#~ msgid "label '%q' not defined" -#~ msgstr "label '%d' kailangan na i-define" +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "indeks ng string wala sa sakop" -#~ msgid "label redefined" -#~ msgstr "ang label ay na-define ulit" +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "ang indeks ng string ay dapat na integer, hindi %s" -#~ msgid "len must be multiple of 4" -#~ msgstr "len ay dapat multiple ng 4" +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "string hindi supportado; gumamit ng bytes o kaya bytearray" -#~ msgid "length argument not allowed for this type" -#~ msgstr "length argument ay walang pahintulot sa ganitong type" +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: hindi ma-index" -#~ msgid "lhs and rhs should be compatible" -#~ msgstr "lhs at rhs ay dapat magkasundo" +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: index hindi maabot" -#~ msgid "local '%q' has type '%q' but source is '%q'" -#~ msgstr "local '%q' ay may type '%q' pero ang source ay '%q'" +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: walang fields" -#~ msgid "local '%q' used before type known" -#~ msgstr "local '%q' ginamit bago alam ang type" +#: py/objstr.c +msgid "substring not found" +msgstr "substring hindi nahanap" -#~ msgid "local variable referenced before assignment" -#~ msgstr "local variable na reference bago na i-assign" +#: py/compile.c +msgid "super() can't find self" +msgstr "super() hindi mahanap ang sarili" -#~ msgid "long int not supported in this build" -#~ msgstr "long int hindi sinusuportahan sa build na ito" +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "sintaks error sa JSON" -#~ msgid "map buffer too small" -#~ msgstr "masyadong maliit ang buffer map" +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "may pagkakamali sa sintaks sa uctypes descriptor" -#~ msgid "maximum recursion depth exceeded" -#~ msgstr "lumagpas ang maximum recursion depth" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "ang threshold ay dapat sa range 0-65536" -#~ msgid "memory allocation failed, allocating %u bytes" -#~ msgstr "nabigo ang paglalaan ng memorya, paglalaan ng %u bytes" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#~ msgid "memory allocation failed, allocating %u bytes for native code" -#~ msgstr "" -#~ "nabigo ang paglalaan ng memorya, naglalaan ng %u bytes para sa native code" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "time.struct_time() kumukuha ng 9-sequence" -#~ msgid "memory allocation failed, heap is locked" -#~ msgstr "abigo ang paglalaan ng memorya, ang heap ay naka-lock" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() kumukuha ng 1 argument" -#~ msgid "module not found" -#~ msgstr "module hindi nakita" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "timeout >100 (units ay seconds, hindi na msecs)" -#~ msgid "multiple *x in assignment" -#~ msgstr "maramihang *x sa assignment" +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "bits ay dapat walo (8)" -#~ msgid "multiple bases have instance lay-out conflict" -#~ msgstr "maraming bases ay may instance lay-out conflict" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "wala sa sakop ng timestamp ang platform time_t" -#~ msgid "multiple inheritance not supported" -#~ msgstr "maraming inhertance hindi sinusuportahan" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "masyadong maraming argumento" -#~ msgid "must raise an object" -#~ msgstr "dapat itaas ang isang object" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "masyadong maraming mga argumento na ibinigay sa ibinigay na format" -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "dapat tukuyin lahat ng SCK/MOSI/MISO" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "masyadong maraming values para i-unpact (umaasa ng %d)" -#~ msgid "must use keyword argument for key function" -#~ msgstr "dapat gumamit ng keyword argument para sa key function" +#: py/objstr.c +msgid "tuple index out of range" +msgstr "indeks ng tuple wala sa sakop" -#~ msgid "name '%q' is not defined" -#~ msgstr "name '%q' ay hindi defined" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "mali ang haba ng tuple/list" -#~ msgid "name not defined" -#~ msgstr "name hindi na define" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#~ msgid "name reused for argument" -#~ msgstr "name muling ginamit para sa argument" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "tx at rx hindi pwedeng parehas na None" -#~ msgid "native yield" -#~ msgstr "native yield" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "hindi maari ang type na '%q' para sa base type" -#~ msgid "need more than %d values to unpack" -#~ msgstr "kailangan ng higit sa %d na halaga upang i-unpack" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "hindi puede ang type para sa base type" -#~ msgid "negative power with no float support" -#~ msgstr "negatibong power na walang float support" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "type object '%q' ay walang attribute '%q'" -#~ msgid "negative shift count" -#~ msgstr "negative shift count" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "type kumuhuha ng 1 o 3 arguments" -#~ msgid "no active exception to reraise" -#~ msgstr "walang aktibong exception para i-reraise" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "ulonglong masyadong malaki" -#~ msgid "no binding for nonlocal found" -#~ msgstr "no binding para sa nonlocal, nahanap" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "unary op %q hindi implemented" -#~ msgid "no module named '%q'" -#~ msgstr "walang module na '%q'" +#: py/parse.c +msgid "unexpected indent" +msgstr "hindi inaasahang indent" -#~ msgid "no such attribute" -#~ msgstr "walang ganoon na attribute" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "hindi inaasahang argumento ng keyword" -#~ msgid "non-default argument follows default argument" -#~ msgstr "non-default argument sumusunod sa default argument" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "hindi inaasahang argumento ng keyword na '%q'" -#~ msgid "non-hex digit found" -#~ msgstr "non-hex digit nahanap" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "unicode name escapes" -#~ msgid "non-keyword arg after */**" -#~ msgstr "non-keyword arg sa huli ng */**" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "unindent hindi tugma sa indentation level sa labas" -#~ msgid "non-keyword arg after keyword arg" -#~ msgstr "non-keyword arg sa huli ng keyword arg" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "hindi alam ang conversion specifier na %c" -#~ msgid "not a valid ADC Channel: %d" -#~ msgstr "hindi tamang ADC Channel: %d" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "hindi alam ang format code '%c' para sa object na ang type ay '%s'" -#~ msgid "not all arguments converted during string formatting" -#~ msgstr "hindi lahat ng arguments na i-convert habang string formatting" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "hindi alam ang format code '%c' sa object na ang type ay 'float'" -#~ msgid "not enough arguments for format string" -#~ msgstr "kulang sa arguments para sa format string" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "hindi alam ang format ng code na '%c' para sa object ng type ay 'str'" -#~ msgid "object '%s' is not a tuple or list" -#~ msgstr "object '%s' ay hindi tuple o list" +#: py/compile.c +msgid "unknown type" +msgstr "hindi malaman ang type (unknown type)" -#~ msgid "object does not support item assignment" -#~ msgstr "ang object na '%s' ay hindi maaaring i-subscript" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "hindi malaman ang type '%q'" -#~ msgid "object does not support item deletion" -#~ msgstr "ang object ay hindi sumusuporta sa pagbura ng item" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "hindi tugma ang '{' sa format" -#~ msgid "object has no len" -#~ msgstr "object walang len" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "hindi mabasa ang attribute" -#~ msgid "object is not subscriptable" -#~ msgstr "ang bagay ay hindi maaaring ma-subscript" +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "hindi sinusuportahan ang thumb instruktion '%s' sa %d argumento" -#~ msgid "object not an iterator" -#~ msgstr "object ay hindi iterator" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "hindi sinusuportahan ang instruction ng Xtensa '%s' sa %d argumento" -#~ msgid "object not callable" -#~ msgstr "hindi matatawag ang object" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "Hindi supportadong tipo ng bitmap" -#~ msgid "object not in sequence" -#~ msgstr "object wala sa sequence" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "hindi sinusuportahan ang format character na '%c' (0x%x) sa index %d" -#~ msgid "object not iterable" -#~ msgstr "object hindi ma i-iterable" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "hindi sinusuportahang type para sa %q: '%s'" -#~ msgid "object of type '%s' has no len()" -#~ msgstr "object na type '%s' walang len()" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "hindi sinusuportahang type para sa operator" -#~ msgid "object with buffer protocol required" -#~ msgstr "object na may buffer protocol kinakailangan" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "hindi sinusuportahang type para sa %q: '%s', '%s'" -#~ msgid "odd-length string" -#~ msgstr "odd-length string" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#, fuzzy -#~ msgid "offset out of bounds" -#~ msgstr "wala sa sakop ang address" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" -#~ msgid "ord expects a character" -#~ msgstr "ord umaasa ng character" +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "mali ang bilang ng argumento" -#~ msgid "ord() expected a character, but string of length %d found" -#~ msgstr "ord() umaasa ng character pero string ng %d haba ang nakita" +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "maling number ng value na i-unpack" -#~ msgid "overflow converting long int to machine word" -#~ msgstr "overflow nagcoconvert ng long int sa machine word" +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "wala sa sakop ang address" -#~ msgid "palette must be 32 bytes long" -#~ msgstr "ang palette ay dapat 32 bytes ang haba" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y ay dapat int" -#~ msgid "parameter annotation must be an identifier" -#~ msgstr "parameter annotation ay dapat na identifier" +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "wala sa sakop ang address" -#~ msgid "parameters must be registers in sequence a2 to a5" -#~ msgstr "" -#~ "ang mga parameter ay dapat na nagrerehistro sa sequence a2 hanggang a5" +#: py/objrange.c +msgid "zero step" +msgstr "zero step" -#~ msgid "parameters must be registers in sequence r0 to r3" -#~ msgstr "" -#~ "ang mga parameter ay dapat na nagrerehistro sa sequence r0 hanggang r3" +#~ msgid "AP required" +#~ msgstr "AP kailangan" -#~ msgid "pin does not have IRQ capabilities" -#~ msgstr "walang IRQ capabilities ang pin" +#~ msgid "C-level assert" +#~ msgstr "C-level assert" -#~ msgid "pop from an empty PulseIn" -#~ msgstr "pop mula sa walang laman na PulseIn" +#~ msgid "Cannot connect to AP" +#~ msgstr "Hindi maka connect sa AP" -#~ msgid "pop from an empty set" -#~ msgstr "pop sa walang laman na set" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Hindi ma disconnect sa AP" -#~ msgid "pop from empty list" -#~ msgstr "pop galing sa walang laman na list" +#~ msgid "Cannot set STA config" +#~ msgstr "Hindi ma-set ang STA Config" -#~ msgid "popitem(): dictionary is empty" -#~ msgstr "popitem(): dictionary ay walang laman" +#~ msgid "Cannot update i/f status" +#~ msgstr "Hindi ma-update i/f status" -#~ msgid "position must be 2-tuple" -#~ msgstr "position ay dapat 2-tuple" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Hindi alam ipasa ang object sa native function" -#~ msgid "pow() 3rd argument cannot be 0" -#~ msgstr "pow() 3rd argument ay hindi maaring 0" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "Walang safemode support ang ESP8266." -#~ msgid "pow() with 3 arguments requires integers" -#~ msgstr "pow() na may 3 argumento kailangan ng integers" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "Walang pull down support ang ESP8266." -#~ msgid "queue overflow" -#~ msgstr "puno na ang pila (overflow)" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Pagkakamali sa ffi_prep_cif" #, fuzzy -#~ msgid "readonly attribute" -#~ msgstr "hindi mabasa ang attribute" +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Hindi mabalitaan ang attribute value, status: 0x%08lX" -#~ msgid "relative import" -#~ msgstr "relative import" +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Hindi mabasa ang value ng attribute, status: 0x%08lX" -#~ msgid "requested length %d but object has length %d" -#~ msgstr "hiniling ang haba %d ngunit may haba ang object na %d" +#~ msgid "Function requires lock." +#~ msgstr "Kailangan ng lock ang function." -#~ msgid "return annotation must be an identifier" -#~ msgstr "return annotation ay dapat na identifier" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "Walang pull down support ang GPI016." -#~ msgid "return expected '%q' but got '%q'" -#~ msgstr "return umasa ng '%q' pero ang nakuha ay ‘%q’" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Pinakamataas na PWM frequency ay %dhz." -#~ msgid "rsplit(None,n)" -#~ msgstr "rsplit(None,n)" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Pinakamababang PWM frequency ay 1hz." -#~ msgid "" -#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " -#~ "or 'B'" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." #~ msgstr "" -#~ "ang sample_source buffer ay dapat na isang bytearray o array ng uri na " -#~ "'h', 'H', 'b' o'B'" +#~ "Hindi sinusuportahan ang maraming mga PWM frequency. PWM na naka-set sa " +#~ "%dhz." -#~ msgid "sampling rate out of range" -#~ msgstr "pagpili ng rate wala sa sakop" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Walang PulseIn support sa %q" -#~ msgid "scan failed" -#~ msgstr "nabigo ang pag-scan" +#~ msgid "No hardware support for analog out." +#~ msgstr "Hindi supportado ng hardware ang analog out." -#~ msgid "schedule stack full" -#~ msgstr "puno na ang schedule stack" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Tanging Windows format, uncompressed BMP lamang ang supportado %d" -#~ msgid "script compilation not supported" -#~ msgstr "script kompilasyon hindi supportado" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Dapat true color (24 bpp o mas mataas) BMP lamang ang supportado %x" -#~ msgid "sign not allowed in string format specifier" -#~ msgstr "sign hindi maaring string format specifier" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Tanging suportado ang TX sa UART1 (GPIO2)." -#~ msgid "sign not allowed with integer format specifier 'c'" -#~ msgstr "sign hindi maari sa integer format specifier 'c'" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "Walang PWM support sa pin %d" -#~ msgid "single '}' encountered in format string" -#~ msgstr "isang '}' nasalubong sa format string" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Walang kakayahang ADC ang pin %q" -#~ msgid "slice step cannot be zero" -#~ msgstr "slice step ay hindi puedeng 0" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Walang pull support ang Pin(16)" -#~ msgid "small int overflow" -#~ msgstr "small int overflow" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Mali ang pins para sa SPI" -#~ msgid "start/end indices" -#~ msgstr "start/end indeks" +#~ msgid "STA must be active" +#~ msgstr "Dapat aktibo ang STA" -#~ msgid "stream operation not supported" -#~ msgstr "stream operation hindi sinusuportahan" +#~ msgid "STA required" +#~ msgstr "STA kailangan" -#~ msgid "string index out of range" -#~ msgstr "indeks ng string wala sa sakop" +#~ msgid "UART(%d) does not exist" +#~ msgstr "Walang UART(%d)" -#~ msgid "string indices must be integers, not %s" -#~ msgstr "ang indeks ng string ay dapat na integer, hindi %s" +#~ msgid "UART(1) can't read" +#~ msgstr "Hindi mabasa ang UART(1)" -#~ msgid "string not supported; use bytes or bytearray" -#~ msgstr "string hindi supportado; gumamit ng bytes o kaya bytearray" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Hindi ma-remount ang filesystem" -#~ msgid "struct: cannot index" -#~ msgstr "struct: hindi ma-index" +#~ msgid "Unknown type" +#~ msgstr "Hindi alam ang type" -#~ msgid "struct: index out of range" -#~ msgstr "struct: index hindi maabot" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "" +#~ "Gamitin ang esptool upang burahin ang flash at muling i-upload ang Python" -#~ msgid "struct: no fields" -#~ msgstr "struct: walang fields" +#~ msgid "[addrinfo error %d]" +#~ msgstr "[addrinfo error %d]" -#~ msgid "substring not found" -#~ msgstr "substring hindi nahanap" +#~ msgid "buffer too long" +#~ msgstr "masyadong mahaba ng buffer" -#~ msgid "super() can't find self" -#~ msgstr "super() hindi mahanap ang sarili" +#~ msgid "can query only one param" +#~ msgstr "maaaring i-query lamang ang isang param" -#~ msgid "syntax error in JSON" -#~ msgstr "sintaks error sa JSON" +#~ msgid "can't get AP config" +#~ msgstr "hindi makuha ang AP config" -#~ msgid "syntax error in uctypes descriptor" -#~ msgstr "may pagkakamali sa sintaks sa uctypes descriptor" +#~ msgid "can't get STA config" +#~ msgstr "hindi makuha ang STA config" -#~ msgid "too many values to unpack (expected %d)" -#~ msgstr "masyadong maraming values para i-unpact (umaasa ng %d)" +#~ msgid "can't set AP config" +#~ msgstr "hindi makuha ang AP config" -#~ msgid "tuple index out of range" -#~ msgstr "indeks ng tuple wala sa sakop" +#~ msgid "can't set STA config" +#~ msgstr "hindi makuha ang STA config" -#~ msgid "tuple/list has wrong length" -#~ msgstr "mali ang haba ng tuple/list" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "pos o kw args ang pinahihintulutan" -#~ msgid "tx and rx cannot both be None" -#~ msgstr "tx at rx hindi pwedeng parehas na None" +#~ msgid "expecting a pin" +#~ msgstr "umaasa ng isang pin" -#~ msgid "type '%q' is not an acceptable base type" -#~ msgstr "hindi maari ang type na '%q' para sa base type" +#~ msgid "ffi_prep_closure_loc" +#~ msgstr "ffi_prep_closure_loc" -#~ msgid "type is not an acceptable base type" -#~ msgstr "hindi puede ang type para sa base type" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "dapat na mas mababa sa 1MB ang lokasyon ng flash" -#~ msgid "type object '%q' has no attribute '%q'" -#~ msgstr "type object '%q' ay walang attribute '%q'" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "ang frequency ay dapat 80Mhz or 160MHz lamang" -#~ msgid "type takes 1 or 3 arguments" -#~ msgstr "type kumuhuha ng 1 o 3 arguments" +#~ msgid "impossible baudrate" +#~ msgstr "impossibleng baudrate" -#~ msgid "ulonglong too large" -#~ msgstr "ulonglong masyadong malaki" +#~ msgid "invalid alarm" +#~ msgstr "mali ang alarm" -#~ msgid "unary op %q not implemented" -#~ msgstr "unary op %q hindi implemented" +#~ msgid "invalid buffer length" +#~ msgstr "mali ang buffer length" -#~ msgid "unexpected indent" -#~ msgstr "hindi inaasahang indent" +#~ msgid "invalid data bits" +#~ msgstr "mali ang data bits" -#~ msgid "unexpected keyword argument" -#~ msgstr "hindi inaasahang argumento ng keyword" +#~ msgid "invalid pin" +#~ msgstr "mali ang pin" -#~ msgid "unexpected keyword argument '%q'" -#~ msgstr "hindi inaasahang argumento ng keyword na '%q'" +#~ msgid "invalid stop bits" +#~ msgstr "mali ang stop bits" -#~ msgid "unicode name escapes" -#~ msgstr "unicode name escapes" +#~ msgid "len must be multiple of 4" +#~ msgstr "len ay dapat multiple ng 4" -#~ msgid "unindent does not match any outer indentation level" -#~ msgstr "unindent hindi tugma sa indentation level sa labas" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "nabigo ang paglalaan ng memorya, naglalaan ng %u bytes para sa native code" -#~ msgid "unknown config param" -#~ msgstr "hindi alam na config param" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "hindi tamang ADC Channel: %d" -#~ msgid "unknown conversion specifier %c" -#~ msgstr "hindi alam ang conversion specifier na %c" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "walang IRQ capabilities ang pin" -#~ msgid "unknown format code '%c' for object of type '%s'" -#~ msgstr "hindi alam ang format code '%c' para sa object na ang type ay '%s'" +#~ msgid "position must be 2-tuple" +#~ msgstr "position ay dapat 2-tuple" -#~ msgid "unknown format code '%c' for object of type 'float'" -#~ msgstr "hindi alam ang format code '%c' sa object na ang type ay 'float'" +#~ msgid "scan failed" +#~ msgstr "nabigo ang pag-scan" -#~ msgid "unknown format code '%c' for object of type 'str'" -#~ msgstr "" -#~ "hindi alam ang format ng code na '%c' para sa object ng type ay 'str'" +#~ msgid "unknown config param" +#~ msgstr "hindi alam na config param" #~ msgid "unknown status param" #~ msgstr "hindi alam na status param" -#~ msgid "unknown type" -#~ msgstr "hindi malaman ang type (unknown type)" - -#~ msgid "unknown type '%q'" -#~ msgstr "hindi malaman ang type '%q'" - -#~ msgid "unmatched '{' in format" -#~ msgstr "hindi tugma ang '{' sa format" - -#~ msgid "unreadable attribute" -#~ msgstr "hindi mabasa ang attribute" - -#~ msgid "unsupported Thumb instruction '%s' with %d arguments" -#~ msgstr "hindi sinusuportahan ang thumb instruktion '%s' sa %d argumento" - -#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" -#~ msgstr "hindi sinusuportahan ang instruction ng Xtensa '%s' sa %d argumento" - -#~ msgid "unsupported format character '%c' (0x%x) at index %d" -#~ msgstr "" -#~ "hindi sinusuportahan ang format character na '%c' (0x%x) sa index %d" - -#~ msgid "unsupported type for %q: '%s'" -#~ msgstr "hindi sinusuportahang type para sa %q: '%s'" - -#~ msgid "unsupported type for operator" -#~ msgstr "hindi sinusuportahang type para sa operator" - -#~ msgid "unsupported types for %q: '%s', '%s'" -#~ msgstr "hindi sinusuportahang type para sa %q: '%s', '%s'" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "nabigo ang wifi_set_ip_info()" - -#~ msgid "wrong number of arguments" -#~ msgstr "mali ang bilang ng argumento" - -#~ msgid "wrong number of values to unpack" -#~ msgstr "maling number ng value na i-unpack" - -#~ msgid "zero step" -#~ msgstr "zero step" diff --git a/locale/fr.po b/locale/fr.po index 9e4d135e9..f117b3e30 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-12-23 20:05+0100\n" "Last-Translator: Pierrick Couturier \n" "Language-Team: fr\n" @@ -22,16 +22,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr " Fichier \"%q\"" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr " Fichier \"%q\", ligne %d" + #: main.c msgid " output:\n" msgstr " sortie:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "%%c nécessite un entier int ou un caractère char" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q utilisé" +#: py/obj.c +msgid "%q index out of range" +msgstr "index %q hors gamme" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "les indices %q doivent être des entiers, pas %s" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "les slices de tampon doivent être de longueurs égales" @@ -41,10 +62,162 @@ msgstr "les slices de tampon doivent être de longueurs égales" msgid "%q should be an int" msgstr "y doit être un entier (int)" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "%q() prend %d arguments mais %d ont été donnés" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "'%q' argument requis" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "'%s' attend un label" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "'%s' attend un registre" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects a special register" +msgstr "'%s' attend un registre special" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects an FPU register" +msgstr "'%s' attend un registre FPU" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "'%s' attend une adresse de la forme [a, b]" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "'%s' attend un entier" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects at most r%d" +msgstr "'%s' attend un registre" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "'%s' attend {r0, r1, ...}" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "'%s' l'entier %d n'est pas dans la gamme %d..%d" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "'%s' l'entier 0x%x ne correspond pas au masque 0x%x" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "l'objet '%s' ne supporte pas l'assignation d'éléments" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "l'objet '%s' ne supporte pas la suppression d'éléments" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "l'objet '%s' n'a pas d'attribut '%q'" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "l'objet '%s' n'est pas un itérateur" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "objet '%s' non appelable" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "objet '%s' non itérable" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "l'objet '%s' n'est pas sous-scriptable" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "'=' alignement non autorisé dans la spéc. de format de chaîne" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' et 'O' ne sont pas des types de format supportés" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "'align' nécessite 1 argument" + +#: py/compile.c +msgid "'await' outside function" +msgstr "'await' en dehors d'une fonction" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "'break' en dehors d'une boucle" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "'continue' en dehors d'une boucle" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "'data' nécessite au moins 2 arguments" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "'data' nécessite des arguments entiers" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "'label' nécessite 1 argument" + +#: py/compile.c +msgid "'return' outside function" +msgstr "'return' en dehors d'une fonction" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "'yield' en dehors d'une fonction" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "*x doit être la cible de l'assignement" + +#: py/obj.c +msgid ", in %q\n" +msgstr ", dans %q\n" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "0.0 à une puissance complexe" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "pow() avec 3 arguments non supporté" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Un canal d'interruptions est déjà utilisé" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -55,14 +228,58 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "la palette doit être longue de 32 octets" +#: ports/nrf/common-hal/busio/I2C.c +#, fuzzy +msgid "All I2C peripherals are in use" +msgstr "Tous les périphériques I2C sont utilisés" + +#: ports/nrf/common-hal/busio/SPI.c +#, fuzzy +msgid "All SPI peripherals are in use" +msgstr "Tous les périphériques SPI sont utilisés" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "All UART peripherals are in use" +msgstr "Tous les périphériques I2C sont utilisés" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Tous les canaux d'événements sont utilisés" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "Tous les canaux d'événements de synchro sont utilisés" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Tous les timers pour cette broche sont utilisés" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Tous les timers sont utilisés" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "AnalogOut non supporté" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "" +"AnalogOut est seulement 16 bits. Les valeurs doivent être inf. à 65536." + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "AnalogOut n'est pas supporté sur la broche indiquée" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Un autre envoi est déjà actif" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "Le tableau doit contenir des halfwords (type 'H')" @@ -87,6 +304,18 @@ msgstr "" "Auto-chargement activé. Copiez simplement les fichiers en USB pour les " "lancer ou entrez sur REPL pour le désactiver.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "'bit clock' et 'word select' doivent partager une horloge" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "La profondeur de bit doit être un multiple de 8." + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Les deux entrées doivent supporter les interruptions" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "La luminosité doit être entre 0 et 255" @@ -100,10 +329,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Tampon de taille incorrect. Devrait être de %d octets." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Le tampon doit être de longueur au moins 1" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy, c-format +msgid "Bus pin %d is already in use" +msgstr "DAC déjà utilisé" + #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -113,6 +348,11 @@ msgstr "le tampon doit être un objet bytes-like" msgid "Bytes must be between 0 and 255." msgstr "Les octets 'bytes' doivent être entre 0 et 255" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "Impossible d'ajouter des service en mode Central" @@ -129,26 +369,57 @@ msgstr "Modification du nom impossible en mode Central" msgid "Can't connect in Peripheral mode" msgstr "Impossible de se connecter en mode Peripheral" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Impossible de supprimer les valeurs" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "Ne peux être tiré ('pull') en mode 'output'" + +#: ports/nrf/common-hal/microcontroller/Processor.c +#, fuzzy +msgid "Cannot get temperature" +msgstr "Impossible de lire la température. status: 0x%02x" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "Les 2 canaux de sortie ne peuvent être sur la même broche" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Impossible de lire sans broche MISO." +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "Impossible d'enregistrer vers un fichier" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "'/' ne peut être remonté quand l'USB est actif." +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" +"Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader." + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "Impossible d'affecter une valeur quand la direction est 'input'." +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "On ne peut faire de subclass de slice" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Pas de transfert sans broches MOSI et MISO" +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "Impossible d'obtenir la taille du scalaire sans ambigüité" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Impossible d'écrire sans broche MOSI." @@ -157,6 +428,10 @@ msgstr "Impossible d'écrire sans broche MOSI." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -169,6 +444,10 @@ msgstr "Echec de l'init. de la broche d'horloge" msgid "Clock stretch too long" msgstr "Période de l'horloge trop longue" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Horloge en cours d'utilisation" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -178,6 +457,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "Les octets 'bytes' doivent être entre 0 et 255" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "L'UART n'a pu être initialisé" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Impossible d'allouer le 1er tampon" @@ -190,10 +478,33 @@ msgstr "Impossible d'allouer le 2e tampon" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "DAC déjà utilisé" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy +msgid "Data 0 pin must be byte aligned" +msgstr "le graphic doit être long de 2048 octets" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "Un bloc de données doit suivre un bloc de format" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "Data too large for advertisement packet" +msgstr "" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Data too large for the advertisement packet" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "La capacité de la cible est plus petite que destination_length." + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -202,8 +513,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "Le mode Drive n'est pas utilisé quand la direction est 'input'." -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "Canal EXTINT déjà utilisé" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "Erreur dans l'expression régulière" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Attendu : %q" @@ -213,8 +533,8 @@ msgstr "Attendu : %q" msgid "Expected a Characteristic" msgstr "Impossible d'ajouter la Characteristic." -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c #, fuzzy msgid "Expected a UUID" msgstr "Attendu : %q" @@ -224,8 +544,186 @@ msgstr "Attendu : %q" msgid "Expected tuple of length %d, got %d" msgstr "" +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to acquire mutex" +msgstr "Echec de l'obtention de mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "Echec de l'obtention de mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Service.c +#, fuzzy, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "Echec de l'ajout de caractéristique, statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to add service" +msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, fuzzy, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Echec de l'allocation du tampon RX" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Echec de l'allocation de %d octets du tampon RX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to change softdevice state" +msgstr "Echec de la modification de l'état du périph., erreur: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to connect:" +msgstr "Connection impossible. statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to continue scanning" +msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to create mutex" +msgstr "Echec de la création de mutex, statut: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to discover services" +msgstr "Echec de la découverte de services, statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get local address" +msgstr "Echec de l'obtention de l'adresse locale, erreur: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get softdevice state" +msgstr "Echec de l'obtention de l'état du périph., erreur: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "Echec de l'ajout de l'UUID Vendor Specific, , statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to release mutex" +msgstr "Impossible de libérer mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "Impossible de libérer mutex, status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start advertising" +msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start scanning" +msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to stop advertising" +msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "Echec de l'ajout de service, statut: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "Impossible d'écrire la valeur de l'attribut. status: 0x%08lX" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" + +#: py/moduerrno.c +msgid "File exists" +msgstr "Le fichier existe" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "La fonction nécessite un verrou" @@ -233,19 +731,71 @@ msgstr "La fonction nécessite un verrou" msgid "Group full" msgstr "Groupe plein" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "opération d'E/S sur un fichier fermé" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "opération sur I2C non supportée" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" +"Fichier .mpy incompatible. Merci de mettre à jour tous les .mpy. Voirhttp://" +"adafru.it/mpy-update pour plus d'informations." + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "Erreur d'entrée/sortie" + #: shared-module/displayio/OnDiskBitmap.c #, fuzzy msgid "Invalid BMP file" msgstr "Fichier invalide" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Fréquence de PWM invalide" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "Argument invalide" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Broche invalide pour 'bit clock'" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "Invalid buffer size" +msgstr "longueur de tampon invalide" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Invalid channel count" +msgstr "Argument invalide" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Broche d'horloge invalide" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "Broche de données invalide" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Direction invalide" @@ -258,19 +808,37 @@ msgstr "Fichier invalide" msgid "Invalid format chunk size" msgstr "Taille de bloc de formatage invalide" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Nombre de bits invalide" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Phase invalide" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Broche invalide" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Broche invalide pour le canal gauche" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Broche invalide pour le canal droit" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "Broches invalides" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Polarité invalide" @@ -278,14 +846,31 @@ msgstr "Polarité invalide" msgid "Invalid run mode." msgstr "Mode de lancement invalide" +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Invalid voice count" +msgstr "Type de service invalide" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Fichier WAVE invalide" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "La partie gauche de l'argument nommé doit être un identifiant" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" +#: py/objslice.c +msgid "Length must be an int" +msgstr "La longueur doit être entière" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "La longueur ne doit pas être négative" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -318,10 +903,35 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "Erreur fatale de MicroPython.\n" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "Le délais au démarrage du micro doit être entre 0.0 et 1.0" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Pas de DAC sur la puce" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "Aucun canal DMA trouvé" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Pas de broche RX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Pas de broche TX" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Pas de bus I2C par défaut" @@ -334,15 +944,36 @@ msgstr "Pas de bus SPI par défaut" msgid "No default UART bus" msgstr "Pas de bus UART par défaut" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Pas de GCLK libre" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Pas de source matérielle d'aléa disponible" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Pas de support matériel pour cette broche" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "Fichier/dossier introuvable" + #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Impossible de se connecter à 'AP'" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "Ne joue pas" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -350,6 +981,15 @@ msgstr "" "L'objet a été désinitialisé et ne peut plus être utilisé. Créez un nouvel " "objet." +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "Odd parity is not supported" +msgstr "parité impaire non supportée" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "Uniquement 8 ou 16 bit mono avec " + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -367,6 +1007,15 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Only slices with step=1 (aka None) are supported" +msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "Le sur-échantillonage doit être un multiple de 8." + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -382,6 +1031,24 @@ msgstr "" "La fréquence de PWM n'est pas modifiable quand variable_frequency est False " "à la construction." +#: py/moduerrno.c +msgid "Permission denied" +msgstr "Permission refusée" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "la broche ne peut être utilisé pour l'ADC" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +#, fuzzy +msgid "Plus any modules on the filesystem\n" +msgstr "Impossible de remonter le système de fichiers" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "Appuyez sur une touche pour entrer sur REPL ou CTRL-D pour recharger." @@ -394,23 +1061,32 @@ msgstr "Le tirage 'pull' n'est pas utilisé quand la direction est 'output'." msgid "RTC calibration is not supported on this board" msgstr "calibration de la RTC non supportée sur cette carte" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "RTC non supportée sur cette carte" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" -msgstr "Le changement de RTC non supportée sur cette carte" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Range out of bounds" +msgstr "adresse hors limites" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Lecture seule" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "Système de fichier en lecture seule" + #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Lecture seule" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Canal droit non supporté" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -423,15 +1099,43 @@ msgstr "Mode sans-échec. Auto-rechargement désactivé.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Mode sans-échec! Le code sauvegardé ne s'éxecute pas.\n" +#: ports/atmel-samd/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')" + +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Sample rate must be positive" +msgstr "le taux d'échantillonage doit être positif" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "Taux d'échantillonage trop élevé. Doit être inf. à %d" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Sérialiseur en cours d'utilisation" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "Slice et valeur de tailles différentes" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Slices non supportées" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "Fractionnement avec des captures 'sub'" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "La pile doit être au moins de 256" @@ -508,6 +1212,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Pour quitter, redémarrez la carte SVP sans " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "Trop de canaux dans l'échantillon." + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -516,6 +1224,10 @@ msgstr "" msgid "Too many displays" msgstr "" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "Trace (appels les plus récents en dernier):\n" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Argument de type tuple ou struct_time nécessaire" @@ -540,6 +1252,20 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "Impossible d'allouer des tampons pour une conversion signée" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Impossible de trouver un GCLK libre" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "Impossible d'initialiser le parser" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -548,6 +1274,20 @@ msgstr "" msgid "Unable to write to nvm." msgstr "Impossible d'écrire sur la nvm." +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy +msgid "Unexpected nrfx uuid type" +msgstr "indentation inattendue" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "Débit non supporté" + #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -557,10 +1297,18 @@ msgstr "type de bitmap non supporté" msgid "Unsupported format" msgstr "Format non supporté" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "Opération non supportée" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Valeur de tirage 'pull' non supportée." +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "les fonctions Viper ne supportent pas plus de 4 arguments actuellement" + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "Index de la voix trop grand" @@ -569,6 +1317,21 @@ msgstr "Index de la voix trop grand" msgid "WARNING: Your code filename has two extensions\n" msgstr "ATTENTION: le nom de fichier de votre code a deux extensions\n" +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" +"Bienvenue sur Adafruit CircuitPython %s!\n" +"\n" +"Vistez learn.adafruit.com/category/circuitpython pour des guides.\n" +"\n" +"Pour lister les modules inclus, tapez `help(\"modules\")`.\n" + #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -580,1723 +1343,1541 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Vous avez demandé à démarrer en mode sans-échec par " -#: shared-bindings/i2cslave/I2CSlave.c -msgid "address out of bounds" -msgstr "adresse hors limites" - -#: shared-bindings/i2cslave/I2CSlave.c -msgid "addresses is empty" -msgstr "adresses vides" +#: py/objtype.c +msgid "__init__() should return None" +msgstr "__init__() doit retourner None" -#: shared-bindings/nvm/ByteArray.c -msgid "array/bytes required on right side" -msgstr "tableau/octets requis à droite" - -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" -msgstr "bits doivent être 7, 8 ou 9" +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "__init__() doit retourner None, pas '%s'" -#: shared-module/struct/__init__.c -#, fuzzy -msgid "buffer size must match format" -msgstr "les slices de tampon doivent être de longueurs égales" +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "l'argument __new__ doit être d'un type défini par l'utilisateur" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" -msgstr "les slices de tampon doivent être de longueurs égales" +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "un objet 'bytes-like' est requis" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -msgid "buffer too small" -msgstr "tampon trop petit" +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "abort() appelé" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" -msgstr "" +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "l'adresse %08x n'est pas alignée sur %d octets" #: shared-bindings/i2cslave/I2CSlave.c -#, fuzzy -msgid "can't convert address to int" -msgstr "ne peut convertir %s en entier int" - -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" -msgstr "" - -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" -msgstr "le tampon de couleur doit faire 3 octets (RVB) ou 4 (RVB + pad byte)" - -#: shared-bindings/displayio/Palette.c -#, fuzzy -msgid "color buffer must be a buffer or int" -msgstr "le tampon de couleur doit être un tampon ou un entier" - -#: shared-bindings/displayio/Palette.c -#, fuzzy -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" -msgstr "" -"le tampon de couleur doit être un bytearray ou un tableau de type 'b' ou 'B'" - -#: shared-bindings/displayio/Palette.c -#, fuzzy -msgid "color must be between 0x000000 and 0xffffff" -msgstr "la couleur doit être entre 0x000000 et 0xffffff" - -#: shared-bindings/displayio/ColorConverter.c -#, fuzzy -msgid "color should be an int" -msgstr "la couleur doit être un entier (int)" - -#: shared-bindings/math/__init__.c -msgid "division by zero" -msgstr "division par zéro" - -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "séquence vide" - -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "end_x should be an int" -msgstr "y doit être un entier (int)" - -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" -msgstr "objet DigitalInOut attendu" - -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" -msgstr "le fichier doit être un fichier ouvert en mode 'byte'" - -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "le system de fichier doit fournir une méthode 'mount'" - -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "la fonction prend exactement 9 arguments" - -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "pas invalide" - -#: shared-bindings/math/__init__.c -msgid "math domain error" -msgstr "erreur de domaine math" - -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "les noms doivent être des chaînes de caractère" - -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -#, fuzzy -msgid "no available NIC" -msgstr "NIC non disponible" - -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" - -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" - -#: shared-bindings/displayio/Palette.c -#, fuzzy -msgid "palette_index should be an int" -msgstr "palette_index devrait être un entier (int)'" - -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "adresse hors limites" - -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" - -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "" -"pixel_shader doit être un objet displayio.Palette ou displayio.ColorConverter" - -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "" - -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "la longueur de sleep ne doit pas être négative" - -#: main.c -msgid "soft reboot\n" -msgstr "redémarrage logiciel\n" - -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y doit être un entier (int)" - -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "le pas 'step' doit être non nul" - -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" -msgstr "stop doit être 1 ou 2" - -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop n'est pas accessible au démarrage" - -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "le seuil doit être dans la gamme 0-65536" - -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" - -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "time.struct_time() prend une séquence de longueur 9" - -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() prend exactement 1 argument" - -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" -msgstr "timeout >100 (exprimé en secondes, pas en ms)" - -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "les bits doivent être 8" - -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "timestamp hors gamme pour time_t de la plateforme" - -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "trop d'arguments" - -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "trop d'arguments fournis avec ce format" - -#: shared-bindings/displayio/TileGrid.c -#, fuzzy -msgid "unsupported bitmap type" -msgstr "type de bitmap non supporté" - -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" -msgstr "" - -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "x value out of bounds" -msgstr "adresse hors limites" - -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "y should be an int" -msgstr "y doit être un entier (int)" - -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" +msgid "address out of bounds" msgstr "adresse hors limites" -#~ msgid " File \"%q\"" -#~ msgstr " Fichier \"%q\"" - -#~ msgid " File \"%q\", line %d" -#~ msgstr " Fichier \"%q\", ligne %d" - -#~ msgid "%%c requires int or char" -#~ msgstr "%%c nécessite un entier int ou un caractère char" - -#~ msgid "%q index out of range" -#~ msgstr "index %q hors gamme" - -#~ msgid "%q indices must be integers, not %s" -#~ msgstr "les indices %q doivent être des entiers, pas %s" - -#~ msgid "%q() takes %d positional arguments but %d were given" -#~ msgstr "%q() prend %d arguments mais %d ont été donnés" - -#~ msgid "'%q' argument required" -#~ msgstr "'%q' argument requis" - -#~ msgid "'%s' expects a label" -#~ msgstr "'%s' attend un label" - -#~ msgid "'%s' expects a register" -#~ msgstr "'%s' attend un registre" - -#, fuzzy -#~ msgid "'%s' expects a special register" -#~ msgstr "'%s' attend un registre special" - -#, fuzzy -#~ msgid "'%s' expects an FPU register" -#~ msgstr "'%s' attend un registre FPU" - -#, fuzzy -#~ msgid "'%s' expects an address of the form [a, b]" -#~ msgstr "'%s' attend une adresse de la forme [a, b]" - -#~ msgid "'%s' expects an integer" -#~ msgstr "'%s' attend un entier" - -#, fuzzy -#~ msgid "'%s' expects at most r%d" -#~ msgstr "'%s' attend un registre" - -#, fuzzy -#~ msgid "'%s' expects {r0, r1, ...}" -#~ msgstr "'%s' attend {r0, r1, ...}" - -#~ msgid "'%s' integer %d is not within range %d..%d" -#~ msgstr "'%s' l'entier %d n'est pas dans la gamme %d..%d" - -#, fuzzy -#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" -#~ msgstr "'%s' l'entier 0x%x ne correspond pas au masque 0x%x" - -#~ msgid "'%s' object does not support item assignment" -#~ msgstr "l'objet '%s' ne supporte pas l'assignation d'éléments" - -#~ msgid "'%s' object does not support item deletion" -#~ msgstr "l'objet '%s' ne supporte pas la suppression d'éléments" - -#~ msgid "'%s' object has no attribute '%q'" -#~ msgstr "l'objet '%s' n'a pas d'attribut '%q'" - -#~ msgid "'%s' object is not an iterator" -#~ msgstr "l'objet '%s' n'est pas un itérateur" - -#~ msgid "'%s' object is not callable" -#~ msgstr "objet '%s' non appelable" - -#~ msgid "'%s' object is not iterable" -#~ msgstr "objet '%s' non itérable" - -#~ msgid "'%s' object is not subscriptable" -#~ msgstr "l'objet '%s' n'est pas sous-scriptable" - -#~ msgid "'=' alignment not allowed in string format specifier" -#~ msgstr "'=' alignement non autorisé dans la spéc. de format de chaîne" - -#~ msgid "'align' requires 1 argument" -#~ msgstr "'align' nécessite 1 argument" - -#~ msgid "'await' outside function" -#~ msgstr "'await' en dehors d'une fonction" - -#~ msgid "'break' outside loop" -#~ msgstr "'break' en dehors d'une boucle" - -#~ msgid "'continue' outside loop" -#~ msgstr "'continue' en dehors d'une boucle" - -#~ msgid "'data' requires at least 2 arguments" -#~ msgstr "'data' nécessite au moins 2 arguments" - -#~ msgid "'data' requires integer arguments" -#~ msgstr "'data' nécessite des arguments entiers" - -#~ msgid "'label' requires 1 argument" -#~ msgstr "'label' nécessite 1 argument" - -#~ msgid "'return' outside function" -#~ msgstr "'return' en dehors d'une fonction" - -#~ msgid "'yield' outside function" -#~ msgstr "'yield' en dehors d'une fonction" - -#~ msgid "*x must be assignment target" -#~ msgstr "*x doit être la cible de l'assignement" - -#~ msgid ", in %q\n" -#~ msgstr ", dans %q\n" - -#~ msgid "0.0 to a complex power" -#~ msgstr "0.0 à une puissance complexe" - -#~ msgid "3-arg pow() not supported" -#~ msgstr "pow() avec 3 arguments non supporté" - -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Un canal d'interruptions est déjà utilisé" - -#~ msgid "AP required" -#~ msgstr "'AP' requis" - -#, fuzzy -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Tous les périphériques I2C sont utilisés" - -#, fuzzy -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Tous les périphériques SPI sont utilisés" - -#, fuzzy -#~ msgid "All UART peripherals are in use" -#~ msgstr "Tous les périphériques I2C sont utilisés" - -#~ msgid "All event channels in use" -#~ msgstr "Tous les canaux d'événements sont utilisés" - -#~ msgid "All sync event channels in use" -#~ msgstr "Tous les canaux d'événements de synchro sont utilisés" - -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "AnalogOut non supporté" - -#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." -#~ msgstr "" -#~ "AnalogOut est seulement 16 bits. Les valeurs doivent être inf. à 65536." - -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "AnalogOut n'est pas supporté sur la broche indiquée" - -#~ msgid "Another send is already active" -#~ msgstr "Un autre envoi est déjà actif" - -#~ msgid "Bit clock and word select must share a clock unit" -#~ msgstr "'bit clock' et 'word select' doivent partager une horloge" - -#~ msgid "Bit depth must be multiple of 8." -#~ msgstr "La profondeur de bit doit être un multiple de 8." - -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Les deux entrées doivent supporter les interruptions" - -#, fuzzy -#~ msgid "Bus pin %d is already in use" -#~ msgstr "DAC déjà utilisé" - -#~ msgid "Cannot connect to AP" -#~ msgstr "Impossible de se connecter à 'AP'" - -#~ msgid "Cannot disconnect from AP" -#~ msgstr "Impossible de se déconnecter de 'AP'" - -#~ msgid "Cannot get pull while in output mode" -#~ msgstr "Ne peux être tiré ('pull') en mode 'output'" - -#, fuzzy -#~ msgid "Cannot get temperature" -#~ msgstr "Impossible de lire la température. status: 0x%02x" - -#~ msgid "Cannot output both channels on the same pin" -#~ msgstr "Les 2 canaux de sortie ne peuvent être sur la même broche" - -#~ msgid "Cannot record to a file" -#~ msgstr "Impossible d'enregistrer vers un fichier" - -#~ msgid "Cannot reset into bootloader because no bootloader is present." -#~ msgstr "" -#~ "Ne peut être redémarré vers le bootloader car il n'y a pas de bootloader." - -#~ msgid "Cannot set STA config" -#~ msgstr "Impossible de configurer STA" - -#~ msgid "Cannot subclass slice" -#~ msgstr "On ne peut faire de subclass de slice" - -#~ msgid "Cannot unambiguously get sizeof scalar" -#~ msgstr "Impossible d'obtenir la taille du scalaire sans ambigüité" - -#~ msgid "Cannot update i/f status" -#~ msgstr "le status i/f ne peut être mis à jour" - -#~ msgid "Clock unit in use" -#~ msgstr "Horloge en cours d'utilisation" - -#~ msgid "Could not initialize UART" -#~ msgstr "L'UART n'a pu être initialisé" - -#~ msgid "DAC already in use" -#~ msgstr "DAC déjà utilisé" - -#, fuzzy -#~ msgid "Data 0 pin must be byte aligned" -#~ msgstr "le graphic doit être long de 2048 octets" - -#~ msgid "Destination capacity is smaller than destination_length." -#~ msgstr "La capacité de la cible est plus petite que destination_length." - -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "Ne sais pas comment passer l'objet à une fonction native" - -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "l'ESP8266 ne supporte pas le mode sans-échec" - -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "L'ESP8266 ne supporte pas le rappel (pull-down)" - -#~ msgid "EXTINT channel already in use" -#~ msgstr "Canal EXTINT déjà utilisé" - -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Erreur dans ffi_prep_cif" - -#~ msgid "Error in regex" -#~ msgstr "Erreur dans l'expression régulière" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "addresses is empty" +msgstr "adresses vides" -#, fuzzy -#~ msgid "Failed to acquire mutex" -#~ msgstr "Echec de l'obtention de mutex, status: 0x%08lX" +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "l'argument est une séquence vide" -#, fuzzy -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "Echec de l'obtention de mutex, status: 0x%08lX" +#: py/runtime.c +msgid "argument has wrong type" +msgstr "l'argument est d'un mauvais type" -#, fuzzy -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "Echec de l'ajout de caractéristique, statut: 0x%08lX" +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "argument num/types ne correspond pas" -#, fuzzy -#~ msgid "Failed to add service" -#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "l'argument devrait être un(e) '%q', pas '%q'" -#, fuzzy -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" +#: py/objarray.c shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" +msgstr "tableau/octets requis à droite" -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Echec de l'allocation du tampon RX" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "attribut pas encore supporté" -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Echec de l'allocation de %d octets du tampon RX" +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" -#, fuzzy -#~ msgid "Failed to change softdevice state" -#~ msgstr "Echec de la modification de l'état du périph., erreur: 0x%08lX" +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "mauvais mode de compilation" -#, fuzzy -#~ msgid "Failed to connect:" -#~ msgstr "Connection impossible. statut: 0x%08lX" +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "mauvaise spécification de conversion" -#, fuzzy -#~ msgid "Failed to continue scanning" -#~ msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" +#: py/objstr.c +msgid "bad format string" +msgstr "chaîne mal-formée" -#, fuzzy -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "Impossible de commencer à scanner. statut: 0x%0xlX" +#: py/binary.c +msgid "bad typecode" +msgstr "mauvais code type" -#, fuzzy -#~ msgid "Failed to create mutex" -#~ msgstr "Echec de la création de mutex, statut: 0x%0xlX" +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "opération binaire '%q' non implémentée" -#, fuzzy -#~ msgid "Failed to discover services" -#~ msgstr "Echec de la découverte de services, statut: 0x%08lX" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" +msgstr "bits doivent être 7, 8 ou 9" -#, fuzzy -#~ msgid "Failed to get local address" -#~ msgstr "Echec de l'obtention de l'adresse locale, erreur: 0x%08lX" +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "les bits doivent être 8" +#: shared-bindings/audioio/Mixer.c #, fuzzy -#~ msgid "Failed to get softdevice state" -#~ msgstr "Echec de l'obtention de l'état du périph., erreur: 0x%08lX" +msgid "bits_per_sample must be 8 or 16" +msgstr "bits doivent être 8 ou 16" +#: py/emitinlinethumb.c #, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Impossible de notifier la valeur de l'attribut. status: 0x%08lX" +msgid "branch not in range" +msgstr "argument de chr() hors de la gamme range(256)" -#, fuzzy -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "le tampon doit être un objet bytes-like" +#: shared-module/struct/__init__.c #, fuzzy -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" +msgid "buffer size must match format" +msgstr "les slices de tampon doivent être de longueurs égales" -#, fuzzy -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "Echec de l'ajout de l'UUID Vendor Specific, , statut: 0x%08lX" +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" +msgstr "les slices de tampon doivent être de longueurs égales" -#, fuzzy -#~ msgid "Failed to release mutex" -#~ msgstr "Impossible de libérer mutex, status: 0x%08lX" +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c +msgid "buffer too small" +msgstr "tampon trop petit" -#, fuzzy -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "Impossible de libérer mutex, status: 0x%08lX" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "les tampons doivent être de la même longueur" -#, fuzzy -#~ msgid "Failed to start advertising" -#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" -#, fuzzy -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" +#: py/vm.c +msgid "byte code not implemented" +msgstr "bytecode non implémenté" -#, fuzzy -#~ msgid "Failed to start scanning" -#~ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" -#, fuzzy -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "octets > 8 bits non supporté" -#, fuzzy -#~ msgid "Failed to stop advertising" -#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" +#: py/objstr.c +msgid "bytes value out of range" +msgstr "valeur des octets hors gamme" -#, fuzzy -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "Echec de l'ajout de service, statut: 0x%08lX" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "calibration hors gamme" -#, fuzzy -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "Impossible d'écrire la valeur de l'attribut. status: 0x%08lX" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "calibration en lecture seule" -#, fuzzy -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "Impossible d'écrire la valeur de gatts. status: 0x%08lX" +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "valeur de calibration hors gamme +/-127" -#~ msgid "File exists" -#~ msgstr "Le fichier existe" +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "il peut y avoir jusqu'à 4 paramètres pour Thumb assembly" -#~ msgid "Function requires lock." -#~ msgstr "La fonction nécessite un verrou." +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "Maximum 4 paramètres pour l'assembleur Xtensa" -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "le GPIO16 ne supporte pas le tirage (pull-up)" +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "ne peut sauvegarder que du bytecode" -#~ msgid "I/O operation on closed file" -#~ msgstr "opération d'E/S sur un fichier fermé" +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "" +"impossible d'ajouter une méthode spécial à une classe déjà sous-classée" -#~ msgid "I2C operation not supported" -#~ msgstr "opération sur I2C non supportée" +#: py/compile.c +msgid "can't assign to expression" +msgstr "ne peut pas assigner à l'expression" -#~ msgid "" -#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." -#~ "it/mpy-update for more info." -#~ msgstr "" -#~ "Fichier .mpy incompatible. Merci de mettre à jour tous les .mpy. " -#~ "Voirhttp://adafru.it/mpy-update pour plus d'informations." +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "ne peut convertir %s en nombre complexe" -#~ msgid "Input/output error" -#~ msgstr "Erreur d'entrée/sortie" +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "ne peut convertir %s en nombre à virgule flottante (float)" -#~ msgid "Invalid argument" -#~ msgstr "Argument invalide" +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "ne peut convertir %s en entier (int)" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Broche invalide pour 'bit clock'" +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "impossible de convertir l'objet '%q' en '%q' implicitement" -#, fuzzy -#~ msgid "Invalid buffer size" -#~ msgstr "longueur de tampon invalide" +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "on ne peut convertir NaN en int" +#: shared-bindings/i2cslave/I2CSlave.c #, fuzzy -#~ msgid "Invalid channel count" -#~ msgstr "Argument invalide" - -#~ msgid "Invalid clock pin" -#~ msgstr "Broche d'horloge invalide" - -#~ msgid "Invalid data pin" -#~ msgstr "Broche de données invalide" +msgid "can't convert address to int" +msgstr "ne peut convertir %s en entier int" -#~ msgid "Invalid pin for left channel" -#~ msgstr "Broche invalide pour le canal gauche" +#: py/objint.c +msgid "can't convert inf to int" +msgstr "on ne peut convertir inf en int" -#~ msgid "Invalid pin for right channel" -#~ msgstr "Broche invalide pour le canal droit" +#: py/obj.c +msgid "can't convert to complex" +msgstr "ne peut convertir en nombre complexe" -#~ msgid "Invalid pins" -#~ msgstr "Broches invalides" +#: py/obj.c +msgid "can't convert to float" +msgstr "ne peut convertir en nombre à virgule flottante (float)" -#, fuzzy -#~ msgid "Invalid voice count" -#~ msgstr "Type de service invalide" +#: py/obj.c +msgid "can't convert to int" +msgstr "ne peut convertir en entier (int)" -#~ msgid "LHS of keyword arg must be an id" -#~ msgstr "La partie gauche de l'argument nommé doit être un identifiant" +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "impossible de convertir en str implicitement" -#~ msgid "Length must be an int" -#~ msgstr "La longueur doit être entière" +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "ne peut déclarer de nonlocal dans un code externe" -#~ msgid "Length must be non-negative" -#~ msgstr "La longueur ne doit pas être négative" +#: py/compile.c +msgid "can't delete expression" +msgstr "ne peut pas supprimer l'expression" -#~ msgid "Maximum PWM frequency is %dhz." -#~ msgstr "La fréquence de PWM maximale est %dHz" +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "opération binaire impossible entre '%q' et '%q'" -#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" -#~ msgstr "Le délais au démarrage du micro doit être entre 0.0 et 1.0" +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "on ne peut pas faire de division tronquée de nombres complexes" -#~ msgid "Minimum PWM frequency is 1hz." -#~ msgstr "La fréquence de PWM minimale est 1Hz" +#: py/compile.c +msgid "can't have multiple **x" +msgstr "il ne peut y avoir de **x multiples" -#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -#~ msgstr "" -#~ "Les fréquences de PWM multiples ne sont pas supportées. PWM réglé à %dHz" +#: py/compile.c +msgid "can't have multiple *x" +msgstr "il ne peut y avoir de *x multiples" -#~ msgid "No DAC on chip" -#~ msgstr "Pas de DAC sur la puce" +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "impossible de convertir implicitement '%q' en 'bool'" -#~ msgid "No DMA channel found" -#~ msgstr "Aucun canal DMA trouvé" +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "impossible de charger depuis '%q'" -#~ msgid "No PulseIn support for %q" -#~ msgstr "Pas de support de PulseIn pour %q" +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "impossible de charger avec l'index '%q'" -#~ msgid "No RX pin" -#~ msgstr "Pas de broche RX" +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "" -#~ msgid "No TX pin" -#~ msgstr "Pas de broche TX" +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" +"on ne peut envoyer une valeur autre que None à un générateur fraîchement " +"démarré" -#~ msgid "No free GCLKs" -#~ msgstr "Pas de GCLK libre" +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "attribut non modifiable" -#~ msgid "No hardware support for analog out." -#~ msgstr "Pas de support matériel pour une sortie analogique" +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "impossible de stocker '%q'" -#~ msgid "No hardware support on pin" -#~ msgstr "Pas de support matériel pour cette broche" +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "impossible de stocker vers '%q'" -#~ msgid "No such file/directory" -#~ msgstr "Fichier/dossier introuvable" +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "impossible de stocker avec un index '%q'" -#~ msgid "Not playing" -#~ msgstr "Ne joue pas" +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" +"impossible de passer d'une énumération auto des champs à une spécification " +"manuelle" -#, fuzzy -#~ msgid "Odd parity is not supported" -#~ msgstr "parité impaire non supportée" +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" +"impossible de passer d'une spécification manuelle des champs à une " +"énumération auto" -#~ msgid "Only 8 or 16 bit mono with " -#~ msgstr "Uniquement 8 ou 16 bit mono avec " +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "ne peut pas créer une instance de '%q'" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Seul les BMP non-compressé au format Windows sont supportés %d" +#: py/objtype.c +msgid "cannot create instance" +msgstr "ne peut pas créer une instance" -#, fuzzy -#~ msgid "Only slices with step=1 (aka None) are supported" -#~ msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" +#: py/runtime.c +msgid "cannot import name %q" +msgstr "ne peut pas importer le nom %q" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Seul les BMP 24bits ou plus sont supportés %x" +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "ne peut pas réaliser un import relatif" -#~ msgid "Only tx supported on UART1 (GPIO2)." -#~ msgstr "Seul le tx est supporté sur l'UART1 (GPIO2)." +#: py/emitnative.c +msgid "casting" +msgstr "typage" -#~ msgid "Oversample must be multiple of 8." -#~ msgstr "Le sur-échantillonage doit être un multiple de 8." +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" -#~ msgid "PWM not supported on pin %d" -#~ msgstr "La broche %d ne supporte pas le PWM" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "tampon de caractères trop petit" -#~ msgid "Permission denied" -#~ msgstr "Permission refusée" +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "argument de chr() hors de la gamme range(0x11000)" -#~ msgid "Pin %q does not have ADC capabilities" -#~ msgstr "La broche %q n'a pas de convertisseur analogique-digital" +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "argument de chr() hors de la gamme range(256)" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "la broche ne peut être utilisé pour l'ADC" +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "le tampon de couleur doit faire 3 octets (RVB) ou 4 (RVB + pad byte)" -#~ msgid "Pin(16) doesn't support pull" -#~ msgstr "Pin(16) ne supporte pas le tirage (pull)" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "color buffer must be a buffer or int" +msgstr "le tampon de couleur doit être un tampon ou un entier" -#~ msgid "Pins not valid for SPI" -#~ msgstr "Broche invalide pour le SPI" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" +"le tampon de couleur doit être un bytearray ou un tableau de type 'b' ou 'B'" +#: shared-bindings/displayio/Palette.c #, fuzzy -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "Impossible de remonter le système de fichiers" +msgid "color must be between 0x000000 and 0xffffff" +msgstr "la couleur doit être entre 0x000000 et 0xffffff" +#: shared-bindings/displayio/ColorConverter.c #, fuzzy -#~ msgid "Range out of bounds" -#~ msgstr "adresse hors limites" +msgid "color should be an int" +msgstr "la couleur doit être un entier (int)" -#~ msgid "Read-only filesystem" -#~ msgstr "Système de fichier en lecture seule" +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "division complexe par zéro" -#~ msgid "Right channel unsupported" -#~ msgstr "Canal droit non supporté" +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "valeurs complexes non supportées" -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "SDA ou SCL a besoin d'une résistance de tirage ('pull up')" +#: extmod/moduzlib.c +msgid "compression header" +msgstr "entête de compression" -#~ msgid "STA must be active" -#~ msgstr "'STA' doit être actif" +#: py/parse.c +msgid "constant must be an integer" +msgstr "une constante doit être un entier" -#~ msgid "STA required" -#~ msgstr "'STA' requis" +#: py/emitnative.c +msgid "conversion to object" +msgstr "conversion en objet" -#, fuzzy -#~ msgid "Sample rate must be positive" -#~ msgstr "le taux d'échantillonage doit être positif" +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "nombres décimaux non supportés" -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "Taux d'échantillonage trop élevé. Doit être inf. à %d" +#: py/compile.c +msgid "default 'except' must be last" +msgstr "l''except' par défaut doit être en dernier" -#~ msgid "Serializer in use" -#~ msgstr "Sérialiseur en cours d'utilisation" +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" +"le tampon de destination doit être un tableau de type 'B' pour bit_depth = 8" -#~ msgid "Splitting with sub-captures" -#~ msgstr "Fractionnement avec des captures 'sub'" +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" +"le tampon de destination doit être un tableau de type 'H' pour bit_depth = 16" -#~ msgid "Too many channels in sample." -#~ msgstr "Trop de canaux dans l'échantillon." +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "destination_length doit être un entier >= 0" -#~ msgid "Traceback (most recent call last):\n" -#~ msgstr "Trace (appels les plus récents en dernier):\n" +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "la séquence de mise à jour de dict a une mauvaise longueur" -#~ msgid "UART(%d) does not exist" -#~ msgstr "UART(%d) n'existe pas" +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "division par zéro" -#~ msgid "UART(1) can't read" -#~ msgstr "UART(1) ne peut pas lire" +#: py/objdeque.c +msgid "empty" +msgstr "vide" -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "Impossible d'allouer des tampons pour une conversion signée" +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "'heap' vide" -#~ msgid "Unable to find free GCLK" -#~ msgstr "Impossible de trouver un GCLK libre" +#: py/objstr.c +msgid "empty separator" +msgstr "séparateur vide" -#~ msgid "Unable to init parser" -#~ msgstr "Impossible d'initialiser le parser" +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "séquence vide" -#~ msgid "Unable to remount filesystem" -#~ msgstr "Impossible de remonter le système de fichiers" +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "fin de format en cherchant une spécification de conversion" +#: shared-bindings/displayio/Shape.c #, fuzzy -#~ msgid "Unexpected nrfx uuid type" -#~ msgstr "indentation inattendue" +msgid "end_x should be an int" +msgstr "y doit être un entier (int)" -#~ msgid "Unknown type" -#~ msgstr "Type inconnu" +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "erreur = 0x%08lX" -#~ msgid "Unsupported baudrate" -#~ msgstr "Débit non supporté" +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "les exceptions doivent dériver de BaseException" -#~ msgid "Unsupported operation" -#~ msgstr "Opération non supportée" +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "':' attendu après la spécification de format" -#~ msgid "Use esptool to erase flash and re-upload Python instead" -#~ msgstr "" -#~ "Utilisez 'esptool' pour effacer la flash et rechargez Python à la place" +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "objet DigitalInOut attendu" -#~ msgid "Viper functions don't currently support more than 4 arguments" -#~ msgstr "" -#~ "les fonctions Viper ne supportent pas plus de 4 arguments actuellement" - -#~ msgid "" -#~ "Welcome to Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Please visit learn.adafruit.com/category/circuitpython for project " -#~ "guides.\n" -#~ "\n" -#~ "To list built-in modules please do `help(\"modules\")`.\n" -#~ msgstr "" -#~ "Bienvenue sur Adafruit CircuitPython %s!\n" -#~ "\n" -#~ "Vistez learn.adafruit.com/category/circuitpython pour des guides.\n" -#~ "\n" -#~ "Pour lister les modules inclus, tapez `help(\"modules\")`.\n" +#: py/obj.c +msgid "expected tuple/list" +msgstr "un tuple ou une liste est attendu" -#~ msgid "__init__() should return None" -#~ msgstr "__init__() doit retourner None" +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "un dict est attendu pour les arguments nommés" -#~ msgid "__init__() should return None, not '%s'" -#~ msgstr "__init__() doit retourner None, pas '%s'" +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "une instruction assembleur est attendue" -#~ msgid "__new__ arg must be a user-type" -#~ msgstr "l'argument __new__ doit être d'un type défini par l'utilisateur" +#: py/compile.c +msgid "expecting just a value for set" +msgstr "une simple valeur est attendue pour set" -#~ msgid "a bytes-like object is required" -#~ msgstr "un objet 'bytes-like' est requis" +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "couple clef:valeur attendu pour un objet dict" -#~ msgid "abort() called" -#~ msgstr "abort() appelé" +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "argument nommé donné en plus" -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "l'adresse %08x n'est pas alignée sur %d octets" +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "argument positionnel donné en plus" -#~ msgid "arg is an empty sequence" -#~ msgstr "l'argument est une séquence vide" +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "le fichier doit être un fichier ouvert en mode 'byte'" -#~ msgid "argument has wrong type" -#~ msgstr "l'argument est d'un mauvais type" +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "le system de fichier doit fournir une méthode 'mount'" -#~ msgid "argument num/types mismatch" -#~ msgstr "argument num/types ne correspond pas" +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "le premier argument de super() doit être un type" -#~ msgid "argument should be a '%q' not a '%q'" -#~ msgstr "l'argument devrait être un(e) '%q', pas '%q'" +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "le 1er bit doit être le MSB" -#~ msgid "attributes not supported yet" -#~ msgstr "attribut pas encore supporté" +#: py/objint.c +msgid "float too big" +msgstr "nombre flottant trop grand" -#~ msgid "bad compile mode" -#~ msgstr "mauvais mode de compilation" +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "la fonte doit être longue de 2048 octets" -#~ msgid "bad conversion specifier" -#~ msgstr "mauvaise spécification de conversion" +#: py/objstr.c +msgid "format requires a dict" +msgstr "le format nécessite un dict" -#~ msgid "bad format string" -#~ msgstr "chaîne mal-formée" +#: py/objdeque.c +msgid "full" +msgstr "plein" -#~ msgid "bad typecode" -#~ msgstr "mauvais code type" +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "la fonction ne prend pas d'arguments nommés" -#~ msgid "binary op %q not implemented" -#~ msgstr "opération binaire '%q' non implémentée" +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "la fonction attendait au plus %d arguments, reçu %d" -#~ msgid "bits must be 8" -#~ msgstr "les bits doivent être 8" +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "la fonction a reçu plusieurs valeurs pour l'argument '%q'" -#, fuzzy -#~ msgid "bits_per_sample must be 8 or 16" -#~ msgstr "bits doivent être 8 ou 16" +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "il manque %d arguments obligatoires à la fonction" -#, fuzzy -#~ msgid "branch not in range" -#~ msgstr "argument de chr() hors de la gamme range(256)" +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "il manque l'argument nommé obligatoire" -#~ msgid "buffer must be a bytes-like object" -#~ msgstr "le tampon doit être un objet bytes-like" +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "il manque l'argument nommé obligatoire '%q'" -#~ msgid "buffer too long" -#~ msgstr "tampon trop long" +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "il manque l'argument obligatoire #%d" -#~ msgid "buffers must be the same length" -#~ msgstr "les tampons doivent être de la même longueur" +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "la fonction prend %d argument(s) mais %d ont été donné(s)" -#~ msgid "byte code not implemented" -#~ msgstr "bytecode non implémenté" +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "la fonction prend exactement 9 arguments" -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "octets > 8 bits non supporté" +#: py/objgenerator.c +msgid "generator already executing" +msgstr "générateur déjà en cours d'exécution" -#~ msgid "bytes value out of range" -#~ msgstr "valeur des octets hors gamme" +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "le générateur a ignoré GeneratorExit" -#~ msgid "calibration is out of range" -#~ msgstr "calibration hors gamme" +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "le graphic doit être long de 2048 octets" -#~ msgid "calibration is read only" -#~ msgstr "calibration en lecture seule" +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "'heap' doit être une liste" -#~ msgid "calibration value out of range +/-127" -#~ msgstr "valeur de calibration hors gamme +/-127" +#: py/compile.c +msgid "identifier redefined as global" +msgstr "identifiant redéfini comme global" -#~ msgid "can only have up to 4 parameters to Thumb assembly" -#~ msgstr "il peut y avoir jusqu'à 4 paramètres pour Thumb assembly" +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "identifiant redéfini comme nonlocal" -#~ msgid "can only have up to 4 parameters to Xtensa assembly" -#~ msgstr "Maximum 4 paramètres pour l'assembleur Xtensa" +#: py/objstr.c +msgid "incomplete format" +msgstr "format incomplet" -#~ msgid "can only save bytecode" -#~ msgstr "ne peut sauvegarder que du bytecode" +#: py/objstr.c +msgid "incomplete format key" +msgstr "clé de format incomplète" -#~ msgid "can query only one param" -#~ msgstr "ne peut demander qu'un seul paramètre" +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "espacement incorrect" -#~ msgid "can't add special method to already-subclassed class" -#~ msgstr "" -#~ "impossible d'ajouter une méthode spécial à une classe déjà sous-classée" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "index hors gamme" -#~ msgid "can't assign to expression" -#~ msgstr "ne peut pas assigner à l'expression" +#: py/obj.c +msgid "indices must be integers" +msgstr "les indices doivent être des entiers" -#~ msgid "can't convert %s to complex" -#~ msgstr "ne peut convertir %s en nombre complexe" +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "l'assembleur doit être une fonction" -#~ msgid "can't convert %s to float" -#~ msgstr "ne peut convertir %s en nombre à virgule flottante (float)" +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "l'argument 2 de int() doit être >=2 et <=36" -#~ msgid "can't convert %s to int" -#~ msgstr "ne peut convertir %s en entier (int)" +#: py/objstr.c +msgid "integer required" +msgstr "entier requis" -#~ msgid "can't convert '%q' object to %q implicitly" -#~ msgstr "impossible de convertir l'objet '%q' en '%q' implicitement" +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" -#~ msgid "can't convert NaN to int" -#~ msgstr "on ne peut convertir NaN en int" +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "périphérique I2C invalide" -#~ msgid "can't convert inf to int" -#~ msgstr "on ne peut convertir inf en int" +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "périphérique SPI invalide" -#~ msgid "can't convert to complex" -#~ msgstr "ne peut convertir en nombre complexe" +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "arguments invalides" -#~ msgid "can't convert to float" -#~ msgstr "ne peut convertir en nombre à virgule flottante (float)" +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "certificat invalide" -#~ msgid "can't convert to int" -#~ msgstr "ne peut convertir en entier (int)" +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "index invalide pour dupterm" -#~ msgid "can't convert to str implicitly" -#~ msgstr "impossible de convertir en str implicitement" +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "format invalide" -#~ msgid "can't declare nonlocal in outer code" -#~ msgstr "ne peut déclarer de nonlocal dans un code externe" +#: py/objstr.c +msgid "invalid format specifier" +msgstr "spécification de format invalide" -#~ msgid "can't delete expression" -#~ msgstr "ne peut pas supprimer l'expression" +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "clé invalide" -#~ msgid "can't do binary op between '%q' and '%q'" -#~ msgstr "opération binaire impossible entre '%q' et '%q'" +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "décorateur micropython invalide" -#~ msgid "can't do truncated division of a complex number" -#~ msgstr "on ne peut pas faire de division tronquée de nombres complexes" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "pas invalide" -#~ msgid "can't get AP config" -#~ msgstr "impossible de récupérer la config de 'AP'" +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "syntaxe invalide" -#~ msgid "can't get STA config" -#~ msgstr "impossible de récupérer la config de 'STA'" +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "syntaxe invalide pour un entier" -#~ msgid "can't have multiple **x" -#~ msgstr "il ne peut y avoir de **x multiples" +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "syntaxe invalide pour un entier de base %d" -#~ msgid "can't have multiple *x" -#~ msgstr "il ne peut y avoir de *x multiples" +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "syntaxe invalide pour un nombre" -#~ msgid "can't implicitly convert '%q' to 'bool'" -#~ msgstr "impossible de convertir implicitement '%q' en 'bool'" +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "l'argument 1 de issubclass() doit être une classe" -#~ msgid "can't load from '%q'" -#~ msgstr "impossible de charger depuis '%q'" +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" +"l'argument 2 de issubclass() doit être une classe ou un tuple de classes" -#~ msgid "can't load with '%q' index" -#~ msgstr "impossible de charger avec l'index '%q'" +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "join attend une liste d'objets str/bytes cohérent avec l'objet self" -#~ msgid "can't send non-None value to a just-started generator" -#~ msgstr "" -#~ "on ne peut envoyer une valeur autre que None à un générateur fraîchement " -#~ "démarré" +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" +"argument(s) nommé(s) pas encore implémenté - utilisez les arguments normaux" -#~ msgid "can't set AP config" -#~ msgstr "impossible de régler la config de 'AP'" +#: py/bc.c +msgid "keywords must be strings" +msgstr "les noms doivent être des chaînes de caractère" -#~ msgid "can't set STA config" -#~ msgstr "impossible de régler la config de 'STA'" +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "label '%q' non supporté" -#~ msgid "can't set attribute" -#~ msgstr "attribut non modifiable" +#: py/compile.c +msgid "label redefined" +msgstr "label redéfini" -#~ msgid "can't store '%q'" -#~ msgstr "impossible de stocker '%q'" +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "argument lenght non permis pour ce type" -#~ msgid "can't store to '%q'" -#~ msgstr "impossible de stocker vers '%q'" +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "Les parties gauches et droites doivent être compatibles" -#~ msgid "can't store with '%q' index" -#~ msgstr "impossible de stocker avec un index '%q'" +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "la variable locale '%q' a le type '%q' mais la source est '%q'" -#~ msgid "" -#~ "can't switch from automatic field numbering to manual field specification" -#~ msgstr "" -#~ "impossible de passer d'une énumération auto des champs à une " -#~ "spécification manuelle" +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "variable locale '%q' utilisée avant d'en connaitre le type" -#~ msgid "" -#~ "can't switch from manual field specification to automatic field numbering" -#~ msgstr "" -#~ "impossible de passer d'une spécification manuelle des champs à une " -#~ "énumération auto" +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "variable locale référencée avant d'être assignée" -#~ msgid "cannot create '%q' instances" -#~ msgstr "ne peut pas créer une instance de '%q'" +#: py/objint.c +msgid "long int not supported in this build" +msgstr "entiers longs non supportés dans cette build" -#~ msgid "cannot create instance" -#~ msgstr "ne peut pas créer une instance" +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "tampon trop petit" -#~ msgid "cannot import name %q" -#~ msgstr "ne peut pas importer le nom %q" +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "erreur de domaine math" -#~ msgid "cannot perform relative import" -#~ msgstr "ne peut pas réaliser un import relatif" +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "profondeur maximale de récursivité dépassée" -#~ msgid "casting" -#~ msgstr "typage" +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "l'allocation de mémoire a échoué en allouant %u octets" -#~ msgid "chars buffer too small" -#~ msgstr "tampon de caractères trop petit" +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "l'allocation de mémoire a échoué, la pile est vérrouillé" -#~ msgid "chr() arg not in range(0x110000)" -#~ msgstr "argument de chr() hors de la gamme range(0x11000)" +#: py/builtinimport.c +msgid "module not found" +msgstr "module introuvable" -#~ msgid "chr() arg not in range(256)" -#~ msgstr "argument de chr() hors de la gamme range(256)" +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "*x multiple dans l'assignement" -#~ msgid "complex division by zero" -#~ msgstr "division complexe par zéro" +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "de multiple bases ont un conflit de lay-out d'instance" -#~ msgid "complex values not supported" -#~ msgstr "valeurs complexes non supportées" +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "héritage multiple non supporté" -#~ msgid "compression header" -#~ msgstr "entête de compression" +#: py/emitnative.c +msgid "must raise an object" +msgstr "doit lever un objet" -#~ msgid "constant must be an integer" -#~ msgstr "une constante doit être un entier" +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "SCK, MOSI et MISO doivent tous être spécifiés" -#~ msgid "conversion to object" -#~ msgstr "conversion en objet" +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "il faut utiliser un argument nommé pour une fonction key" -#~ msgid "decimal numbers not supported" -#~ msgstr "nombres décimaux non supportés" +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "nom '%q' non défini" -#~ msgid "default 'except' must be last" -#~ msgstr "l''except' par défaut doit être en dernier" +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "les noms doivent être des chaînes de caractère" -#~ msgid "" -#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " -#~ "= 8" -#~ msgstr "" -#~ "le tampon de destination doit être un tableau de type 'B' pour bit_depth " -#~ "= 8" +#: py/runtime.c +msgid "name not defined" +msgstr "nom non défini" -#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -#~ msgstr "" -#~ "le tampon de destination doit être un tableau de type 'H' pour bit_depth " -#~ "= 16" +#: py/compile.c +msgid "name reused for argument" +msgstr "nom réutilisé comme argument" -#~ msgid "destination_length must be an int >= 0" -#~ msgstr "destination_length doit être un entier >= 0" +#: py/emitnative.c +msgid "native yield" +msgstr "" -#~ msgid "dict update sequence has wrong length" -#~ msgstr "la séquence de mise à jour de dict a une mauvaise longueur" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "nécessite plus de %d valeur à dégrouper" -#~ msgid "either pos or kw args are allowed" -#~ msgstr "soit 'pos', soit 'kw' est permis en argument" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "puissance négative sans support des nombres flottants" -#~ msgid "empty" -#~ msgstr "vide" +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "compte de décalage négatif" -#~ msgid "empty heap" -#~ msgstr "'heap' vide" +#: py/vm.c +msgid "no active exception to reraise" +msgstr "aucune exception active à relever" -#~ msgid "empty separator" -#~ msgstr "séparateur vide" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +#, fuzzy +msgid "no available NIC" +msgstr "NIC non disponible" -#~ msgid "end of format while looking for conversion specifier" -#~ msgstr "fin de format en cherchant une spécification de conversion" +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "pas de lien trouvé pour nonlocal" -#~ msgid "error = 0x%08lX" -#~ msgstr "erreur = 0x%08lX" +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "pas de module '%q'" -#~ msgid "exceptions must derive from BaseException" -#~ msgstr "les exceptions doivent dériver de BaseException" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "pas de tel attribut" -#~ msgid "expected ':' after format specifier" -#~ msgstr "':' attendu après la spécification de format" +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "" +"un argument sans valeur par défaut suit un argument avec valeur par défaut" -#~ msgid "expected tuple/list" -#~ msgstr "un tuple ou une liste est attendu" +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "digit non-héxadécimale trouvé" -#~ msgid "expecting a dict for keyword args" -#~ msgstr "un dict est attendu pour les arguments nommés" +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "argument non-nommé après */**" -#~ msgid "expecting a pin" -#~ msgstr "une broche (Pin) est attendue" +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "argument non-nommé après argument nommé" -#~ msgid "expecting an assembler instruction" -#~ msgstr "une instruction assembleur est attendue" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" -#~ msgid "expecting just a value for set" -#~ msgstr "une simple valeur est attendue pour set" +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "" +"tous les arguments n'ont pas été convertis pendant le formatage de la chaîne" -#~ msgid "expecting key:value for dict" -#~ msgstr "couple clef:valeur attendu pour un objet dict" +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "pas assez d'arguments pour la chaîne de format" -#~ msgid "extra keyword arguments given" -#~ msgstr "argument nommé donné en plus" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "l'objet '%s' n'est pas un tuple ou une liste" -#~ msgid "extra positional arguments given" -#~ msgstr "argument positionnel donné en plus" +#: py/obj.c +msgid "object does not support item assignment" +msgstr "l'objet ne supporte pas l'assignation d'éléments" -#~ msgid "first argument to super() must be type" -#~ msgstr "le premier argument de super() doit être un type" +#: py/obj.c +msgid "object does not support item deletion" +msgstr "l'objet ne supporte pas la suppression d'éléments" -#~ msgid "firstbit must be MSB" -#~ msgstr "le 1er bit doit être le MSB" +#: py/obj.c +msgid "object has no len" +msgstr "l'objet n'a pas de len" -#~ msgid "flash location must be below 1MByte" -#~ msgstr "l'emplacement en mémoire flash doit être inférieure à 1Mo" +#: py/obj.c +msgid "object is not subscriptable" +msgstr "l'objet n'est pas sous-scriptable" -#~ msgid "float too big" -#~ msgstr "nombre flottant trop grand" +#: py/runtime.c +msgid "object not an iterator" +msgstr "l'objet n'est pas un itérateur" -#~ msgid "font must be 2048 bytes long" -#~ msgstr "la fonte doit être longue de 2048 octets" +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "objet non appelable" -#~ msgid "format requires a dict" -#~ msgstr "le format nécessite un dict" +#: py/sequence.c +msgid "object not in sequence" +msgstr "l'objet n'est pas dans la séquence" -#~ msgid "frequency can only be either 80Mhz or 160MHz" -#~ msgstr "la fréquence doit être soit 80MHz soit 160MHz" +#: py/runtime.c +msgid "object not iterable" +msgstr "objet non itérable" + +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "l'objet de type '%s' n'a pas de len()" + +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "un objet avec un protocol de tampon est nécessaire" + +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "chaîne de longueur impaire" + +#: py/objstr.c py/objstrunicode.c +#, fuzzy +msgid "offset out of bounds" +msgstr "adresse hors limites" + +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" -#~ msgid "full" -#~ msgstr "plein" +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "ord attend un caractère" + +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "ord() attend un caractère mais une chaîne de longueur %d a été trouvée" -#~ msgid "function does not take keyword arguments" -#~ msgstr "la fonction ne prend pas d'arguments nommés" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "dépassement de capacité en convertissant un entier long en mot machine" -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "la fonction attendait au plus %d arguments, reçu %d" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "la palette doit être longue de 32 octets" -#~ msgid "function got multiple values for argument '%q'" -#~ msgstr "la fonction a reçu plusieurs valeurs pour l'argument '%q'" +#: shared-bindings/displayio/Palette.c +#, fuzzy +msgid "palette_index should be an int" +msgstr "palette_index devrait être un entier (int)'" -#~ msgid "function missing %d required positional arguments" -#~ msgstr "il manque %d arguments obligatoires à la fonction" +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "l'annotation du paramètre doit être un identifiant" -#~ msgid "function missing keyword-only argument" -#~ msgstr "il manque l'argument nommé obligatoire" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "les paramètres doivent être des registres dans la séquence a2 à a5" -#~ msgid "function missing required keyword argument '%q'" -#~ msgstr "il manque l'argument nommé obligatoire '%q'" +#: py/emitinlinethumb.c +#, fuzzy +msgid "parameters must be registers in sequence r0 to r3" +msgstr "les paramètres doivent être des registres dans la séquence r0 à r3" -#~ msgid "function missing required positional argument #%d" -#~ msgstr "il manque l'argument obligatoire #%d" +#: shared-bindings/displayio/Bitmap.c +#, fuzzy +msgid "pixel coordinates out of bounds" +msgstr "adresse hors limites" -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "la fonction prend %d argument(s) mais %d ont été donné(s)" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" -#~ msgid "generator already executing" -#~ msgstr "générateur déjà en cours d'exécution" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "" +"pixel_shader doit être un objet displayio.Palette ou displayio.ColorConverter" -#~ msgid "generator ignored GeneratorExit" -#~ msgstr "le générateur a ignoré GeneratorExit" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "'pop' d'une entrée PulseIn vide" -#~ msgid "graphic must be 2048 bytes long" -#~ msgstr "le graphic doit être long de 2048 octets" +#: py/objset.c +msgid "pop from an empty set" +msgstr "pop d'un ensemble set vide" -#~ msgid "heap must be a list" -#~ msgstr "'heap' doit être une liste" +#: py/objlist.c +msgid "pop from empty list" +msgstr "pop d'une liste vide" -#~ msgid "identifier redefined as global" -#~ msgstr "identifiant redéfini comme global" +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "popitem(): dictionnaire vide" -#~ msgid "identifier redefined as nonlocal" -#~ msgstr "identifiant redéfini comme nonlocal" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "le 3e argument de pow() ne peut être 0" -#~ msgid "impossible baudrate" -#~ msgstr "débit impossible" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "pow() avec 3 arguments nécessite des entiers" -#~ msgid "incomplete format" -#~ msgstr "format incomplet" +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "dépassement de file" -#~ msgid "incomplete format key" -#~ msgstr "clé de format incomplète" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "" -#~ msgid "incorrect padding" -#~ msgstr "espacement incorrect" +#: shared-bindings/_pixelbuf/__init__.c +#, fuzzy +msgid "readonly attribute" +msgstr "attribut illisible" -#~ msgid "index out of range" -#~ msgstr "index hors gamme" +#: py/builtinimport.c +msgid "relative import" +msgstr "import relatif" -#~ msgid "indices must be integers" -#~ msgstr "les indices doivent être des entiers" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "la longueur requise est %d mais l'objet est long de %d" -#~ msgid "inline assembler must be a function" -#~ msgstr "l'assembleur doit être une fonction" +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "l'annotation de return doit être un identifiant" -#~ msgid "int() arg 2 must be >= 2 and <= 36" -#~ msgstr "l'argument 2 de int() doit être >=2 et <=36" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "return attendait '%q' mais a reçu '%q'" -#~ msgid "integer required" -#~ msgstr "entier requis" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "" -#~ msgid "invalid I2C peripheral" -#~ msgstr "périphérique I2C invalide" +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "" -#~ msgid "invalid SPI peripheral" -#~ msgstr "périphérique SPI invalide" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" +"le tampon de sample_source doit être un bytearray ou un tableau de type " +"'h','H', 'b' ou 'B'" -#~ msgid "invalid alarm" -#~ msgstr "alarme invalide" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "taux d'échantillonage hors gamme" -#~ msgid "invalid arguments" -#~ msgstr "arguments invalides" +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "pile de plannification pleine" -#~ msgid "invalid buffer length" -#~ msgstr "longueur de tampon invalide" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "compilation de script non supporté" -#~ msgid "invalid cert" -#~ msgstr "certificat invalide" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#~ msgid "invalid data bits" -#~ msgstr "bits de données invalides" +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "signe non autorisé dans les spéc. de formats de chaînes de caractères" -#~ msgid "invalid dupterm index" -#~ msgstr "index invalide pour dupterm" +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "signe non autorisé avec la spéc. de format d'entier 'c'" -#~ msgid "invalid format" -#~ msgstr "format invalide" +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "'}' seule rencontrée dans une chaîne de format" -#~ msgid "invalid format specifier" -#~ msgstr "spécification de format invalide" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "la longueur de sleep ne doit pas être négative" -#~ msgid "invalid key" -#~ msgstr "clé invalide" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "le pas 'step' de slice ne peut être zéro" -#~ msgid "invalid micropython decorator" -#~ msgstr "décorateur micropython invalide" +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "dépassement de capacité d'un entier court" -#~ msgid "invalid pin" -#~ msgstr "broche invalide" +#: main.c +msgid "soft reboot\n" +msgstr "redémarrage logiciel\n" -#~ msgid "invalid stop bits" -#~ msgstr "bits d'arrêt invalides" +#: py/objstr.c +msgid "start/end indices" +msgstr "indices de début/fin" -#~ msgid "invalid syntax" -#~ msgstr "syntaxe invalide" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y doit être un entier (int)" -#~ msgid "invalid syntax for integer" -#~ msgstr "syntaxe invalide pour un entier" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "le pas 'step' doit être non nul" -#~ msgid "invalid syntax for integer with base %d" -#~ msgstr "syntaxe invalide pour un entier de base %d" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "stop doit être 1 ou 2" -#~ msgid "invalid syntax for number" -#~ msgstr "syntaxe invalide pour un nombre" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop n'est pas accessible au démarrage" -#~ msgid "issubclass() arg 1 must be a class" -#~ msgstr "l'argument 1 de issubclass() doit être une classe" +#: py/stream.c +msgid "stream operation not supported" +msgstr "opération de flux non supportée" -#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" -#~ msgstr "" -#~ "l'argument 2 de issubclass() doit être une classe ou un tuple de classes" +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "index de chaîne hors gamme" -#~ msgid "join expects a list of str/bytes objects consistent with self object" -#~ msgstr "join attend une liste d'objets str/bytes cohérent avec l'objet self" +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "les indices de chaîne de caractère doivent être des entiers, pas %s" -#~ msgid "keyword argument(s) not yet implemented - use normal args instead" -#~ msgstr "" -#~ "argument(s) nommé(s) pas encore implémenté - utilisez les arguments " -#~ "normaux" +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" +"chaîne de carac. non supportée; utilisez des bytes ou un tableau de bytes" -#~ msgid "keywords must be strings" -#~ msgstr "les noms doivent être des chaînes de caractère" +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: indexage impossible" -#~ msgid "label '%q' not defined" -#~ msgstr "label '%q' non supporté" +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: index hors limite" -#~ msgid "label redefined" -#~ msgstr "label redéfini" +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: aucun champs" -#~ msgid "len must be multiple of 4" -#~ msgstr "'len' doit être un multiple de 4" +#: py/objstr.c +msgid "substring not found" +msgstr "sous-chaîne non trouvée" -#~ msgid "length argument not allowed for this type" -#~ msgstr "argument lenght non permis pour ce type" +#: py/compile.c +msgid "super() can't find self" +msgstr "super() ne peut pas trouver self" -#~ msgid "lhs and rhs should be compatible" -#~ msgstr "Les parties gauches et droites doivent être compatibles" +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "erreur de syntaxe JSON" -#~ msgid "local '%q' has type '%q' but source is '%q'" -#~ msgstr "la variable locale '%q' a le type '%q' mais la source est '%q'" +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "erreur de syntaxe dans le descripteur d'uctypes" -#~ msgid "local '%q' used before type known" -#~ msgstr "variable locale '%q' utilisée avant d'en connaitre le type" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "le seuil doit être dans la gamme 0-65536" -#~ msgid "local variable referenced before assignment" -#~ msgstr "variable locale référencée avant d'être assignée" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#~ msgid "long int not supported in this build" -#~ msgstr "entiers longs non supportés dans cette build" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "time.struct_time() prend une séquence de longueur 9" -#~ msgid "map buffer too small" -#~ msgstr "tampon trop petit" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() prend exactement 1 argument" -#~ msgid "maximum recursion depth exceeded" -#~ msgstr "profondeur maximale de récursivité dépassée" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "timeout >100 (exprimé en secondes, pas en ms)" -#~ msgid "memory allocation failed, allocating %u bytes" -#~ msgstr "l'allocation de mémoire a échoué en allouant %u octets" +#: shared-bindings/bleio/CharacteristicBuffer.c +#, fuzzy +msgid "timeout must be >= 0.0" +msgstr "les bits doivent être 8" -#~ msgid "memory allocation failed, allocating %u bytes for native code" -#~ msgstr "" -#~ "l'allocation de mémoire a échoué en allouant %u octets pour un code natif" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "timestamp hors gamme pour time_t de la plateforme" -#~ msgid "memory allocation failed, heap is locked" -#~ msgstr "l'allocation de mémoire a échoué, la pile est vérrouillé" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "trop d'arguments" -#~ msgid "module not found" -#~ msgstr "module introuvable" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "trop d'arguments fournis avec ce format" -#~ msgid "multiple *x in assignment" -#~ msgstr "*x multiple dans l'assignement" +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "trop de valeur à dégrouper (%d attendues)" -#~ msgid "multiple bases have instance lay-out conflict" -#~ msgstr "de multiple bases ont un conflit de lay-out d'instance" +#: py/objstr.c +msgid "tuple index out of range" +msgstr "index du tuple hors gamme" -#~ msgid "multiple inheritance not supported" -#~ msgstr "héritage multiple non supporté" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "tuple/liste a une mauvaise longueur" -#~ msgid "must raise an object" -#~ msgstr "doit lever un objet" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "SCK, MOSI et MISO doivent tous être spécifiés" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "tx et rx ne peuvent être None tous les deux" -#~ msgid "must use keyword argument for key function" -#~ msgstr "il faut utiliser un argument nommé pour une fonction key" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "le type '%q' n'est pas un type de base accepté" -#~ msgid "name '%q' is not defined" -#~ msgstr "nom '%q' non défini" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "le type n'est pas un type de base accepté" -#~ msgid "name not defined" -#~ msgstr "nom non défini" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "l'objet de type '%q' n'a pas d'attribut '%q'" -#~ msgid "name reused for argument" -#~ msgstr "nom réutilisé comme argument" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "le type prend 1 ou 3 arguments" -#~ msgid "need more than %d values to unpack" -#~ msgstr "nécessite plus de %d valeur à dégrouper" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "ulonglong trop grand" -#~ msgid "negative power with no float support" -#~ msgstr "puissance négative sans support des nombres flottants" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "opération unaire '%q' non implémentée" -#~ msgid "negative shift count" -#~ msgstr "compte de décalage négatif" +#: py/parse.c +msgid "unexpected indent" +msgstr "indentation inattendue" -#~ msgid "no active exception to reraise" -#~ msgstr "aucune exception active à relever" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "argument nommé imprévu" -#~ msgid "no binding for nonlocal found" -#~ msgstr "pas de lien trouvé pour nonlocal" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "argument nommé '%q' imprévu" -#~ msgid "no module named '%q'" -#~ msgstr "pas de module '%q'" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "échappements de nom unicode" -#~ msgid "no such attribute" -#~ msgstr "pas de tel attribut" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "la désindentation ne correspond à aucune indentation" -#~ msgid "non-default argument follows default argument" -#~ msgstr "" -#~ "un argument sans valeur par défaut suit un argument avec valeur par défaut" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "spécification %c de conversion inconnue" -#~ msgid "non-hex digit found" -#~ msgstr "digit non-héxadécimale trouvé" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "code de format '%c' inconnu pour un objet de type '%s'" -#~ msgid "non-keyword arg after */**" -#~ msgstr "argument non-nommé après */**" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "code de format '%c' inconnu pour un objet de type 'float'" -#~ msgid "non-keyword arg after keyword arg" -#~ msgstr "argument non-nommé après argument nommé" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "code de format '%c' inconnu pour un objet de type 'str'" -#~ msgid "not a valid ADC Channel: %d" -#~ msgstr "canal ADC non valide : %d" +#: py/compile.c +msgid "unknown type" +msgstr "type inconnu" -#~ msgid "not all arguments converted during string formatting" -#~ msgstr "" -#~ "tous les arguments n'ont pas été convertis pendant le formatage de la " -#~ "chaîne" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "type '%q' inconnu" -#~ msgid "not enough arguments for format string" -#~ msgstr "pas assez d'arguments pour la chaîne de format" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "'{' sans correspondance dans le format" -#~ msgid "object '%s' is not a tuple or list" -#~ msgstr "l'objet '%s' n'est pas un tuple ou une liste" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "attribut illisible" -#~ msgid "object does not support item assignment" -#~ msgstr "l'objet ne supporte pas l'assignation d'éléments" +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "instruction Thumb '%s' non supportée avec %d arguments" -#~ msgid "object does not support item deletion" -#~ msgstr "l'objet ne supporte pas la suppression d'éléments" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "instruction Xtensa '%s' non supportée avec %d arguments" -#~ msgid "object has no len" -#~ msgstr "l'objet n'a pas de len" +#: shared-bindings/displayio/TileGrid.c +#, fuzzy +msgid "unsupported bitmap type" +msgstr "type de bitmap non supporté" -#~ msgid "object is not subscriptable" -#~ msgstr "l'objet n'est pas sous-scriptable" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "caractère de format '%c' (0x%x) non supporté à l'index %d" -#~ msgid "object not an iterator" -#~ msgstr "l'objet n'est pas un itérateur" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "type non supporté pour %q: '%s'" -#~ msgid "object not callable" -#~ msgstr "objet non appelable" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "type non supporté pour l'opérateur" -#~ msgid "object not in sequence" -#~ msgstr "l'objet n'est pas dans la séquence" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "type non supporté pour %q: '%s', '%s'" -#~ msgid "object not iterable" -#~ msgstr "objet non itérable" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#~ msgid "object of type '%s' has no len()" -#~ msgstr "l'objet de type '%s' n'a pas de len()" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" -#~ msgid "object with buffer protocol required" -#~ msgstr "un objet avec un protocol de tampon est nécessaire" +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "mauvais nombres d'arguments" -#~ msgid "odd-length string" -#~ msgstr "chaîne de longueur impaire" +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "mauvais nombre de valeurs à dégrouper" +#: shared-module/displayio/Shape.c #, fuzzy -#~ msgid "offset out of bounds" -#~ msgstr "adresse hors limites" +msgid "x value out of bounds" +msgstr "adresse hors limites" -#~ msgid "ord expects a character" -#~ msgstr "ord attend un caractère" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "y should be an int" +msgstr "y doit être un entier (int)" -#~ msgid "ord() expected a character, but string of length %d found" -#~ msgstr "" -#~ "ord() attend un caractère mais une chaîne de longueur %d a été trouvée" +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "adresse hors limites" -#~ msgid "overflow converting long int to machine word" -#~ msgstr "" -#~ "dépassement de capacité en convertissant un entier long en mot machine" +#: py/objrange.c +msgid "zero step" +msgstr "'step' nul" -#~ msgid "palette must be 32 bytes long" -#~ msgstr "la palette doit être longue de 32 octets" +#~ msgid "AP required" +#~ msgstr "'AP' requis" -#~ msgid "parameter annotation must be an identifier" -#~ msgstr "l'annotation du paramètre doit être un identifiant" +#~ msgid "Cannot connect to AP" +#~ msgstr "Impossible de se connecter à 'AP'" -#~ msgid "parameters must be registers in sequence a2 to a5" -#~ msgstr "les paramètres doivent être des registres dans la séquence a2 à a5" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Impossible de se déconnecter de 'AP'" -#, fuzzy -#~ msgid "parameters must be registers in sequence r0 to r3" -#~ msgstr "les paramètres doivent être des registres dans la séquence r0 à r3" +#~ msgid "Cannot set STA config" +#~ msgstr "Impossible de configurer STA" -#~ msgid "pin does not have IRQ capabilities" -#~ msgstr "la broche ne supporte pas les interruptions (IRQ)" +#~ msgid "Cannot update i/f status" +#~ msgstr "le status i/f ne peut être mis à jour" -#~ msgid "pop from an empty PulseIn" -#~ msgstr "'pop' d'une entrée PulseIn vide" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Ne sais pas comment passer l'objet à une fonction native" -#~ msgid "pop from an empty set" -#~ msgstr "pop d'un ensemble set vide" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "l'ESP8266 ne supporte pas le mode sans-échec" -#~ msgid "pop from empty list" -#~ msgstr "pop d'une liste vide" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "L'ESP8266 ne supporte pas le rappel (pull-down)" -#~ msgid "popitem(): dictionary is empty" -#~ msgstr "popitem(): dictionnaire vide" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Erreur dans ffi_prep_cif" #, fuzzy -#~ msgid "position must be 2-tuple" -#~ msgstr "position doit être un 2-tuple" - -#~ msgid "pow() 3rd argument cannot be 0" -#~ msgstr "le 3e argument de pow() ne peut être 0" - -#~ msgid "pow() with 3 arguments requires integers" -#~ msgstr "pow() avec 3 arguments nécessite des entiers" - -#~ msgid "queue overflow" -#~ msgstr "dépassement de file" +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Impossible de notifier la valeur de l'attribut. status: 0x%08lX" #, fuzzy -#~ msgid "readonly attribute" -#~ msgstr "attribut illisible" +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Impossible de lire la valeur de l'attribut. status: 0x%08lX" -#~ msgid "relative import" -#~ msgstr "import relatif" +#~ msgid "Function requires lock." +#~ msgstr "La fonction nécessite un verrou." -#~ msgid "requested length %d but object has length %d" -#~ msgstr "la longueur requise est %d mais l'objet est long de %d" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "le GPIO16 ne supporte pas le tirage (pull-up)" -#~ msgid "return annotation must be an identifier" -#~ msgstr "l'annotation de return doit être un identifiant" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "La fréquence de PWM maximale est %dHz" -#~ msgid "return expected '%q' but got '%q'" -#~ msgstr "return attendait '%q' mais a reçu '%q'" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "La fréquence de PWM minimale est 1Hz" -#~ msgid "" -#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " -#~ "or 'B'" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." #~ msgstr "" -#~ "le tampon de sample_source doit être un bytearray ou un tableau de type " -#~ "'h','H', 'b' ou 'B'" +#~ "Les fréquences de PWM multiples ne sont pas supportées. PWM réglé à %dHz" -#~ msgid "sampling rate out of range" -#~ msgstr "taux d'échantillonage hors gamme" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Pas de support de PulseIn pour %q" -#~ msgid "scan failed" -#~ msgstr "échec du scan" +#~ msgid "No hardware support for analog out." +#~ msgstr "Pas de support matériel pour une sortie analogique" -#~ msgid "schedule stack full" -#~ msgstr "pile de plannification pleine" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Seul les BMP non-compressé au format Windows sont supportés %d" -#~ msgid "script compilation not supported" -#~ msgstr "compilation de script non supporté" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Seul les BMP 24bits ou plus sont supportés %x" -#~ msgid "sign not allowed in string format specifier" -#~ msgstr "" -#~ "signe non autorisé dans les spéc. de formats de chaînes de caractères" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Seul le tx est supporté sur l'UART1 (GPIO2)." -#~ msgid "sign not allowed with integer format specifier 'c'" -#~ msgstr "signe non autorisé avec la spéc. de format d'entier 'c'" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "La broche %d ne supporte pas le PWM" + +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "La broche %q n'a pas de convertisseur analogique-digital" + +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) ne supporte pas le tirage (pull)" -#~ msgid "single '}' encountered in format string" -#~ msgstr "'}' seule rencontrée dans une chaîne de format" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Broche invalide pour le SPI" -#~ msgid "slice step cannot be zero" -#~ msgstr "le pas 'step' de slice ne peut être zéro" +#~ msgid "STA must be active" +#~ msgstr "'STA' doit être actif" -#~ msgid "small int overflow" -#~ msgstr "dépassement de capacité d'un entier court" +#~ msgid "STA required" +#~ msgstr "'STA' requis" -#~ msgid "start/end indices" -#~ msgstr "indices de début/fin" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) n'existe pas" -#~ msgid "stream operation not supported" -#~ msgstr "opération de flux non supportée" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) ne peut pas lire" -#~ msgid "string index out of range" -#~ msgstr "index de chaîne hors gamme" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Impossible de remonter le système de fichiers" -#~ msgid "string indices must be integers, not %s" -#~ msgstr "les indices de chaîne de caractère doivent être des entiers, pas %s" +#~ msgid "Unknown type" +#~ msgstr "Type inconnu" -#~ msgid "string not supported; use bytes or bytearray" +#~ msgid "Use esptool to erase flash and re-upload Python instead" #~ msgstr "" -#~ "chaîne de carac. non supportée; utilisez des bytes ou un tableau de bytes" +#~ "Utilisez 'esptool' pour effacer la flash et rechargez Python à la place" -#~ msgid "struct: cannot index" -#~ msgstr "struct: indexage impossible" +#~ msgid "buffer too long" +#~ msgstr "tampon trop long" -#~ msgid "struct: index out of range" -#~ msgstr "struct: index hors limite" +#~ msgid "can query only one param" +#~ msgstr "ne peut demander qu'un seul paramètre" -#~ msgid "struct: no fields" -#~ msgstr "struct: aucun champs" +#~ msgid "can't get AP config" +#~ msgstr "impossible de récupérer la config de 'AP'" -#~ msgid "substring not found" -#~ msgstr "sous-chaîne non trouvée" +#~ msgid "can't get STA config" +#~ msgstr "impossible de récupérer la config de 'STA'" -#~ msgid "super() can't find self" -#~ msgstr "super() ne peut pas trouver self" +#~ msgid "can't set AP config" +#~ msgstr "impossible de régler la config de 'AP'" -#~ msgid "syntax error in JSON" -#~ msgstr "erreur de syntaxe JSON" +#~ msgid "can't set STA config" +#~ msgstr "impossible de régler la config de 'STA'" -#~ msgid "syntax error in uctypes descriptor" -#~ msgstr "erreur de syntaxe dans le descripteur d'uctypes" +#~ msgid "either pos or kw args are allowed" +#~ msgstr "soit 'pos', soit 'kw' est permis en argument" -#~ msgid "too many values to unpack (expected %d)" -#~ msgstr "trop de valeur à dégrouper (%d attendues)" +#~ msgid "expecting a pin" +#~ msgstr "une broche (Pin) est attendue" -#~ msgid "tuple index out of range" -#~ msgstr "index du tuple hors gamme" +#~ msgid "flash location must be below 1MByte" +#~ msgstr "l'emplacement en mémoire flash doit être inférieure à 1Mo" -#~ msgid "tuple/list has wrong length" -#~ msgstr "tuple/liste a une mauvaise longueur" +#~ msgid "frequency can only be either 80Mhz or 160MHz" +#~ msgstr "la fréquence doit être soit 80MHz soit 160MHz" -#~ msgid "tx and rx cannot both be None" -#~ msgstr "tx et rx ne peuvent être None tous les deux" +#~ msgid "impossible baudrate" +#~ msgstr "débit impossible" -#~ msgid "type '%q' is not an acceptable base type" -#~ msgstr "le type '%q' n'est pas un type de base accepté" +#~ msgid "invalid alarm" +#~ msgstr "alarme invalide" -#~ msgid "type is not an acceptable base type" -#~ msgstr "le type n'est pas un type de base accepté" +#~ msgid "invalid buffer length" +#~ msgstr "longueur de tampon invalide" -#~ msgid "type object '%q' has no attribute '%q'" -#~ msgstr "l'objet de type '%q' n'a pas d'attribut '%q'" +#~ msgid "invalid data bits" +#~ msgstr "bits de données invalides" -#~ msgid "type takes 1 or 3 arguments" -#~ msgstr "le type prend 1 ou 3 arguments" +#~ msgid "invalid pin" +#~ msgstr "broche invalide" -#~ msgid "ulonglong too large" -#~ msgstr "ulonglong trop grand" +#~ msgid "invalid stop bits" +#~ msgstr "bits d'arrêt invalides" -#~ msgid "unary op %q not implemented" -#~ msgstr "opération unaire '%q' non implémentée" +#~ msgid "len must be multiple of 4" +#~ msgstr "'len' doit être un multiple de 4" -#~ msgid "unexpected indent" -#~ msgstr "indentation inattendue" +#~ msgid "memory allocation failed, allocating %u bytes for native code" +#~ msgstr "" +#~ "l'allocation de mémoire a échoué en allouant %u octets pour un code natif" -#~ msgid "unexpected keyword argument" -#~ msgstr "argument nommé imprévu" +#~ msgid "not a valid ADC Channel: %d" +#~ msgstr "canal ADC non valide : %d" -#~ msgid "unexpected keyword argument '%q'" -#~ msgstr "argument nommé '%q' imprévu" +#~ msgid "pin does not have IRQ capabilities" +#~ msgstr "la broche ne supporte pas les interruptions (IRQ)" -#~ msgid "unicode name escapes" -#~ msgstr "échappements de nom unicode" +#, fuzzy +#~ msgid "position must be 2-tuple" +#~ msgstr "position doit être un 2-tuple" -#~ msgid "unindent does not match any outer indentation level" -#~ msgstr "la désindentation ne correspond à aucune indentation" +#~ msgid "scan failed" +#~ msgstr "échec du scan" #~ msgid "unknown config param" #~ msgstr "paramètre de config. inconnu" -#~ msgid "unknown conversion specifier %c" -#~ msgstr "spécification %c de conversion inconnue" - -#~ msgid "unknown format code '%c' for object of type '%s'" -#~ msgstr "code de format '%c' inconnu pour un objet de type '%s'" - -#~ msgid "unknown format code '%c' for object of type 'float'" -#~ msgstr "code de format '%c' inconnu pour un objet de type 'float'" - -#~ msgid "unknown format code '%c' for object of type 'str'" -#~ msgstr "code de format '%c' inconnu pour un objet de type 'str'" - #~ msgid "unknown status param" #~ msgstr "paramètre de status inconnu" -#~ msgid "unknown type" -#~ msgstr "type inconnu" - -#~ msgid "unknown type '%q'" -#~ msgstr "type '%q' inconnu" - -#~ msgid "unmatched '{' in format" -#~ msgstr "'{' sans correspondance dans le format" - -#~ msgid "unreadable attribute" -#~ msgstr "attribut illisible" - -#, fuzzy -#~ msgid "unsupported Thumb instruction '%s' with %d arguments" -#~ msgstr "instruction Thumb '%s' non supportée avec %d arguments" - -#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" -#~ msgstr "instruction Xtensa '%s' non supportée avec %d arguments" - -#~ msgid "unsupported format character '%c' (0x%x) at index %d" -#~ msgstr "caractère de format '%c' (0x%x) non supporté à l'index %d" - -#~ msgid "unsupported type for %q: '%s'" -#~ msgstr "type non supporté pour %q: '%s'" - -#~ msgid "unsupported type for operator" -#~ msgstr "type non supporté pour l'opérateur" - -#~ msgid "unsupported types for %q: '%s', '%s'" -#~ msgstr "type non supporté pour %q: '%s', '%s'" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "wifi_set_ip_info() a échoué" - -#~ msgid "wrong number of arguments" -#~ msgstr "mauvais nombres d'arguments" - -#~ msgid "wrong number of values to unpack" -#~ msgstr "mauvais nombre de valeurs à dégrouper" - -#~ msgid "zero step" -#~ msgstr "'step' nul" diff --git a/locale/it_IT.po b/locale/it_IT.po index fca7fb382..c443d600a 100644 --- a/locale/it_IT.po +++ b/locale/it_IT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-10-02 16:27+0200\n" "Last-Translator: Enrico Paganin \n" "Language-Team: \n" @@ -23,16 +23,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr " File \"%q\"" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr " File \"%q\", riga %d" + #: main.c msgid " output:\n" msgstr " output:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "%%c necessita di int o char" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q in uso" +#: py/obj.c +msgid "%q index out of range" +msgstr "indice %q fuori intervallo" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "gli indici %q devono essere interi, non %s" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "slice del buffer devono essere della stessa lunghezza" @@ -42,10 +63,162 @@ msgstr "slice del buffer devono essere della stessa lunghezza" msgid "%q should be an int" msgstr "y dovrebbe essere un int" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "%q() prende %d argomenti posizionali ma ne sono stati forniti %d" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "'%q' argomento richiesto" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "'%s' aspetta una etichetta" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "'%s' aspetta un registro" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects a special register" +msgstr "'%s' aspetta un registro" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects an FPU register" +msgstr "'%s' aspetta un registro" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "'%s' aspetta un registro" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "'%s' aspetta un intero" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects at most r%d" +msgstr "'%s' aspetta un registro" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "'%s' aspetta un registro" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "intero '%s' non è nell'intervallo %d..%d" + +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "intero '%s' non è nell'intervallo %d..%d" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "l'oggetto '%s' non ha l'attributo '%q'" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "l'oggetto '%s' non è un iteratore" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "l'oggetto '%s' non è iterabile" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' e 'O' non sono formati supportati" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "'align' richiede 1 argomento" + +#: py/compile.c +msgid "'await' outside function" +msgstr "'await' al di fuori della funzione" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "'break' al di fuori del ciclo" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "'continue' al di fuori del ciclo" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "'data' richiede almeno 2 argomento" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "'data' richiede argomenti interi" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "'label' richiede 1 argomento" + +#: py/compile.c +msgid "'return' outside function" +msgstr "'return' al di fuori della funzione" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "'yield' al di fuori della funzione" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "" + +#: py/obj.c +msgid ", in %q\n" +msgstr ", in %q\n" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "0.0 elevato alla potenza di un numero complesso" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "pow() con tre argmomenti non supportata" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Un canale di interrupt hardware è già in uso" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -56,14 +229,55 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "la palette deve essere lunga 32 byte" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "Tutte le periferiche I2C sono in uso" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "Tutte le periferiche SPI sono in uso" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "All UART peripherals are in use" +msgstr "Tutte le periferiche I2C sono in uso" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Tutti i canali eventi utilizati" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "Tutti i canali di eventi sincronizzati in uso" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Tutti i timer per questo pin sono in uso" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Tutti i timer utilizzati" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "funzionalità AnalogOut non supportata" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "AnalogOut ha solo 16 bit. Il valore deve essere meno di 65536." + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "AnalogOut non supportato sul pin scelto" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "" @@ -88,6 +302,19 @@ msgstr "" "L'auto-reload è attivo. Salva i file su USB per eseguirli o entra nel REPL " "per disabilitarlo.\n" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "" +"Clock di bit e selezione parola devono condividere la stessa unità di clock" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "La profondità di bit deve essere multipla di 8." + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Entrambi i pin devono supportare gli interrupt hardware" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "La luminosità deve essere compreso tra 0 e 255" @@ -101,10 +328,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Buffer di lunghezza non valida. Dovrebbe essere di %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "Il buffer deve essere lungo almeno 1" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy, c-format +msgid "Bus pin %d is already in use" +msgstr "DAC già in uso" + #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -114,6 +347,11 @@ msgstr "i buffer devono essere della stessa lunghezza" msgid "Bytes must be between 0 and 255." msgstr "I byte devono essere compresi tra 0 e 255" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -130,26 +368,57 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Impossibile cancellare valori" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "" + +#: ports/nrf/common-hal/microcontroller/Processor.c +#, fuzzy +msgid "Cannot get temperature" +msgstr "Impossibile leggere la temperatura. status: 0x%02x" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "Impossibile dare in output entrambi i canal sullo stesso pin" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Impossibile leggere senza pin MISO." +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "Impossibile registrare in un file" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Non è possibile rimontare '/' mentre l'USB è attiva." +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" +"Impossibile resettare nel bootloader poiché nessun bootloader è presente." + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "Impossibile subclasare slice" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Impossibile trasferire senza i pin MOSI e MISO." +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "Impossibile ricavare la grandezza scalare di sizeof inequivocabilmente" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Impossibile scrivere senza pin MOSI." @@ -158,6 +427,10 @@ msgstr "Impossibile scrivere senza pin MOSI." msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -170,6 +443,10 @@ msgstr "Inizializzazione del pin di clock fallita." msgid "Clock stretch too long" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Unità di clock in uso" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -179,6 +456,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "I byte devono essere compresi tra 0 e 255" +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "Impossibile inizializzare l'UART" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Impossibile allocare il primo buffer" @@ -191,10 +477,35 @@ msgstr "Impossibile allocare il secondo buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "DAC già in uso" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy +msgid "Data 0 pin must be byte aligned" +msgstr "graphic deve essere lunga 2048 byte" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy +msgid "Data too large for advertisement packet" +msgstr "Impossibile inserire dati nel pacchetto di advertisement." + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Data too large for the advertisement packet" +msgstr "Impossibile inserire dati nel pacchetto di advertisement." + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "La capacità di destinazione è più piccola di destination_length." + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -203,8 +514,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "" -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "Canale EXTINT già in uso" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "Errore nella regex" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Atteso un %q" @@ -214,8 +534,8 @@ msgstr "Atteso un %q" msgid "Expected a Characteristic" msgstr "Non è possibile aggiungere Characteristic." -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c #, fuzzy msgid "Expected a UUID" msgstr "Atteso un %q" @@ -225,8 +545,185 @@ msgstr "Atteso un %q" msgid "Expected tuple of length %d, got %d" msgstr "" +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to acquire mutex" +msgstr "Impossibile allocare buffer RX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Service.c +#, fuzzy, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to add service" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, fuzzy, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Impossibile allocare buffer RX" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Fallita allocazione del buffer RX di %d byte" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to change softdevice state" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to connect:" +msgstr "Impossibile connettersi. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to continue scanning" +msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to create mutex" +msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to discover services" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get local address" +msgstr "" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get softdevice state" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "Non è possibile aggiungere l'UUID del vendor specifico da 128-bit" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to release mutex" +msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start advertising" +msgstr "Impossibile avviare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "Impossibile avviare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start scanning" +msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "Impossible iniziare la scansione. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to stop advertising" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "Impossibile fermare advertisement. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" + +#: py/moduerrno.c +msgid "File exists" +msgstr "File esistente" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -234,18 +731,70 @@ msgstr "" msgid "Group full" msgstr "Gruppo pieno" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "operazione I/O su file chiuso" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "operazione I2C non supportata" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" +"File .mpy incompatibile. Aggiorna tutti i file .mpy. Vedi http://adafru.it/" +"mpy-update per più informazioni." + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "Errore input/output" + #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "File BMP non valido" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frequenza PWM non valida" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "Argomento non valido" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Pin del clock di bit non valido" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "Invalid buffer size" +msgstr "lunghezza del buffer non valida" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Invalid channel count" +msgstr "Argomento non valido" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Pin di clock non valido" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "Pin dati non valido" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Direzione non valida." @@ -258,19 +807,37 @@ msgstr "File non valido" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Numero di bit non valido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Fase non valida" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin non valido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Pin non valido per il canale sinistro" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Pin non valido per il canale destro" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "Pin non validi" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "Polarità non valida" @@ -278,14 +845,31 @@ msgstr "Polarità non valida" msgid "Invalid run mode." msgstr "Modalità di esecuzione non valida." +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Invalid voice count" +msgstr "Tipo di servizio non valido" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "File wave non valido" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" +#: py/objslice.c +msgid "Length must be an int" +msgstr "Length deve essere un intero" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "Length deve essere non negativo" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -314,10 +898,36 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" +"Il ritardo di avvio del microfono deve essere nell'intervallo tra 0.0 e 1.0" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Nessun DAC sul chip" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "Nessun canale DMA trovato" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Nessun pin RX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Nessun pin TX" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Nessun bus I2C predefinito" @@ -330,15 +940,36 @@ msgstr "Nessun bus SPI predefinito" msgid "No default UART bus" msgstr "Nessun bus UART predefinito" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Nessun GCLK libero" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "Nessun generatore hardware di numeri casuali disponibile" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Nessun supporto hardware sul pin" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "Nessun file/directory esistente" + #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Impossible connettersi all'AP" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "In pausa" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." @@ -346,6 +977,15 @@ msgstr "" "L'oggetto è stato deinizializzato e non può essere più usato. Crea un nuovo " "oggetto." +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "Odd parity is not supported" +msgstr "operazione I2C non supportata" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -363,6 +1003,15 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Only slices with step=1 (aka None) are supported" +msgstr "solo slice con step=1 (aka None) sono supportate" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "L'oversampling deve essere multiplo di 8." + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -378,6 +1027,24 @@ msgstr "" "frequenza PWM frequency non è scrivibile quando variable_frequency è " "impostato nel costruttore a False." +#: py/moduerrno.c +msgid "Permission denied" +msgstr "Permesso negato" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "Il pin non ha capacità di ADC" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +#, fuzzy +msgid "Plus any modules on the filesystem\n" +msgstr "Imposssibile rimontare il filesystem" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -391,23 +1058,32 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "calibrazione RTC non supportata su questa scheda" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "RTC non supportato su questa scheda" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" -msgstr "La modifica RTC non è supportata su questa scheda" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, fuzzy +msgid "Range out of bounds" +msgstr "indirizzo fuori limite" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Sola lettura" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "Filesystem in sola lettura" + #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Sola lettura" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Canale destro non supportato" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -420,15 +1096,44 @@ msgstr "Modalità sicura in esecuzione! Auto-reload disattivato.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Modalità sicura in esecuzione! Codice salvato non in esecuzione.\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "SDA o SCL necessitano un pull-up" + +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Sample rate must be positive" +msgstr "STA deve essere attiva" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "" +"Frequenza di campionamento troppo alta. Il valore deve essere inferiore a %d" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Serializer in uso" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "Slice non supportate" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "Suddivisione con sotto-catture" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "La dimensione dello stack deve essere almeno 256" @@ -495,6 +1200,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Per uscire resettare la scheda senza " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "" + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -503,6 +1212,10 @@ msgstr "" msgid "Too many displays" msgstr "" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "Traceback (chiamata più recente per ultima):\n" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "Tupla o struct_time richiesto come argomento" @@ -527,6 +1240,20 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "Ipossibilitato ad allocare buffer per la conversione con segno" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Impossibile trovare un GCLK libero" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "Inizilizzazione del parser non possibile" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -535,6 +1262,20 @@ msgstr "" msgid "Unable to write to nvm." msgstr "Imposibile scrivere su nvm." +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy +msgid "Unexpected nrfx uuid type" +msgstr "indentazione inaspettata" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "baudrate non supportato" + #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -544,10 +1285,18 @@ msgstr "tipo di bitmap non supportato" msgid "Unsupported format" msgstr "Formato non supportato" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "Operazione non supportata" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "Valore di pull non supportato." +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "Le funzioni Viper non supportano più di 4 argomenti al momento" + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "" @@ -556,6 +1305,16 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "ATTENZIONE: Il nome del sorgente ha due estensioni\n" +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" + #: supervisor/shared/safe_mode.c #, fuzzy msgid "" @@ -568,6 +1327,32 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "È stato richiesto l'avvio in modalità sicura da " +#: py/objtype.c +msgid "__init__() should return None" +msgstr "__init__() deve ritornare None" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "__init__() deve ritornare None, non '%s'" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "un oggetto byte-like è richiesto" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "abort() chiamato" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "l'indirizzo %08x non è allineato a %d bytes" + #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "indirizzo fuori limite" @@ -576,39 +1361,306 @@ msgstr "indirizzo fuori limite" msgid "addresses is empty" msgstr "gli indirizzi sono vuoti" -#: shared-bindings/nvm/ByteArray.c +#: py/modbuiltins.c +msgid "arg is an empty sequence" +msgstr "l'argomento è una sequenza vuota" + +#: py/runtime.c +msgid "argument has wrong type" +msgstr "il tipo dell'argomento è errato" + +#: py/argcheck.c +msgid "argument num/types mismatch" +msgstr "discrepanza di numero/tipo di argomenti" + +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'" + +#: py/objarray.c shared-bindings/nvm/ByteArray.c msgid "array/bytes required on right side" msgstr "" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "attributi non ancora supportati" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" +msgstr "" + +#: py/builtinevex.c +msgid "bad compile mode" +msgstr "" + +#: py/objstr.c +msgid "bad conversion specifier" +msgstr "specificatore di conversione scorretto" + +#: py/objstr.c +msgid "bad format string" +msgstr "stringa di formattazione scorretta" + +#: py/binary.c +msgid "bad typecode" +msgstr "" + +#: py/emitnative.c +msgid "binary op %q not implemented" +msgstr "operazione binaria %q non implementata" + #: shared-bindings/busio/UART.c msgid "bits must be 7, 8 or 9" msgstr "i bit devono essere 7, 8 o 9" +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "i bit devono essere 8" + +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "bits_per_sample must be 8 or 16" +msgstr "i bit devono essere 7, 8 o 9" + +#: py/emitinlinethumb.c +#, fuzzy +msgid "branch not in range" +msgstr "argomento di chr() non è in range(256)" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "" + #: shared-module/struct/__init__.c #, fuzzy msgid "buffer size must match format" msgstr "slice del buffer devono essere della stessa lunghezza" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "buffer slices must be of equal length" msgstr "slice del buffer devono essere della stessa lunghezza" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c msgid "buffer too small" msgstr "buffer troppo piccolo" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "i buffer devono essere della stessa lunghezza" + #: shared-bindings/_pew/PewPew.c msgid "buttons must be digitalio.DigitalInOut" msgstr "" +#: py/vm.c +msgid "byte code not implemented" +msgstr "byte code non implementato" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "byte > 8 bit non supportati" + +#: py/objstr.c +msgid "bytes value out of range" +msgstr "valore byte fuori intervallo" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "la calibrazione è fuori intervallo" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "la calibrazione è in sola lettura" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "valore di calibrazione fuori intervallo +/-127" + +#: py/emitinlinethumb.c +#, fuzzy +msgid "can only have up to 4 parameters to Thumb assembly" +msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" + +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" +msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" + +#: py/persistentcode.c +msgid "can only save bytecode" +msgstr "È possibile salvare solo bytecode" + +#: py/objtype.c +msgid "can't add special method to already-subclassed class" +msgstr "" + +#: py/compile.c +msgid "can't assign to expression" +msgstr "impossibile assegnare all'espressione" + +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" +msgstr "non è possibile convertire a complex" + +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "non è possibile convertire %s a float" + +#: py/obj.c +#, c-format +msgid "can't convert %s to int" +msgstr "non è possibile convertire %s a int" + +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" +msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q" + +#: py/objint.c +msgid "can't convert NaN to int" +msgstr "impossibile convertire NaN in int" + #: shared-bindings/i2cslave/I2CSlave.c msgid "can't convert address to int" msgstr "impossible convertire indirizzo in int" +#: py/objint.c +msgid "can't convert inf to int" +msgstr "impossibile convertire inf in int" + +#: py/obj.c +msgid "can't convert to complex" +msgstr "non è possibile convertire a complex" + +#: py/obj.c +msgid "can't convert to float" +msgstr "non è possibile convertire a float" + +#: py/obj.c +msgid "can't convert to int" +msgstr "non è possibile convertire a int" + +#: py/objstr.c +msgid "can't convert to str implicitly" +msgstr "impossibile convertire a stringa implicitamente" + +#: py/compile.c +msgid "can't declare nonlocal in outer code" +msgstr "impossibile dichiarare nonlocal nel codice esterno" + +#: py/compile.c +msgid "can't delete expression" +msgstr "impossibile cancellare l'espessione" + +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" +msgstr "impossibile eseguire operazione binaria tra '%q' e '%q'" + +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "impossibile fare il modulo di un numero complesso" + +#: py/compile.c +msgid "can't have multiple **x" +msgstr "impossibile usare **x multipli" + +#: py/compile.c +msgid "can't have multiple *x" +msgstr "impossibile usare *x multipli" + +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "non è possibile convertire implicitamente '%q' in 'bool'" + +#: py/emitnative.c +msgid "can't load from '%q'" +msgstr "impossibile caricare da '%q'" + +#: py/emitnative.c +msgid "can't load with '%q' index" +msgstr "impossibile caricare con indice '%q'" + +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" +msgstr "" + +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" + +#: py/objnamedtuple.c +msgid "can't set attribute" +msgstr "impossibile impostare attributo" + +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "impossibile memorizzare '%q'" + +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "impossibile memorizzare in '%q'" + +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "impossibile memorizzare con indice '%q'" + +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" + +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" + +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "creare '%q' istanze" + +#: py/objtype.c +msgid "cannot create instance" +msgstr "impossibile creare un istanza" + +#: py/runtime.c +msgid "cannot import name %q" +msgstr "impossibile imporate il nome %q" + +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "impossibile effettuare l'importazione relativa" + +#: py/emitnative.c +msgid "casting" +msgstr "casting" + #: shared-bindings/bleio/Service.c msgid "characteristics includes an object that is not a Characteristic" msgstr "" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "buffer dei caratteri troppo piccolo" + +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "argomento di chr() non è in range(0x110000)" + +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "argomento di chr() non è in range(256)" + #: shared-bindings/displayio/Palette.c msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" msgstr "" @@ -631,24 +1683,130 @@ msgstr "il colore deve essere compreso tra 0x000000 e 0xffffff" msgid "color should be an int" msgstr "il colore deve essere un int" +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "complex divisione per zero" + +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "valori complessi non supportai" + +#: extmod/moduzlib.c +msgid "compression header" +msgstr "compressione dell'header" + +#: py/parse.c +msgid "constant must be an integer" +msgstr "la costante deve essere un intero" + +#: py/emitnative.c +msgid "conversion to object" +msgstr "conversione in oggetto" + +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "numeri decimali non supportati" + +#: py/compile.c +msgid "default 'except' must be last" +msgstr "'except' predefinito deve essere ultimo" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" +"il buffer di destinazione deve essere un bytearray o un array di tipo 'B' " +"con bit_depth = 8" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" +"il buffer di destinazione deve essere un array di tipo 'H' con bit_depth = 16" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "destination_length deve essere un int >= 0" + +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "sequanza di aggiornamento del dizionario ha la lunghezza errata" + +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "divisione per zero" +#: py/objdeque.c +msgid "empty" +msgstr "vuoto" + +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "heap vuoto" + +#: py/objstr.c +msgid "empty separator" +msgstr "separatore vuoto" + #: shared-bindings/random/__init__.c msgid "empty sequence" msgstr "sequenza vuota" +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" + #: shared-bindings/displayio/Shape.c #, fuzzy msgid "end_x should be an int" msgstr "y dovrebbe essere un int" +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "" + +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "le eccezioni devono derivare da BaseException" + +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "':' atteso dopo lo specificatore di formato" + #: shared-bindings/gamepad/GamePad.c msgid "expected a DigitalInOut" msgstr "DigitalInOut atteso" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c +#: py/obj.c +msgid "expected tuple/list" +msgstr "lista/tupla prevista" + +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "argomenti nominati necessitano un dizionario" + +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "istruzione assembler attesa" + +#: py/compile.c +msgid "expecting just a value for set" +msgstr "un solo valore atteso per set" + +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "chiave:valore atteso per dict" + +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "argomento nominato aggiuntivo fornito" + +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "argomenti posizonali extra dati" + +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c msgid "file must be a file opened in byte mode" msgstr "" @@ -656,840 +1814,978 @@ msgstr "" msgid "filesystem must provide mount method" msgstr "il filesystem deve fornire un metodo di mount" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "la funzione prende esattamente 9 argomenti" +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "step non valida" +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "il primo bit deve essere il più significativo (MSB)" -#: shared-bindings/math/__init__.c -msgid "math domain error" -msgstr "errore di dominio matematico" +#: py/objint.c +msgid "float too big" +msgstr "float troppo grande" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "argomenti nominati devono essere stringhe" +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "il font deve essere lungo 2048 byte" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -#, fuzzy -msgid "no available NIC" -msgstr "busio.UART non ancora implementato" +#: py/objstr.c +msgid "format requires a dict" +msgstr "la formattazione richiede un dict" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" -msgstr "" +#: py/objdeque.c +msgid "full" +msgstr "pieno" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" -msgstr "solo slice con step=1 (aka None) sono supportate" +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "la funzione non prende argomenti nominati" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" -msgstr "palette_index deve essere un int" +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "la funzione prevede al massimo %d argmoneti, ma ne ha ricevuti %d" -#: shared-bindings/displayio/Bitmap.c -#, fuzzy -msgid "pixel coordinates out of bounds" -msgstr "indirizzo fuori limite" +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "la funzione ha ricevuto valori multipli per l'argomento '%q'" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" -msgstr "" +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "mancano %d argomenti posizionali obbligatori alla funzione" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" -msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter" +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "argomento nominato mancante alla funzione" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "la riga deve essere compattata e allineata alla parola" +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "argomento nominato '%q' mancante alla funzione" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "mancante il #%d argomento posizonale obbligatorio della funzione" + +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" msgstr "" +"la funzione prende %d argomenti posizionali ma ne sono stati forniti %d" #: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" -msgstr "la lunghezza di sleed deve essere non negativa" - -#: main.c -msgid "soft reboot\n" -msgstr "soft reboot\n" - -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y dovrebbe essere un int" +msgid "function takes exactly 9 arguments" +msgstr "la funzione prende esattamente 9 argomenti" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "step deve essere non zero" +#: py/objgenerator.c +msgid "generator already executing" +msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" msgstr "" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" -msgstr "stop non raggiungibile dall'inizio" +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "graphic deve essere lunga 2048 byte" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "la soglia deve essere nell'intervallo 0-65536" +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "l'heap deve essere una lista" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" -msgstr "" +#: py/compile.c +msgid "identifier redefined as global" +msgstr "identificatore ridefinito come globale" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" -msgstr "" +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "identificatore ridefinito come nonlocal" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" -msgstr "time.struct_time() prende esattamente un argomento" +#: py/objstr.c +msgid "incomplete format" +msgstr "formato incompleto" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: py/objstr.c +msgid "incomplete format key" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "i bit devono essere 8" +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "padding incorretto" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "timestamp è fuori intervallo per il time_t della piattaforma" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "indice fuori intervallo" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "troppi argomenti" +#: py/obj.c +msgid "indices must be integers" +msgstr "gli indici devono essere interi" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "troppi argomenti forniti con il formato specificato" +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "inline assembler deve essere una funzione" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" -msgstr "tipo di bitmap non supportato" +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "il secondo argomanto di int() deve essere >= 2 e <= 36" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: py/objstr.c +msgid "integer required" +msgstr "intero richiesto" + +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" msgstr "" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "x value out of bounds" -msgstr "indirizzo fuori limite" +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "periferica I2C invalida" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y dovrebbe essere un int" +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "periferica SPI invalida" -#: shared-module/displayio/Shape.c -#, fuzzy -msgid "y value out of bounds" -msgstr "indirizzo fuori limite" +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "argomenti non validi" -#~ msgid " File \"%q\"" -#~ msgstr " File \"%q\"" +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "certificato non valido" -#~ msgid " File \"%q\", line %d" -#~ msgstr " File \"%q\", riga %d" +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "indice dupterm non valido" -#~ msgid "%%c requires int or char" -#~ msgstr "%%c necessita di int o char" +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "formato non valido" -#~ msgid "%q index out of range" -#~ msgstr "indice %q fuori intervallo" +#: py/objstr.c +msgid "invalid format specifier" +msgstr "specificatore di formato non valido" -#~ msgid "%q indices must be integers, not %s" -#~ msgstr "gli indici %q devono essere interi, non %s" +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "chiave non valida" -#~ msgid "%q() takes %d positional arguments but %d were given" -#~ msgstr "%q() prende %d argomenti posizionali ma ne sono stati forniti %d" +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "decoratore non valido in micropython" -#~ msgid "'%q' argument required" -#~ msgstr "'%q' argomento richiesto" +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "step non valida" -#~ msgid "'%s' expects a label" -#~ msgstr "'%s' aspetta una etichetta" +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "sintassi non valida" -#~ msgid "'%s' expects a register" -#~ msgstr "'%s' aspetta un registro" +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "sintassi invalida per l'intero" -#, fuzzy -#~ msgid "'%s' expects a special register" -#~ msgstr "'%s' aspetta un registro" +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "sintassi invalida per l'intero con base %d" -#, fuzzy -#~ msgid "'%s' expects an FPU register" -#~ msgstr "'%s' aspetta un registro" +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "sintassi invalida per il numero" -#, fuzzy -#~ msgid "'%s' expects an address of the form [a, b]" -#~ msgstr "'%s' aspetta un registro" +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "il primo argomento di issubclass() deve essere una classe" -#~ msgid "'%s' expects an integer" -#~ msgstr "'%s' aspetta un intero" +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" +"il secondo argomento di issubclass() deve essere una classe o una tupla di " +"classi" -#, fuzzy -#~ msgid "'%s' expects at most r%d" -#~ msgstr "'%s' aspetta un registro" +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" +"join prende una lista di oggetti str/byte consistenti con l'oggetto stesso" -#, fuzzy -#~ msgid "'%s' expects {r0, r1, ...}" -#~ msgstr "'%s' aspetta un registro" +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" +"argomento(i) nominati non ancora implementati - usare invece argomenti " +"normali" + +#: py/bc.c +msgid "keywords must be strings" +msgstr "argomenti nominati devono essere stringhe" -#~ msgid "'%s' integer %d is not within range %d..%d" -#~ msgstr "intero '%s' non è nell'intervallo %d..%d" +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "etichetta '%q' non definita" -#, fuzzy -#~ msgid "'%s' integer 0x%x does not fit in mask 0x%x" -#~ msgstr "intero '%s' non è nell'intervallo %d..%d" +#: py/compile.c +msgid "label redefined" +msgstr "etichetta ridefinita" -#~ msgid "'%s' object has no attribute '%q'" -#~ msgstr "l'oggetto '%s' non ha l'attributo '%q'" +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "" -#~ msgid "'%s' object is not an iterator" -#~ msgstr "l'oggetto '%s' non è un iteratore" +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "lhs e rhs devono essere compatibili" -#~ msgid "'%s' object is not iterable" -#~ msgstr "l'oggetto '%s' non è iterabile" +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "local '%q' ha tipo '%q' ma sorgente è '%q'" -#~ msgid "'align' requires 1 argument" -#~ msgstr "'align' richiede 1 argomento" +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "locla '%q' utilizzato prima che il tipo fosse noto" -#~ msgid "'await' outside function" -#~ msgstr "'await' al di fuori della funzione" +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "variabile locale richiamata prima di un assegnamento" -#~ msgid "'break' outside loop" -#~ msgstr "'break' al di fuori del ciclo" +#: py/objint.c +msgid "long int not supported in this build" +msgstr "long int non supportata in questa build" -#~ msgid "'continue' outside loop" -#~ msgstr "'continue' al di fuori del ciclo" +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "map buffer troppo piccolo" -#~ msgid "'data' requires at least 2 arguments" -#~ msgstr "'data' richiede almeno 2 argomento" +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "errore di dominio matematico" -#~ msgid "'data' requires integer arguments" -#~ msgstr "'data' richiede argomenti interi" +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "profondità massima di ricorsione superata" -#~ msgid "'label' requires 1 argument" -#~ msgstr "'label' richiede 1 argomento" +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "allocazione di memoria fallita, allocando %u byte" -#~ msgid "'return' outside function" -#~ msgstr "'return' al di fuori della funzione" +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "allocazione di memoria fallita, l'heap è bloccato" -#~ msgid "'yield' outside function" -#~ msgstr "'yield' al di fuori della funzione" +#: py/builtinimport.c +msgid "module not found" +msgstr "modulo non trovato" -#~ msgid ", in %q\n" -#~ msgstr ", in %q\n" +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "*x multipli nell'assegnamento" -#~ msgid "0.0 to a complex power" -#~ msgstr "0.0 elevato alla potenza di un numero complesso" +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" -#~ msgid "3-arg pow() not supported" -#~ msgstr "pow() con tre argmomenti non supportata" +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "ereditarietà multipla non supportata" -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Un canale di interrupt hardware è già in uso" +#: py/emitnative.c +msgid "must raise an object" +msgstr "deve lanciare un oggetto" -#~ msgid "AP required" -#~ msgstr "AP richiesto" +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "è necessario specificare tutte le sck/mosi/miso" -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Tutte le periferiche I2C sono in uso" +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "" -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Tutte le periferiche SPI sono in uso" +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "nome '%q'non definito" +#: shared-bindings/bleio/Peripheral.c #, fuzzy -#~ msgid "All UART peripherals are in use" -#~ msgstr "Tutte le periferiche I2C sono in uso" - -#~ msgid "All event channels in use" -#~ msgstr "Tutti i canali eventi utilizati" +msgid "name must be a string" +msgstr "argomenti nominati devono essere stringhe" -#~ msgid "All sync event channels in use" -#~ msgstr "Tutti i canali di eventi sincronizzati in uso" +#: py/runtime.c +msgid "name not defined" +msgstr "nome non definito" -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "funzionalità AnalogOut non supportata" +#: py/compile.c +msgid "name reused for argument" +msgstr "nome riutilizzato come argomento" -#~ msgid "AnalogOut is only 16 bits. Value must be less than 65536." -#~ msgstr "AnalogOut ha solo 16 bit. Il valore deve essere meno di 65536." +#: py/emitnative.c +msgid "native yield" +msgstr "yield nativo" -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "AnalogOut non supportato sul pin scelto" +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "necessari più di %d valori da scompattare" -#~ msgid "Bit clock and word select must share a clock unit" -#~ msgstr "" -#~ "Clock di bit e selezione parola devono condividere la stessa unità di " -#~ "clock" +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "potenza negativa senza supporto per float" -#~ msgid "Bit depth must be multiple of 8." -#~ msgstr "La profondità di bit deve essere multipla di 8." +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "" -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Entrambi i pin devono supportare gli interrupt hardware" +#: py/vm.c +msgid "no active exception to reraise" +msgstr "nessuna eccezione attiva da rilanciare" +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c #, fuzzy -#~ msgid "Bus pin %d is already in use" -#~ msgstr "DAC già in uso" - -#~ msgid "C-level assert" -#~ msgstr "assert a livello C" - -#~ msgid "Cannot connect to AP" -#~ msgstr "Impossible connettersi all'AP" +msgid "no available NIC" +msgstr "busio.UART non ancora implementato" -#~ msgid "Cannot disconnect from AP" -#~ msgstr "Impossible disconnettersi all'AP" +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "nessun binding per nonlocal trovato" -#, fuzzy -#~ msgid "Cannot get temperature" -#~ msgstr "Impossibile leggere la temperatura. status: 0x%02x" +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "nessun modulo chiamato '%q'" -#~ msgid "Cannot output both channels on the same pin" -#~ msgstr "Impossibile dare in output entrambi i canal sullo stesso pin" +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "attributo inesistente" -#~ msgid "Cannot record to a file" -#~ msgstr "Impossibile registrare in un file" +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "argomento non predefinito segue argmoento predfinito" -#~ msgid "Cannot reset into bootloader because no bootloader is present." -#~ msgstr "" -#~ "Impossibile resettare nel bootloader poiché nessun bootloader è presente." +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "trovata cifra non esadecimale" -#~ msgid "Cannot set STA config" -#~ msgstr "Impossibile impostare la configurazione della STA" +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "argomento non nominato dopo */**" -#~ msgid "Cannot subclass slice" -#~ msgstr "Impossibile subclasare slice" +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "argomento non nominato seguito da argomento nominato" -#~ msgid "Cannot unambiguously get sizeof scalar" -#~ msgstr "" -#~ "Impossibile ricavare la grandezza scalare di sizeof inequivocabilmente" +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" -#~ msgid "Cannot update i/f status" -#~ msgstr "Impossibile aggiornare status di i/f" +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "" +"non tutti gli argomenti sono stati convertiti durante la formatazione in " +"stringhe" -#~ msgid "Clock unit in use" -#~ msgstr "Unità di clock in uso" +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "argomenti non sufficienti per la stringa di formattazione" -#~ msgid "Could not initialize UART" -#~ msgstr "Impossibile inizializzare l'UART" +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "oggetto '%s' non è una tupla o una lista" -#~ msgid "DAC already in use" -#~ msgstr "DAC già in uso" +#: py/obj.c +msgid "object does not support item assignment" +msgstr "" -#, fuzzy -#~ msgid "Data 0 pin must be byte aligned" -#~ msgstr "graphic deve essere lunga 2048 byte" +#: py/obj.c +msgid "object does not support item deletion" +msgstr "" -#, fuzzy -#~ msgid "Data too large for advertisement packet" -#~ msgstr "Impossibile inserire dati nel pacchetto di advertisement." +#: py/obj.c +msgid "object has no len" +msgstr "l'oggetto non ha lunghezza" -#, fuzzy -#~ msgid "Data too large for the advertisement packet" -#~ msgstr "Impossibile inserire dati nel pacchetto di advertisement." +#: py/obj.c +msgid "object is not subscriptable" +msgstr "" -#~ msgid "Destination capacity is smaller than destination_length." -#~ msgstr "La capacità di destinazione è più piccola di destination_length." +#: py/runtime.c +msgid "object not an iterator" +msgstr "l'oggetto non è un iteratore" -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "Non so come passare l'oggetto alla funzione nativa" +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "" -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "ESP8266 non supporta la modalità sicura." +#: py/sequence.c +msgid "object not in sequence" +msgstr "oggetto non in sequenza" -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "ESP8266 non supporta pull-down" +#: py/runtime.c +msgid "object not iterable" +msgstr "oggetto non iterabile" -#~ msgid "EXTINT channel already in use" -#~ msgstr "Canale EXTINT già in uso" +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "l'oggetto di tipo '%s' non implementa len()" -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Errore in ffi_prep_cif" +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "" -#~ msgid "Error in regex" -#~ msgstr "Errore nella regex" +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "stringa di lunghezza dispari" +#: py/objstr.c py/objstrunicode.c #, fuzzy -#~ msgid "Failed to acquire mutex" -#~ msgstr "Impossibile allocare buffer RX" +msgid "offset out of bounds" +msgstr "indirizzo fuori limite" -#, fuzzy -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "solo slice con step=1 (aka None) sono supportate" -#, fuzzy -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "ord() aspetta un carattere" -#, fuzzy -#~ msgid "Failed to add service" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "" +"ord() aspettava un carattere, ma ha ricevuto una stringa di lunghezza %d" -#, fuzzy -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "overflow convertendo long int in parola" -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Impossibile allocare buffer RX" +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "la palette deve essere lunga 32 byte" -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Fallita allocazione del buffer RX di %d byte" +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "palette_index deve essere un int" -#, fuzzy -#~ msgid "Failed to change softdevice state" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "" -#, fuzzy -#~ msgid "Failed to connect:" -#~ msgstr "Impossibile connettersi. status: 0x%02x" +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "parametri devono essere i registri in sequenza da a2 a a5" +#: py/emitinlinethumb.c #, fuzzy -#~ msgid "Failed to continue scanning" -#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" +msgid "parameters must be registers in sequence r0 to r3" +msgstr "parametri devono essere i registri in sequenza da a2 a a5" +#: shared-bindings/displayio/Bitmap.c #, fuzzy -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" +msgid "pixel coordinates out of bounds" +msgstr "indirizzo fuori limite" -#, fuzzy -#~ msgid "Failed to create mutex" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" -#, fuzzy -#~ msgid "Failed to discover services" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "pixel_shader deve essere displayio.Palette o displayio.ColorConverter" -#, fuzzy -#~ msgid "Failed to get softdevice state" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "pop sun un PulseIn vuoto" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Impossibile notificare valore dell'attributo. status: 0x%02x" +#: py/objset.c +msgid "pop from an empty set" +msgstr "pop da un set vuoto" -#, fuzzy -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#: py/objlist.c +msgid "pop from empty list" +msgstr "pop da una lista vuota" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "popitem(): il dizionario è vuoto" -#, fuzzy -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "il terzo argomento di pow() non può essere 0" -#, fuzzy -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "Non è possibile aggiungere l'UUID del vendor specifico da 128-bit" +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "pow() con 3 argomenti richiede interi" -#, fuzzy -#~ msgid "Failed to release mutex" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "overflow della coda" -#, fuzzy -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "" +#: shared-bindings/_pixelbuf/__init__.c #, fuzzy -#~ msgid "Failed to start advertising" -#~ msgstr "Impossibile avviare advertisement. status: 0x%02x" +msgid "readonly attribute" +msgstr "attributo non leggibile" -#, fuzzy -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "Impossibile avviare advertisement. status: 0x%02x" +#: py/builtinimport.c +msgid "relative import" +msgstr "importazione relativa" -#, fuzzy -#~ msgid "Failed to start scanning" -#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "lunghezza %d richiesta ma l'oggetto ha lunghezza %d" -#, fuzzy -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "Impossible iniziare la scansione. status: 0x%02x" +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "" -#, fuzzy -#~ msgid "Failed to stop advertising" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "return aspettava '%q' ma ha ottenuto '%q'" -#, fuzzy -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "Impossibile fermare advertisement. status: 0x%02x" +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "la riga deve essere compattata e allineata alla parola" -#, fuzzy -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "" -#, fuzzy -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "Impossibile scrivere valore dell'attributo. status: 0x%02x" +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" +"il buffer sample_source deve essere un bytearray o un array di tipo 'h', " +"'H', 'b' o 'B'" -#~ msgid "File exists" -#~ msgstr "File esistente" +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "frequenza di campionamento fuori intervallo" -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "GPIO16 non supporta pull-up" +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "" -#~ msgid "I/O operation on closed file" -#~ msgstr "operazione I/O su file chiuso" +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "compilazione dello scrip non suportata" -#~ msgid "I2C operation not supported" -#~ msgstr "operazione I2C non supportata" +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" -#~ msgid "" -#~ "Incompatible .mpy file. Please update all .mpy files. See http://adafru." -#~ "it/mpy-update for more info." -#~ msgstr "" -#~ "File .mpy incompatibile. Aggiorna tutti i file .mpy. Vedi http://adafru." -#~ "it/mpy-update per più informazioni." +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "segno non permesso nello spcificatore di formato della stringa" -#~ msgid "Input/output error" -#~ msgstr "Errore input/output" +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "segno non permesso nello spcificatore di formato 'c' della stringa" -#~ msgid "Invalid argument" -#~ msgstr "Argomento non valido" +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "'}' singolo presente nella stringa di formattazione" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Pin del clock di bit non valido" +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "la lunghezza di sleed deve essere non negativa" -#, fuzzy -#~ msgid "Invalid buffer size" -#~ msgstr "lunghezza del buffer non valida" +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "la step della slice non può essere zero" -#, fuzzy -#~ msgid "Invalid channel count" -#~ msgstr "Argomento non valido" +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "small int overflow" -#~ msgid "Invalid clock pin" -#~ msgstr "Pin di clock non valido" +#: main.c +msgid "soft reboot\n" +msgstr "soft reboot\n" -#~ msgid "Invalid data pin" -#~ msgstr "Pin dati non valido" +#: py/objstr.c +msgid "start/end indices" +msgstr "" -#~ msgid "Invalid pin for left channel" -#~ msgstr "Pin non valido per il canale sinistro" +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y dovrebbe essere un int" -#~ msgid "Invalid pin for right channel" -#~ msgstr "Pin non valido per il canale destro" +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "step deve essere non zero" -#~ msgid "Invalid pins" -#~ msgstr "Pin non validi" +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "" -#, fuzzy -#~ msgid "Invalid voice count" -#~ msgstr "Tipo di servizio non valido" +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "stop non raggiungibile dall'inizio" -#~ msgid "Length must be an int" -#~ msgstr "Length deve essere un intero" +#: py/stream.c +msgid "stream operation not supported" +msgstr "operazione di stream non supportata" -#~ msgid "Length must be non-negative" -#~ msgstr "Length deve essere non negativo" +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "indice della stringa fuori intervallo" -#~ msgid "Maximum PWM frequency is %dhz." -#~ msgstr "Frequenza massima su PWM è %dhz" +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "indici della stringa devono essere interi, non %s" -#~ msgid "Microphone startup delay must be in range 0.0 to 1.0" -#~ msgstr "" -#~ "Il ritardo di avvio del microfono deve essere nell'intervallo tra 0.0 e " -#~ "1.0" +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" -#~ msgid "Minimum PWM frequency is 1hz." -#~ msgstr "Frequenza minima su PWM è 1hz" +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: impossibile indicizzare" -#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." -#~ msgstr "Frequenze PWM multiple non supportate. PWM già impostato a %shz." +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: indice fuori intervallo" -#~ msgid "No DAC on chip" -#~ msgstr "Nessun DAC sul chip" +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: nessun campo" -#~ msgid "No DMA channel found" -#~ msgstr "Nessun canale DMA trovato" +#: py/objstr.c +msgid "substring not found" +msgstr "sottostringa non trovata" -#~ msgid "No PulseIn support for %q" -#~ msgstr "Nessun supporto per PulseIn per %q" +#: py/compile.c +msgid "super() can't find self" +msgstr "" -#~ msgid "No RX pin" -#~ msgstr "Nessun pin RX" +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "errore di sintassi nel JSON" -#~ msgid "No TX pin" -#~ msgstr "Nessun pin TX" +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "errore di sintassi nel descrittore uctypes" -#~ msgid "No free GCLKs" -#~ msgstr "Nessun GCLK libero" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "la soglia deve essere nell'intervallo 0-65536" -#~ msgid "No hardware support for analog out." -#~ msgstr "Nessun supporto hardware per l'uscita analogica." +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#~ msgid "No hardware support on pin" -#~ msgstr "Nessun supporto hardware sul pin" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" -#~ msgid "No such file/directory" -#~ msgstr "Nessun file/directory esistente" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "time.struct_time() prende esattamente un argomento" -#~ msgid "Not playing" -#~ msgstr "In pausa" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" +#: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy -#~ msgid "Odd parity is not supported" -#~ msgstr "operazione I2C non supportata" +msgid "timeout must be >= 0.0" +msgstr "i bit devono essere 8" -#~ msgid "Only Windows format, uncompressed BMP supported %d" -#~ msgstr "Formato solo di Windows, BMP non compresso supportato %d" +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "timestamp è fuori intervallo per il time_t della piattaforma" -#, fuzzy -#~ msgid "Only slices with step=1 (aka None) are supported" -#~ msgstr "solo slice con step=1 (aka None) sono supportate" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "troppi argomenti" -#~ msgid "Only true color (24 bpp or higher) BMP supported %x" -#~ msgstr "Solo BMP true color (24 bpp o superiore) sono supportati %x" +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "troppi argomenti forniti con il formato specificato" -#~ msgid "Only tx supported on UART1 (GPIO2)." -#~ msgstr "Solo tx supportato su UART1 (GPIO2)." +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "troppi valori da scompattare (%d attesi)" -#~ msgid "Oversample must be multiple of 8." -#~ msgstr "L'oversampling deve essere multiplo di 8." +#: py/objstr.c +msgid "tuple index out of range" +msgstr "indice della tupla fuori intervallo" -#~ msgid "PWM not supported on pin %d" -#~ msgstr "PWM non è supportato sul pin %d" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "tupla/lista ha la lunghezza sbagliata" -#~ msgid "Permission denied" -#~ msgstr "Permesso negato" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#~ msgid "Pin %q does not have ADC capabilities" -#~ msgstr "Il pin %q non ha capacità ADC" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "tx e rx non possono essere entrambi None" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "Il pin non ha capacità di ADC" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "il tipo '%q' non è un tipo di base accettabile" -#~ msgid "Pin(16) doesn't support pull" -#~ msgstr "Pin(16) non supporta pull" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "il tipo non è un tipo di base accettabile" -#~ msgid "Pins not valid for SPI" -#~ msgstr "Pin non validi per SPI" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "l'oggetto di tipo '%q' non ha l'attributo '%q'" -#, fuzzy -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "Imposssibile rimontare il filesystem" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "tipo prende 1 o 3 argomenti" -#, fuzzy -#~ msgid "Range out of bounds" -#~ msgstr "indirizzo fuori limite" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "ulonglong troppo grande" -#~ msgid "Read-only filesystem" -#~ msgstr "Filesystem in sola lettura" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "operazione unaria %q non implementata" -#~ msgid "Right channel unsupported" -#~ msgstr "Canale destro non supportato" +#: py/parse.c +msgid "unexpected indent" +msgstr "indentazione inaspettata" -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "SDA o SCL necessitano un pull-up" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "argomento nominato inaspettato" -#~ msgid "STA must be active" -#~ msgstr "STA deve essere attiva" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "argomento nominato '%q' inaspettato" -#~ msgid "STA required" -#~ msgstr "STA richiesta" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" -#, fuzzy -#~ msgid "Sample rate must be positive" -#~ msgstr "STA deve essere attiva" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "" -#~ "Frequenza di campionamento troppo alta. Il valore deve essere inferiore a " -#~ "%d" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "specificatore di conversione %s sconosciuto" -#~ msgid "Serializer in use" -#~ msgstr "Serializer in uso" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "codice di formattaione '%c' sconosciuto per oggetto di tipo '%s'" -#~ msgid "Splitting with sub-captures" -#~ msgstr "Suddivisione con sotto-catture" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'float'" -#~ msgid "Traceback (most recent call last):\n" -#~ msgstr "Traceback (chiamata più recente per ultima):\n" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'str'" -#~ msgid "UART(%d) does not exist" -#~ msgstr "UART(%d) non esistente" +#: py/compile.c +msgid "unknown type" +msgstr "tipo sconosciuto" -#~ msgid "UART(1) can't read" -#~ msgstr "UART(1) non leggibile" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "tipo '%q' sconosciuto" -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "Ipossibilitato ad allocare buffer per la conversione con segno" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "'{' spaiato nella stringa di formattazione" -#~ msgid "Unable to find free GCLK" -#~ msgstr "Impossibile trovare un GCLK libero" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "attributo non leggibile" -#~ msgid "Unable to init parser" -#~ msgstr "Inizilizzazione del parser non possibile" +#: py/emitinlinethumb.c +#, fuzzy, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" -#~ msgid "Unable to remount filesystem" -#~ msgstr "Imposssibile rimontare il filesystem" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" -#, fuzzy -#~ msgid "Unexpected nrfx uuid type" -#~ msgstr "indentazione inaspettata" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "tipo di bitmap non supportato" -#~ msgid "Unknown type" -#~ msgstr "Tipo sconosciuto" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "carattere di formattazione '%c' (0x%x) non supportato all indice %d" -#~ msgid "Unsupported baudrate" -#~ msgstr "baudrate non supportato" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "tipo non supportato per %q: '%s'" -#~ msgid "Unsupported operation" -#~ msgstr "Operazione non supportata" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "tipo non supportato per l'operando" -#~ msgid "Use esptool to erase flash and re-upload Python instead" -#~ msgstr "Usa esptool per cancellare la flash e ricaricare Python invece" - -#~ msgid "Viper functions don't currently support more than 4 arguments" -#~ msgstr "Le funzioni Viper non supportano più di 4 argomenti al momento" - -#~ msgid "[addrinfo error %d]" -#~ msgstr "[errore addrinfo %d]" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "tipi non supportati per %q: '%s', '%s'" -#~ msgid "__init__() should return None" -#~ msgstr "__init__() deve ritornare None" +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#~ msgid "__init__() should return None, not '%s'" -#~ msgstr "__init__() deve ritornare None, non '%s'" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" -#~ msgid "a bytes-like object is required" -#~ msgstr "un oggetto byte-like è richiesto" +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "numero di argomenti errato" -#~ msgid "abort() called" -#~ msgstr "abort() chiamato" +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "numero di valori da scompattare non corretto" -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "l'indirizzo %08x non è allineato a %d bytes" +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "x value out of bounds" +msgstr "indirizzo fuori limite" -#~ msgid "arg is an empty sequence" -#~ msgstr "l'argomento è una sequenza vuota" +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y dovrebbe essere un int" -#~ msgid "argument has wrong type" -#~ msgstr "il tipo dell'argomento è errato" +#: shared-module/displayio/Shape.c +#, fuzzy +msgid "y value out of bounds" +msgstr "indirizzo fuori limite" -#~ msgid "argument num/types mismatch" -#~ msgstr "discrepanza di numero/tipo di argomenti" +#: py/objrange.c +msgid "zero step" +msgstr "zero step" -#~ msgid "argument should be a '%q' not a '%q'" -#~ msgstr "l'argomento dovrebbe essere un '%q' e non un '%q'" +#~ msgid "AP required" +#~ msgstr "AP richiesto" -#~ msgid "attributes not supported yet" -#~ msgstr "attributi non ancora supportati" +#~ msgid "C-level assert" +#~ msgstr "assert a livello C" -#~ msgid "bad conversion specifier" -#~ msgstr "specificatore di conversione scorretto" +#~ msgid "Cannot connect to AP" +#~ msgstr "Impossible connettersi all'AP" -#~ msgid "bad format string" -#~ msgstr "stringa di formattazione scorretta" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Impossible disconnettersi all'AP" -#~ msgid "binary op %q not implemented" -#~ msgstr "operazione binaria %q non implementata" +#~ msgid "Cannot set STA config" +#~ msgstr "Impossibile impostare la configurazione della STA" -#~ msgid "bits must be 8" -#~ msgstr "i bit devono essere 8" +#~ msgid "Cannot update i/f status" +#~ msgstr "Impossibile aggiornare status di i/f" -#, fuzzy -#~ msgid "bits_per_sample must be 8 or 16" -#~ msgstr "i bit devono essere 7, 8 o 9" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Non so come passare l'oggetto alla funzione nativa" -#, fuzzy -#~ msgid "branch not in range" -#~ msgstr "argomento di chr() non è in range(256)" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "ESP8266 non supporta la modalità sicura." -#~ msgid "buffer too long" -#~ msgstr "buffer troppo lungo" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 non supporta pull-down" -#~ msgid "buffers must be the same length" -#~ msgstr "i buffer devono essere della stessa lunghezza" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Errore in ffi_prep_cif" -#~ msgid "byte code not implemented" -#~ msgstr "byte code non implementato" +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Impossibile notificare valore dell'attributo. status: 0x%02x" -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "byte > 8 bit non supportati" +#, fuzzy +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" -#~ msgid "bytes value out of range" -#~ msgstr "valore byte fuori intervallo" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 non supporta pull-up" -#~ msgid "calibration is out of range" -#~ msgstr "la calibrazione è fuori intervallo" +#~ msgid "Maximum PWM frequency is %dhz." +#~ msgstr "Frequenza massima su PWM è %dhz" -#~ msgid "calibration is read only" -#~ msgstr "la calibrazione è in sola lettura" +#~ msgid "Minimum PWM frequency is 1hz." +#~ msgstr "Frequenza minima su PWM è 1hz" -#~ msgid "calibration value out of range +/-127" -#~ msgstr "valore di calibrazione fuori intervallo +/-127" +#~ msgid "Multiple PWM frequencies not supported. PWM already set to %dhz." +#~ msgstr "Frequenze PWM multiple non supportate. PWM già impostato a %shz." -#, fuzzy -#~ msgid "can only have up to 4 parameters to Thumb assembly" -#~ msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" +#~ msgid "No PulseIn support for %q" +#~ msgstr "Nessun supporto per PulseIn per %q" -#~ msgid "can only have up to 4 parameters to Xtensa assembly" -#~ msgstr "sono disponibili fino a 4 parametri per il Xtensa assembly" +#~ msgid "No hardware support for analog out." +#~ msgstr "Nessun supporto hardware per l'uscita analogica." -#~ msgid "can only save bytecode" -#~ msgstr "È possibile salvare solo bytecode" +#~ msgid "Only Windows format, uncompressed BMP supported %d" +#~ msgstr "Formato solo di Windows, BMP non compresso supportato %d" -#~ msgid "can query only one param" -#~ msgstr "è possibile interrogare solo un parametro" +#~ msgid "Only true color (24 bpp or higher) BMP supported %x" +#~ msgstr "Solo BMP true color (24 bpp o superiore) sono supportati %x" -#~ msgid "can't assign to expression" -#~ msgstr "impossibile assegnare all'espressione" +#~ msgid "Only tx supported on UART1 (GPIO2)." +#~ msgstr "Solo tx supportato su UART1 (GPIO2)." -#~ msgid "can't convert %s to complex" -#~ msgstr "non è possibile convertire a complex" +#~ msgid "PWM not supported on pin %d" +#~ msgstr "PWM non è supportato sul pin %d" -#~ msgid "can't convert %s to float" -#~ msgstr "non è possibile convertire %s a float" +#~ msgid "Pin %q does not have ADC capabilities" +#~ msgstr "Il pin %q non ha capacità ADC" -#~ msgid "can't convert %s to int" -#~ msgstr "non è possibile convertire %s a int" +#~ msgid "Pin(16) doesn't support pull" +#~ msgstr "Pin(16) non supporta pull" -#~ msgid "can't convert '%q' object to %q implicitly" -#~ msgstr "impossibile convertire l'oggetto '%q' implicitamente in %q" +#~ msgid "Pins not valid for SPI" +#~ msgstr "Pin non validi per SPI" -#~ msgid "can't convert NaN to int" -#~ msgstr "impossibile convertire NaN in int" +#~ msgid "STA must be active" +#~ msgstr "STA deve essere attiva" -#~ msgid "can't convert inf to int" -#~ msgstr "impossibile convertire inf in int" +#~ msgid "STA required" +#~ msgstr "STA richiesta" -#~ msgid "can't convert to complex" -#~ msgstr "non è possibile convertire a complex" +#~ msgid "UART(%d) does not exist" +#~ msgstr "UART(%d) non esistente" -#~ msgid "can't convert to float" -#~ msgstr "non è possibile convertire a float" +#~ msgid "UART(1) can't read" +#~ msgstr "UART(1) non leggibile" -#~ msgid "can't convert to int" -#~ msgstr "non è possibile convertire a int" +#~ msgid "Unable to remount filesystem" +#~ msgstr "Imposssibile rimontare il filesystem" -#~ msgid "can't convert to str implicitly" -#~ msgstr "impossibile convertire a stringa implicitamente" +#~ msgid "Unknown type" +#~ msgstr "Tipo sconosciuto" -#~ msgid "can't declare nonlocal in outer code" -#~ msgstr "impossibile dichiarare nonlocal nel codice esterno" +#~ msgid "Use esptool to erase flash and re-upload Python instead" +#~ msgstr "Usa esptool per cancellare la flash e ricaricare Python invece" -#~ msgid "can't delete expression" -#~ msgstr "impossibile cancellare l'espessione" +#~ msgid "[addrinfo error %d]" +#~ msgstr "[errore addrinfo %d]" -#~ msgid "can't do binary op between '%q' and '%q'" -#~ msgstr "impossibile eseguire operazione binaria tra '%q' e '%q'" +#~ msgid "buffer too long" +#~ msgstr "buffer troppo lungo" -#~ msgid "can't do truncated division of a complex number" -#~ msgstr "impossibile fare il modulo di un numero complesso" +#~ msgid "can query only one param" +#~ msgstr "è possibile interrogare solo un parametro" #~ msgid "can't get AP config" #~ msgstr "impossibile recuperare le configurazioni dell'AP" @@ -1497,651 +2793,69 @@ msgstr "indirizzo fuori limite" #~ msgid "can't get STA config" #~ msgstr "impossibile recuperare la configurazione della STA" -#~ msgid "can't have multiple **x" -#~ msgstr "impossibile usare **x multipli" - -#~ msgid "can't have multiple *x" -#~ msgstr "impossibile usare *x multipli" - -#~ msgid "can't implicitly convert '%q' to 'bool'" -#~ msgstr "non è possibile convertire implicitamente '%q' in 'bool'" - -#~ msgid "can't load from '%q'" -#~ msgstr "impossibile caricare da '%q'" - -#~ msgid "can't load with '%q' index" -#~ msgstr "impossibile caricare con indice '%q'" - #~ msgid "can't set AP config" #~ msgstr "impossibile impostare le configurazioni dell'AP" #~ msgid "can't set STA config" #~ msgstr "impossibile impostare le configurazioni della STA" -#~ msgid "can't set attribute" -#~ msgstr "impossibile impostare attributo" - -#~ msgid "can't store '%q'" -#~ msgstr "impossibile memorizzare '%q'" - -#~ msgid "can't store to '%q'" -#~ msgstr "impossibile memorizzare in '%q'" - -#~ msgid "can't store with '%q' index" -#~ msgstr "impossibile memorizzare con indice '%q'" - -#~ msgid "cannot create '%q' instances" -#~ msgstr "creare '%q' istanze" - -#~ msgid "cannot create instance" -#~ msgstr "impossibile creare un istanza" - -#~ msgid "cannot import name %q" -#~ msgstr "impossibile imporate il nome %q" - -#~ msgid "cannot perform relative import" -#~ msgstr "impossibile effettuare l'importazione relativa" - -#~ msgid "casting" -#~ msgstr "casting" - -#~ msgid "chars buffer too small" -#~ msgstr "buffer dei caratteri troppo piccolo" - -#~ msgid "chr() arg not in range(0x110000)" -#~ msgstr "argomento di chr() non è in range(0x110000)" - -#~ msgid "chr() arg not in range(256)" -#~ msgstr "argomento di chr() non è in range(256)" - -#~ msgid "complex division by zero" -#~ msgstr "complex divisione per zero" - -#~ msgid "complex values not supported" -#~ msgstr "valori complessi non supportai" - -#~ msgid "compression header" -#~ msgstr "compressione dell'header" - -#~ msgid "constant must be an integer" -#~ msgstr "la costante deve essere un intero" - -#~ msgid "conversion to object" -#~ msgstr "conversione in oggetto" - -#~ msgid "decimal numbers not supported" -#~ msgstr "numeri decimali non supportati" - -#~ msgid "default 'except' must be last" -#~ msgstr "'except' predefinito deve essere ultimo" - -#~ msgid "" -#~ "destination buffer must be a bytearray or array of type 'B' for bit_depth " -#~ "= 8" -#~ msgstr "" -#~ "il buffer di destinazione deve essere un bytearray o un array di tipo 'B' " -#~ "con bit_depth = 8" - -#~ msgid "destination buffer must be an array of type 'H' for bit_depth = 16" -#~ msgstr "" -#~ "il buffer di destinazione deve essere un array di tipo 'H' con bit_depth " -#~ "= 16" - -#~ msgid "destination_length must be an int >= 0" -#~ msgstr "destination_length deve essere un int >= 0" - -#~ msgid "dict update sequence has wrong length" -#~ msgstr "sequanza di aggiornamento del dizionario ha la lunghezza errata" - #~ msgid "either pos or kw args are allowed" #~ msgstr "sono permesse solo gli argomenti pos o kw" -#~ msgid "empty" -#~ msgstr "vuoto" - -#~ msgid "empty heap" -#~ msgstr "heap vuoto" - -#~ msgid "empty separator" -#~ msgstr "separatore vuoto" - -#~ msgid "exceptions must derive from BaseException" -#~ msgstr "le eccezioni devono derivare da BaseException" - -#~ msgid "expected ':' after format specifier" -#~ msgstr "':' atteso dopo lo specificatore di formato" - -#~ msgid "expected tuple/list" -#~ msgstr "lista/tupla prevista" - -#~ msgid "expecting a dict for keyword args" -#~ msgstr "argomenti nominati necessitano un dizionario" - #~ msgid "expecting a pin" #~ msgstr "pin atteso" -#~ msgid "expecting an assembler instruction" -#~ msgstr "istruzione assembler attesa" - -#~ msgid "expecting just a value for set" -#~ msgstr "un solo valore atteso per set" - -#~ msgid "expecting key:value for dict" -#~ msgstr "chiave:valore atteso per dict" - -#~ msgid "extra keyword arguments given" -#~ msgstr "argomento nominato aggiuntivo fornito" - -#~ msgid "extra positional arguments given" -#~ msgstr "argomenti posizonali extra dati" - #~ msgid "ffi_prep_closure_loc" #~ msgstr "ffi_prep_closure_loc" -#~ msgid "firstbit must be MSB" -#~ msgstr "il primo bit deve essere il più significativo (MSB)" - #~ msgid "flash location must be below 1MByte" #~ msgstr "Locazione della flash deve essere inferiore a 1mb" -#~ msgid "float too big" -#~ msgstr "float troppo grande" - -#~ msgid "font must be 2048 bytes long" -#~ msgstr "il font deve essere lungo 2048 byte" - -#~ msgid "format requires a dict" -#~ msgstr "la formattazione richiede un dict" - #~ msgid "frequency can only be either 80Mhz or 160MHz" #~ msgstr "la frequenza può essere o 80Mhz o 160Mhz" -#~ msgid "full" -#~ msgstr "pieno" - -#~ msgid "function does not take keyword arguments" -#~ msgstr "la funzione non prende argomenti nominati" - -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "la funzione prevede al massimo %d argmoneti, ma ne ha ricevuti %d" - -#~ msgid "function got multiple values for argument '%q'" -#~ msgstr "la funzione ha ricevuto valori multipli per l'argomento '%q'" - -#~ msgid "function missing %d required positional arguments" -#~ msgstr "mancano %d argomenti posizionali obbligatori alla funzione" - -#~ msgid "function missing keyword-only argument" -#~ msgstr "argomento nominato mancante alla funzione" - -#~ msgid "function missing required keyword argument '%q'" -#~ msgstr "argomento nominato '%q' mancante alla funzione" - -#~ msgid "function missing required positional argument #%d" -#~ msgstr "mancante il #%d argomento posizonale obbligatorio della funzione" - -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "" -#~ "la funzione prende %d argomenti posizionali ma ne sono stati forniti %d" - -#~ msgid "graphic must be 2048 bytes long" -#~ msgstr "graphic deve essere lunga 2048 byte" - -#~ msgid "heap must be a list" -#~ msgstr "l'heap deve essere una lista" - -#~ msgid "identifier redefined as global" -#~ msgstr "identificatore ridefinito come globale" - -#~ msgid "identifier redefined as nonlocal" -#~ msgstr "identificatore ridefinito come nonlocal" - #~ msgid "impossible baudrate" #~ msgstr "baudrate impossibile" -#~ msgid "incomplete format" -#~ msgstr "formato incompleto" - -#~ msgid "incorrect padding" -#~ msgstr "padding incorretto" - -#~ msgid "index out of range" -#~ msgstr "indice fuori intervallo" - -#~ msgid "indices must be integers" -#~ msgstr "gli indici devono essere interi" - -#~ msgid "inline assembler must be a function" -#~ msgstr "inline assembler deve essere una funzione" - -#~ msgid "int() arg 2 must be >= 2 and <= 36" -#~ msgstr "il secondo argomanto di int() deve essere >= 2 e <= 36" - -#~ msgid "integer required" -#~ msgstr "intero richiesto" - -#~ msgid "invalid I2C peripheral" -#~ msgstr "periferica I2C invalida" - -#~ msgid "invalid SPI peripheral" -#~ msgstr "periferica SPI invalida" - #~ msgid "invalid alarm" #~ msgstr "alarm non valido" -#~ msgid "invalid arguments" -#~ msgstr "argomenti non validi" - #~ msgid "invalid buffer length" #~ msgstr "lunghezza del buffer non valida" -#~ msgid "invalid cert" -#~ msgstr "certificato non valido" - #~ msgid "invalid data bits" #~ msgstr "bit dati invalidi" -#~ msgid "invalid dupterm index" -#~ msgstr "indice dupterm non valido" - -#~ msgid "invalid format" -#~ msgstr "formato non valido" - -#~ msgid "invalid format specifier" -#~ msgstr "specificatore di formato non valido" - -#~ msgid "invalid key" -#~ msgstr "chiave non valida" - -#~ msgid "invalid micropython decorator" -#~ msgstr "decoratore non valido in micropython" - #~ msgid "invalid pin" #~ msgstr "pin non valido" #~ msgid "invalid stop bits" #~ msgstr "bit di stop invalidi" -#~ msgid "invalid syntax" -#~ msgstr "sintassi non valida" - -#~ msgid "invalid syntax for integer" -#~ msgstr "sintassi invalida per l'intero" - -#~ msgid "invalid syntax for integer with base %d" -#~ msgstr "sintassi invalida per l'intero con base %d" - -#~ msgid "invalid syntax for number" -#~ msgstr "sintassi invalida per il numero" - -#~ msgid "issubclass() arg 1 must be a class" -#~ msgstr "il primo argomento di issubclass() deve essere una classe" - -#~ msgid "issubclass() arg 2 must be a class or a tuple of classes" -#~ msgstr "" -#~ "il secondo argomento di issubclass() deve essere una classe o una tupla " -#~ "di classi" - -#~ msgid "join expects a list of str/bytes objects consistent with self object" -#~ msgstr "" -#~ "join prende una lista di oggetti str/byte consistenti con l'oggetto stesso" - -#~ msgid "keyword argument(s) not yet implemented - use normal args instead" -#~ msgstr "" -#~ "argomento(i) nominati non ancora implementati - usare invece argomenti " -#~ "normali" - -#~ msgid "keywords must be strings" -#~ msgstr "argomenti nominati devono essere stringhe" - -#~ msgid "label '%q' not defined" -#~ msgstr "etichetta '%q' non definita" - -#~ msgid "label redefined" -#~ msgstr "etichetta ridefinita" - #~ msgid "len must be multiple of 4" #~ msgstr "len deve essere multiplo di 4" -#~ msgid "lhs and rhs should be compatible" -#~ msgstr "lhs e rhs devono essere compatibili" - -#~ msgid "local '%q' has type '%q' but source is '%q'" -#~ msgstr "local '%q' ha tipo '%q' ma sorgente è '%q'" - -#~ msgid "local '%q' used before type known" -#~ msgstr "locla '%q' utilizzato prima che il tipo fosse noto" - -#~ msgid "local variable referenced before assignment" -#~ msgstr "variabile locale richiamata prima di un assegnamento" - -#~ msgid "long int not supported in this build" -#~ msgstr "long int non supportata in questa build" - -#~ msgid "map buffer too small" -#~ msgstr "map buffer troppo piccolo" - -#~ msgid "maximum recursion depth exceeded" -#~ msgstr "profondità massima di ricorsione superata" - -#~ msgid "memory allocation failed, allocating %u bytes" -#~ msgstr "allocazione di memoria fallita, allocando %u byte" - #~ msgid "memory allocation failed, allocating %u bytes for native code" #~ msgstr "" #~ "allocazione di memoria fallita, allocazione di %d byte per codice nativo" -#~ msgid "memory allocation failed, heap is locked" -#~ msgstr "allocazione di memoria fallita, l'heap è bloccato" - -#~ msgid "module not found" -#~ msgstr "modulo non trovato" - -#~ msgid "multiple *x in assignment" -#~ msgstr "*x multipli nell'assegnamento" - -#~ msgid "multiple inheritance not supported" -#~ msgstr "ereditarietà multipla non supportata" - -#~ msgid "must raise an object" -#~ msgstr "deve lanciare un oggetto" - -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "è necessario specificare tutte le sck/mosi/miso" - -#~ msgid "name '%q' is not defined" -#~ msgstr "nome '%q'non definito" - -#~ msgid "name not defined" -#~ msgstr "nome non definito" - -#~ msgid "name reused for argument" -#~ msgstr "nome riutilizzato come argomento" - -#~ msgid "native yield" -#~ msgstr "yield nativo" - -#~ msgid "need more than %d values to unpack" -#~ msgstr "necessari più di %d valori da scompattare" - -#~ msgid "negative power with no float support" -#~ msgstr "potenza negativa senza supporto per float" - -#~ msgid "no active exception to reraise" -#~ msgstr "nessuna eccezione attiva da rilanciare" - -#~ msgid "no binding for nonlocal found" -#~ msgstr "nessun binding per nonlocal trovato" - -#~ msgid "no module named '%q'" -#~ msgstr "nessun modulo chiamato '%q'" - -#~ msgid "no such attribute" -#~ msgstr "attributo inesistente" - -#~ msgid "non-default argument follows default argument" -#~ msgstr "argomento non predefinito segue argmoento predfinito" - -#~ msgid "non-hex digit found" -#~ msgstr "trovata cifra non esadecimale" - -#~ msgid "non-keyword arg after */**" -#~ msgstr "argomento non nominato dopo */**" - -#~ msgid "non-keyword arg after keyword arg" -#~ msgstr "argomento non nominato seguito da argomento nominato" - #~ msgid "not a valid ADC Channel: %d" #~ msgstr "canale ADC non valido: %d" -#~ msgid "not all arguments converted during string formatting" -#~ msgstr "" -#~ "non tutti gli argomenti sono stati convertiti durante la formatazione in " -#~ "stringhe" - -#~ msgid "not enough arguments for format string" -#~ msgstr "argomenti non sufficienti per la stringa di formattazione" - -#~ msgid "object '%s' is not a tuple or list" -#~ msgstr "oggetto '%s' non è una tupla o una lista" - -#~ msgid "object has no len" -#~ msgstr "l'oggetto non ha lunghezza" - -#~ msgid "object not an iterator" -#~ msgstr "l'oggetto non è un iteratore" - -#~ msgid "object not in sequence" -#~ msgstr "oggetto non in sequenza" - -#~ msgid "object not iterable" -#~ msgstr "oggetto non iterabile" - -#~ msgid "object of type '%s' has no len()" -#~ msgstr "l'oggetto di tipo '%s' non implementa len()" - -#~ msgid "odd-length string" -#~ msgstr "stringa di lunghezza dispari" - -#, fuzzy -#~ msgid "offset out of bounds" -#~ msgstr "indirizzo fuori limite" - -#~ msgid "ord expects a character" -#~ msgstr "ord() aspetta un carattere" - -#~ msgid "ord() expected a character, but string of length %d found" -#~ msgstr "" -#~ "ord() aspettava un carattere, ma ha ricevuto una stringa di lunghezza %d" - -#~ msgid "overflow converting long int to machine word" -#~ msgstr "overflow convertendo long int in parola" - -#~ msgid "palette must be 32 bytes long" -#~ msgstr "la palette deve essere lunga 32 byte" - -#~ msgid "parameters must be registers in sequence a2 to a5" -#~ msgstr "parametri devono essere i registri in sequenza da a2 a a5" - -#, fuzzy -#~ msgid "parameters must be registers in sequence r0 to r3" -#~ msgstr "parametri devono essere i registri in sequenza da a2 a a5" - #~ msgid "pin does not have IRQ capabilities" #~ msgstr "il pin non implementa IRQ" -#~ msgid "pop from an empty PulseIn" -#~ msgstr "pop sun un PulseIn vuoto" - -#~ msgid "pop from an empty set" -#~ msgstr "pop da un set vuoto" - -#~ msgid "pop from empty list" -#~ msgstr "pop da una lista vuota" - -#~ msgid "popitem(): dictionary is empty" -#~ msgstr "popitem(): il dizionario è vuoto" - #~ msgid "position must be 2-tuple" #~ msgstr "position deve essere una 2-tuple" -#~ msgid "pow() 3rd argument cannot be 0" -#~ msgstr "il terzo argomento di pow() non può essere 0" - -#~ msgid "pow() with 3 arguments requires integers" -#~ msgstr "pow() con 3 argomenti richiede interi" - -#~ msgid "queue overflow" -#~ msgstr "overflow della coda" - -#, fuzzy -#~ msgid "readonly attribute" -#~ msgstr "attributo non leggibile" - -#~ msgid "relative import" -#~ msgstr "importazione relativa" - -#~ msgid "requested length %d but object has length %d" -#~ msgstr "lunghezza %d richiesta ma l'oggetto ha lunghezza %d" - -#~ msgid "return expected '%q' but got '%q'" -#~ msgstr "return aspettava '%q' ma ha ottenuto '%q'" - -#~ msgid "" -#~ "sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' " -#~ "or 'B'" -#~ msgstr "" -#~ "il buffer sample_source deve essere un bytearray o un array di tipo 'h', " -#~ "'H', 'b' o 'B'" - -#~ msgid "sampling rate out of range" -#~ msgstr "frequenza di campionamento fuori intervallo" - #~ msgid "scan failed" #~ msgstr "scansione fallita" -#~ msgid "script compilation not supported" -#~ msgstr "compilazione dello scrip non suportata" - -#~ msgid "sign not allowed in string format specifier" -#~ msgstr "segno non permesso nello spcificatore di formato della stringa" - -#~ msgid "sign not allowed with integer format specifier 'c'" -#~ msgstr "segno non permesso nello spcificatore di formato 'c' della stringa" - -#~ msgid "single '}' encountered in format string" -#~ msgstr "'}' singolo presente nella stringa di formattazione" - -#~ msgid "slice step cannot be zero" -#~ msgstr "la step della slice non può essere zero" - -#~ msgid "small int overflow" -#~ msgstr "small int overflow" - -#~ msgid "stream operation not supported" -#~ msgstr "operazione di stream non supportata" - -#~ msgid "string index out of range" -#~ msgstr "indice della stringa fuori intervallo" - -#~ msgid "string indices must be integers, not %s" -#~ msgstr "indici della stringa devono essere interi, non %s" - -#~ msgid "struct: cannot index" -#~ msgstr "struct: impossibile indicizzare" - -#~ msgid "struct: index out of range" -#~ msgstr "struct: indice fuori intervallo" - -#~ msgid "struct: no fields" -#~ msgstr "struct: nessun campo" - -#~ msgid "substring not found" -#~ msgstr "sottostringa non trovata" - -#~ msgid "syntax error in JSON" -#~ msgstr "errore di sintassi nel JSON" - -#~ msgid "syntax error in uctypes descriptor" -#~ msgstr "errore di sintassi nel descrittore uctypes" - -#~ msgid "too many values to unpack (expected %d)" -#~ msgstr "troppi valori da scompattare (%d attesi)" - -#~ msgid "tuple index out of range" -#~ msgstr "indice della tupla fuori intervallo" - -#~ msgid "tuple/list has wrong length" -#~ msgstr "tupla/lista ha la lunghezza sbagliata" - -#~ msgid "tx and rx cannot both be None" -#~ msgstr "tx e rx non possono essere entrambi None" - -#~ msgid "type '%q' is not an acceptable base type" -#~ msgstr "il tipo '%q' non è un tipo di base accettabile" - -#~ msgid "type is not an acceptable base type" -#~ msgstr "il tipo non è un tipo di base accettabile" - -#~ msgid "type object '%q' has no attribute '%q'" -#~ msgstr "l'oggetto di tipo '%q' non ha l'attributo '%q'" - -#~ msgid "type takes 1 or 3 arguments" -#~ msgstr "tipo prende 1 o 3 argomenti" - -#~ msgid "ulonglong too large" -#~ msgstr "ulonglong troppo grande" - -#~ msgid "unary op %q not implemented" -#~ msgstr "operazione unaria %q non implementata" - -#~ msgid "unexpected indent" -#~ msgstr "indentazione inaspettata" - -#~ msgid "unexpected keyword argument" -#~ msgstr "argomento nominato inaspettato" - -#~ msgid "unexpected keyword argument '%q'" -#~ msgstr "argomento nominato '%q' inaspettato" - #~ msgid "unknown config param" #~ msgstr "parametro di configurazione sconosciuto" -#~ msgid "unknown conversion specifier %c" -#~ msgstr "specificatore di conversione %s sconosciuto" - -#~ msgid "unknown format code '%c' for object of type '%s'" -#~ msgstr "codice di formattaione '%c' sconosciuto per oggetto di tipo '%s'" - -#~ msgid "unknown format code '%c' for object of type 'float'" -#~ msgstr "" -#~ "codice di formattazione '%c' sconosciuto per oggetto di tipo 'float'" - -#~ msgid "unknown format code '%c' for object of type 'str'" -#~ msgstr "codice di formattazione '%c' sconosciuto per oggetto di tipo 'str'" - #~ msgid "unknown status param" #~ msgstr "prametro di stato sconosciuto" -#~ msgid "unknown type" -#~ msgstr "tipo sconosciuto" - -#~ msgid "unknown type '%q'" -#~ msgstr "tipo '%q' sconosciuto" - -#~ msgid "unmatched '{' in format" -#~ msgstr "'{' spaiato nella stringa di formattazione" - -#~ msgid "unreadable attribute" -#~ msgstr "attributo non leggibile" - -#, fuzzy -#~ msgid "unsupported Thumb instruction '%s' with %d arguments" -#~ msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" - -#~ msgid "unsupported Xtensa instruction '%s' with %d arguments" -#~ msgstr "istruzione '%s' Xtensa non supportata con %d argomenti" - -#~ msgid "unsupported format character '%c' (0x%x) at index %d" -#~ msgstr "carattere di formattazione '%c' (0x%x) non supportato all indice %d" - -#~ msgid "unsupported type for %q: '%s'" -#~ msgstr "tipo non supportato per %q: '%s'" - -#~ msgid "unsupported type for operator" -#~ msgstr "tipo non supportato per l'operando" - -#~ msgid "unsupported types for %q: '%s', '%s'" -#~ msgstr "tipi non supportati per %q: '%s', '%s'" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "wifi_set_ip_info() faillito" - -#~ msgid "wrong number of arguments" -#~ msgstr "numero di argomenti errato" - -#~ msgid "wrong number of values to unpack" -#~ msgstr "numero di valori da scompattare non corretto" - -#~ msgid "zero step" -#~ msgstr "zero step" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index ba1044494..546d9e73f 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-28 09:57+1100\n" +"POT-Creation-Date: 2019-03-27 16:28-0400\n" "PO-Revision-Date: 2018-10-02 21:14-0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,16 +23,37 @@ msgid "" "Code done running. Waiting for reload.\n" msgstr "" +#: py/obj.c +msgid " File \"%q\"" +msgstr " Arquivo \"%q\"" + +#: py/obj.c +msgid " File \"%q\", line %d" +msgstr " Arquivo \"%q\", linha %d" + #: main.c msgid " output:\n" msgstr " saída:\n" +#: py/objstr.c +#, c-format +msgid "%%c requires int or char" +msgstr "%%c requer int ou char" + #: shared-bindings/microcontroller/Pin.c msgid "%q in use" msgstr "%q em uso" +#: py/obj.c +msgid "%q index out of range" +msgstr "" + +#: py/obj.c +msgid "%q indices must be integers, not %s" +msgstr "" + +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c -#: shared-bindings/displayio/Group.c shared-bindings/displayio/Shape.c #, fuzzy msgid "%q must be >= 1" msgstr "buffers devem ser o mesmo tamanho" @@ -42,10 +63,162 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "%q should be an int" msgstr "y deve ser um int" +#: py/bc.c py/objnamedtuple.c +msgid "%q() takes %d positional arguments but %d were given" +msgstr "" + +#: py/argcheck.c +msgid "'%q' argument required" +msgstr "'%q' argumento(s) requerido(s)" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a label" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects a special register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an FPU register" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an address of the form [a, b]" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +#, c-format +msgid "'%s' expects an integer" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects at most r%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' expects {r0, r1, ...}" +msgstr "" + +#: py/emitinlinextensa.c +#, c-format +msgid "'%s' integer %d is not within range %d..%d" +msgstr "" + +#: py/emitinlinethumb.c +#, c-format +msgid "'%s' integer 0x%x does not fit in mask 0x%x" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item assignment" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object does not support item deletion" +msgstr "" + +#: py/runtime.c +msgid "'%s' object has no attribute '%q'" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +#, c-format +msgid "'%s' object is not callable" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "'%s' object is not iterable" +msgstr "" + +#: py/obj.c +#, c-format +msgid "'%s' object is not subscriptable" +msgstr "" + +#: py/objstr.c +msgid "'=' alignment not allowed in string format specifier" +msgstr "" + #: shared-module/struct/__init__.c msgid "'S' and 'O' are not supported format types" msgstr "'S' e 'O' não são tipos de formato suportados" +#: py/compile.c +msgid "'align' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'await' outside function" +msgstr "" + +#: py/compile.c +msgid "'break' outside loop" +msgstr "" + +#: py/compile.c +msgid "'continue' outside loop" +msgstr "" + +#: py/compile.c +msgid "'data' requires at least 2 arguments" +msgstr "" + +#: py/compile.c +msgid "'data' requires integer arguments" +msgstr "" + +#: py/compile.c +msgid "'label' requires 1 argument" +msgstr "" + +#: py/compile.c +msgid "'return' outside function" +msgstr "" + +#: py/compile.c +msgid "'yield' outside function" +msgstr "" + +#: py/compile.c +msgid "*x must be assignment target" +msgstr "" + +#: py/obj.c +msgid ", in %q\n" +msgstr "" + +#: py/objcomplex.c +msgid "0.0 to a complex power" +msgstr "" + +#: py/modbuiltins.c +msgid "3-arg pow() not supported" +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "A hardware interrupt channel is already in use" +msgstr "Um canal de interrupção de hardware já está em uso" + #: shared-bindings/bleio/Address.c #, c-format msgid "Address is not %d bytes long or is in wrong format" @@ -56,14 +229,55 @@ msgstr "" msgid "Address must be %d bytes long" msgstr "buffers devem ser o mesmo tamanho" +#: ports/nrf/common-hal/busio/I2C.c +msgid "All I2C peripherals are in use" +msgstr "Todos os periféricos I2C estão em uso" + +#: ports/nrf/common-hal/busio/SPI.c +msgid "All SPI peripherals are in use" +msgstr "Todos os periféricos SPI estão em uso" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "All UART peripherals are in use" +msgstr "Todos os periféricos I2C estão em uso" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "All event channels in use" +msgstr "Todos os canais de eventos em uso" + +#: ports/atmel-samd/audio_dma.c ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "All sync event channels in use" +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "All timers for this pin are in use" msgstr "Todos os temporizadores para este pino estão em uso" -#: shared-bindings/pulseio/PWMOut.c shared-module/_pew/PewPew.c +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c +#: shared-module/_pew/PewPew.c msgid "All timers in use" msgstr "Todos os temporizadores em uso" +#: ports/nrf/common-hal/analogio/AnalogOut.c +msgid "AnalogOut functionality not supported" +msgstr "Funcionalidade AnalogOut não suportada" + +#: shared-bindings/analogio/AnalogOut.c +msgid "AnalogOut is only 16 bits. Value must be less than 65536." +msgstr "" + +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "AnalogOut not supported on given pin" +msgstr "Saída analógica não suportada no pino fornecido" + +#: ports/atmel-samd/common-hal/pulseio/PulseOut.c +msgid "Another send is already active" +msgstr "Outro envio já está ativo" + #: shared-bindings/pulseio/PulseOut.c msgid "Array must contain halfwords (type 'H')" msgstr "Array deve conter meias palavras (tipo 'H')" @@ -86,6 +300,18 @@ msgid "" "disable.\n" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Bit clock and word select must share a clock unit" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Bit depth must be multiple of 8." +msgstr "" + +#: ports/atmel-samd/common-hal/rotaryio/IncrementalEncoder.c +msgid "Both pins must support hardware interrupts" +msgstr "Ambos os pinos devem suportar interrupções de hardware" + #: shared-bindings/supervisor/__init__.c msgid "Brightness must be between 0 and 255" msgstr "O brilho deve estar entre 0 e 255" @@ -99,10 +325,16 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Buffer de tamanho incorreto. Deve ser %d bytes." -#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c +#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c msgid "Buffer must be at least length 1" msgstr "" +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +#, fuzzy, c-format +msgid "Bus pin %d is already in use" +msgstr "DAC em uso" + #: shared-bindings/bleio/UUID.c #, fuzzy msgid "Byte buffer must be 16 bytes." @@ -112,6 +344,11 @@ msgstr "buffers devem ser o mesmo tamanho" msgid "Bytes must be between 0 and 255." msgstr "Os bytes devem estar entre 0 e 255." +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Can not use dotstar with %s" +msgstr "" + #: shared-bindings/bleio/Device.c msgid "Can't add services in Central mode" msgstr "" @@ -128,26 +365,56 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c msgid "Cannot delete values" msgstr "Não é possível excluir valores" +#: ports/atmel-samd/common-hal/digitalio/DigitalInOut.c +#: ports/nrf/common-hal/digitalio/DigitalInOut.c +msgid "Cannot get pull while in output mode" +msgstr "" + +#: ports/nrf/common-hal/microcontroller/Processor.c +#, fuzzy +msgid "Cannot get temperature" +msgstr "Não pode obter a temperatura. status: 0x%02x" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Cannot output both channels on the same pin" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot read without MISO pin." msgstr "Não é possível ler sem o pino MISO." +#: shared-bindings/audiobusio/PDMIn.c +msgid "Cannot record to a file" +msgstr "Não é possível gravar em um arquivo" + #: shared-module/storage/__init__.c msgid "Cannot remount '/' when USB is active." msgstr "Não é possível remontar '/' enquanto o USB estiver ativo." +#: ports/atmel-samd/common-hal/microcontroller/__init__.c +msgid "Cannot reset into bootloader because no bootloader is present." +msgstr "" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Cannot set value when direction is input." msgstr "" +#: py/objslice.c +msgid "Cannot subclass slice" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot transfer without MOSI and MISO pins." msgstr "Não é possível transferir sem os pinos MOSI e MISO." +#: extmod/moductypes.c +msgid "Cannot unambiguously get sizeof scalar" +msgstr "" + #: shared-module/bitbangio/SPI.c msgid "Cannot write without MOSI pin." msgstr "Não é possível ler sem um pino MOSI" @@ -156,6 +423,10 @@ msgstr "Não é possível ler sem um pino MOSI" msgid "Characteristic UUID doesn't match Service UUID" msgstr "" +#: ports/nrf/common-hal/bleio/Service.c +msgid "Characteristic already in use by another Service." +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c msgid "CharacteristicBuffer writing not provided" msgstr "" @@ -168,6 +439,10 @@ msgstr "Inicialização do pino de Clock falhou." msgid "Clock stretch too long" msgstr "Clock se estendeu por tempo demais" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Clock unit in use" +msgstr "Unidade de Clock em uso" + #: shared-bindings/_pew/PewPew.c msgid "Column entry must be digitalio.DigitalInOut" msgstr "" @@ -177,6 +452,15 @@ msgstr "" msgid "Command must be an int between 0 and 255" msgstr "Os bytes devem estar entre 0 e 255." +#: ports/nrf/common-hal/bleio/UUID.c +#, c-format +msgid "Could not decode ble_uuid, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "Could not initialize UART" +msgstr "Não foi possível inicializar o UART" + #: shared-module/audioio/Mixer.c shared-module/audioio/WaveFile.c msgid "Couldn't allocate first buffer" msgstr "Não pôde alocar primeiro buffer" @@ -189,10 +473,34 @@ msgstr "Não pôde alocar segundo buffer" msgid "Crash into the HardFault_Handler.\n" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "DAC already in use" +msgstr "DAC em uso" + +#: ports/atmel-samd/common-hal/displayio/ParallelBus.c +#: ports/nrf/common-hal/displayio/ParallelBus.c +msgid "Data 0 pin must be byte aligned" +msgstr "" + #: shared-module/audioio/WaveFile.c msgid "Data chunk must follow fmt chunk" msgstr "Pedaço de dados deve seguir o pedaço de cortes" +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy +msgid "Data too large for advertisement packet" +msgstr "Não é possível ajustar dados no pacote de anúncios." + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Data too large for the advertisement packet" +msgstr "Não é possível ajustar dados no pacote de anúncios." + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Destination capacity is smaller than destination_length." +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Display rotation must be in 90 degree increments" msgstr "" @@ -201,8 +509,17 @@ msgstr "" msgid "Drive mode not used when direction is input." msgstr "" -#: shared-bindings/microcontroller/Pin.c -#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "EXTINT channel already in use" +msgstr "Canal EXTINT em uso" + +#: extmod/modure.c +msgid "Error in regex" +msgstr "Erro no regex" + +#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c +#: shared-bindings/neopixel_write/__init__.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Esperado um" @@ -212,8 +529,8 @@ msgstr "Esperado um" msgid "Expected a Characteristic" msgstr "Não é possível adicionar Característica." -#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Descriptor.c +#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Characteristic.c #, fuzzy msgid "Expected a UUID" msgstr "Esperado um" @@ -223,8 +540,183 @@ msgstr "Esperado um" msgid "Expected tuple of length %d, got %d" msgstr "" +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to acquire mutex" +msgstr "Falha ao alocar buffer RX" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to acquire mutex, err 0x%04x" +msgstr "Não é possível ler o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Service.c +#, fuzzy, c-format +msgid "Failed to add characteristic, err 0x%04x" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to add service" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#, fuzzy, c-format +msgid "Failed to add service, err 0x%04x" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "Failed to allocate RX buffer" +msgstr "Falha ao alocar buffer RX" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +#, c-format +msgid "Failed to allocate RX buffer of %d bytes" +msgstr "Falha ao alocar buffer RX de %d bytes" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to change softdevice state" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to connect:" +msgstr "" + +#: ports/nrf/common-hal/bleio/Device.c +msgid "Failed to continue scanning" +msgstr "" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to continue scanning, err 0x%04x" +msgstr "Não é possível iniciar o anúncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to create mutex" +msgstr "Não é possível ler o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to discover services" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Adapter.c +msgid "Failed to get local address" +msgstr "" + +#: ports/nrf/common-hal/bleio/Adapter.c +#, fuzzy +msgid "Failed to get softdevice state" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to notify or indicate attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read CCCD value, err 0x%04x" +msgstr "Não é possível ler o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, c-format +msgid "Failed to read attribute value, err 0x%04x" +msgstr "" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to read gatts value, err 0x%04x" +msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/UUID.c +#, fuzzy, c-format +msgid "Failed to register Vendor-Specific UUID, err 0x%04x" +msgstr "Não é possível adicionar o UUID de 128 bits específico do fornecedor." + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to release mutex" +msgstr "Não é possível ler o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c ports/nrf/sd_mutex.c +#, fuzzy, c-format +msgid "Failed to release mutex, err 0x%04x" +msgstr "Não é possível ler o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start advertising" +msgstr "Não é possível iniciar o anúncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to start advertising, err 0x%04x" +msgstr "Não é possível iniciar o anúncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to start scanning" +msgstr "Não é possível iniciar o anúncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Scanner.c +#, fuzzy, c-format +msgid "Failed to start scanning, err 0x%04x" +msgstr "Não é possível iniciar o anúncio. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Device.c +#, fuzzy +msgid "Failed to stop advertising" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Peripheral.c +#: ports/nrf/common-hal/bleio/Broadcaster.c +#, fuzzy, c-format +msgid "Failed to stop advertising, err 0x%04x" +msgstr "Não pode parar propaganda. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write attribute value, err 0x%04x" +msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" + +#: ports/nrf/common-hal/bleio/Characteristic.c +#, fuzzy, c-format +msgid "Failed to write gatts value, err 0x%04x" +msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" + +#: py/moduerrno.c +msgid "File exists" +msgstr "Arquivo já existe" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash erase failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash erase failed to start, err 0x%04x" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +msgid "Flash write failed" +msgstr "" + +#: ports/nrf/supervisor/internal_flash.c +#, c-format +msgid "Flash write failed to start, err 0x%04x" +msgstr "" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Frequency captured is above capability. Capture Paused." +msgstr "" + +#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c -#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -232,18 +724,68 @@ msgstr "" msgid "Group full" msgstr "Grupo cheio" +#: extmod/vfs_posix_file.c py/objstringio.c +msgid "I/O operation on closed file" +msgstr "Operação I/O no arquivo fechado" + +#: extmod/machine_i2c.c +msgid "I2C operation not supported" +msgstr "I2C operação não suportada" + +#: py/persistentcode.c +msgid "" +"Incompatible .mpy file. Please update all .mpy files. See http://adafru.it/" +"mpy-update for more info." +msgstr "" + #: shared-bindings/_pew/PewPew.c msgid "Incorrect buffer size" msgstr "" +#: py/moduerrno.c +msgid "Input/output error" +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c msgid "Invalid BMP file" msgstr "Arquivo BMP inválido" -#: shared-bindings/pulseio/PWMOut.c +#: ports/atmel-samd/common-hal/pulseio/PWMOut.c +#: ports/nrf/common-hal/pulseio/PWMOut.c shared-bindings/pulseio/PWMOut.c msgid "Invalid PWM frequency" msgstr "Frequência PWM inválida" +#: py/moduerrno.c +msgid "Invalid argument" +msgstr "Argumento inválido" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Invalid bit clock pin" +msgstr "Pino de bit clock inválido" + +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "Invalid buffer size" +msgstr "Arquivo inválido" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "Invalid capture period. Valid range: 1 - 500" +msgstr "" + +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Invalid channel count" +msgstr "certificado inválido" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid clock pin" +msgstr "Pino do Clock inválido" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Invalid data pin" +msgstr "Pino de dados inválido" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Invalid direction." msgstr "Direção inválida" @@ -256,19 +798,37 @@ msgstr "Arquivo inválido" msgid "Invalid format chunk size" msgstr "Tamanho do pedaço de formato inválido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid number of bits" msgstr "Número inválido de bits" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid phase" msgstr "Fase Inválida" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pino inválido" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for left channel" +msgstr "Pino inválido para canal esquerdo" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Invalid pin for right channel" +msgstr "Pino inválido para canal direito" + +#: ports/atmel-samd/common-hal/busio/I2C.c +#: ports/atmel-samd/common-hal/busio/SPI.c +#: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c +#: ports/nrf/common-hal/busio/I2C.c +msgid "Invalid pins" +msgstr "Pinos inválidos" + +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c msgid "Invalid polarity" msgstr "" @@ -276,14 +836,31 @@ msgstr "" msgid "Invalid run mode." msgstr "" +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "Invalid voice count" +msgstr "certificado inválido" + #: shared-module/audioio/WaveFile.c msgid "Invalid wave file" msgstr "Aqruivo de ondas inválido" +#: py/compile.c +msgid "LHS of keyword arg must be an id" +msgstr "" + #: shared-module/displayio/Group.c msgid "Layer must be a Group or TileGrid subclass." msgstr "" +#: py/objslice.c +msgid "Length must be an int" +msgstr "Tamanho deve ser um int" + +#: py/objslice.c +msgid "Length must be non-negative" +msgstr "" + #: supervisor/shared/safe_mode.c msgid "" "Looks like our core CircuitPython code crashed hard. Whoops!\n" @@ -312,10 +889,35 @@ msgstr "" msgid "MicroPython fatal error.\n" msgstr "" +#: shared-bindings/audiobusio/PDMIn.c +msgid "Microphone startup delay must be in range 0.0 to 1.0" +msgstr "" + #: shared-bindings/displayio/Display.c msgid "Must be a Group subclass." msgstr "" +#: ports/atmel-samd/common-hal/analogio/AnalogOut.c +msgid "No DAC on chip" +msgstr "Nenhum DAC no chip" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "No DMA channel found" +msgstr "Nenhum canal DMA encontrado" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No RX pin" +msgstr "Nenhum pino RX" + +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "No TX pin" +msgstr "Nenhum pino TX" + +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No available clocks" +msgstr "" + #: supervisor/shared/board_busses.c msgid "No default I2C bus" msgstr "Nenhum barramento I2C padrão" @@ -328,21 +930,51 @@ msgstr "Nenhum barramento SPI padrão" msgid "No default UART bus" msgstr "Nenhum barramento UART padrão" +#: ports/atmel-samd/common-hal/touchio/TouchIn.c +msgid "No free GCLKs" +msgstr "Não há GCLKs livre" + #: shared-bindings/os/__init__.c msgid "No hardware random available" msgstr "" +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c +msgid "No hardware support on pin" +msgstr "Nenhum suporte de hardware no pino" + +#: py/moduerrno.c +msgid "No space left on device" +msgstr "" + +#: py/moduerrno.c +msgid "No such file/directory" +msgstr "" + #: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy msgid "Not connected" msgstr "Não é possível conectar-se ao AP" +#: shared-bindings/audiobusio/I2SOut.c shared-bindings/audioio/AudioOut.c +msgid "Not playing" +msgstr "" + #: shared-bindings/util.c msgid "" "Object has been deinitialized and can no longer be used. Create a new object." msgstr "" "Objeto foi desinicializado e não pode ser mais usaado. Crie um novo objeto." +#: ports/nrf/common-hal/busio/UART.c +#, fuzzy +msgid "Odd parity is not supported" +msgstr "I2C operação não suportada" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Only 8 or 16 bit mono with " +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c #, c-format msgid "" @@ -360,6 +992,14 @@ msgid "" "given" msgstr "" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Only slices with step=1 (aka None) are supported" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "Oversample must be multiple of 8." +msgstr "" + #: shared-bindings/pulseio/PWMOut.c msgid "" "PWM duty_cycle must be between 0 and 65535 inclusive (16 bit resolution)" @@ -370,6 +1010,24 @@ msgid "" "PWM frequency not writable when variable_frequency is False on construction." msgstr "" +#: py/moduerrno.c +msgid "Permission denied" +msgstr "Permissão negada" + +#: ports/atmel-samd/common-hal/analogio/AnalogIn.c +#: ports/nrf/common-hal/analogio/AnalogIn.c +msgid "Pin does not have ADC capabilities" +msgstr "O pino não tem recursos de ADC" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Pixel beyond bounds of buffer" +msgstr "" + +#: py/builtinhelp.c +#, fuzzy +msgid "Plus any modules on the filesystem\n" +msgstr "Não é possível remontar o sistema de arquivos" + #: main.c msgid "Press any key to enter the REPL. Use CTRL-D to reload." msgstr "" @@ -382,23 +1040,31 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "A calibração RTC não é suportada nesta placa" -#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c +#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c msgid "RTC is not supported on this board" msgstr "O RTC não é suportado nesta placa" -#: shared-bindings/rtc/RTC.c -msgid "RTC set is not supported on this board" -msgstr "A mudança de RTC não é suportada nesta placa" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "Range out of bounds" +msgstr "" #: shared-bindings/pulseio/PulseIn.c msgid "Read-only" msgstr "Somente leitura" +#: extmod/vfs_fat.c py/moduerrno.c +msgid "Read-only filesystem" +msgstr "Sistema de arquivos somente leitura" + #: shared-module/displayio/Bitmap.c #, fuzzy msgid "Read-only object" msgstr "Somente leitura" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Right channel unsupported" +msgstr "Canal direito não suportado" + #: shared-bindings/_pew/PewPew.c msgid "Row entry must be digitalio.DigitalInOut" msgstr "" @@ -411,15 +1077,42 @@ msgstr "Rodando em modo seguro! Atualização automática está desligada.\n" msgid "Running in safe mode! Not running saved code.\n" msgstr "Rodando em modo seguro! Não está executando o código salvo.\n" +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "SDA or SCL needs a pull up" +msgstr "SDA ou SCL precisa de um pull up" + +#: shared-bindings/audioio/Mixer.c +msgid "Sample rate must be positive" +msgstr "" + +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +#, c-format +msgid "Sample rate too high. It must be less than %d" +msgstr "Taxa de amostragem muito alta. Deve ser menor que %d" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Serializer in use" +msgstr "Serializer em uso" + #: shared-bindings/nvm/ByteArray.c msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/displayio/Group.c shared-bindings/displayio/TileGrid.c -#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c +#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c msgid "Slices not supported" msgstr "" +#: ports/nrf/common-hal/bleio/Adapter.c +#, c-format +msgid "Soft device assert, id: 0x%08lX, pc: 0x%08lX" +msgstr "" + +#: extmod/modure.c +msgid "Splitting with sub-captures" +msgstr "" + #: shared-bindings/supervisor/__init__.c msgid "Stack size must be at least 256" msgstr "O tamanho da pilha deve ser pelo menos 256" @@ -483,6 +1176,10 @@ msgstr "" msgid "To exit, please reset the board without " msgstr "Para sair, por favor, reinicie a placa sem " +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +msgid "Too many channels in sample." +msgstr "Muitos canais na amostra." + #: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c msgid "Too many display busses" msgstr "" @@ -491,6 +1188,10 @@ msgstr "" msgid "Too many displays" msgstr "" +#: py/obj.c +msgid "Traceback (most recent call last):\n" +msgstr "" + #: shared-bindings/time/__init__.c msgid "Tuple or struct_time argument required" msgstr "" @@ -515,6 +1216,20 @@ msgstr "" msgid "UUID value is not str, int or byte buffer" msgstr "" +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audioio/AudioOut.c +msgid "Unable to allocate buffers for signed conversion" +msgstr "Não é possível alocar buffers para conversão assinada" + +#: ports/atmel-samd/common-hal/audiobusio/I2SOut.c +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "Unable to find free GCLK" +msgstr "Não é possível encontrar GCLK livre" + +#: py/parse.c +msgid "Unable to init parser" +msgstr "" + #: shared-module/displayio/OnDiskBitmap.c msgid "Unable to read color palette data" msgstr "" @@ -523,6 +1238,19 @@ msgstr "" msgid "Unable to write to nvm." msgstr "Não é possível gravar no nvm." +#: ports/nrf/common-hal/bleio/UUID.c +msgid "Unexpected nrfx uuid type" +msgstr "" + +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "Unmatched number of items on RHS (expected %d, got %d)." +msgstr "" + +#: ports/atmel-samd/common-hal/busio/I2C.c +msgid "Unsupported baudrate" +msgstr "Taxa de transmissão não suportada" + #: shared-module/displayio/Display.c #, fuzzy msgid "Unsupported display bus type" @@ -532,10 +1260,18 @@ msgstr "Taxa de transmissão não suportada" msgid "Unsupported format" msgstr "Formato não suportado" +#: py/moduerrno.c +msgid "Unsupported operation" +msgstr "" + #: shared-bindings/digitalio/DigitalInOut.c msgid "Unsupported pull value." msgstr "" +#: py/emitnative.c +msgid "Viper functions don't currently support more than 4 arguments" +msgstr "" + #: shared-module/audioio/Mixer.c msgid "Voice index too high" msgstr "" @@ -544,6 +1280,16 @@ msgstr "" msgid "WARNING: Your code filename has two extensions\n" msgstr "AVISO: Seu arquivo de código tem duas extensões\n" +#: py/builtinhelp.c +#, c-format +msgid "" +"Welcome to Adafruit CircuitPython %s!\n" +"\n" +"Please visit learn.adafruit.com/category/circuitpython for project guides.\n" +"\n" +"To list built-in modules please do `help(\"modules\")`.\n" +msgstr "" + #: supervisor/shared/safe_mode.c msgid "" "You are running in safe mode which means something unanticipated happened.\n" @@ -553,6 +1299,32 @@ msgstr "" msgid "You requested starting safe mode by " msgstr "Você solicitou o início do modo de segurança" +#: py/objtype.c +msgid "__init__() should return None" +msgstr "" + +#: py/objtype.c +#, c-format +msgid "__init__() should return None, not '%s'" +msgstr "" + +#: py/objobject.c +msgid "__new__ arg must be a user-type" +msgstr "" + +#: extmod/modubinascii.c extmod/moduhashlib.c +msgid "a bytes-like object is required" +msgstr "" + +#: lib/embed/abort_.c +msgid "abort() called" +msgstr "abort() chamado" + +#: extmod/machine_mem.c +#, c-format +msgid "address %08x is not aligned to %d bytes" +msgstr "endereço %08x não está alinhado com %d bytes" + #: shared-bindings/i2cslave/I2CSlave.c msgid "address out of bounds" msgstr "" @@ -561,474 +1333,1339 @@ msgstr "" msgid "addresses is empty" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "array/bytes required on right side" +#: py/modbuiltins.c +msgid "arg is an empty sequence" msgstr "" -#: shared-bindings/busio/UART.c -msgid "bits must be 7, 8 or 9" +#: py/runtime.c +msgid "argument has wrong type" +msgstr "argumento tem tipo errado" + +#: py/argcheck.c +msgid "argument num/types mismatch" msgstr "" -#: shared-module/struct/__init__.c -#, fuzzy -msgid "buffer size must match format" -msgstr "buffers devem ser o mesmo tamanho" +#: py/runtime.c +msgid "argument should be a '%q' not a '%q'" +msgstr "" -#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c -msgid "buffer slices must be of equal length" +#: py/objarray.c shared-bindings/nvm/ByteArray.c +msgid "array/bytes required on right side" msgstr "" -#: shared-bindings/struct/__init__.c shared-module/struct/__init__.c -msgid "buffer too small" +#: py/objstr.c +msgid "attributes not supported yet" +msgstr "atributos ainda não suportados" + +#: ports/nrf/common-hal/bleio/Characteristic.c +msgid "bad GATT role" msgstr "" -#: shared-bindings/_pew/PewPew.c -msgid "buttons must be digitalio.DigitalInOut" +#: py/builtinevex.c +msgid "bad compile mode" msgstr "" -#: shared-bindings/i2cslave/I2CSlave.c -msgid "can't convert address to int" +#: py/objstr.c +msgid "bad conversion specifier" msgstr "" -#: shared-bindings/bleio/Service.c -msgid "characteristics includes an object that is not a Characteristic" +#: py/objstr.c +msgid "bad format string" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +#: py/binary.c +msgid "bad typecode" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a buffer or int" +#: py/emitnative.c +msgid "binary op %q not implemented" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +#: shared-bindings/busio/UART.c +msgid "bits must be 7, 8 or 9" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "color must be between 0x000000 and 0xffffff" -msgstr "cor deve estar entre 0x000000 e 0xffffff" +#: extmod/machine_spi.c +msgid "bits must be 8" +msgstr "bits devem ser 8" -#: shared-bindings/displayio/ColorConverter.c -msgid "color should be an int" -msgstr "cor deve ser um int" +#: shared-bindings/audioio/Mixer.c +#, fuzzy +msgid "bits_per_sample must be 8 or 16" +msgstr "bits devem ser 8" -#: shared-bindings/math/__init__.c -msgid "division by zero" -msgstr "divisão por zero" +#: py/emitinlinethumb.c +#, fuzzy +msgid "branch not in range" +msgstr "Calibração está fora do intervalo" -#: shared-bindings/random/__init__.c -msgid "empty sequence" -msgstr "seqüência vazia" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "buf is too small. need %d bytes" +msgstr "" -#: shared-bindings/displayio/Shape.c +#: shared-bindings/audioio/RawSample.c +msgid "buffer must be a bytes-like object" +msgstr "" + +#: shared-module/struct/__init__.c #, fuzzy -msgid "end_x should be an int" -msgstr "y deve ser um int" +msgid "buffer size must match format" +msgstr "buffers devem ser o mesmo tamanho" -#: shared-bindings/gamepad/GamePad.c -msgid "expected a DigitalInOut" +#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +msgid "buffer slices must be of equal length" msgstr "" -#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c -msgid "file must be a file opened in byte mode" +#: py/modstruct.c shared-bindings/struct/__init__.c +#: shared-module/struct/__init__.c +msgid "buffer too small" msgstr "" -#: shared-bindings/storage/__init__.c -msgid "filesystem must provide mount method" -msgstr "sistema de arquivos deve fornecer método de montagem" +#: extmod/machine_spi.c +msgid "buffers must be the same length" +msgstr "buffers devem ser o mesmo tamanho" -#: shared-bindings/time/__init__.c -msgid "function takes exactly 9 arguments" -msgstr "função leva exatamente 9 argumentos" +#: shared-bindings/_pew/PewPew.c +msgid "buttons must be digitalio.DigitalInOut" +msgstr "" -#: shared-bindings/random/__init__.c -msgid "invalid step" -msgstr "passo inválido" +#: py/vm.c +msgid "byte code not implemented" +msgstr "" -#: shared-bindings/math/__init__.c -msgid "math domain error" +#: shared-bindings/_pixelbuf/PixelBuf.c +#, c-format +msgid "byteorder is not an instance of ByteOrder (got a %s)" msgstr "" -#: shared-bindings/bleio/Peripheral.c -#, fuzzy -msgid "name must be a string" -msgstr "heap deve ser uma lista" +#: ports/atmel-samd/common-hal/busio/UART.c +msgid "bytes > 8 bits not supported" +msgstr "bytes > 8 bits não suportado" -#: shared-bindings/socket/__init__.c shared-module/network/__init__.c -msgid "no available NIC" +#: py/objstr.c +msgid "bytes value out of range" msgstr "" -#: shared-bindings/bleio/UUID.c -msgid "not a 128-bit UUID" +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is out of range" +msgstr "Calibração está fora do intervalo" + +#: ports/atmel-samd/bindings/samd/Clock.c +msgid "calibration is read only" +msgstr "Calibração é somente leitura" + +#: ports/atmel-samd/common-hal/rtc/RTC.c +msgid "calibration value out of range +/-127" +msgstr "Valor de calibração fora do intervalo +/- 127" + +#: py/emitinlinethumb.c +msgid "can only have up to 4 parameters to Thumb assembly" msgstr "" -#: shared-bindings/nvm/ByteArray.c -msgid "only slices with step=1 (aka None) are supported" +#: py/emitinlinextensa.c +msgid "can only have up to 4 parameters to Xtensa assembly" msgstr "" -#: shared-bindings/displayio/Palette.c -msgid "palette_index should be an int" +#: py/persistentcode.c +msgid "can only save bytecode" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel coordinates out of bounds" +#: py/objtype.c +msgid "can't add special method to already-subclassed class" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "pixel value requires too many bits" +#: py/compile.c +msgid "can't assign to expression" msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +#: py/obj.c +#, c-format +msgid "can't convert %s to complex" msgstr "" -#: shared-module/displayio/Bitmap.c -msgid "row must be packed and word aligned" -msgstr "Linha deve ser comprimida e com as palavras alinhadas" +#: py/obj.c +#, c-format +msgid "can't convert %s to float" +msgstr "" -#: shared-bindings/bleio/Peripheral.c -msgid "services includes an object that is not a Service" +#: py/obj.c +#, c-format +msgid "can't convert %s to int" msgstr "" -#: shared-bindings/time/__init__.c -msgid "sleep length must be non-negative" +#: py/objstr.c +msgid "can't convert '%q' object to %q implicitly" msgstr "" -#: main.c -msgid "soft reboot\n" +#: py/objint.c +msgid "can't convert NaN to int" msgstr "" -#: shared-bindings/displayio/Shape.c -#, fuzzy -msgid "start_x should be an int" -msgstr "y deve ser um int" +#: shared-bindings/i2cslave/I2CSlave.c +msgid "can't convert address to int" +msgstr "" -#: shared-bindings/random/__init__.c -msgid "step must be non-zero" -msgstr "o passo deve ser diferente de zero" +#: py/objint.c +msgid "can't convert inf to int" +msgstr "" -#: shared-bindings/busio/UART.c -msgid "stop must be 1 or 2" +#: py/obj.c +msgid "can't convert to complex" msgstr "" -#: shared-bindings/random/__init__.c -msgid "stop not reachable from start" +#: py/obj.c +msgid "can't convert to float" msgstr "" -#: shared-bindings/touchio/TouchIn.c -msgid "threshold must be in the range 0-65536" -msgstr "Limite deve estar no alcance de 0-65536" +#: py/obj.c +msgid "can't convert to int" +msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "tile index out of bounds" +#: py/objstr.c +msgid "can't convert to str implicitly" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes a 9-sequence" +#: py/compile.c +msgid "can't declare nonlocal in outer code" msgstr "" -#: shared-bindings/time/__init__.c -msgid "time.struct_time() takes exactly 1 argument" +#: py/compile.c +msgid "can't delete expression" msgstr "" -#: shared-bindings/busio/UART.c -msgid "timeout >100 (units are now seconds, not msecs)" +#: py/emitnative.c +msgid "can't do binary op between '%q' and '%q'" msgstr "" -#: shared-bindings/bleio/CharacteristicBuffer.c -#, fuzzy -msgid "timeout must be >= 0.0" -msgstr "bits devem ser 8" +#: py/objcomplex.c +msgid "can't do truncated division of a complex number" +msgstr "" -#: shared-bindings/time/__init__.c -msgid "timestamp out of range for platform time_t" -msgstr "timestamp fora do intervalo para a plataforma time_t" +#: py/compile.c +msgid "can't have multiple **x" +msgstr "" -#: shared-bindings/gamepad/GamePad.c -msgid "too many arguments" -msgstr "muitos argumentos" +#: py/compile.c +msgid "can't have multiple *x" +msgstr "" -#: shared-module/struct/__init__.c -msgid "too many arguments provided with the given format" -msgstr "Muitos argumentos fornecidos com o formato dado" +#: py/emitnative.c +msgid "can't implicitly convert '%q' to 'bool'" +msgstr "" -#: shared-bindings/displayio/TileGrid.c -msgid "unsupported bitmap type" +#: py/emitnative.c +msgid "can't load from '%q'" msgstr "" -#: shared-bindings/displayio/Bitmap.c -msgid "value_count must be > 0" +#: py/emitnative.c +msgid "can't load with '%q' index" msgstr "" -#: shared-module/displayio/Shape.c -msgid "x value out of bounds" +#: py/objgenerator.c +msgid "can't pend throw to just-started generator" msgstr "" -#: shared-bindings/displayio/Shape.c -msgid "y should be an int" -msgstr "y deve ser um int" +#: py/objgenerator.c +msgid "can't send non-None value to a just-started generator" +msgstr "" -#: shared-module/displayio/Shape.c -msgid "y value out of bounds" +#: py/objnamedtuple.c +msgid "can't set attribute" msgstr "" -#~ msgid " File \"%q\"" -#~ msgstr " Arquivo \"%q\"" +#: py/emitnative.c +msgid "can't store '%q'" +msgstr "" -#~ msgid " File \"%q\", line %d" -#~ msgstr " Arquivo \"%q\", linha %d" +#: py/emitnative.c +msgid "can't store to '%q'" +msgstr "" -#~ msgid "%%c requires int or char" -#~ msgstr "%%c requer int ou char" +#: py/emitnative.c +msgid "can't store with '%q' index" +msgstr "" -#~ msgid "'%q' argument required" -#~ msgstr "'%q' argumento(s) requerido(s)" +#: py/objstr.c +msgid "" +"can't switch from automatic field numbering to manual field specification" +msgstr "" -#~ msgid "A hardware interrupt channel is already in use" -#~ msgstr "Um canal de interrupção de hardware já está em uso" +#: py/objstr.c +msgid "" +"can't switch from manual field specification to automatic field numbering" +msgstr "" -#~ msgid "AP required" -#~ msgstr "AP requerido" +#: py/objtype.c +msgid "cannot create '%q' instances" +msgstr "" -#~ msgid "All I2C peripherals are in use" -#~ msgstr "Todos os periféricos I2C estão em uso" +#: py/objtype.c +msgid "cannot create instance" +msgstr "não é possível criar instância" -#~ msgid "All SPI peripherals are in use" -#~ msgstr "Todos os periféricos SPI estão em uso" +#: py/runtime.c +msgid "cannot import name %q" +msgstr "não pode importar nome %q" -#, fuzzy -#~ msgid "All UART peripherals are in use" -#~ msgstr "Todos os periféricos I2C estão em uso" +#: py/builtinimport.c +msgid "cannot perform relative import" +msgstr "" -#~ msgid "All event channels in use" -#~ msgstr "Todos os canais de eventos em uso" +#: py/emitnative.c +msgid "casting" +msgstr "" -#~ msgid "AnalogOut functionality not supported" -#~ msgstr "Funcionalidade AnalogOut não suportada" +#: shared-bindings/bleio/Service.c +msgid "characteristics includes an object that is not a Characteristic" +msgstr "" -#~ msgid "AnalogOut not supported on given pin" -#~ msgstr "Saída analógica não suportada no pino fornecido" +#: shared-bindings/_stage/Text.c +msgid "chars buffer too small" +msgstr "" -#~ msgid "Another send is already active" -#~ msgstr "Outro envio já está ativo" +#: py/modbuiltins.c +msgid "chr() arg not in range(0x110000)" +msgstr "" + +#: py/modbuiltins.c +msgid "chr() arg not in range(256)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a buffer or int" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "color must be between 0x000000 and 0xffffff" +msgstr "cor deve estar entre 0x000000 e 0xffffff" + +#: shared-bindings/displayio/ColorConverter.c +msgid "color should be an int" +msgstr "cor deve ser um int" + +#: py/objcomplex.c +msgid "complex division by zero" +msgstr "" + +#: py/objfloat.c py/parsenum.c +msgid "complex values not supported" +msgstr "" + +#: extmod/moduzlib.c +msgid "compression header" +msgstr "" + +#: py/parse.c +msgid "constant must be an integer" +msgstr "constante deve ser um inteiro" + +#: py/emitnative.c +msgid "conversion to object" +msgstr "" + +#: py/parsenum.c +msgid "decimal numbers not supported" +msgstr "" + +#: py/compile.c +msgid "default 'except' must be last" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "" +"destination buffer must be a bytearray or array of type 'B' for bit_depth = 8" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination buffer must be an array of type 'H' for bit_depth = 16" +msgstr "" + +#: shared-bindings/audiobusio/PDMIn.c +msgid "destination_length must be an int >= 0" +msgstr "destination_length deve ser um int >= 0" + +#: py/objdict.c +msgid "dict update sequence has wrong length" +msgstr "" + +#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: shared-bindings/math/__init__.c +msgid "division by zero" +msgstr "divisão por zero" + +#: py/objdeque.c +msgid "empty" +msgstr "vazio" + +#: extmod/modutimeq.c extmod/moduheapq.c +msgid "empty heap" +msgstr "heap vazia" + +#: py/objstr.c +msgid "empty separator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "empty sequence" +msgstr "seqüência vazia" + +#: py/objstr.c +msgid "end of format while looking for conversion specifier" +msgstr "" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "end_x should be an int" +msgstr "y deve ser um int" + +#: ports/nrf/common-hal/busio/UART.c +#, c-format +msgid "error = 0x%08lX" +msgstr "erro = 0x%08lX" + +#: py/runtime.c +msgid "exceptions must derive from BaseException" +msgstr "" + +#: py/objstr.c +msgid "expected ':' after format specifier" +msgstr "" + +#: shared-bindings/gamepad/GamePad.c +msgid "expected a DigitalInOut" +msgstr "" + +#: py/obj.c +msgid "expected tuple/list" +msgstr "" + +#: py/modthread.c +msgid "expecting a dict for keyword args" +msgstr "" + +#: py/compile.c +msgid "expecting an assembler instruction" +msgstr "" + +#: py/compile.c +msgid "expecting just a value for set" +msgstr "" + +#: py/compile.c +msgid "expecting key:value for dict" +msgstr "" + +#: py/argcheck.c +msgid "extra keyword arguments given" +msgstr "argumentos extras de palavras-chave passados" + +#: py/argcheck.c +msgid "extra positional arguments given" +msgstr "argumentos extra posicionais passados" + +#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +msgid "file must be a file opened in byte mode" +msgstr "" + +#: shared-bindings/storage/__init__.c +msgid "filesystem must provide mount method" +msgstr "sistema de arquivos deve fornecer método de montagem" + +#: py/objtype.c +msgid "first argument to super() must be type" +msgstr "" + +#: extmod/machine_spi.c +msgid "firstbit must be MSB" +msgstr "firstbit devem ser MSB" + +#: py/objint.c +msgid "float too big" +msgstr "float muito grande" + +#: shared-bindings/_stage/Text.c +msgid "font must be 2048 bytes long" +msgstr "" + +#: py/objstr.c +msgid "format requires a dict" +msgstr "" + +#: py/objdeque.c +msgid "full" +msgstr "cheio" + +#: py/argcheck.c +msgid "function does not take keyword arguments" +msgstr "função não aceita argumentos de palavras-chave" + +#: py/argcheck.c +#, c-format +msgid "function expected at most %d arguments, got %d" +msgstr "função esperada na maioria dos %d argumentos, obteve %d" + +#: py/bc.c py/objnamedtuple.c +msgid "function got multiple values for argument '%q'" +msgstr "" + +#: py/argcheck.c +#, c-format +msgid "function missing %d required positional arguments" +msgstr "função ausente %d requer argumentos posicionais" + +#: py/bc.c +msgid "function missing keyword-only argument" +msgstr "" + +#: py/bc.c +msgid "function missing required keyword argument '%q'" +msgstr "" + +#: py/bc.c +#, c-format +msgid "function missing required positional argument #%d" +msgstr "" + +#: py/argcheck.c py/bc.c py/objnamedtuple.c +#, c-format +msgid "function takes %d positional arguments but %d were given" +msgstr "função leva %d argumentos posicionais, mas apenas %d foram passadas" + +#: shared-bindings/time/__init__.c +msgid "function takes exactly 9 arguments" +msgstr "função leva exatamente 9 argumentos" + +#: py/objgenerator.c +msgid "generator already executing" +msgstr "" + +#: py/objgenerator.c +msgid "generator ignored GeneratorExit" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "graphic must be 2048 bytes long" +msgstr "" + +#: extmod/moduheapq.c +msgid "heap must be a list" +msgstr "heap deve ser uma lista" + +#: py/compile.c +msgid "identifier redefined as global" +msgstr "" + +#: py/compile.c +msgid "identifier redefined as nonlocal" +msgstr "" + +#: py/objstr.c +msgid "incomplete format" +msgstr "formato incompleto" + +#: py/objstr.c +msgid "incomplete format key" +msgstr "" + +#: extmod/modubinascii.c +msgid "incorrect padding" +msgstr "preenchimento incorreto" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c py/obj.c +msgid "index out of range" +msgstr "Índice fora do intervalo" + +#: py/obj.c +msgid "indices must be integers" +msgstr "" + +#: py/compile.c +msgid "inline assembler must be a function" +msgstr "" + +#: py/parsenum.c +msgid "int() arg 2 must be >= 2 and <= 36" +msgstr "" + +#: py/objstr.c +msgid "integer required" +msgstr "inteiro requerido" + +#: ports/nrf/common-hal/bleio/Broadcaster.c +msgid "interval not in range 0.0020 to 10.24" +msgstr "" + +#: extmod/machine_i2c.c +msgid "invalid I2C peripheral" +msgstr "periférico I2C inválido" + +#: extmod/machine_spi.c +msgid "invalid SPI peripheral" +msgstr "periférico SPI inválido" + +#: lib/netutils/netutils.c +msgid "invalid arguments" +msgstr "argumentos inválidos" + +#: extmod/modussl_axtls.c +msgid "invalid cert" +msgstr "certificado inválido" + +#: extmod/uos_dupterm.c +msgid "invalid dupterm index" +msgstr "Índice de dupterm inválido" + +#: extmod/modframebuf.c +msgid "invalid format" +msgstr "formato inválido" + +#: py/objstr.c +msgid "invalid format specifier" +msgstr "" + +#: extmod/modussl_axtls.c +msgid "invalid key" +msgstr "chave inválida" + +#: py/compile.c +msgid "invalid micropython decorator" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "invalid step" +msgstr "passo inválido" + +#: py/parse.c py/compile.c +msgid "invalid syntax" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for integer" +msgstr "" + +#: py/parsenum.c +#, c-format +msgid "invalid syntax for integer with base %d" +msgstr "" + +#: py/parsenum.c +msgid "invalid syntax for number" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 1 must be a class" +msgstr "" + +#: py/objtype.c +msgid "issubclass() arg 2 must be a class or a tuple of classes" +msgstr "" + +#: py/objstr.c +msgid "join expects a list of str/bytes objects consistent with self object" +msgstr "" + +#: py/argcheck.c +msgid "keyword argument(s) not yet implemented - use normal args instead" +msgstr "" + +#: py/bc.c +msgid "keywords must be strings" +msgstr "" + +#: py/emitinlinextensa.c py/emitinlinethumb.c +msgid "label '%q' not defined" +msgstr "" + +#: py/compile.c +msgid "label redefined" +msgstr "" + +#: py/stream.c +msgid "length argument not allowed for this type" +msgstr "" + +#: py/objarray.c +msgid "lhs and rhs should be compatible" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' has type '%q' but source is '%q'" +msgstr "" + +#: py/emitnative.c +msgid "local '%q' used before type known" +msgstr "" + +#: py/vm.c +msgid "local variable referenced before assignment" +msgstr "" + +#: py/objint.c +msgid "long int not supported in this build" +msgstr "" + +#: shared-bindings/_stage/Layer.c +msgid "map buffer too small" +msgstr "" + +#: py/modmath.c shared-bindings/math/__init__.c +msgid "math domain error" +msgstr "" + +#: py/runtime.c +msgid "maximum recursion depth exceeded" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "memory allocation failed, allocating %u bytes" +msgstr "" + +#: py/runtime.c +msgid "memory allocation failed, heap is locked" +msgstr "" + +#: py/builtinimport.c +msgid "module not found" +msgstr "" + +#: py/compile.c +msgid "multiple *x in assignment" +msgstr "" + +#: py/objtype.c +msgid "multiple bases have instance lay-out conflict" +msgstr "" + +#: py/objtype.c +msgid "multiple inheritance not supported" +msgstr "" + +#: py/emitnative.c +msgid "must raise an object" +msgstr "" + +#: extmod/machine_spi.c +msgid "must specify all of sck/mosi/miso" +msgstr "deve especificar todos sck/mosi/miso" + +#: py/modbuiltins.c +msgid "must use keyword argument for key function" +msgstr "" + +#: py/runtime.c +msgid "name '%q' is not defined" +msgstr "" + +#: shared-bindings/bleio/Peripheral.c +#, fuzzy +msgid "name must be a string" +msgstr "heap deve ser uma lista" + +#: py/runtime.c +msgid "name not defined" +msgstr "nome não definido" + +#: py/compile.c +msgid "name reused for argument" +msgstr "" + +#: py/emitnative.c +msgid "native yield" +msgstr "" + +#: py/runtime.c +#, c-format +msgid "need more than %d values to unpack" +msgstr "precisa de mais de %d valores para desempacotar" + +#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +msgid "negative power with no float support" +msgstr "" + +#: py/runtime.c py/objint_mpz.c +msgid "negative shift count" +msgstr "" + +#: py/vm.c +msgid "no active exception to reraise" +msgstr "" + +#: shared-bindings/socket/__init__.c shared-module/network/__init__.c +msgid "no available NIC" +msgstr "" + +#: py/compile.c +msgid "no binding for nonlocal found" +msgstr "" + +#: py/builtinimport.c +msgid "no module named '%q'" +msgstr "" + +#: py/runtime.c shared-bindings/_pixelbuf/__init__.c +msgid "no such attribute" +msgstr "" + +#: py/compile.c +msgid "non-default argument follows default argument" +msgstr "" + +#: extmod/modubinascii.c +msgid "non-hex digit found" +msgstr "" + +#: py/compile.c +msgid "non-keyword arg after */**" +msgstr "" + +#: py/compile.c +msgid "non-keyword arg after keyword arg" +msgstr "" + +#: shared-bindings/bleio/UUID.c +msgid "not a 128-bit UUID" +msgstr "" + +#: py/objstr.c +msgid "not all arguments converted during string formatting" +msgstr "" + +#: py/objstr.c +msgid "not enough arguments for format string" +msgstr "" + +#: py/obj.c +#, c-format +msgid "object '%s' is not a tuple or list" +msgstr "" + +#: py/obj.c +msgid "object does not support item assignment" +msgstr "" + +#: py/obj.c +msgid "object does not support item deletion" +msgstr "" + +#: py/obj.c +msgid "object has no len" +msgstr "" + +#: py/obj.c +msgid "object is not subscriptable" +msgstr "" + +#: py/runtime.c +msgid "object not an iterator" +msgstr "" + +#: py/objtype.c py/runtime.c +msgid "object not callable" +msgstr "" + +#: py/sequence.c +msgid "object not in sequence" +msgstr "objeto não em seqüência" + +#: py/runtime.c +msgid "object not iterable" +msgstr "objeto não iterável" + +#: py/obj.c +#, c-format +msgid "object of type '%s' has no len()" +msgstr "" + +#: py/obj.c +msgid "object with buffer protocol required" +msgstr "" + +#: extmod/modubinascii.c +msgid "odd-length string" +msgstr "" + +#: py/objstr.c py/objstrunicode.c +msgid "offset out of bounds" +msgstr "" + +#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: shared-bindings/nvm/ByteArray.c +msgid "only slices with step=1 (aka None) are supported" +msgstr "" + +#: py/modbuiltins.c +msgid "ord expects a character" +msgstr "" + +#: py/modbuiltins.c +#, c-format +msgid "ord() expected a character, but string of length %d found" +msgstr "" + +#: py/objint_mpz.c +msgid "overflow converting long int to machine word" +msgstr "" + +#: shared-bindings/_stage/Layer.c shared-bindings/_stage/Text.c +msgid "palette must be 32 bytes long" +msgstr "" + +#: shared-bindings/displayio/Palette.c +msgid "palette_index should be an int" +msgstr "" + +#: py/compile.c +msgid "parameter annotation must be an identifier" +msgstr "" + +#: py/emitinlinextensa.c +msgid "parameters must be registers in sequence a2 to a5" +msgstr "" + +#: py/emitinlinethumb.c +msgid "parameters must be registers in sequence r0 to r3" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel coordinates out of bounds" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c +msgid "pixel value requires too many bits" +msgstr "" + +#: shared-bindings/displayio/TileGrid.c +msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter" +msgstr "" + +#: ports/atmel-samd/common-hal/pulseio/PulseIn.c +#: ports/nrf/common-hal/pulseio/PulseIn.c +msgid "pop from an empty PulseIn" +msgstr "" + +#: py/objset.c +msgid "pop from an empty set" +msgstr "" + +#: py/objlist.c +msgid "pop from empty list" +msgstr "" + +#: py/objdict.c +msgid "popitem(): dictionary is empty" +msgstr "" + +#: py/objint_mpz.c +msgid "pow() 3rd argument cannot be 0" +msgstr "" + +#: py/objint_mpz.c +msgid "pow() with 3 arguments requires integers" +msgstr "" + +#: extmod/modutimeq.c +msgid "queue overflow" +msgstr "estouro de fila" + +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "rawbuf is not the same size as buf" +msgstr "" + +#: shared-bindings/_pixelbuf/__init__.c +#, fuzzy +msgid "readonly attribute" +msgstr "atributo ilegível" + +#: py/builtinimport.c +msgid "relative import" +msgstr "" + +#: py/obj.c +#, c-format +msgid "requested length %d but object has length %d" +msgstr "" + +#: py/compile.c +msgid "return annotation must be an identifier" +msgstr "" + +#: py/emitnative.c +msgid "return expected '%q' but got '%q'" +msgstr "" + +#: shared-module/displayio/Bitmap.c +msgid "row must be packed and word aligned" +msgstr "Linha deve ser comprimida e com as palavras alinhadas" + +#: py/objstr.c +msgid "rsplit(None,n)" +msgstr "" + +#: shared-bindings/audioio/RawSample.c +msgid "" +"sample_source buffer must be a bytearray or array of type 'h', 'H', 'b' or " +"'B'" +msgstr "" + +#: ports/atmel-samd/common-hal/audiobusio/PDMIn.c +msgid "sampling rate out of range" +msgstr "Taxa de amostragem fora do intervalo" + +#: py/modmicropython.c +msgid "schedule stack full" +msgstr "" + +#: lib/utils/pyexec.c py/builtinimport.c +msgid "script compilation not supported" +msgstr "compilação de script não suportada" + +#: shared-bindings/bleio/Peripheral.c +msgid "services includes an object that is not a Service" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed in string format specifier" +msgstr "" + +#: py/objstr.c +msgid "sign not allowed with integer format specifier 'c'" +msgstr "" + +#: py/objstr.c +msgid "single '}' encountered in format string" +msgstr "" + +#: shared-bindings/time/__init__.c +msgid "sleep length must be non-negative" +msgstr "" + +#: py/objslice.c py/sequence.c +msgid "slice step cannot be zero" +msgstr "" + +#: py/sequence.c py/objint.c +msgid "small int overflow" +msgstr "" + +#: main.c +msgid "soft reboot\n" +msgstr "" + +#: py/objstr.c +msgid "start/end indices" +msgstr "" + +#: shared-bindings/displayio/Shape.c +#, fuzzy +msgid "start_x should be an int" +msgstr "y deve ser um int" + +#: shared-bindings/random/__init__.c +msgid "step must be non-zero" +msgstr "o passo deve ser diferente de zero" + +#: shared-bindings/busio/UART.c +msgid "stop must be 1 or 2" +msgstr "" + +#: shared-bindings/random/__init__.c +msgid "stop not reachable from start" +msgstr "" + +#: py/stream.c +msgid "stream operation not supported" +msgstr "" + +#: py/objstrunicode.c +msgid "string index out of range" +msgstr "" + +#: py/objstrunicode.c +#, c-format +msgid "string indices must be integers, not %s" +msgstr "" + +#: py/stream.c +msgid "string not supported; use bytes or bytearray" +msgstr "" + +#: extmod/moductypes.c +msgid "struct: cannot index" +msgstr "struct: não pode indexar" -#~ msgid "Both pins must support hardware interrupts" -#~ msgstr "Ambos os pinos devem suportar interrupções de hardware" +#: extmod/moductypes.c +msgid "struct: index out of range" +msgstr "struct: índice fora do intervalo" -#, fuzzy -#~ msgid "Bus pin %d is already in use" -#~ msgstr "DAC em uso" +#: extmod/moductypes.c +msgid "struct: no fields" +msgstr "struct: sem campos" -#~ msgid "Cannot connect to AP" -#~ msgstr "Não é possível conectar-se ao AP" +#: py/objstr.c +msgid "substring not found" +msgstr "" -#~ msgid "Cannot disconnect from AP" -#~ msgstr "Não é possível desconectar do AP" +#: py/compile.c +msgid "super() can't find self" +msgstr "" -#, fuzzy -#~ msgid "Cannot get temperature" -#~ msgstr "Não pode obter a temperatura. status: 0x%02x" +#: extmod/modujson.c +msgid "syntax error in JSON" +msgstr "erro de sintaxe no JSON" -#~ msgid "Cannot record to a file" -#~ msgstr "Não é possível gravar em um arquivo" +#: extmod/moductypes.c +msgid "syntax error in uctypes descriptor" +msgstr "" -#~ msgid "Cannot set STA config" -#~ msgstr "Não é possível definir a configuração STA" +#: shared-bindings/touchio/TouchIn.c +msgid "threshold must be in the range 0-65536" +msgstr "Limite deve estar no alcance de 0-65536" -#~ msgid "Cannot update i/f status" -#~ msgstr "Não é possível atualizar o status i/f" +#: shared-bindings/displayio/TileGrid.c +msgid "tile index out of bounds" +msgstr "" -#~ msgid "Clock unit in use" -#~ msgstr "Unidade de Clock em uso" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes a 9-sequence" +msgstr "" -#~ msgid "Could not initialize UART" -#~ msgstr "Não foi possível inicializar o UART" +#: shared-bindings/time/__init__.c +msgid "time.struct_time() takes exactly 1 argument" +msgstr "" -#~ msgid "DAC already in use" -#~ msgstr "DAC em uso" +#: shared-bindings/busio/UART.c +msgid "timeout >100 (units are now seconds, not msecs)" +msgstr "" +#: shared-bindings/bleio/CharacteristicBuffer.c #, fuzzy -#~ msgid "Data too large for advertisement packet" -#~ msgstr "Não é possível ajustar dados no pacote de anúncios." +msgid "timeout must be >= 0.0" +msgstr "bits devem ser 8" -#, fuzzy -#~ msgid "Data too large for the advertisement packet" -#~ msgstr "Não é possível ajustar dados no pacote de anúncios." +#: shared-bindings/time/__init__.c +msgid "timestamp out of range for platform time_t" +msgstr "timestamp fora do intervalo para a plataforma time_t" -#~ msgid "Don't know how to pass object to native function" -#~ msgstr "Não sabe como passar o objeto para a função nativa" +#: shared-bindings/gamepad/GamePad.c +msgid "too many arguments" +msgstr "muitos argumentos" -#~ msgid "ESP8226 does not support safe mode." -#~ msgstr "O ESP8226 não suporta o modo de segurança." +#: shared-module/struct/__init__.c +msgid "too many arguments provided with the given format" +msgstr "Muitos argumentos fornecidos com o formato dado" -#~ msgid "ESP8266 does not support pull down." -#~ msgstr "ESP8266 não suporta pull down." +#: py/runtime.c +#, c-format +msgid "too many values to unpack (expected %d)" +msgstr "" -#~ msgid "EXTINT channel already in use" -#~ msgstr "Canal EXTINT em uso" +#: py/objstr.c +msgid "tuple index out of range" +msgstr "" -#~ msgid "Error in ffi_prep_cif" -#~ msgstr "Erro no ffi_prep_cif" +#: py/obj.c +msgid "tuple/list has wrong length" +msgstr "" -#~ msgid "Error in regex" -#~ msgstr "Erro no regex" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "tuple/list required on RHS" +msgstr "" -#, fuzzy -#~ msgid "Failed to acquire mutex" -#~ msgstr "Falha ao alocar buffer RX" +#: ports/atmel-samd/common-hal/busio/UART.c ports/nrf/common-hal/busio/UART.c +msgid "tx and rx cannot both be None" +msgstr "TX e RX não podem ser ambos" -#, fuzzy -#~ msgid "Failed to acquire mutex, err 0x%04x" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#: py/objtype.c +msgid "type '%q' is not an acceptable base type" +msgstr "" -#, fuzzy -#~ msgid "Failed to add characteristic, err 0x%04x" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/objtype.c +msgid "type is not an acceptable base type" +msgstr "" -#, fuzzy -#~ msgid "Failed to add service" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/runtime.c +msgid "type object '%q' has no attribute '%q'" +msgstr "" -#, fuzzy -#~ msgid "Failed to add service, err 0x%04x" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/objtype.c +msgid "type takes 1 or 3 arguments" +msgstr "" -#~ msgid "Failed to allocate RX buffer" -#~ msgstr "Falha ao alocar buffer RX" +#: py/objint_longlong.c +msgid "ulonglong too large" +msgstr "" -#~ msgid "Failed to allocate RX buffer of %d bytes" -#~ msgstr "Falha ao alocar buffer RX de %d bytes" +#: py/emitnative.c +msgid "unary op %q not implemented" +msgstr "" -#, fuzzy -#~ msgid "Failed to change softdevice state" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/parse.c +msgid "unexpected indent" +msgstr "" -#, fuzzy -#~ msgid "Failed to continue scanning, err 0x%04x" -#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" +#: py/bc.c +msgid "unexpected keyword argument" +msgstr "" -#, fuzzy -#~ msgid "Failed to create mutex" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#: py/bc.c py/objnamedtuple.c +msgid "unexpected keyword argument '%q'" +msgstr "" -#, fuzzy -#~ msgid "Failed to discover services" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/lexer.c +msgid "unicode name escapes" +msgstr "" -#, fuzzy -#~ msgid "Failed to get softdevice state" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/parse.c +msgid "unindent does not match any outer indentation level" +msgstr "" -#, fuzzy -#~ msgid "Failed to notify or indicate attribute value, err %0x04x" -#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" +#: py/objstr.c +#, c-format +msgid "unknown conversion specifier %c" +msgstr "" -#, fuzzy -#~ msgid "Failed to read CCCD value, err 0x%04x" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type '%s'" +msgstr "" -#, fuzzy -#~ msgid "Failed to read attribute value, err %0x04x" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'float'" +msgstr "" -#, fuzzy -#~ msgid "Failed to read gatts value, err 0x%04x" -#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" +#: py/objstr.c +#, c-format +msgid "unknown format code '%c' for object of type 'str'" +msgstr "" -#, fuzzy -#~ msgid "Failed to register Vendor-Specific UUID, err 0x%04x" -#~ msgstr "" -#~ "Não é possível adicionar o UUID de 128 bits específico do fornecedor." +#: py/compile.c +msgid "unknown type" +msgstr "" -#, fuzzy -#~ msgid "Failed to release mutex" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#: py/emitnative.c +msgid "unknown type '%q'" +msgstr "" -#, fuzzy -#~ msgid "Failed to release mutex, err 0x%04x" -#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" +#: py/objstr.c +msgid "unmatched '{' in format" +msgstr "" -#, fuzzy -#~ msgid "Failed to start advertising" -#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" +#: py/objtype.c py/runtime.c +msgid "unreadable attribute" +msgstr "atributo ilegível" -#, fuzzy -#~ msgid "Failed to start advertising, err 0x%04x" -#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" +#: py/emitinlinethumb.c +#, c-format +msgid "unsupported Thumb instruction '%s' with %d arguments" +msgstr "" -#, fuzzy -#~ msgid "Failed to start scanning" -#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" +#: py/emitinlinextensa.c +#, c-format +msgid "unsupported Xtensa instruction '%s' with %d arguments" +msgstr "" -#, fuzzy -#~ msgid "Failed to start scanning, err 0x%04x" -#~ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" +#: shared-bindings/displayio/TileGrid.c +msgid "unsupported bitmap type" +msgstr "" -#, fuzzy -#~ msgid "Failed to stop advertising" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/objstr.c +#, c-format +msgid "unsupported format character '%c' (0x%x) at index %d" +msgstr "" -#, fuzzy -#~ msgid "Failed to stop advertising, err 0x%04x" -#~ msgstr "Não pode parar propaganda. status: 0x%02x" +#: py/runtime.c +msgid "unsupported type for %q: '%s'" +msgstr "" -#, fuzzy -#~ msgid "Failed to write attribute value, err 0x%04x" -#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" +#: py/runtime.c +msgid "unsupported type for operator" +msgstr "" -#, fuzzy -#~ msgid "Failed to write gatts value, err 0x%04x" -#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" +#: py/runtime.c +msgid "unsupported types for %q: '%s', '%s'" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c +msgid "value_count must be > 0" +msgstr "" -#~ msgid "File exists" -#~ msgstr "Arquivo já existe" +#: shared-bindings/_pixelbuf/PixelBuf.c +msgid "write_args must be a list, tuple, or None" +msgstr "" -#~ msgid "GPIO16 does not support pull up." -#~ msgstr "GPIO16 não suporta pull up." +#: py/objstr.c +msgid "wrong number of arguments" +msgstr "" + +#: py/runtime.c +msgid "wrong number of values to unpack" +msgstr "" + +#: shared-module/displayio/Shape.c +msgid "x value out of bounds" +msgstr "" + +#: shared-bindings/displayio/Shape.c +msgid "y should be an int" +msgstr "y deve ser um int" -#~ msgid "I/O operation on closed file" -#~ msgstr "Operação I/O no arquivo fechado" +#: shared-module/displayio/Shape.c +msgid "y value out of bounds" +msgstr "" -#~ msgid "I2C operation not supported" -#~ msgstr "I2C operação não suportada" +#: py/objrange.c +msgid "zero step" +msgstr "passo zero" -#~ msgid "Invalid argument" -#~ msgstr "Argumento inválido" +#~ msgid "AP required" +#~ msgstr "AP requerido" -#~ msgid "Invalid bit clock pin" -#~ msgstr "Pino de bit clock inválido" +#~ msgid "Cannot connect to AP" +#~ msgstr "Não é possível conectar-se ao AP" -#, fuzzy -#~ msgid "Invalid buffer size" -#~ msgstr "Arquivo inválido" +#~ msgid "Cannot disconnect from AP" +#~ msgstr "Não é possível desconectar do AP" -#, fuzzy -#~ msgid "Invalid channel count" -#~ msgstr "certificado inválido" +#~ msgid "Cannot set STA config" +#~ msgstr "Não é possível definir a configuração STA" + +#~ msgid "Cannot update i/f status" +#~ msgstr "Não é possível atualizar o status i/f" -#~ msgid "Invalid clock pin" -#~ msgstr "Pino do Clock inválido" +#~ msgid "Don't know how to pass object to native function" +#~ msgstr "Não sabe como passar o objeto para a função nativa" -#~ msgid "Invalid data pin" -#~ msgstr "Pino de dados inválido" +#~ msgid "ESP8226 does not support safe mode." +#~ msgstr "O ESP8226 não suporta o modo de segurança." -#~ msgid "Invalid pin for left channel" -#~ msgstr "Pino inválido para canal esquerdo" +#~ msgid "ESP8266 does not support pull down." +#~ msgstr "ESP8266 não suporta pull down." -#~ msgid "Invalid pin for right channel" -#~ msgstr "Pino inválido para canal direito" +#~ msgid "Error in ffi_prep_cif" +#~ msgstr "Erro no ffi_prep_cif" -#~ msgid "Invalid pins" -#~ msgstr "Pinos inválidos" +#, fuzzy +#~ msgid "Failed to notify or indicate attribute value, err %0x04x" +#~ msgstr "Não é possível gravar o valor do atributo. status: 0x%02x" #, fuzzy -#~ msgid "Invalid voice count" -#~ msgstr "certificado inválido" +#~ msgid "Failed to read attribute value, err %0x04x" +#~ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" -#~ msgid "Length must be an int" -#~ msgstr "Tamanho deve ser um int" +#~ msgid "GPIO16 does not support pull up." +#~ msgstr "GPIO16 não suporta pull up." #~ msgid "Maximum PWM frequency is %dhz." #~ msgstr "A frequência máxima PWM é de %dhz." @@ -1040,34 +2677,12 @@ msgstr "" #~ msgstr "" #~ "Múltiplas frequências PWM não suportadas. PWM já definido para %dhz." -#~ msgid "No DAC on chip" -#~ msgstr "Nenhum DAC no chip" - -#~ msgid "No DMA channel found" -#~ msgstr "Nenhum canal DMA encontrado" - #~ msgid "No PulseIn support for %q" #~ msgstr "Não há suporte para PulseIn no pino %q" -#~ msgid "No RX pin" -#~ msgstr "Nenhum pino RX" - -#~ msgid "No TX pin" -#~ msgstr "Nenhum pino TX" - -#~ msgid "No free GCLKs" -#~ msgstr "Não há GCLKs livre" - #~ msgid "No hardware support for analog out." #~ msgstr "Nenhum suporte de hardware para saída analógica." -#~ msgid "No hardware support on pin" -#~ msgstr "Nenhum suporte de hardware no pino" - -#, fuzzy -#~ msgid "Odd parity is not supported" -#~ msgstr "I2C operação não suportada" - #~ msgid "Only Windows format, uncompressed BMP supported %d" #~ msgstr "Apenas formato Windows, BMP descomprimido suportado" @@ -1080,114 +2695,39 @@ msgstr "" #~ msgid "PWM not supported on pin %d" #~ msgstr "PWM não suportado no pino %d" -#~ msgid "Permission denied" -#~ msgstr "Permissão negada" - #~ msgid "Pin %q does not have ADC capabilities" #~ msgstr "Pino %q não tem recursos de ADC" -#~ msgid "Pin does not have ADC capabilities" -#~ msgstr "O pino não tem recursos de ADC" - #~ msgid "Pin(16) doesn't support pull" #~ msgstr "Pino (16) não suporta pull" #~ msgid "Pins not valid for SPI" #~ msgstr "Pinos não válidos para SPI" -#, fuzzy -#~ msgid "Plus any modules on the filesystem\n" -#~ msgstr "Não é possível remontar o sistema de arquivos" - -#~ msgid "Read-only filesystem" -#~ msgstr "Sistema de arquivos somente leitura" - -#~ msgid "Right channel unsupported" -#~ msgstr "Canal direito não suportado" - -#~ msgid "SDA or SCL needs a pull up" -#~ msgstr "SDA ou SCL precisa de um pull up" - #~ msgid "STA must be active" #~ msgstr "STA deve estar ativo" #~ msgid "STA required" #~ msgstr "STA requerido" -#~ msgid "Sample rate too high. It must be less than %d" -#~ msgstr "Taxa de amostragem muito alta. Deve ser menor que %d" - -#~ msgid "Serializer in use" -#~ msgstr "Serializer em uso" - -#~ msgid "Too many channels in sample." -#~ msgstr "Muitos canais na amostra." - #~ msgid "UART(%d) does not exist" #~ msgstr "UART(%d) não existe" #~ msgid "UART(1) can't read" #~ msgstr "UART(1) não pode ler" -#~ msgid "Unable to allocate buffers for signed conversion" -#~ msgstr "Não é possível alocar buffers para conversão assinada" - -#~ msgid "Unable to find free GCLK" -#~ msgstr "Não é possível encontrar GCLK livre" - #~ msgid "Unable to remount filesystem" #~ msgstr "Não é possível remontar o sistema de arquivos" #~ msgid "Unknown type" #~ msgstr "Tipo desconhecido" -#~ msgid "Unsupported baudrate" -#~ msgstr "Taxa de transmissão não suportada" - #~ msgid "Use esptool to erase flash and re-upload Python instead" #~ msgstr "Use o esptool para apagar o flash e recarregar o Python" -#~ msgid "abort() called" -#~ msgstr "abort() chamado" - -#~ msgid "address %08x is not aligned to %d bytes" -#~ msgstr "endereço %08x não está alinhado com %d bytes" - -#~ msgid "argument has wrong type" -#~ msgstr "argumento tem tipo errado" - -#~ msgid "attributes not supported yet" -#~ msgstr "atributos ainda não suportados" - -#~ msgid "bits must be 8" -#~ msgstr "bits devem ser 8" - -#, fuzzy -#~ msgid "bits_per_sample must be 8 or 16" -#~ msgstr "bits devem ser 8" - -#, fuzzy -#~ msgid "branch not in range" -#~ msgstr "Calibração está fora do intervalo" - #~ msgid "buffer too long" #~ msgstr "buffer muito longo" -#~ msgid "buffers must be the same length" -#~ msgstr "buffers devem ser o mesmo tamanho" - -#~ msgid "bytes > 8 bits not supported" -#~ msgstr "bytes > 8 bits não suportado" - -#~ msgid "calibration is out of range" -#~ msgstr "Calibração está fora do intervalo" - -#~ msgid "calibration is read only" -#~ msgstr "Calibração é somente leitura" - -#~ msgid "calibration value out of range +/-127" -#~ msgstr "Valor de calibração fora do intervalo +/- 127" - #~ msgid "can query only one param" #~ msgstr "pode consultar apenas um parâmetro" @@ -1203,117 +2743,33 @@ msgstr "" #~ msgid "can't set STA config" #~ msgstr "não é possível definir a configuração STA" -#~ msgid "cannot create instance" -#~ msgstr "não é possível criar instância" - -#~ msgid "cannot import name %q" -#~ msgstr "não pode importar nome %q" - -#~ msgid "constant must be an integer" -#~ msgstr "constante deve ser um inteiro" - -#~ msgid "destination_length must be an int >= 0" -#~ msgstr "destination_length deve ser um int >= 0" - #~ msgid "either pos or kw args are allowed" #~ msgstr "pos ou kw args são permitidos" -#~ msgid "empty" -#~ msgstr "vazio" - -#~ msgid "empty heap" -#~ msgstr "heap vazia" - -#~ msgid "error = 0x%08lX" -#~ msgstr "erro = 0x%08lX" - #~ msgid "expecting a pin" #~ msgstr "esperando um pino" -#~ msgid "extra keyword arguments given" -#~ msgstr "argumentos extras de palavras-chave passados" - -#~ msgid "extra positional arguments given" -#~ msgstr "argumentos extra posicionais passados" - #~ msgid "ffi_prep_closure_loc" #~ msgstr "ffi_prep_closure_loc" -#~ msgid "firstbit must be MSB" -#~ msgstr "firstbit devem ser MSB" - #~ msgid "flash location must be below 1MByte" #~ msgstr "o local do flash deve estar abaixo de 1 MByte" -#~ msgid "float too big" -#~ msgstr "float muito grande" - #~ msgid "frequency can only be either 80Mhz or 160MHz" #~ msgstr "A frequência só pode ser 80Mhz ou 160MHz" -#~ msgid "full" -#~ msgstr "cheio" - -#~ msgid "function does not take keyword arguments" -#~ msgstr "função não aceita argumentos de palavras-chave" - -#~ msgid "function expected at most %d arguments, got %d" -#~ msgstr "função esperada na maioria dos %d argumentos, obteve %d" - -#~ msgid "function missing %d required positional arguments" -#~ msgstr "função ausente %d requer argumentos posicionais" - -#~ msgid "function takes %d positional arguments but %d were given" -#~ msgstr "função leva %d argumentos posicionais, mas apenas %d foram passadas" - -#~ msgid "heap must be a list" -#~ msgstr "heap deve ser uma lista" - #~ msgid "impossible baudrate" #~ msgstr "taxa de transmissão impossível" -#~ msgid "incomplete format" -#~ msgstr "formato incompleto" - -#~ msgid "incorrect padding" -#~ msgstr "preenchimento incorreto" - -#~ msgid "index out of range" -#~ msgstr "Índice fora do intervalo" - -#~ msgid "integer required" -#~ msgstr "inteiro requerido" - -#~ msgid "invalid I2C peripheral" -#~ msgstr "periférico I2C inválido" - -#~ msgid "invalid SPI peripheral" -#~ msgstr "periférico SPI inválido" - #~ msgid "invalid alarm" #~ msgstr "Alarme inválido" -#~ msgid "invalid arguments" -#~ msgstr "argumentos inválidos" - #~ msgid "invalid buffer length" #~ msgstr "comprimento de buffer inválido" -#~ msgid "invalid cert" -#~ msgstr "certificado inválido" - #~ msgid "invalid data bits" #~ msgstr "Bits de dados inválidos" -#~ msgid "invalid dupterm index" -#~ msgstr "Índice de dupterm inválido" - -#~ msgid "invalid format" -#~ msgstr "formato inválido" - -#~ msgid "invalid key" -#~ msgstr "chave inválida" - #~ msgid "invalid pin" #~ msgstr "Pino inválido" @@ -1326,69 +2782,20 @@ msgstr "" #~ msgid "memory allocation failed, allocating %u bytes for native code" #~ msgstr "alocação de memória falhou, alocando %u bytes para código nativo" -#~ msgid "must specify all of sck/mosi/miso" -#~ msgstr "deve especificar todos sck/mosi/miso" - -#~ msgid "name not defined" -#~ msgstr "nome não definido" - -#~ msgid "need more than %d values to unpack" -#~ msgstr "precisa de mais de %d valores para desempacotar" - #~ msgid "not a valid ADC Channel: %d" #~ msgstr "não é um canal ADC válido: %d" -#~ msgid "object not in sequence" -#~ msgstr "objeto não em seqüência" - -#~ msgid "object not iterable" -#~ msgstr "objeto não iterável" - #~ msgid "pin does not have IRQ capabilities" #~ msgstr "Pino não tem recursos de IRQ" -#~ msgid "queue overflow" -#~ msgstr "estouro de fila" - -#, fuzzy -#~ msgid "readonly attribute" -#~ msgstr "atributo ilegível" - -#~ msgid "sampling rate out of range" -#~ msgstr "Taxa de amostragem fora do intervalo" - #~ msgid "scan failed" #~ msgstr "varredura falhou" -#~ msgid "script compilation not supported" -#~ msgstr "compilação de script não suportada" - -#~ msgid "struct: cannot index" -#~ msgstr "struct: não pode indexar" - -#~ msgid "struct: index out of range" -#~ msgstr "struct: índice fora do intervalo" - -#~ msgid "struct: no fields" -#~ msgstr "struct: sem campos" - -#~ msgid "syntax error in JSON" -#~ msgstr "erro de sintaxe no JSON" - -#~ msgid "tx and rx cannot both be None" -#~ msgstr "TX e RX não podem ser ambos" - #~ msgid "unknown config param" #~ msgstr "parâmetro configuração desconhecido" #~ msgid "unknown status param" #~ msgstr "parâmetro de status desconhecido" -#~ msgid "unreadable attribute" -#~ msgstr "atributo ilegível" - #~ msgid "wifi_set_ip_info() failed" #~ msgstr "wifi_set_ip_info() falhou" - -#~ msgid "zero step" -#~ msgstr "passo zero" -- cgit v1.2.3 From 5b981026777f0f9458ffcc80c37bb261706293a8 Mon Sep 17 00:00:00 2001 From: Nick Moore Date: Thu, 28 Mar 2019 14:48:46 +1100 Subject: re-run make translate --- locale/ID.po | 76 +++++++++++++++++++++++++----------------------- locale/circuitpython.pot | 76 +++++++++++++++++++++++++----------------------- locale/de_DE.po | 76 +++++++++++++++++++++++++----------------------- locale/en_US.po | 76 +++++++++++++++++++++++++----------------------- locale/en_x_pirate.po | 76 +++++++++++++++++++++++++----------------------- locale/es.po | 76 +++++++++++++++++++++++++----------------------- locale/fil.po | 76 +++++++++++++++++++++++++----------------------- locale/fr.po | 76 +++++++++++++++++++++++++----------------------- locale/it_IT.po | 76 +++++++++++++++++++++++++----------------------- locale/pt_BR.po | 76 +++++++++++++++++++++++++----------------------- 10 files changed, 400 insertions(+), 360 deletions(-) diff --git a/locale/ID.po b/locale/ID.po index 36023152c..727849516 100644 --- a/locale/ID.po +++ b/locale/ID.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,8 +52,8 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #, fuzzy msgid "%q must be >= 1" msgstr "buffers harus mempunyai panjang yang sama" @@ -70,12 +70,12 @@ msgstr "%q() mengambil posisi argumen %d tapi %d yang diberikan" msgid "'%q' argument required" msgstr "'%q' argumen dibutuhkan" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "'%s' mengharapkan sebuah register" @@ -95,7 +95,7 @@ msgstr "'%s' mengharapkan sebuah FPU register" msgid "'%s' expects an address of the form [a, b]" msgstr "'%s' mengharapkan sebuah alamat dengan bentuk [a, b]" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "'%s' mengharapkan integer" @@ -253,9 +253,9 @@ msgstr "Semua channel event yang disinkronisasi sedang digunakan" msgid "All timers for this pin are in use" msgstr "Semua timer untuk pin ini sedang digunakan" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -326,7 +326,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -366,7 +366,7 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" @@ -452,7 +452,7 @@ msgstr "Clock unit sedang digunakan" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -490,8 +490,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Tidak bisa menyesuaikan data ke dalam paket advertisment" @@ -522,8 +522,8 @@ msgstr "Channel EXTINT sedang digunakan" msgid "Error in regex" msgstr "Error pada regex" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -532,8 +532,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -657,8 +657,8 @@ msgstr "Gagal untuk melepaskan mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Gagal untuk memulai advertisement, status: 0x%08lX" @@ -678,8 +678,8 @@ msgstr "Gagal untuk melakukan scanning, status: 0x%08lX" msgid "Failed to stop advertising" msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Gagal untuk memberhentikan advertisement, status: 0x%08lX" @@ -720,8 +720,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -801,16 +801,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin tidak valid" @@ -824,14 +824,14 @@ msgid "Invalid pin for right channel" msgstr "Pin untuk channel kanan tidak valid" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Pin-pin tidak valid" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -1041,10 +1041,14 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" @@ -1101,8 +1105,8 @@ msgstr "Serializer sedang digunakan" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" @@ -1185,7 +1189,7 @@ msgstr "Untuk keluar, silahkan reset board tanpa " msgid "Too many channels in sample." msgstr "Terlalu banyak channel dalam sampel" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1425,7 +1429,7 @@ msgstr "" msgid "buffer size must match format" msgstr "buffers harus mempunyai panjang yang sama" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "" @@ -1709,7 +1713,7 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" @@ -1718,7 +1722,7 @@ msgstr "" msgid "empty" msgstr "" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "heap kosong" @@ -1783,7 +1787,7 @@ msgstr "argumen keyword ekstra telah diberikan" msgid "extra positional arguments given" msgstr "argumen posisi ekstra telah diberikan" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1956,7 +1960,7 @@ msgstr "micropython decorator tidak valid" msgid "invalid step" msgstr "" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "syntax tidak valid" @@ -1993,7 +1997,7 @@ msgstr "argumen keyword belum diimplementasi - gunakan args normal" msgid "keywords must be strings" msgstr "keyword harus berupa string" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "" @@ -2100,11 +2104,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2211,7 +2215,7 @@ msgstr "panjang data string memiliki keganjilan (odd-length)" msgid "offset out of bounds" msgstr "modul tidak ditemukan" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2365,7 +2369,7 @@ msgstr "" msgid "slice step cannot be zero" msgstr "" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "" diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index 37b158902..2d82ec3ed 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,8 +52,8 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c msgid "%q must be >= 1" msgstr "" @@ -69,12 +69,12 @@ msgstr "" msgid "'%q' argument required" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "" @@ -94,7 +94,7 @@ msgstr "" msgid "'%s' expects an address of the form [a, b]" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "" @@ -251,9 +251,9 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -322,7 +322,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" @@ -442,7 +442,7 @@ msgstr "" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -480,8 +480,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c msgid "Data too large for advertisement packet" msgstr "" @@ -510,8 +510,8 @@ msgstr "" msgid "Error in regex" msgstr "" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -520,8 +520,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -634,8 +634,8 @@ msgstr "" msgid "Failed to start advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "" @@ -653,8 +653,8 @@ msgstr "" msgid "Failed to stop advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "" @@ -695,8 +695,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -776,16 +776,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "" @@ -799,14 +799,14 @@ msgid "Invalid pin for right channel" msgstr "" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -1013,10 +1013,14 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" @@ -1071,8 +1075,8 @@ msgstr "" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" @@ -1152,7 +1156,7 @@ msgstr "" msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1381,7 +1385,7 @@ msgstr "" msgid "buffer size must match format" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "" @@ -1665,7 +1669,7 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" @@ -1674,7 +1678,7 @@ msgstr "" msgid "empty" msgstr "" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "" @@ -1739,7 +1743,7 @@ msgstr "" msgid "extra positional arguments given" msgstr "" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1912,7 +1916,7 @@ msgstr "" msgid "invalid step" msgstr "" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "" @@ -1949,7 +1953,7 @@ msgstr "" msgid "keywords must be strings" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "" @@ -2055,11 +2059,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2165,7 +2169,7 @@ msgstr "" msgid "offset out of bounds" msgstr "" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2319,7 +2323,7 @@ msgstr "" msgid "slice step cannot be zero" msgstr "" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "" diff --git a/locale/de_DE.po b/locale/de_DE.po index 26b519d4d..eaf34f1be 100644 --- a/locale/de_DE.po +++ b/locale/de_DE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: Pascal Deneaux\n" "Language-Team: Sebastian Plamauer, Pascal Deneaux\n" @@ -54,8 +54,8 @@ msgstr "Der Index %q befindet sich außerhalb der Reihung" msgid "%q indices must be integers, not %s" msgstr "%q Indizes müssen ganze Zahlen sein, nicht %s" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c msgid "%q must be >= 1" msgstr "%q muss >= 1 sein" @@ -71,12 +71,12 @@ msgstr "%q() nimmt %d Argumente ohne Keyword an, aber es wurden %d angegeben" msgid "'%q' argument required" msgstr "'%q' Argument erforderlich" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "'%s' erwartet ein Label" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "'%s' erwartet ein Register" @@ -96,7 +96,7 @@ msgstr "'%s' erwartet ein FPU-Register" msgid "'%s' expects an address of the form [a, b]" msgstr "'%s' erwartet eine Adresse in der Form [a, b]" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "'%s' erwartet ein Integer" @@ -253,9 +253,9 @@ msgstr "Alle sync event Kanäle werden benutzt" msgid "All timers for this pin are in use" msgstr "Alle timer für diesen Pin werden bereits benutzt" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -326,7 +326,7 @@ msgstr "Die Helligkeit ist nicht einstellbar" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Der Puffergröße ist inkorrekt. Sie sollte %d bytes haben." -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "Der Puffer muss eine Mindestenslänge von 1 haben" @@ -365,7 +365,7 @@ msgstr "Im Central mode kann name nicht geändert werden" msgid "Can't connect in Peripheral mode" msgstr "Im Peripheral mode kann keine Verbindung hergestellt werden" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Kann Werte nicht löschen" @@ -446,7 +446,7 @@ msgstr "Clock unit wird benutzt" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Command must be an int between 0 and 255" msgstr "Der Befehl muss ein int zwischen 0 und 255 sein" @@ -484,8 +484,8 @@ msgstr "Data 0 pin muss am Byte ausgerichtet sein" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c msgid "Data too large for advertisement packet" msgstr "Zu vielen Daten für das advertisement packet" @@ -514,8 +514,8 @@ msgstr "EXTINT Kanal ist schon in Benutzung" msgid "Error in regex" msgstr "Fehler in regex" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Erwartet ein(e) %q" @@ -524,8 +524,8 @@ msgstr "Erwartet ein(e) %q" msgid "Expected a Characteristic" msgstr "Characteristic wird erwartet" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "Eine UUID wird erwartet" @@ -638,8 +638,8 @@ msgstr "Mutex konnte nicht freigegeben werden. Status: 0x%04x" msgid "Failed to start advertising" msgstr "Kann advertisement nicht starten" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Kann advertisement nicht starten. Status: 0x%04x" @@ -657,8 +657,8 @@ msgstr "Der Scanvorgang kann nicht gestartet werden. Status: 0x%04x" msgid "Failed to stop advertising" msgstr "Kann advertisement nicht stoppen" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Kann advertisement nicht stoppen. Status: 0x%04x" @@ -699,8 +699,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "Die Funktion erwartet, dass der 'lock'-Befehl zuvor ausgeführt wurde" @@ -782,16 +782,16 @@ msgstr "Ungültige Datei" msgid "Invalid format chunk size" msgstr "Ungültige format chunk size" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "Ungültige Anzahl von Bits" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "Ungültige Phase" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Ungültiger Pin" @@ -805,14 +805,14 @@ msgid "Invalid pin for right channel" msgstr "Ungültiger Pin für rechten Kanal" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Ungültige Pins" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Ungültige Polarität" @@ -1031,10 +1031,14 @@ msgstr "Pull wird nicht verwendet, wenn die Richtung output ist." msgid "RTC calibration is not supported on this board" msgstr "Die RTC-Kalibrierung wird auf diesem Board nicht unterstützt" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "Eine RTC wird auf diesem Board nicht unterstützt" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" @@ -1089,8 +1093,8 @@ msgstr "Serializer wird benutzt" msgid "Slice and value different lengths." msgstr "Slice und Wert (value) haben unterschiedliche Längen." -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Slices werden nicht unterstützt" @@ -1182,7 +1186,7 @@ msgstr "Zum beenden, resette bitte das board ohne " msgid "Too many channels in sample." msgstr "Zu viele Kanäle im sample" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1422,7 +1426,7 @@ msgstr "Puffer muss ein bytes-artiges Objekt sein" msgid "buffer size must match format" msgstr "Die Puffergröße muss zum Format passen" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "Puffersegmente müssen gleich lang sein" @@ -1706,7 +1710,7 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "Division durch Null" @@ -1715,7 +1719,7 @@ msgstr "Division durch Null" msgid "empty" msgstr "leer" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "leerer heap" @@ -1780,7 +1784,7 @@ msgstr "Es wurden zusätzliche Keyword-Argumente angegeben" msgid "extra positional arguments given" msgstr "Es wurden zusätzliche Argumente ohne Keyword angegeben" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "Die Datei muss eine im Byte-Modus geöffnete Datei sein" @@ -1954,7 +1958,7 @@ msgstr "ungültiger micropython decorator" msgid "invalid step" msgstr "ungültiger Schritt (step)" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "ungültige Syntax" @@ -1995,7 +1999,7 @@ msgstr "" msgid "keywords must be strings" msgstr "Schlüsselwörter müssen Zeichenfolgen sein" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "Label '%q' nicht definiert" @@ -2103,11 +2107,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2213,7 +2217,7 @@ msgstr "String mit ungerader Länge" msgid "offset out of bounds" msgstr "offset außerhalb der Grenzen" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2371,7 +2375,7 @@ msgstr "" msgid "slice step cannot be zero" msgstr "" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "small int Überlauf" diff --git a/locale/en_US.po b/locale/en_US.po index b16d22b3b..b4a3e739d 100644 --- a/locale/en_US.po +++ b/locale/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: \n" @@ -52,8 +52,8 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c msgid "%q must be >= 1" msgstr "" @@ -69,12 +69,12 @@ msgstr "" msgid "'%q' argument required" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "" @@ -94,7 +94,7 @@ msgstr "" msgid "'%s' expects an address of the form [a, b]" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "" @@ -251,9 +251,9 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -322,7 +322,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -361,7 +361,7 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" @@ -442,7 +442,7 @@ msgstr "" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -480,8 +480,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c msgid "Data too large for advertisement packet" msgstr "" @@ -510,8 +510,8 @@ msgstr "" msgid "Error in regex" msgstr "" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -520,8 +520,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -634,8 +634,8 @@ msgstr "" msgid "Failed to start advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "" @@ -653,8 +653,8 @@ msgstr "" msgid "Failed to stop advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "" @@ -695,8 +695,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -776,16 +776,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "" @@ -799,14 +799,14 @@ msgid "Invalid pin for right channel" msgstr "" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -1013,10 +1013,14 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" @@ -1071,8 +1075,8 @@ msgstr "" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" @@ -1152,7 +1156,7 @@ msgstr "" msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1381,7 +1385,7 @@ msgstr "" msgid "buffer size must match format" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "" @@ -1665,7 +1669,7 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" @@ -1674,7 +1678,7 @@ msgstr "" msgid "empty" msgstr "" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "" @@ -1739,7 +1743,7 @@ msgstr "" msgid "extra positional arguments given" msgstr "" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1912,7 +1916,7 @@ msgstr "" msgid "invalid step" msgstr "" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "" @@ -1949,7 +1953,7 @@ msgstr "" msgid "keywords must be strings" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "" @@ -2055,11 +2059,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2165,7 +2169,7 @@ msgstr "" msgid "offset out of bounds" msgstr "" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2319,7 +2323,7 @@ msgstr "" msgid "slice step cannot be zero" msgstr "" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "" diff --git a/locale/en_x_pirate.po b/locale/en_x_pirate.po index 5c1d74722..70e883d7d 100644 --- a/locale/en_x_pirate.po +++ b/locale/en_x_pirate.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-07-27 11:55-0700\n" "Last-Translator: \n" "Language-Team: @sommersoft, @MrCertainly\n" @@ -54,8 +54,8 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c msgid "%q must be >= 1" msgstr "" @@ -71,12 +71,12 @@ msgstr "" msgid "'%q' argument required" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "'%s' expects an address of the form [a, b]" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "" @@ -253,9 +253,9 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -326,7 +326,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -365,7 +365,7 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "" @@ -446,7 +446,7 @@ msgstr "" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Command must be an int between 0 and 255" msgstr "" @@ -484,8 +484,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c msgid "Data too large for advertisement packet" msgstr "" @@ -514,8 +514,8 @@ msgstr "Avast! EXTINT channel already in use" msgid "Error in regex" msgstr "" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "" @@ -524,8 +524,8 @@ msgstr "" msgid "Expected a Characteristic" msgstr "" -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c msgid "Expected a UUID" msgstr "" @@ -638,8 +638,8 @@ msgstr "" msgid "Failed to start advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "" @@ -657,8 +657,8 @@ msgstr "" msgid "Failed to stop advertising" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "" @@ -699,8 +699,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -780,16 +780,16 @@ msgstr "" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "" @@ -803,14 +803,14 @@ msgid "Invalid pin for right channel" msgstr "Belay that! Invalid pin for starboard-side channel" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -1017,10 +1017,14 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" @@ -1075,8 +1079,8 @@ msgstr "" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" @@ -1156,7 +1160,7 @@ msgstr "" msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1385,7 +1389,7 @@ msgstr "" msgid "buffer size must match format" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "" @@ -1669,7 +1673,7 @@ msgstr "" msgid "dict update sequence has wrong length" msgstr "" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "" @@ -1678,7 +1682,7 @@ msgstr "" msgid "empty" msgstr "" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "" @@ -1743,7 +1747,7 @@ msgstr "" msgid "extra positional arguments given" msgstr "" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1916,7 +1920,7 @@ msgstr "" msgid "invalid step" msgstr "" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "" @@ -1953,7 +1957,7 @@ msgstr "" msgid "keywords must be strings" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "" @@ -2059,11 +2063,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2169,7 +2173,7 @@ msgstr "" msgid "offset out of bounds" msgstr "" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2323,7 +2327,7 @@ msgstr "" msgid "slice step cannot be zero" msgstr "" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "" diff --git a/locale/es.po b/locale/es.po index 3d1d6a2a5..3a42dd808 100644 --- a/locale/es.po +++ b/locale/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-08-24 22:56-0500\n" "Last-Translator: \n" "Language-Team: \n" @@ -53,8 +53,8 @@ msgstr "%w indice fuera de rango" msgid "%q indices must be integers, not %s" msgstr "%q indices deben ser enteros, no %s" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #, fuzzy msgid "%q must be >= 1" msgstr "los buffers deben de tener la misma longitud" @@ -72,12 +72,12 @@ msgstr "%q() toma %d argumentos posicionales pero %d fueron dados" msgid "'%q' argument required" msgstr "argumento '%q' requerido" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "'%s' espera una etiqueta" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "'%s' espera un registro" @@ -97,7 +97,7 @@ msgstr "'%s' espera un registro de FPU" msgid "'%s' expects an address of the form [a, b]" msgstr "'%s' espera una dirección de forma [a, b]" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "'%s' espera un entero" @@ -258,9 +258,9 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "Todos los timers para este pin están siendo utilizados" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -331,7 +331,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Tamaño de buffer incorrecto. Debe ser de %d bytes." -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "Buffer debe ser de longitud 1 como minimo" @@ -371,7 +371,7 @@ msgstr "No se puede cambiar el nombre en modo Central" msgid "Can't connect in Peripheral mode" msgstr "No se puede conectar en modo Peripheral" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "No se puede eliminar valores" @@ -453,7 +453,7 @@ msgstr "Clock unit está siendo utilizado" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Bytes debe estar entre 0 y 255." @@ -493,8 +493,8 @@ msgstr "graphic debe ser 2048 bytes de largo" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Los datos no caben en el paquete de anuncio." @@ -525,8 +525,8 @@ msgstr "El canal EXTINT ya está siendo utilizado" msgid "Error in regex" msgstr "Error en regex" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Se espera un %q" @@ -536,8 +536,8 @@ msgstr "Se espera un %q" msgid "Expected a Characteristic" msgstr "No se puede agregar la Característica." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Se espera un %q" @@ -662,8 +662,8 @@ msgstr "No se puede liberar el mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "No se puede inicar el anuncio. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "No se puede inicar el anuncio. status: 0x%02x" @@ -683,8 +683,8 @@ msgstr "No se puede iniciar el escaneo. status: 0x%02x" msgid "Failed to stop advertising" msgstr "No se puede detener el anuncio. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "No se puede detener el anuncio. status: 0x%02x" @@ -725,8 +725,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "La función requiere lock" @@ -808,16 +808,16 @@ msgstr "Archivo inválido" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "Numero inválido de bits" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "Fase inválida" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin inválido" @@ -831,14 +831,14 @@ msgid "Invalid pin for right channel" msgstr "Pin inválido para canal derecho" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "pines inválidos" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Polaridad inválida" @@ -1055,10 +1055,14 @@ msgstr "Pull no se usa cuando la dirección es output." msgid "RTC calibration is not supported on this board" msgstr "Calibración de RTC no es soportada en esta placa" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "RTC no soportado en esta placa" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" @@ -1115,8 +1119,8 @@ msgstr "Serializer está siendo utilizado" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" @@ -1203,7 +1207,7 @@ msgstr "Para salir, por favor reinicia la tarjeta sin " msgid "Too many channels in sample." msgstr "Demasiados canales en sample." -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1443,7 +1447,7 @@ msgstr "buffer debe de ser un objeto bytes-like" msgid "buffer size must match format" msgstr "los buffers deben de tener la misma longitud" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "" @@ -1734,7 +1738,7 @@ msgstr "destination_length debe ser un int >= 0" msgid "dict update sequence has wrong length" msgstr "la secuencia de actualizacion del dict tiene una longitud incorrecta" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "división por cero" @@ -1743,7 +1747,7 @@ msgstr "división por cero" msgid "empty" msgstr "vacío" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "heap vacío" @@ -1809,7 +1813,7 @@ msgstr "argumento(s) por palabra clave adicionales fueron dados" msgid "extra positional arguments given" msgstr "argumento posicional adicional dado" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "el archivo deberia ser una archivo abierto en modo byte" @@ -1982,7 +1986,7 @@ msgstr "decorador de micropython inválido" msgid "invalid step" msgstr "" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "sintaxis inválida" @@ -2022,7 +2026,7 @@ msgstr "" msgid "keywords must be strings" msgstr "palabras clave deben ser strings" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "etiqueta '%q' no definida" @@ -2129,11 +2133,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "necesita más de %d valores para descomprimir" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "potencia negativa sin float support" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "cuenta negativa de turnos" @@ -2243,7 +2247,7 @@ msgstr "string de longitud impar" msgid "offset out of bounds" msgstr "address fuera de límites" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "solo se admiten segmentos con step=1 (alias None)" @@ -2401,7 +2405,7 @@ msgstr "la longitud de sleep no puede ser negativa" msgid "slice step cannot be zero" msgstr "slice step no puede ser cero" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "pequeño int desbordamiento" diff --git a/locale/fil.po b/locale/fil.po index c0aaf93bb..a4ee118a5 100644 --- a/locale/fil.po +++ b/locale/fil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-12-20 22:15-0800\n" "Last-Translator: Timothy \n" "Language-Team: fil\n" @@ -52,8 +52,8 @@ msgstr "%q indeks wala sa sakop" msgid "%q indices must be integers, not %s" msgstr "%q indeks ay dapat integers, hindi %s" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #, fuzzy msgid "%q must be >= 1" msgstr "aarehas na haba dapat ang buffer slices" @@ -72,12 +72,12 @@ msgstr "" msgid "'%q' argument required" msgstr "'%q' argument kailangan" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "'%s' umaasa ng label" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "Inaasahan ng '%s' ang isang rehistro" @@ -97,7 +97,7 @@ msgstr "Inaasahan ng '%s' ang isang FPU register" msgid "'%s' expects an address of the form [a, b]" msgstr "Inaasahan ng '%s' ang isang address sa [a, b]" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "Inaasahan ng '%s' ang isang integer" @@ -255,9 +255,9 @@ msgstr "Lahat ng sync event channels ay ginagamit" msgid "All timers for this pin are in use" msgstr "Lahat ng timers para sa pin na ito ay ginagamit" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -328,7 +328,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Mali ang size ng buffer. Dapat %d bytes." -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "Buffer dapat ay hindi baba sa 1 na haba" @@ -368,7 +368,7 @@ msgstr "Hindi mapalitan ang pangalan sa Central mode" msgid "Can't connect in Peripheral mode" msgstr "Hindi maconnect sa Peripheral mode" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Hindi mabura ang values" @@ -450,7 +450,7 @@ msgstr "Clock unit ginagamit" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Sa gitna ng 0 o 255 dapat ang bytes." @@ -490,8 +490,8 @@ msgstr "graphic ay dapat 2048 bytes ang haba" msgid "Data chunk must follow fmt chunk" msgstr "Dapat sunurin ng Data chunk ang fmt chunk" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Hindi makasya ang data sa loob ng advertisement packet" @@ -523,8 +523,8 @@ msgstr "Ginagamit na ang EXTINT channel" msgid "Error in regex" msgstr "May pagkakamali sa REGEX" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Umasa ng %q" @@ -534,8 +534,8 @@ msgstr "Umasa ng %q" msgid "Expected a Characteristic" msgstr "Hindi mabasa and Characteristic." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Umasa ng %q" @@ -660,8 +660,8 @@ msgstr "Nabigo sa pagrelease ng mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Hindi masimulaan ang advertisement, status: 0x%08lX" @@ -681,8 +681,8 @@ msgstr "Hindi masimulaan mag i-scan, status: 0x%0xlX" msgid "Failed to stop advertising" msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Hindi mahinto ang advertisement, status: 0x%08lX" @@ -723,8 +723,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "Function nangangailangan ng lock" @@ -806,16 +806,16 @@ msgstr "Mali ang file" msgid "Invalid format chunk size" msgstr "Mali ang format ng chunk size" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "Mali ang bilang ng bits" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "Mali ang phase" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Mali ang pin" @@ -829,14 +829,14 @@ msgid "Invalid pin for right channel" msgstr "Mali ang pin para sa kanang channel" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Mali ang pins" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Mali ang polarity" @@ -1054,10 +1054,14 @@ msgstr "Pull hindi ginagamit kapag ang direksyon ay output." msgid "RTC calibration is not supported on this board" msgstr "RTC calibration ay hindi supportado ng board na ito" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "Hindi supportado ang RTC sa board na ito" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" @@ -1114,8 +1118,8 @@ msgstr "Serializer ginagamit" msgid "Slice and value different lengths." msgstr "Slice at value iba't ibang haba." -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Hindi suportado ang Slices" @@ -1205,7 +1209,7 @@ msgstr "Para lumabas, paki-reset ang board na wala ang " msgid "Too many channels in sample." msgstr "Sobra ang channels sa sample." -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1445,7 +1449,7 @@ msgstr "buffer ay dapat bytes-like object" msgid "buffer size must match format" msgstr "aarehas na haba dapat ang buffer slices" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "aarehas na haba dapat ang buffer slices" @@ -1739,7 +1743,7 @@ msgstr "ang destination_length ay dapat na isang int >= 0" msgid "dict update sequence has wrong length" msgstr "may mali sa haba ng dict update sequence" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "dibisyon ng zero" @@ -1748,7 +1752,7 @@ msgstr "dibisyon ng zero" msgid "empty" msgstr "walang laman" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "walang laman ang heap" @@ -1814,7 +1818,7 @@ msgstr "dagdag na keyword argument na ibinigay" msgid "extra positional arguments given" msgstr "dagdag na positional argument na ibinigay" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "file ay dapat buksan sa byte mode" @@ -1988,7 +1992,7 @@ msgstr "mali ang micropython decorator" msgid "invalid step" msgstr "mali ang step" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "mali ang sintaks" @@ -2029,7 +2033,7 @@ msgstr "" msgid "keywords must be strings" msgstr "ang keywords dapat strings" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "label '%d' kailangan na i-define" @@ -2136,11 +2140,11 @@ msgstr "native yield" msgid "need more than %d values to unpack" msgstr "kailangan ng higit sa %d na halaga upang i-unpack" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "negatibong power na walang float support" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "negative shift count" @@ -2247,7 +2251,7 @@ msgstr "odd-length string" msgid "offset out of bounds" msgstr "wala sa sakop ang address" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "ang mga slices lamang na may hakbang = 1 (aka None) ang sinusuportahan" @@ -2405,7 +2409,7 @@ msgstr "sleep length ay dapat hindi negatibo" msgid "slice step cannot be zero" msgstr "slice step ay hindi puedeng 0" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "small int overflow" diff --git a/locale/fr.po b/locale/fr.po index f117b3e30..917f10ea4 100644 --- a/locale/fr.po +++ b/locale/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-12-23 20:05+0100\n" "Last-Translator: Pierrick Couturier \n" "Language-Team: fr\n" @@ -51,8 +51,8 @@ msgstr "index %q hors gamme" msgid "%q indices must be integers, not %s" msgstr "les indices %q doivent être des entiers, pas %s" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #, fuzzy msgid "%q must be >= 1" msgstr "les slices de tampon doivent être de longueurs égales" @@ -70,12 +70,12 @@ msgstr "%q() prend %d arguments mais %d ont été donnés" msgid "'%q' argument required" msgstr "'%q' argument requis" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "'%s' attend un label" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "'%s' attend un registre" @@ -95,7 +95,7 @@ msgstr "'%s' attend un registre FPU" msgid "'%s' expects an address of the form [a, b]" msgstr "'%s' attend une adresse de la forme [a, b]" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "'%s' attend un entier" @@ -255,9 +255,9 @@ msgstr "Tous les canaux d'événements de synchro sont utilisés" msgid "All timers for this pin are in use" msgstr "Tous les timers pour cette broche sont utilisés" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -329,7 +329,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Tampon de taille incorrect. Devrait être de %d octets." -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "Le tampon doit être de longueur au moins 1" @@ -369,7 +369,7 @@ msgstr "Modification du nom impossible en mode Central" msgid "Can't connect in Peripheral mode" msgstr "Impossible de se connecter en mode Peripheral" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Impossible de supprimer les valeurs" @@ -452,7 +452,7 @@ msgstr "Horloge en cours d'utilisation" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Les octets 'bytes' doivent être entre 0 et 255" @@ -492,8 +492,8 @@ msgstr "le graphic doit être long de 2048 octets" msgid "Data chunk must follow fmt chunk" msgstr "Un bloc de données doit suivre un bloc de format" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c msgid "Data too large for advertisement packet" msgstr "" @@ -522,8 +522,8 @@ msgstr "Canal EXTINT déjà utilisé" msgid "Error in regex" msgstr "Erreur dans l'expression régulière" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Attendu : %q" @@ -533,8 +533,8 @@ msgstr "Attendu : %q" msgid "Expected a Characteristic" msgstr "Impossible d'ajouter la Characteristic." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Attendu : %q" @@ -659,8 +659,8 @@ msgstr "Impossible de libérer mutex, status: 0x%08lX" msgid "Failed to start advertising" msgstr "Echec de l'ajout de service, statut: 0x%08lX" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" @@ -680,8 +680,8 @@ msgstr "Impossible de commencer à scanner, statut: 0x%0xlX" msgid "Failed to stop advertising" msgstr "Echec de l'ajout de service, statut: 0x%08lX" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Echec de l'ajout de service, statut: 0x%08lX" @@ -722,8 +722,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "La fonction nécessite un verrou" @@ -808,16 +808,16 @@ msgstr "Fichier invalide" msgid "Invalid format chunk size" msgstr "Taille de bloc de formatage invalide" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "Nombre de bits invalide" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "Phase invalide" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Broche invalide" @@ -831,14 +831,14 @@ msgid "Invalid pin for right channel" msgstr "Broche invalide pour le canal droit" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Broches invalides" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Polarité invalide" @@ -1061,10 +1061,14 @@ msgstr "Le tirage 'pull' n'est pas utilisé quand la direction est 'output'." msgid "RTC calibration is not supported on this board" msgstr "calibration de la RTC non supportée sur cette carte" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "RTC non supportée sur cette carte" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" @@ -1122,8 +1126,8 @@ msgstr "Sérialiseur en cours d'utilisation" msgid "Slice and value different lengths." msgstr "Slice et valeur de tailles différentes" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Slices non supportées" @@ -1216,7 +1220,7 @@ msgstr "Pour quitter, redémarrez la carte SVP sans " msgid "Too many channels in sample." msgstr "Trop de canaux dans l'échantillon." -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1457,7 +1461,7 @@ msgstr "le tampon doit être un objet bytes-like" msgid "buffer size must match format" msgstr "les slices de tampon doivent être de longueurs égales" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "les slices de tampon doivent être de longueurs égales" @@ -1756,7 +1760,7 @@ msgstr "destination_length doit être un entier >= 0" msgid "dict update sequence has wrong length" msgstr "la séquence de mise à jour de dict a une mauvaise longueur" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "division par zéro" @@ -1765,7 +1769,7 @@ msgstr "division par zéro" msgid "empty" msgstr "vide" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "'heap' vide" @@ -1831,7 +1835,7 @@ msgstr "argument nommé donné en plus" msgid "extra positional arguments given" msgstr "argument positionnel donné en plus" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "le fichier doit être un fichier ouvert en mode 'byte'" @@ -2004,7 +2008,7 @@ msgstr "décorateur micropython invalide" msgid "invalid step" msgstr "pas invalide" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "syntaxe invalide" @@ -2043,7 +2047,7 @@ msgstr "" msgid "keywords must be strings" msgstr "les noms doivent être des chaînes de caractère" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "label '%q' non supporté" @@ -2150,11 +2154,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "nécessite plus de %d valeur à dégrouper" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "puissance négative sans support des nombres flottants" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "compte de décalage négatif" @@ -2264,7 +2268,7 @@ msgstr "chaîne de longueur impaire" msgid "offset out of bounds" msgstr "adresse hors limites" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "seuls les slices avec 'step=1' (cad None) sont supportées" @@ -2425,7 +2429,7 @@ msgstr "la longueur de sleep ne doit pas être négative" msgid "slice step cannot be zero" msgstr "le pas 'step' de slice ne peut être zéro" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "dépassement de capacité d'un entier court" diff --git a/locale/it_IT.po b/locale/it_IT.po index c443d600a..28f872b92 100644 --- a/locale/it_IT.po +++ b/locale/it_IT.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-10-02 16:27+0200\n" "Last-Translator: Enrico Paganin \n" "Language-Team: \n" @@ -52,8 +52,8 @@ msgstr "indice %q fuori intervallo" msgid "%q indices must be integers, not %s" msgstr "gli indici %q devono essere interi, non %s" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #, fuzzy msgid "%q must be >= 1" msgstr "slice del buffer devono essere della stessa lunghezza" @@ -71,12 +71,12 @@ msgstr "%q() prende %d argomenti posizionali ma ne sono stati forniti %d" msgid "'%q' argument required" msgstr "'%q' argomento richiesto" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "'%s' aspetta una etichetta" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "'%s' aspetta un registro" @@ -96,7 +96,7 @@ msgstr "'%s' aspetta un registro" msgid "'%s' expects an address of the form [a, b]" msgstr "'%s' aspetta un registro" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "'%s' aspetta un intero" @@ -254,9 +254,9 @@ msgstr "Tutti i canali di eventi sincronizzati in uso" msgid "All timers for this pin are in use" msgstr "Tutti i timer per questo pin sono in uso" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -328,7 +328,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Buffer di lunghezza non valida. Dovrebbe essere di %d bytes." -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "Il buffer deve essere lungo almeno 1" @@ -368,7 +368,7 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Impossibile cancellare valori" @@ -451,7 +451,7 @@ msgstr "Unità di clock in uso" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "I byte devono essere compresi tra 0 e 255" @@ -491,8 +491,8 @@ msgstr "graphic deve essere lunga 2048 byte" msgid "Data chunk must follow fmt chunk" msgstr "" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Impossibile inserire dati nel pacchetto di advertisement." @@ -523,8 +523,8 @@ msgstr "Canale EXTINT già in uso" msgid "Error in regex" msgstr "Errore nella regex" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Atteso un %q" @@ -534,8 +534,8 @@ msgstr "Atteso un %q" msgid "Expected a Characteristic" msgstr "Non è possibile aggiungere Characteristic." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Atteso un %q" @@ -659,8 +659,8 @@ msgstr "Impossibile leggere valore dell'attributo. status: 0x%02x" msgid "Failed to start advertising" msgstr "Impossibile avviare advertisement. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Impossibile avviare advertisement. status: 0x%02x" @@ -680,8 +680,8 @@ msgstr "Impossible iniziare la scansione. status: 0x%02x" msgid "Failed to stop advertising" msgstr "Impossibile fermare advertisement. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Impossibile fermare advertisement. status: 0x%02x" @@ -722,8 +722,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -807,16 +807,16 @@ msgstr "File non valido" msgid "Invalid format chunk size" msgstr "" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "Numero di bit non valido" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "Fase non valida" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pin non valido" @@ -830,14 +830,14 @@ msgid "Invalid pin for right channel" msgstr "Pin non valido per il canale destro" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Pin non validi" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "Polarità non valida" @@ -1058,10 +1058,14 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "calibrazione RTC non supportata su questa scheda" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "RTC non supportato su questa scheda" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c #, fuzzy msgid "Range out of bounds" @@ -1120,8 +1124,8 @@ msgstr "Serializer in uso" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "Slice non supportate" @@ -1204,7 +1208,7 @@ msgstr "Per uscire resettare la scheda senza " msgid "Too many channels in sample." msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1441,7 +1445,7 @@ msgstr "" msgid "buffer size must match format" msgstr "slice del buffer devono essere della stessa lunghezza" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "slice del buffer devono essere della stessa lunghezza" @@ -1731,7 +1735,7 @@ msgstr "destination_length deve essere un int >= 0" msgid "dict update sequence has wrong length" msgstr "sequanza di aggiornamento del dizionario ha la lunghezza errata" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "divisione per zero" @@ -1740,7 +1744,7 @@ msgstr "divisione per zero" msgid "empty" msgstr "vuoto" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "heap vuoto" @@ -1806,7 +1810,7 @@ msgstr "argomento nominato aggiuntivo fornito" msgid "extra positional arguments given" msgstr "argomenti posizonali extra dati" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1980,7 +1984,7 @@ msgstr "decoratore non valido in micropython" msgid "invalid step" msgstr "step non valida" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "sintassi non valida" @@ -2022,7 +2026,7 @@ msgstr "" msgid "keywords must be strings" msgstr "argomenti nominati devono essere stringhe" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "etichetta '%q' non definita" @@ -2129,11 +2133,11 @@ msgstr "yield nativo" msgid "need more than %d values to unpack" msgstr "necessari più di %d valori da scompattare" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "potenza negativa senza supporto per float" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2243,7 +2247,7 @@ msgstr "stringa di lunghezza dispari" msgid "offset out of bounds" msgstr "indirizzo fuori limite" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "solo slice con step=1 (aka None) sono supportate" @@ -2403,7 +2407,7 @@ msgstr "la lunghezza di sleed deve essere non negativa" msgid "slice step cannot be zero" msgstr "la step della slice non può essere zero" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "small int overflow" diff --git a/locale/pt_BR.po b/locale/pt_BR.po index 546d9e73f..91bf15db5 100644 --- a/locale/pt_BR.po +++ b/locale/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-03-27 16:28-0400\n" +"POT-Creation-Date: 2019-03-28 14:48+1100\n" "PO-Revision-Date: 2018-10-02 21:14-0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -52,8 +52,8 @@ msgstr "" msgid "%q indices must be integers, not %s" msgstr "" -#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #: shared-bindings/bleio/CharacteristicBuffer.c +#: shared-bindings/displayio/Shape.c shared-bindings/displayio/Group.c #, fuzzy msgid "%q must be >= 1" msgstr "buffers devem ser o mesmo tamanho" @@ -71,12 +71,12 @@ msgstr "" msgid "'%q' argument required" msgstr "'%q' argumento(s) requerido(s)" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a label" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects a register" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "'%s' expects an address of the form [a, b]" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c #, c-format msgid "'%s' expects an integer" msgstr "" @@ -254,9 +254,9 @@ msgstr "" msgid "All timers for this pin are in use" msgstr "Todos os temporizadores para este pino estão em uso" +#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/atmel-samd/common-hal/pulseio/PulseOut.c #: ports/atmel-samd/common-hal/frequencyio/FrequencyIn.c -#: ports/atmel-samd/common-hal/audioio/AudioOut.c #: ports/nrf/common-hal/pulseio/PulseOut.c shared-bindings/pulseio/PWMOut.c #: shared-module/_pew/PewPew.c msgid "All timers in use" @@ -325,7 +325,7 @@ msgstr "" msgid "Buffer incorrect size. Should be %d bytes." msgstr "Buffer de tamanho incorreto. Deve ser %d bytes." -#: shared-bindings/busio/I2C.c shared-bindings/bitbangio/I2C.c +#: shared-bindings/bitbangio/I2C.c shared-bindings/busio/I2C.c msgid "Buffer must be at least length 1" msgstr "" @@ -365,7 +365,7 @@ msgstr "" msgid "Can't connect in Peripheral mode" msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/pulseio/PulseIn.c msgid "Cannot delete values" msgstr "Não é possível excluir valores" @@ -447,7 +447,7 @@ msgstr "Unidade de Clock em uso" msgid "Column entry must be digitalio.DigitalInOut" msgstr "" -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c #, fuzzy msgid "Command must be an int between 0 and 255" msgstr "Os bytes devem estar entre 0 e 255." @@ -486,8 +486,8 @@ msgstr "" msgid "Data chunk must follow fmt chunk" msgstr "Pedaço de dados deve seguir o pedaço de cortes" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy msgid "Data too large for advertisement packet" msgstr "Não é possível ajustar dados no pacote de anúncios." @@ -518,8 +518,8 @@ msgstr "Canal EXTINT em uso" msgid "Error in regex" msgstr "Erro no regex" -#: shared-bindings/microcontroller/Pin.c shared-bindings/pulseio/PulseOut.c -#: shared-bindings/neopixel_write/__init__.c +#: shared-bindings/microcontroller/Pin.c +#: shared-bindings/neopixel_write/__init__.c shared-bindings/pulseio/PulseOut.c #: shared-bindings/terminalio/Terminal.c msgid "Expected a %q" msgstr "Esperado um" @@ -529,8 +529,8 @@ msgstr "Esperado um" msgid "Expected a Characteristic" msgstr "Não é possível adicionar Característica." -#: shared-bindings/bleio/Descriptor.c shared-bindings/bleio/Service.c -#: shared-bindings/bleio/Characteristic.c +#: shared-bindings/bleio/Characteristic.c shared-bindings/bleio/Service.c +#: shared-bindings/bleio/Descriptor.c #, fuzzy msgid "Expected a UUID" msgstr "Esperado um" @@ -652,8 +652,8 @@ msgstr "Não é possível ler o valor do atributo. status: 0x%02x" msgid "Failed to start advertising" msgstr "Não é possível iniciar o anúncio. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to start advertising, err 0x%04x" msgstr "Não é possível iniciar o anúncio. status: 0x%02x" @@ -673,8 +673,8 @@ msgstr "Não é possível iniciar o anúncio. status: 0x%02x" msgid "Failed to stop advertising" msgstr "Não pode parar propaganda. status: 0x%02x" -#: ports/nrf/common-hal/bleio/Peripheral.c #: ports/nrf/common-hal/bleio/Broadcaster.c +#: ports/nrf/common-hal/bleio/Peripheral.c #, fuzzy, c-format msgid "Failed to stop advertising, err 0x%04x" msgstr "Não pode parar propaganda. status: 0x%02x" @@ -715,8 +715,8 @@ msgstr "" msgid "Frequency captured is above capability. Capture Paused." msgstr "" -#: shared-bindings/busio/I2C.c shared-bindings/busio/SPI.c #: shared-bindings/bitbangio/I2C.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/busio/SPI.c shared-bindings/busio/I2C.c msgid "Function requires lock" msgstr "" @@ -798,16 +798,16 @@ msgstr "Arquivo inválido" msgid "Invalid format chunk size" msgstr "Tamanho do pedaço de formato inválido" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid number of bits" msgstr "Número inválido de bits" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid phase" msgstr "Fase Inválida" -#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: ports/atmel-samd/common-hal/audioio/AudioOut.c +#: ports/atmel-samd/common-hal/touchio/TouchIn.c #: shared-bindings/pulseio/PWMOut.c msgid "Invalid pin" msgstr "Pino inválido" @@ -821,14 +821,14 @@ msgid "Invalid pin for right channel" msgstr "Pino inválido para canal direito" #: ports/atmel-samd/common-hal/busio/I2C.c -#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/busio/UART.c +#: ports/atmel-samd/common-hal/busio/SPI.c #: ports/atmel-samd/common-hal/i2cslave/I2CSlave.c #: ports/nrf/common-hal/busio/I2C.c msgid "Invalid pins" msgstr "Pinos inválidos" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "Invalid polarity" msgstr "" @@ -1040,10 +1040,14 @@ msgstr "" msgid "RTC calibration is not supported on this board" msgstr "A calibração RTC não é suportada nesta placa" -#: shared-bindings/time/__init__.c shared-bindings/rtc/RTC.c +#: shared-bindings/rtc/RTC.c shared-bindings/time/__init__.c msgid "RTC is not supported on this board" msgstr "O RTC não é suportado nesta placa" +#: shared-bindings/rtc/RTC.c +msgid "RTC set is not supported on this board" +msgstr "" + #: shared-bindings/_pixelbuf/PixelBuf.c msgid "Range out of bounds" msgstr "" @@ -1099,8 +1103,8 @@ msgstr "Serializer em uso" msgid "Slice and value different lengths." msgstr "" -#: shared-bindings/pulseio/PulseIn.c shared-bindings/displayio/Bitmap.c -#: shared-bindings/displayio/TileGrid.c shared-bindings/displayio/Group.c +#: shared-bindings/displayio/Bitmap.c shared-bindings/displayio/TileGrid.c +#: shared-bindings/displayio/Group.c shared-bindings/pulseio/PulseIn.c msgid "Slices not supported" msgstr "" @@ -1180,7 +1184,7 @@ msgstr "Para sair, por favor, reinicie a placa sem " msgid "Too many channels in sample." msgstr "Muitos canais na amostra." -#: shared-bindings/displayio/ParallelBus.c shared-bindings/displayio/FourWire.c +#: shared-bindings/displayio/FourWire.c shared-bindings/displayio/ParallelBus.c msgid "Too many display busses" msgstr "" @@ -1413,7 +1417,7 @@ msgstr "" msgid "buffer size must match format" msgstr "buffers devem ser o mesmo tamanho" -#: shared-bindings/busio/SPI.c shared-bindings/bitbangio/SPI.c +#: shared-bindings/bitbangio/SPI.c shared-bindings/busio/SPI.c msgid "buffer slices must be of equal length" msgstr "" @@ -1697,7 +1701,7 @@ msgstr "destination_length deve ser um int >= 0" msgid "dict update sequence has wrong length" msgstr "" -#: py/objfloat.c py/runtime.c py/modmath.c py/objint_longlong.c py/objint_mpz.c +#: py/modmath.c py/objfloat.c py/objint_longlong.c py/objint_mpz.c py/runtime.c #: shared-bindings/math/__init__.c msgid "division by zero" msgstr "divisão por zero" @@ -1706,7 +1710,7 @@ msgstr "divisão por zero" msgid "empty" msgstr "vazio" -#: extmod/modutimeq.c extmod/moduheapq.c +#: extmod/moduheapq.c extmod/modutimeq.c msgid "empty heap" msgstr "heap vazia" @@ -1772,7 +1776,7 @@ msgstr "argumentos extras de palavras-chave passados" msgid "extra positional arguments given" msgstr "argumentos extra posicionais passados" -#: shared-bindings/displayio/OnDiskBitmap.c shared-bindings/audioio/WaveFile.c +#: shared-bindings/audioio/WaveFile.c shared-bindings/displayio/OnDiskBitmap.c msgid "file must be a file opened in byte mode" msgstr "" @@ -1945,7 +1949,7 @@ msgstr "" msgid "invalid step" msgstr "passo inválido" -#: py/parse.c py/compile.c +#: py/compile.c py/parse.c msgid "invalid syntax" msgstr "" @@ -1982,7 +1986,7 @@ msgstr "" msgid "keywords must be strings" msgstr "" -#: py/emitinlinextensa.c py/emitinlinethumb.c +#: py/emitinlinethumb.c py/emitinlinextensa.c msgid "label '%q' not defined" msgstr "" @@ -2089,11 +2093,11 @@ msgstr "" msgid "need more than %d values to unpack" msgstr "precisa de mais de %d valores para desempacotar" -#: py/runtime.c py/objint_longlong.c py/objint_mpz.c +#: py/objint_longlong.c py/objint_mpz.c py/runtime.c msgid "negative power with no float support" msgstr "" -#: py/runtime.c py/objint_mpz.c +#: py/objint_mpz.c py/runtime.c msgid "negative shift count" msgstr "" @@ -2199,7 +2203,7 @@ msgstr "" msgid "offset out of bounds" msgstr "" -#: py/objstr.c py/objarray.c py/objstrunicode.c py/objtuple.c +#: py/objarray.c py/objstr.c py/objstrunicode.c py/objtuple.c #: shared-bindings/nvm/ByteArray.c msgid "only slices with step=1 (aka None) are supported" msgstr "" @@ -2354,7 +2358,7 @@ msgstr "" msgid "slice step cannot be zero" msgstr "" -#: py/sequence.c py/objint.c +#: py/objint.c py/sequence.c msgid "small int overflow" msgstr "" -- cgit v1.2.3 From 98811a9675f05d839fd7b9af394d34098b6c2cfc Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 28 Mar 2019 09:29:18 -0700 Subject: Update comment --- ports/nrf/mpconfigport.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/nrf/mpconfigport.mk b/ports/nrf/mpconfigport.mk index 75acb40d9..fdeb1bbbe 100644 --- a/ports/nrf/mpconfigport.mk +++ b/ports/nrf/mpconfigport.mk @@ -22,7 +22,7 @@ CIRCUITPY_I2CSLAVE = 0 # nvm not yet implemented CIRCUITPY_NVM = 0 -# rtc not yet implemented +# enable RTC CIRCUITPY_RTC = 1 # frequencyio not yet implemented -- cgit v1.2.3