From 907fd15e55c82aa985227c3284635ff6e228fd71 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Wed, 8 Jul 2020 21:08:46 +0100 Subject: [PATCH] trivial: Fix two hard to translate strings --- src/fu-security-attr.c | 9 ++++++--- src/fu-util-common.c | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/fu-security-attr.c b/src/fu-security-attr.c index 0bc0c39ad..a346feee4 100644 --- a/src/fu-security-attr.c +++ b/src/fu-security-attr.c @@ -98,10 +98,13 @@ fu_security_attr_get_name (FwupdSecurityAttr *attr) const gchar *kind = fwupd_security_attr_get_metadata (attr, "kind"); if (kind != NULL) { /* TRANSLATORS: Title: %s is ME kind, e.g. CSME/TXT */ - return g_strdup_printf (_("%s override strap"), kind); + return g_strdup_printf (_("%s override"), kind); } - /* TRANSLATORS: Title: MEI = Intel Management Engine */ - return g_strdup (_("MEI override strap")); + /* TRANSLATORS: Title: MEI = Intel Management Engine, and the + * "override" is the physical PIN that can be driven to + * logic high -- luckily it is probably not accessible to + * end users on consumer boards */ + return g_strdup (_("MEI override")); } if (g_strcmp0 (appstream_id, FWUPD_SECURITY_ATTR_ID_MEI_VERSION) == 0) { /* TRANSLATORS: Title: MEI = Intel Management Engine */ diff --git a/src/fu-util-common.c b/src/fu-util-common.c index 7a859c6b9..efb2623b1 100644 --- a/src/fu-util-common.c +++ b/src/fu-util-common.c @@ -1612,7 +1612,7 @@ fu_util_security_attrs_to_string (GPtrArray *attrs) if (pcr0_help) { g_string_append_printf (str, "\n%s\n ยป %s\n", /* TRANSLATORS: this is more background on a security measurement problem */ - _("The TPM PCR0 differes from reconstruction."), + _("The TPM PCR0 differs from reconstruction."), "https://github.com/fwupd/fwupd/wiki/TPM-PCR0-differs-from-reconstruction"); }