From 6697544cdf87d0df5b761d401ad6ffe3a8d752fc Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Wed, 15 Aug 2018 11:01:01 -0700 Subject: Introduce displayio to render graphics to displays. It's designed to minimize RAM footprint by using Sprites to represent objects on the screen. The object model also facilitates partial screen updating which reduces the bandwidth needed to display. This is all handled in C. Python simply manipulates the objects with the ability to synchronize to frame timing. --- locale/circuitpython.pot | 66 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) (limited to 'locale/circuitpython.pot') diff --git a/locale/circuitpython.pot b/locale/circuitpython.pot index ddf3ce98f..c7b7085b7 100644 --- a/locale/circuitpython.pot +++ b/locale/circuitpython.pot @@ -2022,6 +2022,64 @@ msgstr "" msgid "Unsupported pull value." msgstr "" +#: shared-bindings/displayio/Bitmap.c:66 +msgid "value_size must be power of two" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c:85 +msgid "y should be an int" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c:90 +msgid "row buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" + +#: shared-bindings/displayio/Bitmap.c:95 +msgid "row data must be a buffer" +msgstr "" + +#: shared-bindings/displayio/FourWire.c:55 +#: shared-bindings/displayio/FourWire.c:64 +msgid "displayio is a work in progress" +msgstr "" + +#: shared-bindings/displayio/Group.c:65 +msgid "Group must have size at least 1" +msgstr "" + +#: shared-bindings/displayio/Palette.c:94 +msgid "color buffer must be a bytearray or array of type 'b' or 'B'" +msgstr "" + +#: shared-bindings/displayio/Palette.c:100 +msgid "color buffer must be 3 bytes (RGB) or 4 bytes (RGBA)" +msgstr "" + +#: shared-bindings/displayio/Palette.c:104 +msgid "color must be between 0x000000 and 0xffffff" +msgstr "" + +#: shared-bindings/displayio/Palette.c:108 +msgid "color buffer must be a buffer or int" +msgstr "" + +#: shared-bindings/displayio/Palette.c:124 +#: shared-bindings/displayio/Palette.c:138 +msgid "value should be an int" +msgstr "" + +#: shared-bindings/displayio/Sprite.c:44 +msgid "position must be 2-tuple" +msgstr "" + +#: shared-bindings/displayio/Sprite.c:86 +msgid "unsupported bitmap type" +msgstr "" + +#: shared-bindings/displayio/Sprite.c:151 +msgid "palette must be displayio.Palette" +msgstr "" + #: shared-bindings/gamepad/GamePad.c:100 msgid "too many arguments" msgstr "" @@ -2236,6 +2294,14 @@ msgstr "" msgid "Cannot transfer without MOSI and MISO pins." msgstr "" +#: shared-module/displayio/Bitmap.c:60 +msgid "row must be packed and word aligned" +msgstr "" + +#: shared-module/displayio/Group.c:39 +msgid "Group full" +msgstr "" + #: shared-module/struct/__init__.c:39 msgid "'S' and 'O' are not supported format types" msgstr "" -- cgit v1.2.3