pascalabcnet/bin/Lng/Eng/PascalABCParser.dat

97 lines
4.5 KiB
Plaintext
Raw Permalink Normal View History

2024-05-06 02:15:20 +03:00
//PascalABCParser.dll
2015-05-14 22:35:07 +03:00
%PREFIX%=PASCALABCPARSER_
FOUND{0}=Found {0} but
FOUNDEOF=Found end of file but
EXPECTED{0}=Expected {0}
EXPECTED{1}=expected {1}
EXPECTEDR{1}=expected {1}
2021-01-08 13:53:15 +03:00
EXPECTEDF{1}=expected {1}
2015-05-14 22:35:07 +03:00
EXPECTEDBEGIN=declaration section or begin expected
2021-01-08 14:14:40 +03:00
WRONG_ATTRIBUTE_FOR_RECORD=abstract, sealed, auto and static are not allowed for record
2015-05-14 22:35:07 +03:00
WITHOUT_INIT_AND_SIZE=Size of dynamic array is passed
OPERATOR_NOT_IMPLEMET_TO_THIS_OPEAND_TYPE=Bad operand type
STATEMENT_EXPECTED=Statement expected
LEFT_SIDE_ASSIGN_MUST_BE_VARIABLE=Leftside assigment must be variable
PROCEDURE_CANNOT_HAVE_RETURNED_VALUE=Procedure cannot have returned value
EXPECTED_{0}_BUT_FOUND_{1}=Expected '{0}' but found '{1}'
NONTERMINALTOKEN_{0}_RETURN_NULL=Syntax rule '{0}' is not supported by the current version of the compiler
2024-05-06 02:41:52 +03:00
SEMICOLON_BEFORE_ELSE=Перед else нельзя ставить точку с запятой
2015-05-14 22:35:07 +03:00
UNEXPECTED_SYMBOL{0}=Unexpected symbol '{0}'
UNSUPPORTED_OLD_DIRECTIVES=Compiler directives began with # are not supported. Use directives {$ }
UNKNOWN_DIRECTIVE{0}=Unknown directive '{0}'
MISSING_DIRECTIVE_PARAM{0}=Directive '{0}' requires a parameter
UNNECESSARY_DIRECTIVE_PARAM{0}=Directive '{0}' is used without parameters
INCORRECT_DIRECTIVE_PARAM{0}{1}{2}=Invalid parameter '{0}' passed to directive '{1}'. {2}
EMPTY_DIRECTIVE=Empty directive is not allowed
DIRECTIVE_WRONG_NUMBER_OF_PARAMS{0}{1}=Directive '{0}' must have {1}
INCLUDE_COULDNT_OPEN_FILE{0}=Compiler directive 'include': can't open file '{0}'
RECUR_INCLUDE=Compiler directive 'include': recursive include
UNNECESSARY $endif=Extra 'endif'
ENDIF_ABSENT=Not closed directive 'ifdef' or 'ifndef' - 'endif' is absent
UNNECESSARY $else=Extra 'else'
2016-02-20 23:28:38 +03:00
TYPE_NAME_EXPECTED=Type expected
MULTILINE_STRING_CONTAINS_INCONSISTENT_INDENTS=Multiline string contains inconsistent indents
NON_WHITESPACE_CHARACTERS_BEFORE_CLOSING_QUOTES_OF_MULTILINE_STRING=There should be no non-whitespace characters before the closing quotes of the multiline string
PARAM_SINGLE1=parameter
PARAM_SINGLE2=parameter
PARAM_MULTIPLE1=parameters
PARAM_MULTIPLE2=parameters
NOT_MORE_THAN=no more than
EXACTLY=exactly
2015-05-14 22:35:07 +03:00
EOF1=end of file
EOF=(end of file)
2021-01-08 13:53:15 +03:00
TKIDENTIFIER=identifier
TKSTRINGLITERAL=string literal
2015-05-14 22:35:07 +03:00
TKINTEGER=number
OPERATOR=operator
TKSEMICOLON=';'
TKCOLON=':'
TKCOMMA=','
TKPOINT='.'
TKASSIGN=':='
TKEQUAL='='
TKDOTDOT='..'
TKROUNDOPEN='('
TKROUNDCLOSE=')'
TKDO=do
EXPR=expression
STMT=statement
ONE_EOF=Expected end of file
ONE_TKIDENTIFIER=Expected identefier
ONE_OPERATOR=Expected operator
ONE_STMT=Expected statement
BAD_TUPLE=Badly formed Tuple
EMPTY_STATEMENT_IN_SHORT_PROC_DEFINITION=Statement expected
EXPRESSION_EXPECTED=Expression expected
2015-05-14 22:35:07 +03:00
DUPLICATE_NAMES_IN_ANON_TYPE=Duplicate field names in anonymous type
2015-05-17 21:15:48 +03:00
BAD_ANON_TYPE=Bad field name in anonymous type
ONE_TYPE_PARAMETER_MUSTBE_WITHOUT_PARENTHESES=The alone typed parameter must be without parentheses
USING_UNLOCAL_FOR_VARIABLE=Cycle counter variable should be declared in for cycle
USING_UNLOCAL_FOREACH_VARIABLE=Cycle counter variable should be declared in foreach cycle
2017-09-28 08:48:33 +03:00
OVERLOAD_IS_NOT_USED=overload is not used in PascalABC.NET
ONLY_BASE_ASSIGNMENT_FOR_TUPLE=Tuple allows only base assignment :=
2018-03-21 23:01:54 +03:00
BAD_FORMAT_STRING=Interpolated string has invalid format
2018-05-31 00:40:29 +03:00
TUPLE_ELEMENTS_COUNT_MUST_BE_LESSEQUAL_7=Count of Tuple elements must be <=7
2018-06-12 22:45:54 +03:00
TWO_NILS_IN_QUESTION_EXPR=The conditional expression cannot contain nil constants on both branches
2018-06-28 22:12:52 +03:00
DOT_QUECTION_IN_SHORT_FUN=Expression with ?. cannot appear in a short function definition without a return value
BAD_INT2=Too small int64
INVALID_INTERFACE_MEMBER=Interface members cannot have definitions
2018-10-03 22:46:20 +03:00
EXTENDED_INDEXED_PROPERTIES=Extended indexed properties are not realized
2018-10-11 09:01:04 +03:00
ATTRIBUTE_REDECLARED=This attribute has been already applied to type
2018-12-01 13:08:46 +03:00
STATIC_PROPERTIES_CANNOT_HAVE_ATTRBUTE_{0}=Static properties cannot have attribute '{0}'
2018-12-08 11:41:26 +03:00
RESULT_IDENT_NOT_EXPECTED_IN_THIS_CONTEXT=Result identifier is not allowed in this context
2019-02-22 19:11:56 +03:00
NESTED_RECORD_DEFINITIONS_ARE_ARE_FORBIDDEN=Nested record definitions are forbidden
2019-06-19 14:41:20 +03:00
NIL_IN_UNNAMED_OBJECT=Anonymous class field cannot be initialized by nil constant
YIELD_STATEMENT_CANNOT_BE_USED_IN_LAMBDA_BODY=yield statement cannot be used in lambda body
2021-12-25 22:08:55 +03:00
SLICES_OF MULTIDIMENSIONAL_ARRAYS_ALLOW_ONLY_FOR_RANK_LT_5=Slices of multidimensional arrays are allowed only for arrays with rank < 5
LEFT_SIDE_CANNOT_BE_ASSIGNED_TO=Left side cannot be assigned to
DIFF_DEFINE_NAME=The define name '{2}' in directive '{0}' does not match define name '{1}' from the corresponding 'ifdef'/'ifndef'