diff options
| author | Burt P <pburt0@gmail.com> | 2017-07-10 18:18:16 -0500 | 
|---|---|---|
| committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-12 19:38:41 -0700 | 
| commit | 206310d1d4e70320397fcdee7a8b69f346dd2165 (patch) | |
| tree | 83697aae205ec2a6456b8680c7f056e805ce4914 /modules | |
| parent | 2a0146b4312c4171828e8faf8438cf1cb9e6447b (diff) | |
arm: don't mark empty strings for translation
gettext("") is reserved by gettext.
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/devices/arm/arm_data.c | 19 | 
1 files changed, 9 insertions, 10 deletions
| 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},  }; | 
