diff --git a/src/fu-engine.c b/src/fu-engine.c index 558e9768b..7cc979077 100644 --- a/src/fu-engine.c +++ b/src/fu-engine.c @@ -3461,6 +3461,8 @@ fu_common_device_category_to_name(const gchar *cat) return "Display"; if (g_strcmp0(cat, "X-BaseboardManagementController") == 0) return "BMC"; + if (g_strcmp0(cat, "X-UsbReceiver") == 0) + return "USB Receiver"; return NULL; } diff --git a/src/fu-util-common.c b/src/fu-util-common.c index ada764128..79b322a55 100644 --- a/src/fu-util-common.c +++ b/src/fu-util-common.c @@ -797,6 +797,11 @@ fu_util_release_get_name(FwupdRelease *release) * is the device that updates all the other firmware on the system */ return g_strdup_printf(_("%s BMC Update"), name); } + if (g_strcmp0(cat, "X-UsbReceiver") == 0) { + /* TRANSLATORS: Receiver refers to a radio device, e.g. a tiny Bluetooth + * device that stays in the USB port so the wireless peripheral works */ + return g_strdup_printf(_("%s USB Receiver Update"), name); + } } /* TRANSLATORS: this is the fallback where we don't know if the release