123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- This file is part of the Pas2JS run time library.
- Copyright (c) 2017 by Mattias Gaertner
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- unit RTLConsts;
- interface
- const
- SArgumentMissing = 'Missing argument in format "%s"';
- SInvalidFormat = 'Invalid format specifier : "%s"';
- SInvalidArgIndex = 'Invalid argument index in format: "%s"';
- SListCapacityError = 'List capacity (%s) exceeded.';
- SListCountError = 'List count (%s) out of bounds.';
- SListIndexError = 'List index (%s) out of bounds';
- SSortedListError = 'Operation not allowed on sorted list';
- SDuplicateString = 'String list does not allow duplicates';
- SErrFindNeedsSortedList = 'Cannot use find on unsorted list';
- SInvalidName = 'Invalid component name: "%s"';
- SInvalidBoolean = '"%s" is not a valid boolean.';
- SDuplicateName = 'Duplicate component name: "%s"';
- SErrInvalidDate = 'Invalid date: "%s"';
- SErrInvalidTimeFormat = 'Invalid time format: "%s"';
- SInvalidDateFormat = 'Invalid date format: "%s"';
- SCantReadPropertyS = 'Cannot read property "%s"';
- SCantWritePropertyS = 'Cannot write property "%s"';
- SErrPropertyNotFound = 'Unknown property: "%s"';
- SIndexedPropertyNeedsParams = 'Indexed property "%s" needs parameters';
- SErrInvalidTypecast = 'Invalid class typecast';
- SErrInvalidInteger = 'Invalid integer value: "%s"';
- SErrInvalidFloat = 'Invalid floating-point value: "%s"';
- SInvalidDateTime = 'Invalid date-time value: %s';
- SInvalidCurrency = 'Invalid currency value: %s';
- SErrInvalidDayOfWeek = '%d is not a valid day of the week';
- SErrInvalidTimeStamp = 'Invalid date/timestamp : "%s"';
- SErrInvalidDateWeek = '%d %d %d is not a valid dateweek';
- SErrInvalidDayOfYear = 'Year %d does not have a day number %d';
- SErrInvalidDateMonthWeek = 'Year %d, month %d, Week %d and day %d is not a valid date.';
- SErrInvalidDayOfWeekInMonth = 'Year %d Month %d NDow %d DOW %d is not a valid date';
- SInvalidJulianDate = '%f Julian cannot be represented as a DateTime';
- SErrInvalidHourMinuteSecMsec = '%d:%d:%d.%d is not a valid time specification';
- SInvalidGUID = '"%s" is not a valid GUID value';
- SEmptyStreamIllegalReader = 'Illegal Nil stream for TReader constructor';
- SInvalidPropertyValue = 'Invalid value for property';
- SInvalidImage = 'Invalid stream format';
- SUnknownProperty = 'Unknown property: "%s"';
- SUnknownPropertyType = 'Unknown property type %d';
- SAncestorNotFound = 'Ancestor class for "%s" not found.';
- SUnsupportedPropertyVariantType = 'Unsupported property variant type %d';
- SPropertyException = 'Error reading %s%s%s: %s';
- SInvalidPropertyPath = 'Invalid property path';
- SReadOnlyProperty = 'Property is read-only';
- SClassNotFound = 'Class "%s" not found';
- SEmptyStreamIllegalWriter = 'Illegal Nil stream for TWriter constructor';
- SErrInvalidPropertyType = 'Invalid property type from streamed property: %d';
- SParserExpected = 'Wrong token type: %s expected';
- SParserInvalidFloat = 'Invalid floating point number: %s';
- SParserInvalidInteger = 'Invalid integer number: %s';
- SParserUnterminatedString = 'Unterminated string';
- SParserWrongTokenType = 'Wrong token type: %s expected but %s found';
- SParserWrongTokenSymbol = 'Wrong token symbol: %s expected but %s found';
- SParserLocInfo = ' (at %d,%d, stream offset %.8x)';
- SParserUnterminatedBinValue = 'Unterminated byte value';
- SParserInvalidProperty = 'Invalid property';
- implementation
- end.
|