Skip to content

Commit cde6651

Browse files
committed
Merge remote-tracking branch 'adafruit/master' into improve_verification
2 parents c816cfe + 75f9969 commit cde6651

File tree

69 files changed

+2169
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2169
-162
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ jobs:
224224
- "pybadge_airlift"
225225
- "pyboard_v11"
226226
- "pycubed"
227+
- "pycubed_mram"
227228
- "pygamer"
228229
- "pygamer_advance"
229230
- "pyportal"

locale/ID.po

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2020-05-06 17:47+0800\n"
11+
"POT-Creation-Date: 2020-05-12 12:24-0700\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -70,13 +70,22 @@ msgstr ""
7070
msgid "%q indices must be integers, not %s"
7171
msgstr ""
7272

73+
#: shared-bindings/vectorio/Polygon.c
74+
msgid "%q list must be a list"
75+
msgstr ""
76+
7377
#: shared-bindings/_bleio/CharacteristicBuffer.c
7478
#: shared-bindings/_bleio/PacketBuffer.c shared-bindings/displayio/Group.c
75-
#: shared-bindings/displayio/Shape.c
79+
#: shared-bindings/displayio/Shape.c shared-bindings/vectorio/Circle.c
80+
#: shared-bindings/vectorio/Rectangle.c
7681
#, fuzzy
7782
msgid "%q must be >= 1"
7883
msgstr "buffers harus mempunyai panjang yang sama"
7984

85+
#: shared-bindings/vectorio/Polygon.c
86+
msgid "%q must be a tuple of length 2"
87+
msgstr ""
88+
8089
#: shared-bindings/fontio/BuiltinFont.c
8190
msgid "%q should be an int"
8291
msgstr ""
@@ -797,7 +806,8 @@ msgstr ""
797806
msgid "Group full"
798807
msgstr ""
799808

800-
#: ports/stm/common-hal/busio/I2C.c ports/stm/common-hal/busio/SPI.c
809+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
810+
#: ports/stm/common-hal/busio/SPI.c
801811
msgid "Hardware busy, try alternative pins"
802812
msgstr ""
803813

@@ -1050,15 +1060,15 @@ msgstr ""
10501060
msgid "Microphone startup delay must be in range 0.0 to 1.0"
10511061
msgstr ""
10521062

1053-
#: ports/stm/common-hal/busio/SPI.c
1063+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10541064
msgid "Missing MISO or MOSI Pin"
10551065
msgstr ""
10561066

10571067
#: shared-bindings/displayio/Group.c
10581068
msgid "Must be a %q subclass."
10591069
msgstr ""
10601070

1061-
#: ports/stm/common-hal/busio/SPI.c
1071+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10621072
msgid "Must provide MISO or MOSI pin"
10631073
msgstr ""
10641074

@@ -1089,11 +1099,11 @@ msgstr "Tidak ada DAC (Digital Analog Converter) di dalam chip"
10891099
msgid "No DMA channel found"
10901100
msgstr "tidak ada channel DMA ditemukan"
10911101

1092-
#: ports/stm/common-hal/busio/SPI.c
1102+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10931103
msgid "No MISO Pin"
10941104
msgstr ""
10951105

1096-
#: ports/stm/common-hal/busio/SPI.c
1106+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10971107
msgid "No MOSI Pin"
10981108
msgstr ""
10991109

@@ -1142,6 +1152,10 @@ msgstr "Tidak ada dukungan hardware untuk pin"
11421152
msgid "No key was specified"
11431153
msgstr ""
11441154

1155+
#: shared-bindings/time/__init__.c
1156+
msgid "No long integer support"
1157+
msgstr ""
1158+
11451159
#: ports/stm/common-hal/pulseio/PWMOut.c
11461160
msgid "No more timers available on this pin."
11471161
msgstr ""
@@ -2012,6 +2026,10 @@ msgstr ""
20122026
msgid "chr() arg not in range(256)"
20132027
msgstr ""
20142028

2029+
#: shared-module/vectorio/Circle.c
2030+
msgid "circle can only be registered in one parent"
2031+
msgstr ""
2032+
20152033
#: shared-bindings/displayio/Palette.c
20162034
msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)"
20172035
msgstr ""
@@ -2114,6 +2132,10 @@ msgstr ""
21142132
msgid "empty"
21152133
msgstr ""
21162134

2135+
#: shared-bindings/vectorio/Polygon.c
2136+
msgid "empty %q list"
2137+
msgstr ""
2138+
21172139
#: extmod/moduheapq.c extmod/modutimeq.c
21182140
msgid "empty heap"
21192141
msgstr "heap kosong"
@@ -2804,10 +2826,14 @@ msgstr ""
28042826
msgid "pixel value requires too many bits"
28052827
msgstr ""
28062828

2807-
#: shared-bindings/displayio/TileGrid.c
2829+
#: shared-bindings/displayio/TileGrid.c shared-bindings/vectorio/VectorShape.c
28082830
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
28092831
msgstr ""
28102832

2833+
#: shared-module/vectorio/Polygon.c
2834+
msgid "polygon can only be registered in one parent"
2835+
msgstr ""
2836+
28112837
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
28122838
#: ports/cxd56/common-hal/pulseio/PulseIn.c
28132839
#: ports/nrf/common-hal/pulseio/PulseIn.c
@@ -3127,7 +3153,8 @@ msgstr ""
31273153
msgid "unreadable attribute"
31283154
msgstr ""
31293155

3130-
#: shared-bindings/displayio/TileGrid.c
3156+
#: shared-bindings/displayio/TileGrid.c shared-bindings/vectorio/Polygon.c
3157+
#: shared-bindings/vectorio/VectorShape.c
31313158
msgid "unsupported %q type"
31323159
msgstr ""
31333160

locale/circuitpython.pot

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2020-05-06 17:47+0800\n"
11+
"POT-Creation-Date: 2020-05-12 12:24-0700\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -70,12 +70,21 @@ msgstr ""
7070
msgid "%q indices must be integers, not %s"
7171
msgstr ""
7272

73+
#: shared-bindings/vectorio/Polygon.c
74+
msgid "%q list must be a list"
75+
msgstr ""
76+
7377
#: shared-bindings/_bleio/CharacteristicBuffer.c
7478
#: shared-bindings/_bleio/PacketBuffer.c shared-bindings/displayio/Group.c
75-
#: shared-bindings/displayio/Shape.c
79+
#: shared-bindings/displayio/Shape.c shared-bindings/vectorio/Circle.c
80+
#: shared-bindings/vectorio/Rectangle.c
7681
msgid "%q must be >= 1"
7782
msgstr ""
7883

84+
#: shared-bindings/vectorio/Polygon.c
85+
msgid "%q must be a tuple of length 2"
86+
msgstr ""
87+
7988
#: shared-bindings/fontio/BuiltinFont.c
8089
msgid "%q should be an int"
8190
msgstr ""
@@ -786,7 +795,8 @@ msgstr ""
786795
msgid "Group full"
787796
msgstr ""
788797

789-
#: ports/stm/common-hal/busio/I2C.c ports/stm/common-hal/busio/SPI.c
798+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/I2C.c
799+
#: ports/stm/common-hal/busio/SPI.c
790800
msgid "Hardware busy, try alternative pins"
791801
msgstr ""
792802

@@ -1039,15 +1049,15 @@ msgstr ""
10391049
msgid "Microphone startup delay must be in range 0.0 to 1.0"
10401050
msgstr ""
10411051

1042-
#: ports/stm/common-hal/busio/SPI.c
1052+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10431053
msgid "Missing MISO or MOSI Pin"
10441054
msgstr ""
10451055

10461056
#: shared-bindings/displayio/Group.c
10471057
msgid "Must be a %q subclass."
10481058
msgstr ""
10491059

1050-
#: ports/stm/common-hal/busio/SPI.c
1060+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10511061
msgid "Must provide MISO or MOSI pin"
10521062
msgstr ""
10531063

@@ -1078,11 +1088,11 @@ msgstr ""
10781088
msgid "No DMA channel found"
10791089
msgstr ""
10801090

1081-
#: ports/stm/common-hal/busio/SPI.c
1091+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10821092
msgid "No MISO Pin"
10831093
msgstr ""
10841094

1085-
#: ports/stm/common-hal/busio/SPI.c
1095+
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/stm/common-hal/busio/SPI.c
10861096
msgid "No MOSI Pin"
10871097
msgstr ""
10881098

@@ -1131,6 +1141,10 @@ msgstr ""
11311141
msgid "No key was specified"
11321142
msgstr ""
11331143

1144+
#: shared-bindings/time/__init__.c
1145+
msgid "No long integer support"
1146+
msgstr ""
1147+
11341148
#: ports/stm/common-hal/pulseio/PWMOut.c
11351149
msgid "No more timers available on this pin."
11361150
msgstr ""
@@ -1988,6 +2002,10 @@ msgstr ""
19882002
msgid "chr() arg not in range(256)"
19892003
msgstr ""
19902004

2005+
#: shared-module/vectorio/Circle.c
2006+
msgid "circle can only be registered in one parent"
2007+
msgstr ""
2008+
19912009
#: shared-bindings/displayio/Palette.c
19922010
msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGB + pad byte)"
19932011
msgstr ""
@@ -2090,6 +2108,10 @@ msgstr ""
20902108
msgid "empty"
20912109
msgstr ""
20922110

2111+
#: shared-bindings/vectorio/Polygon.c
2112+
msgid "empty %q list"
2113+
msgstr ""
2114+
20932115
#: extmod/moduheapq.c extmod/modutimeq.c
20942116
msgid "empty heap"
20952117
msgstr ""
@@ -2779,10 +2801,14 @@ msgstr ""
27792801
msgid "pixel value requires too many bits"
27802802
msgstr ""
27812803

2782-
#: shared-bindings/displayio/TileGrid.c
2804+
#: shared-bindings/displayio/TileGrid.c shared-bindings/vectorio/VectorShape.c
27832805
msgid "pixel_shader must be displayio.Palette or displayio.ColorConverter"
27842806
msgstr ""
27852807

2808+
#: shared-module/vectorio/Polygon.c
2809+
msgid "polygon can only be registered in one parent"
2810+
msgstr ""
2811+
27862812
#: ports/atmel-samd/common-hal/pulseio/PulseIn.c
27872813
#: ports/cxd56/common-hal/pulseio/PulseIn.c
27882814
#: ports/nrf/common-hal/pulseio/PulseIn.c
@@ -3101,7 +3127,8 @@ msgstr ""
31013127
msgid "unreadable attribute"
31023128
msgstr ""
31033129

3104-
#: shared-bindings/displayio/TileGrid.c
3130+
#: shared-bindings/displayio/TileGrid.c shared-bindings/vectorio/Polygon.c
3131+
#: shared-bindings/vectorio/VectorShape.c
31053132
msgid "unsupported %q type"
31063133
msgstr ""
31073134

0 commit comments

Comments
 (0)