make translate

This commit is contained in:
ajs256 2021-05-10 16:57:38 -07:00
parent 7cd8e98962
commit 3c8b8cdba7
2 changed files with 6 additions and 6 deletions

View File

@ -2182,11 +2182,7 @@ msgid "UART write error"
msgstr ""
#: shared-module/usb_hid/Device.c
msgid "USB Busy"
msgstr ""
#: shared-module/usb_hid/Device.c
msgid "USB Error"
msgid "USB busy"
msgstr ""
#: supervisor/shared/safe_mode.c
@ -2197,6 +2193,10 @@ msgstr ""
msgid "USB devices specify too many interface names."
msgstr ""
#: shared-module/usb_hid/Device.c
msgid "USB error"
msgstr ""
#: shared-bindings/_bleio/UUID.c
msgid "UUID integer value must be 0-0xffff"
msgstr ""

View File

@ -210,7 +210,7 @@ void common_hal_usb_hid_device_send_report(usb_hid_device_obj_t *self, uint8_t *
memcpy(self->in_report_buffer, report, len);
if (!tud_hid_report(self->report_id, self->in_report_buffer, len)) {
mp_raise_msg(&mp_type_OSError, translate("USB brror"));
mp_raise_msg(&mp_type_OSError, translate("USB error"));
}
}