diff --git a/src/fu-engine.c b/src/fu-engine.c index daafa8424..570bfe178 100644 --- a/src/fu-engine.c +++ b/src/fu-engine.c @@ -3902,6 +3902,8 @@ fu_common_device_category_to_name(const gchar *cat) return "BMC"; if (g_strcmp0(cat, "X-UsbReceiver") == 0) return "USB Receiver"; + if (g_strcmp0(cat, "X-Gpu") == 0) + return "GPU"; return NULL; } diff --git a/src/fu-util-common.c b/src/fu-util-common.c index 7f6dcf923..58179db7a 100644 --- a/src/fu-util-common.c +++ b/src/fu-util-common.c @@ -817,6 +817,11 @@ fu_util_release_get_name(FwupdRelease *release) * SATA or NVMe disk */ return g_strdup_printf(_("%s SSD Update"), name); } + if (g_strcmp0(cat, "X-Gpu") == 0) { + /* TRANSLATORS: GPU refers to a Graphics Processing Unit, e.g. + * the "video card" */ + return g_strdup_printf(_("%s GPU Update"), name); + } } /* TRANSLATORS: this is the fallback where we don't know if the release