File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2056,7 +2056,7 @@ msgid "Too many channels in sample."
2056
2056
msgstr ""
2057
2057
2058
2058
#: shared-module/displayio/__init__.c
2059
- msgid "Too many display busses"
2059
+ msgid "Too many display busses; forgot display.release_displays() ? "
2060
2060
msgstr ""
2061
2061
2062
2062
#: shared-module/displayio/__init__.c
Original file line number Diff line number Diff line change @@ -386,5 +386,5 @@ primary_display_bus_t *allocate_display_bus_or_raise(void) {
386
386
if (result ) {
387
387
return result ;
388
388
}
389
- mp_raise_RuntimeError (translate ("Too many display busses" ));
389
+ mp_raise_RuntimeError (translate ("Too many display busses; forgot display.release_displays() ? " ));
390
390
}
Original file line number Diff line number Diff line change 22
22
23
23
missing = all_ids - po_ids
24
24
if missing :
25
- print ("Missing message id. Please run `make translate`" )
25
+ print (
26
+ "Missing message id. Please run `make translate` and then `git commit locale/circuitpython.pot`"
27
+ )
26
28
print (missing )
27
29
sys .exit (- 1 )
28
30
else :
You can’t perform that action at this time.
0 commit comments