From b30f82fe98fb65c933573ee29113f44f903503cc Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Mon, 20 May 2019 09:29:24 +0100 Subject: [PATCH] trivial: Add two new translatable strings for new category types --- src/fu-util-common.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/fu-util-common.c b/src/fu-util-common.c index 9567c52c3..219752b1e 100644 --- a/src/fu-util-common.c +++ b/src/fu-util-common.c @@ -538,6 +538,16 @@ fu_util_release_get_name (FwupdRelease *release) * the first %s is the device name, e.g. 'ThinkPad P50` */ return g_strdup_printf (_("%s ME Update"), name); } + if (g_strcmp0 (cat, "X-CorporateManagementEngine") == 0) { + /* TRANSLATORS: ME stands for Management Engine (with Intel AMT), + * where the first %s is the device name, e.g. 'ThinkPad P50` */ + return g_strdup_printf (_("%s Corporate ME Update"), name); + } + if (g_strcmp0 (cat, "X-ConsumerManagementEngine") == 0) { + /* TRANSLATORS: ME stands for Management Engine, where + * the first %s is the device name, e.g. 'ThinkPad P50` */ + return g_strdup_printf (_("%s Consumer ME Update"), name); + } if (g_strcmp0 (cat, "X-Controller") == 0) { /* TRANSLATORS: the controller is a device that has other devices * plugged into it, for example ThunderBolt, FireWire or USB,