From 206310d1d4e70320397fcdee7a8b69f346dd2165 Mon Sep 17 00:00:00 2001 From: Burt P Date: Mon, 10 Jul 2017 18:18:16 -0500 Subject: arm: don't mark empty strings for translation gettext("") is reserved by gettext. Signed-off-by: Burt P --- modules/devices/arm/arm_data.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'modules/devices/arm/arm_data.c') diff --git a/modules/devices/arm/arm_data.c b/modules/devices/arm/arm_data.c index a57e7b52..4913713e 100644 --- a/modules/devices/arm/arm_data.c +++ b/modules/devices/arm/arm_data.c @@ -68,17 +68,16 @@ static struct { { "sha2", N_("Crypto:SHA2 (arch>8)") }, { "crc32", N_("CRC32 checksum instructions (arch>8)") }, /* arm64/hw_cap */ - { "fp", N_("") }, + { "fp", "" }, { "asimd", N_("Advanced SIMD/NEON on AArch64 (arch>8)") }, - { "atomics", N_("") }, - { "fphp", N_("") }, - { "asimdhp", N_("") }, - { "cpuid", N_("") }, - { "asimdrdm", N_("") }, - { "jscvt", N_("") }, - { "fcma", N_("") }, - { "lrcpc", N_("") }, - + { "atomics", "" }, + { "fphp", "" }, + { "asimdhp", "" }, + { "cpuid", "" }, + { "asimdrdm", "" }, + { "jscvt", "" }, + { "fcma", "" }, + { "lrcpc", "" }, { NULL, NULL}, }; -- cgit v1.2.3