#language english
#version 2
;
;   FlexCat:                 The flexible catalog generator          V1.8
;   Copyright (C) 1993-1997  Jochen Wiedmann and Marcin Orlowski
;
;   The following defines a sequence of strings. Each definition looks as
;   follows:
;
;   MSG_STRING_NAME (num/minlen/maxlen)
;   text
;
;   where:
;
;   MSG_STRING_NAME is the name of the macro-definition, that will be used
;                   to get the string.
;   num             is the number, which MSG_STRING_NAME will stand for
;   minlen          is the minimum length of "text" (this may be missing)
;   maxlen          is the maximum length of "text" (this may be missing
;                   too)
;   text            is the text, the string will contain
;
;   Each definition is preceded by a remark, which tells what the string
;   is used for.
;
;
;   Error message: Out of memory.
msgMemoryError (//)
Out of memory!
;
;   Warning message; must contain one %s (file), one %d (line number)
;   DON'T EAT THE TRAILING SPACE HERE!
msgWarning (//)
%s, Line %d; warning: 
;
;   Warning message: Expected hex character.
msgExpectedHex (//)
Expected hex character (one of [0-9a-4A-F]).
;
;   Warning message: Expected octal character.
msgExpectedOctal (//)
Expected octal character (one of [0-7]).
;
;   Error message: Cannot open catalog description; must contain one %s
;   (file name)
msgNoCatalogDescription (//)
Cannot open catalog description %s.
;
;   Warning message: Too much Lengthbytes; must contain one %d (maximum).
msgNoLengthBytes (//)
LengthBytes > %d (sizeof long) not possible.
;
;   Warning message: Unknown catalog description command.
msgUnknownCDCommand (//)
Unknown catalog description command
;
;   Warning message: Unexpected blank.
msgUnexpectedBlanks (//)
Unexpected blanks.
;
;   Warning message: Identifier expected.
msgNoIdentifier (//)
Missing identifier.
;
;   Warning message: '(' expected.
msgNoLeadingBracket (//)
Missing '('.
;
;   Warning message: Identifier number redeclared.
msgDoubleID (//)
ID number used twice.
;
;   Warning message: Identifier redeclared.
msgDoubleIdentifier (//)
Identifier redeclared.
;
;   Warning message: '/' expected (MinLen).
msgNoMinLen (//)
Expected MinLen (character '/').
;
;   Warning message: '/' expected (MaxLen).
msgNoMaxLen (//)
Expected MaxLen (character '/').
;
;   Warning message: ')' expected.
msgNoTrailingBracket (//)
Expected ')'.
;
;   Warning message: Extra characters
msgExtraCharacters (//)
Extra characters at the end of the line.
;
;   Warning message: Missing catalog string
msgNoString (//)
Unexpected end of file (missing catalog string).
;
;   Warning message: String too short.
msgShortString (//)
String too short.
;
;   Warning message: String too long.
msgLongString (//)
String too long.
;
;   Error message: No catalog translation file; must contain one %s (file
;   name).
msgNoCatalogTranslation (//)
Cannot open catalog translation file %s.
;
;   Warning message: Missing catalog translation command.
msgNoCTCommand (//)
Missing catalog translation command. (Expected second '#'.)
;
;   Warning message: Unknown catalog translation command.
msgUnknownCTCommand (//)
Unknown catalog translation command.
;
;   Error message: Missing catalog translation version.
msgNoCTVersion (//)
Missing catalog translation version; use either ##version\n\
or ##rcsid and ##name.
;
;   Error message: Missing catalog translation language.
msgNoCTLanguage (//)
Missing catalog translation language.
;
;   Error message: Cannot open catalog file. Must contain one %s (file name).
msgNoCatalog (//)
Cannot open catalog file %s.
;
;   Error message: Cannot create catalog translation file. Must contain
;   one %s (file name).
msgNoNewCTFile (//)
Cannot create catalog translation file %s.
;
;   Warning message: Unknown identifier. Must contain one %s (identifier).
msgUnknownIdentifier (//)
%s missing in catalog description.
;
;   Error message: No source description file. Must contain one %s (file
;   name).
msgNoSourceDescription (//)
Cannot open source description file %s.
;
;   Error message: No source file. Must contain one %s (file name).
msgNoSource (//)
Cannot open source file %s.
;
;   Warning message: Unknown string type
msgUnknownStringType (//)
Unknown string type.
;
;   Warning message: Missing trailing ')' in %(..).
msgNoTerminateBracket (//)
Unexpected end of line. (Missing ')')
;
;   Usage message
msgUsage (//)
Usage:  FlexCat CDFILE/A,CTFILE,CATALOG/K,NEWCTFILE/K,SOURCES/M,WARNCTGAPS/S,NOOPTIM/S,QUIET/S\n\n\
    CDFILE      Catalog description file to scan.\n\
    CTFILE      Catalog translation file to scan.\n\
    CATALOG     Catalog file to create.\n\
    NEWCTFILE   Catalog translation file to create.\n\
    SOURCES     Sources to create; must be something like sfile=sdfile,\n\
                where sfile is a sourcefile and sdfile is a source\n\
                description file.\n\
    WARNCTGAPS  Warn symbols missing in CT file.\n\
    NOOPTIM     Do not skip unchanged strings (equal in both #?.cd and #?.ct)\n\
    QUIET       Suppress warning messages
;
;   Error message: No catalog translation argument
msgNoCTArgument (//)
Creating a catalog needs a catalog translation file as argument.\n
;
;   Warning message: No binary characters.
msgNoBinChars (//)
Binary characters in stringtype None.
;
;   Warning message: Gap in CT file.
msgCTGap (//)
ID %s missing in CT file.
;
;   Warning: Catalog language declared twice
msgDoubleCTLanguage (//)
Catalog language declared twice.
;
;   Warning: Catalog version declared twice
msgDoubleCTVersion (//)
Catalog version declared twice.
;
;   Warning: Wrong Rcs ID
msgWrongRcsId (//)
Incorrect rcs ID (must be similar to\n\
'$Date: yy/mm/dd$ $Revision: vv.rr$')
