Fix spelling mistakes in some of the binutils sub-directories.

PR 26204
gas	* config/tc-arm.c: Fix spelling mistake.
	* config/tc-riscv.c: Likewise.
	* config/tc-z80.c: Likewise.
	* po/gas.pot: Regenerate.

ld	* lexsup.c: Fix spelling mistake.
	* po/ld.pot: Regenerate.

opcodes	* arc-dis.c: Fix spelling mistake.
	* po/opcodes.pot: Regenerate.
This commit is contained in:
Nick Clifton 2020-07-06 10:54:36 +01:00
parent 17550be7dd
commit ddc73fa987
11 changed files with 1967 additions and 1741 deletions

View File

@ -1,3 +1,11 @@
2020-07-06 Yuri Chornoivan <yurchor@ukr.net>
PR 26204
* config/tc-arm.c: Fix spelling mistake.
* config/tc-riscv.c: Likewise.
* config/tc-z80.c: Likewise.
* po/gas.pot: Regenerate.
2020-07-06 Nick Clifton <nickc@redhat.com>
* po/uk.po: Updated Ukranian translation.

View File

@ -22025,7 +22025,7 @@ vcx_handle_common_checks (unsigned num_args, enum neon_shape rs)
&& mark_feature_used (&armv8m_fp))
&& !mark_feature_used (&mve_ext),
_("vcx instructions with S or D registers require either MVE"
" or Armv8-M floating point etension."));
" or Armv8-M floating point extension."));
}
static void

View File

@ -163,7 +163,7 @@ riscv_set_default_priv_spec (const char *s)
}
/* Still can not find the priv spec class. */
as_bad (_("Unknown default privilege spec `%d.%d.%d' set by "
as_bad (_("Unknown default privilege spec `%d.%d.%d' set by "
"privilege attributes"), major, minor, revision);
return 0;
}

View File

@ -216,7 +216,7 @@ setup_march (const char *name, int *ok, int *err, int *mode)
break;
}
if (i >= ARRAY_SIZE (match_ext_table))
as_fatal (_("Invalid EXTENTION is specified: %s"), name);
as_fatal (_("Invalid EXTENSION is specified: %s"), name);
}
}
@ -409,8 +409,8 @@ Compatibility options:\n\
-local-prefix=TEXT\t treat labels prefixed by TEXT as local\n\
-colonless\t\t permit colonless labels\n\
-sdcc\t\t\t accept SDCC specific instruction syntax\n\
-fp-s=FORMAT\t\t set single precission FP numbers format\n\
-fp-d=FORMAT\t\t set double precission FP numbers format\n\
-fp-s=FORMAT\t\t set single precision FP numbers format\n\
-fp-d=FORMAT\t\t set double precision FP numbers format\n\
Where FORMAT one of:\n\
ieee754\t\t IEEE754 compatible (depends on directive)\n\
half\t\t\t IEEE754 half precision (16 bit)\n\
@ -3887,7 +3887,7 @@ str_to_broken_float (bfd_boolean *signP, bfd_uint64_t *mantissaP, int *expP)
if (*p == '.')
{
p++;
if (!exponent) /* If no precission overflow. */
if (!exponent) /* If no precision overflow. */
{
for (; ISDIGIT (*p); ++p, --exponent)
{

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
"POT-Creation-Date: 2020-07-04 10:27+0100\n"
"POT-Creation-Date: 2020-07-06 10:51+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -4711,7 +4711,7 @@ msgstr ""
#: config/tc-arm.c:22027
msgid ""
"vcx instructions with S or D registers require either MVE or Armv8-M "
"floating point etension."
"floating point extension."
msgstr ""
#: config/tc-arm.c:22043
@ -15500,7 +15500,7 @@ msgstr ""
#. Still can not find the priv spec class.
#: config/tc-riscv.c:166
#, c-format
msgid "Unknown default privilege spec `%d.%d.%d' set by privilege attributes"
msgid "Unknown default privilege spec `%d.%d.%d' set by privilege attributes"
msgstr ""
#: config/tc-riscv.c:576 config/tc-riscv.c:637
@ -20258,7 +20258,7 @@ msgstr ""
#: config/tc-z80.c:219
#, c-format
msgid "Invalid EXTENTION is specified: %s"
msgid "Invalid EXTENSION is specified: %s"
msgstr ""
#: config/tc-z80.c:274
@ -20293,8 +20293,8 @@ msgid ""
" -local-prefix=TEXT\t treat labels prefixed by TEXT as local\n"
" -colonless\t\t permit colonless labels\n"
" -sdcc\t\t\t accept SDCC specific instruction syntax\n"
" -fp-s=FORMAT\t\t set single precission FP numbers format\n"
" -fp-d=FORMAT\t\t set double precission FP numbers format\n"
" -fp-s=FORMAT\t\t set single precision FP numbers format\n"
" -fp-d=FORMAT\t\t set double precision FP numbers format\n"
"Where FORMAT one of:\n"
" ieee754\t\t IEEE754 compatible (depends on directive)\n"
" half\t\t\t IEEE754 half precision (16 bit)\n"

View File

@ -1,3 +1,9 @@
2020-07-06 Yuri Chornoivan <yurchor@ukr.net>
PR 26204
* lexsup.c: Fix spelling mistake.
* po/ld.pot: Regenerate.
2020-07-06 Nick Clifton <nickc@redhat.com>
* po/bg.po: Updated Bulgarian translation.

View File

@ -530,9 +530,9 @@ static const struct ld_option ld_options[] =
{ {"warn-textrel", no_argument, NULL, OPTION_WARN_TEXTREL},
'\0', NULL,
#if DEFAULT_LD_TEXTREL_CHECK_WARNING
N_("Warn if outpout has DT_TEXTREL (default)"),
N_("Warn if output has DT_TEXTREL (default)"),
#else
N_("Warn if outpout has DT_TEXTREL"),
N_("Warn if output has DT_TEXTREL"),
#endif
TWO_DASHES },
{ {"warn-shared-textrel", no_argument, NULL, OPTION_WARN_TEXTREL},

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,9 @@
2020-07-06 Yuri Chornoivan <yurchor@ukr.net>
PR 26204
* arc-dis.c: Fix spelling mistake.
* po/opcodes.pot: Regenerate.
2020-07-06 Nick Clifton <nickc@redhat.com>
* po/pt_BR.po: Updated Brazilian Portugugese translation.

View File

@ -437,7 +437,7 @@ find_format (bfd_vma memaddr,
if (opcode == NULL)
{
(*info->fprintf_func) (info->stream,
_("An error occured while generating the "
_("An error occurred while generating the "
"extension instruction operations"));
*opcode_result = NULL;
return FALSE;

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
"POT-Creation-Date: 2020-07-04 10:26+0100\n"
"POT-Creation-Date: 2020-07-06 10:51+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -352,7 +352,7 @@ msgid ""
msgstr ""
#: arc-dis.c:440
msgid "An error occured while generating the extension instruction operations"
msgid "An error occurred while generating the extension instruction operations"
msgstr ""
#: arc-dis.c:845