home *** CD-ROM | disk | FTP | other *** search
- #include "sysutils.inc"
-
- STRINGTABLE
- {
- SInvalidInteger, "'%s' is not a valid integer value"
- SInvalidFloat, "'%s' is not a valid floating point value"
- SInvalidDate, "'%s' is not a valid date"
- SInvalidTime, "'%s' is not a valid time"
- SInvalidDateTime, "'%s' is not a valid date and time"
- STimeEncodeError, "Invalid argument to time encode"
- SDateEncodeError, "Invalid argument to date encode"
- SOutOfMemory, "Out of memory"
- SInOutError, "I/O error %d"
- SFileNotFound, "File not found"
- SInvalidFilename, "Invalid filename"
- STooManyOpenFiles, "Too many open files"
- SAccessDenied, "File access denied"
- SEndOfFile, "Read beyond end of file"
- SDiskFull, "Disk full"
- SInvalidInput, "Invalid numeric input"
- SDivByZero, "Division by zero"
- SRangeError, "Range check error"
- SIntOverflow, "Integer overflow"
- SInvalidOp, "Invalid floating point operation"
- SZeroDivide, "Floating point division by zero"
- SOverflow, "Floating point overflow"
- SUnderflow, "Floating point underflow"
- SInvalidPointer, "Invalid pointer operation"
- SInvalidCast, "Invalid class typecast"
- SAccessViolation, "Access violation at address %p. %s of address %p"
- SStackOverflow, "Stack overflow"
- SControlC, "Control-C hit"
- SPrivilege, "Privileged instruction"
- SOperationAborted, "Operation aborted"
- SException, "Exception %s in module %s at %p.\x0A%s%s"
- SExceptTitle, "Application Error"
- SInvalidFormat, "Format '%s' invalid or incompatible with argument"
- SArgumentMissing, "No argument for format '%s'"
- SInvalidVarCast, "Invalid variant type conversion"
- SInvalidVarOp, "Invalid variant operation"
- SDispatchError, "Variant method calls not supported"
- SReadAccess, "Read"
- SWriteAccess, "Write"
- SResultTooLong, "Format result longer than 4096 characters"
- SFormatTooLong, "Format string too long"
- SVarArrayCreate, "Error creating variant array"
- SVarNotArray, "Variant is not an array"
- SVarArrayBounds, "Variant array index out of bounds"
- SExternalException, "External exception %x"
-
- SShortMonthNames + 0, "Jan"
- SShortMonthNames + 1, "Feb"
- SShortMonthNames + 2, "Mar"
- SShortMonthNames + 3, "Apr"
- SShortMonthNames + 4, "May"
- SShortMonthNames + 5, "Jun"
- SShortMonthNames + 6, "Jul"
- SShortMonthNames + 7, "Aug"
- SShortMonthNames + 8, "Sep"
- SShortMonthNames + 9, "Oct"
- SShortMonthNames + 10, "Nov"
- SShortMonthNames + 11, "Dec"
-
- SLongMonthNames + 0, "January"
- SLongMonthNames + 1, "February"
- SLongMonthNames + 2, "March"
- SLongMonthNames + 3, "April"
- SLongMonthNames + 4, "May"
- SLongMonthNames + 5, "June"
- SLongMonthNames + 6, "July"
- SLongMonthNames + 7, "August"
- SLongMonthNames + 8, "September"
- SLongMonthNames + 9, "October"
- SLongMonthNames + 10, "November"
- SLongMonthNames + 11, "December"
-
- SShortDayNames + 0, "Sun"
- SShortDayNames + 1, "Mon"
- SShortDayNames + 2, "Tue"
- SShortDayNames + 3, "Wed"
- SShortDayNames + 4, "Thu"
- SShortDayNames + 5, "Fri"
- SShortDayNames + 6, "Sat"
-
- SLongDayNames + 0, "Sunday"
- SLongDayNames + 1, "Monday"
- SLongDayNames + 2, "Tuesday"
- SLongDayNames + 3, "Wednesday"
- SLongDayNames + 4, "Thursday"
- SLongDayNames + 5, "Friday"
- SLongDayNames + 6, "Saturday"
- }
-