GifViewerStrConsts.pas 1.9 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Unit GifViewerStrConsts;
  2. {$mode objfpc}{$H+}
  3. Interface
  4. ResourceString
  5. // Messages d'erreurs ou de notifications
  6. // Error or notification messages
  7. //uGifViewer
  8. rsScreenBadColorSize = 'Invalid number of colors in the global palette.';
  9. rsImageBadColorSize = 'Number of colors is invalid in local palette.';
  10. rsBadSignature = 'GIF invalid signature: %s';
  11. rsBadScreenSize = 'Invalid image size: %dx%d';
  12. rsEmptyColorMap = 'Error no palette of color available for this image!';
  13. rsEmptyImage = 'The picture is empty';
  14. rsUnknownVersion = 'Unknown GIF version';
  15. rsFileNotFound = 'The file %s not found !';
  16. rsResourceNotFound = 'Resource %s not found!';
  17. rsBufferOverFlow = 'Image #%d: The decoder has been stopped to prevent a buffer overflow';
  18. rsInvalidOutputBufferSize = 'Image #%d: The size of the output buffer is invalid (size < = 0)';
  19. rsInvalidInputBufferSize = 'Image #%d: The size of the input buffer is invalid (size < = 0)';
  20. rsInvalidBufferSize = 'Image #%d: The size of the input and output buffer are invalid (size < = 0)';
  21. rsLZWInternalErrorOutputBufferOverflow = 'Output buffer overflow in the GIF LZW decoder buffer. Report this bug. This is a serious bug!';
  22. rsLZWInternalErrorInputBufferOverflow = 'Input buffer overflow in the GIF LZW decoder. Report this bug. This is a serious bug!';
  23. rsLZWInvalidInput = 'Image #%d: The decoder encountered an invalid entry (corrupted data)';
  24. rsLZWOutputBufferTooSmall = 'Image #%d: The decoder could not decode all the data because the output buffer is too small';
  25. rsAllFrameCorrupted = 'All images in the GIF are corrupted. Unable to display GIF file.';
  26. //uFastBitmap
  27. rsBitmapCreateError = 'An Error occured while creating TBitmap';
  28. rsBitmapScanlineOutOfRange = 'Scanline : Index Out of range';
  29. Implementation
  30. End.