Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions locale/circuitpython.pot
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,6 @@ msgstr ""
msgid "%q length must be >= %d"
msgstr ""

#: py/runtime.c
msgid "%q moved from %q to %q"
msgstr ""

#: py/argcheck.c
msgid "%q must be %d"
msgstr ""
Expand Down Expand Up @@ -1644,10 +1640,6 @@ msgstr ""
msgid "Not playing"
msgstr ""

#: shared-module/jpegio/JpegDecoder.c
msgid "Not supported JPEG standard"
msgstr ""

#: ports/espressif/common-hal/paralleldisplaybus/ParallelBus.c
#: ports/espressif/common-hal/sdioio/SDCard.c
#, c-format
Expand Down Expand Up @@ -2371,6 +2363,10 @@ msgid ""
"declined or ignored."
msgstr ""

#: shared-module/jpegio/JpegDecoder.c
msgid "Unsupported JPEG (may be progressive)"
msgstr ""

#: shared-bindings/bitmaptools/__init__.c
msgid "Unsupported colorspace"
msgstr ""
Expand Down Expand Up @@ -3174,10 +3170,6 @@ msgstr ""
msgid "file write is not available"
msgstr ""

#: shared-bindings/storage/__init__.c
msgid "filesystem must provide mount method"
msgstr ""

#: extmod/ulab/code/numpy/vector.c
msgid "first argument must be a callable"
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion shared-module/jpegio/JpegDecoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static void check_jresult(JRESULT j) {
msg = MP_ERROR_TEXT("Right format but not supported");
break;
case JDR_FMT3:
msg = MP_ERROR_TEXT("Not supported JPEG standard");
msg = MP_ERROR_TEXT("Unsupported JPEG (may be progressive)");
break;
}
mp_raise_RuntimeError(msg);
Expand Down
Loading