Skip to content

Commit a83f95b

Browse files
authored
Merge branch 'adafruit:main' into main
2 parents 79aaa40 + 6b62df4 commit a83f95b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

locale/pt_BR.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ msgstr ""
66
"Project-Id-Version: PACKAGE VERSION\n"
77
"Report-Msgid-Bugs-To: \n"
88
"POT-Creation-Date: 2021-01-04 12:55-0600\n"
9-
"PO-Revision-Date: 2023-10-27 08:51+0000\n"
9+
"PO-Revision-Date: 2023-10-29 05:03+0000\n"
1010
"Last-Translator: Wellington Terumi Uemura <[email protected]>\n"
1111
"Language-Team: \n"
1212
"Language: pt_BR\n"
@@ -190,7 +190,7 @@ msgstr "o comprimento de %q deve ser >= %d"
190190

191191
#: py/objmodule.c py/runtime.c
192192
msgid "%q moved from %q to %q"
193-
msgstr ""
193+
msgstr "%q foi movido de %q para %q"
194194

195195
#: py/argcheck.c
196196
msgid "%q must be %d"
@@ -231,7 +231,7 @@ msgstr "%q deve ser um bytearray ou uma matriz do tipo 'h', 'H', 'b', ou 'B'"
231231

232232
#: shared-bindings/warnings/__init__.c
233233
msgid "%q must be a subclass of %q"
234-
msgstr ""
234+
msgstr "%q deve ser uma subclasse de %q"
235235

236236
#: ports/espressif/common-hal/analogbufio/BufferedIn.c
237237
msgid "%q must be array of type 'H'"
@@ -270,7 +270,7 @@ msgstr "%q fora do alcance"
270270

271271
#: py/objmodule.c py/runtime.c
272272
msgid "%q renamed %q"
273-
msgstr ""
273+
msgstr "%q foi renomeado para %q"
274274

275275
#: py/objrange.c py/objslice.c shared-bindings/random/__init__.c
276276
msgid "%q step cannot be zero"

shared-bindings/keypad/KeyMatrix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ STATIC MP_DEFINE_CONST_DICT(keypad_keymatrix_locals_dict, keypad_keymatrix_local
253253
MP_DEFINE_CONST_OBJ_TYPE(
254254
keypad_keymatrix_type,
255255
MP_QSTR_KeyMatrix,
256-
MP_TYPE_FLAG_NONE,
256+
MP_TYPE_FLAG_HAS_SPECIAL_ACCESSORS,
257257
make_new, keypad_keymatrix_make_new
258258
#if CIRCUITPY_KEYPAD_KEYMATRIX
259259
, locals_dict, &keypad_keymatrix_locals_dict

shared-bindings/keypad/Keys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ STATIC MP_DEFINE_CONST_DICT(keypad_keys_locals_dict, keypad_keys_locals_dict_tab
187187
MP_DEFINE_CONST_OBJ_TYPE(
188188
keypad_keys_type,
189189
MP_QSTR_Keys,
190-
MP_TYPE_FLAG_NONE,
190+
MP_TYPE_FLAG_HAS_SPECIAL_ACCESSORS,
191191
make_new, keypad_keys_make_new
192192
#if CIRCUITPY_KEYPAD_KEYS
193193
, locals_dict, &keypad_keys_locals_dict

shared-bindings/keypad/ShiftRegisterKeys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ STATIC MP_DEFINE_CONST_DICT(keypad_shiftregisterkeys_locals_dict, keypad_shiftre
239239
MP_DEFINE_CONST_OBJ_TYPE(
240240
keypad_shiftregisterkeys_type,
241241
MP_QSTR_ShiftRegisterKeys,
242-
MP_TYPE_FLAG_NONE,
242+
MP_TYPE_FLAG_HAS_SPECIAL_ACCESSORS,
243243
make_new, keypad_shiftregisterkeys_make_new
244244
#if CIRCUITPY_KEYPAD_SHIFTREGISTERKEYS
245245
, locals_dict, &keypad_shiftregisterkeys_locals_dict

0 commit comments

Comments
 (0)