mirror of https://git.wuffs.org/MWCC
82 lines
3.9 KiB
R
82 lines
3.9 KiB
R
static const char *STR12010[79] = {
|
|
"Option missing",
|
|
"Command-line argument '%.15s...%.15s' is much too long, maximum accepted length is %d characters",
|
|
"Parameter for '%s' missing",
|
|
"Numeric constant '%s' overflowed 32-bit range",
|
|
"Invalid %sconstant '%s'",
|
|
"Numeric constant %lu is out of the legal range %lu - %lu",
|
|
"Numeric constant %lu is out of the legal range %lu - %lu; clipping to %lu",
|
|
"Four-char type '%s' is too long, expected maximum four characters",
|
|
"String constant '%.16s...%.16s' too long, expected maximum %ld characters",
|
|
"Identifier '%s' cannot start with a digit",
|
|
"Identifier '%s' cannot contain the character '%c'",
|
|
"Expected 'on' or 'off', but got '%s'",
|
|
"Filename or directory '...%32s' is too long, expected maximum %ld characters",
|
|
"Directory '...%32s' combined with filename '...%32s' is too long, maximum path is %ld characters",
|
|
"File '%s' does not exist",
|
|
"'%s' is a directory or volume, filename expected",
|
|
"'%s' does not refer to a directory",
|
|
"File path '%s' not accepted\n(%s)",
|
|
"Unknown option '%s'",
|
|
"Unknown option '%s'; expected one of '%s'",
|
|
"Option is obsolete",
|
|
"Option is obsolete; %s",
|
|
"Option '%s' substituted with %s",
|
|
"Option deprecated; accepted this time",
|
|
"Option deprecated, accepted this time; use '%s' instead",
|
|
"Option ignored",
|
|
"Option ignored;\n%s",
|
|
"%s",
|
|
"Option has no effect on this target",
|
|
"Option should not be specified multiple times",
|
|
"Option overrides the effect of '%s'; only one of '%s' should be specified",
|
|
"Option overrides the effect of '%s'; only one of '%s' should be specified;\n%s",
|
|
"No default handler set up for '%s', ignoring",
|
|
"Argument(s) expected",
|
|
"Token '%s' not expected",
|
|
"Unexpected additional argument '%s'",
|
|
"Encountered extraneous arguments",
|
|
"No help available for option '%s'",
|
|
"Empty (zero-length) argument not accepted",
|
|
"Variable name missing",
|
|
"Only one output filename allowed; '%s' not accepted",
|
|
"Output filenames found without source; '%s' not accepted",
|
|
"Multiple outputs expected, output is ambiguous; '%s' not accepted",
|
|
"Specified file '%s' not found",
|
|
"Specified directory '%s' not found",
|
|
"'%s' is a filename, not a directory; not accepted",
|
|
"'%s' is a directory, not a filename; not accepted",
|
|
"Library search found shared library '%s' instead of export library '%s.LIB'",
|
|
"No library file found matching 'lib%s{%s}' or '%s'",
|
|
"Redudant use of '%c%s%s'; linker always searches library paths;\ntypically one finds, e.g., libXXX.a with '%c%sXXX'",
|
|
"Empty filename in library list ignored",
|
|
"Environment variable '%s' not found",
|
|
"In environment variable '%s':",
|
|
"Option name expected for 'opt'",
|
|
"Token '%s' ignored",
|
|
"Token '%s[...%s]' was truncated to %d characters",
|
|
"Expected %s, but got %s",
|
|
"No output expected from this process, ignoring output name '%s'",
|
|
"Only one output directory allowed, '%s' not accepted",
|
|
"Storing browse info for '%s' in '%s'",
|
|
"All linker output will be created in the same directory; ignoring path for '%s'",
|
|
"Option overrides previously specified optimizations",
|
|
"Could not initialize command line parser",
|
|
"Output filename '%s' is invalid",
|
|
"Truncated output filename '%s' to %d characters",
|
|
"Output directory '%s' cannot be found",
|
|
"Cannot add access path '%s'",
|
|
"Cannot set preferences for '%s'",
|
|
"Some of the files specified could not be found; build aborted",
|
|
"Nothing to do: no source or object files specified",
|
|
"Contents of %s:",
|
|
"Overlays not supported on this target",
|
|
"Segments not supported on this target",
|
|
"Cannot open %s file '%s'",
|
|
"",
|
|
"The file \"%s\" may be ignored unless it has one of the following\nextensions: \"%s\"",
|
|
"Not using non-text file '%s' as optional argument",
|
|
"Cannot redirect stream to '%s' (%s)",
|
|
0
|
|
};
|