home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / DELPHIX.ZIP / Source / DXConsts.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-06  |  3.9 KB  |  108 lines

  1. unit DXConsts;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SNone = '(None)';
  7.   SUnknownError = 'Unknown Error (%d)';
  8.  
  9.   SDirectDraw = 'DirectDraw';
  10.   SDirect3DRM = 'Direct3D RetainedMode';
  11.   SDirectSound = 'DirectSound';
  12.   SDirectSoundCapture = 'DirectSoundCapture';
  13.   SDirectDrawClipper = 'Clipper';
  14.   SDirectDrawPalette = 'Palette';
  15.   SDirectDrawSurface = 'Surface';
  16.   SDirectDrawPrimarySurface = 'Primary Surface';
  17.   SDirectSoundBuffer = 'Sound Buffer';
  18.   SDirectSoundPrimaryBuffer = 'Primary Buffer';
  19.   SDirectSoundCaptureBuffer = 'Sound Capture Buffer';
  20.   STexture = 'Texture';
  21.   SDirectPlay = 'DirectPlay';
  22.   SSession = 'Session';
  23.  
  24.   SNotMade = '%s not made';
  25.   SStreamNotOpend = 'Stream not opend';
  26.   SWaveStreamNotSet = 'WaveStream not set';
  27.   SCannotMade = '%s cannot be made';
  28.   SCannotInitialized = '%s cannot be initialized';
  29.   SCannotChanged = '%s cannot be changed';
  30.   SCannotLock = '%s cannot be locked';
  31.   SCannotOpened = '%s cannot be opened';
  32.   SDLLNotLoaded = '%s not loaded';
  33.   SImageNotFound = 'Image ''%s'' not found';
  34.   SWaveNotFound = 'Wave ''%s'' not found';
  35.   SEffectNotFound = 'Effect ''%s'' not found';
  36.   SListIndexError = 'Index of the list exceeds the range. (%d)';
  37.   SScanline = 'Index of the scanning line exceeded the range. (%d)';
  38.   SNoForm = 'Form not found';
  39.   SSinceDirectX5 = 'Necessary since DirectX 5';
  40.   SSinceDirectX6 = 'Necessary since DirectX 6';
  41.   S3DDeviceNotFound = '3D device not found';
  42.   SDisplayModeChange = 'Display mode cannot be changed (%dx%d %dbit)';
  43.   SDisplayModeCannotAcquired = 'A present display mode cannot be acquired';
  44.   SInvalidDIB = 'DIB is invalid';
  45.   SInvalidDIBBitCount = 'Bitcount in invalid (%d)';
  46.   SInvalidDIBPixelFormat = 'PixelFormat in invalid';
  47.   SInvalidWave = 'Wave is invalid';
  48.   SInvalidDisplayBitCount = 'It should be either of 8 or 16 or 24 or 32';
  49.   SInvalidWaveFormat = 'Format is invalid';
  50.   SNotSupported = '%s not supported';
  51.   SStreamOpend = 'Stream has already been opened';
  52.   SNecessaryDirectInputUseMouse = 'DirectInput is necessary to use the mouse';
  53.  
  54.   {  DirectPlay  }
  55.   SDXPlayNotConnectedNow = 'TDXPlay component is not connected now.';
  56.   SDXPlayProviderNotFound = 'Provider ''%s'' not found';
  57.   SDXPlayProviderSpecifiedGUIDNotFound = 'Provider of specified GUID is not found';
  58.   SDXPlayModemListCannotBeAcquired = 'Modem list cannot be acquired';
  59.   SDXPlaySessionListCannotBeAcquired = 'Session list cannot be acquired';
  60.   SDXPlaySessionNotFound = 'Session ''%s'' not found';
  61.   SDXPlaySessionCannotOpened = 'Session %s cannot be opened';
  62.   SDXPlayPlayerNotFound = 'The player of specified ID is not found';
  63.   SDXPlayMessageIllegal = 'The message form is illegal';
  64.   SDXPlayPlayerNameIsNotSpecified = 'Player name is not specified';
  65.   SDXPlaySessionNameIsNotSpecified = 'Session name is not specified';
  66.  
  67.   DXPlayFormNext = 'Next >';
  68.   DXPlayFormComplete = 'Complete';
  69.  
  70.   {  For development environment  }
  71.   SDIBSize = '(%dx%d)';
  72.   SDIBColor = '%d color';
  73.   SDIBBitSize = '%d bytes';
  74.   SDIBBitSize_K = '%d Kbytes';
  75.  
  76.   SWaveLength = '%.4g sec';
  77.   SWaveFrequency = '%dHz';
  78.   SWaveBitCount = '%dbit';
  79.   SWaveMono = 'Mono';
  80.   SWaveStereo = 'Stereo';
  81.   SWaveSize = '%d bytes';
  82.  
  83.   SFFBEffectEditor = '%s Effect Editor';
  84.  
  85.   SSettingImage = '&Image...';
  86.   SSettingWave = '&Wave...';
  87.   SDXGFileFilter = 'DXG file(*.dxg)|*.dxg|All files(*.*)|*.*';
  88.   SDXGOpenFileFilter = 'DXG file(*.dxg)|*.dxg|Bitmap file(*.bmp)|*.bmp|All files(*.*)|*.*';
  89.   SDXWFileFilter = 'DXW file(*.dxw)|*.dxg|All files(*.*)|*.*';
  90.   SDXWOpenFileFilter = 'DXW file(*.dxw)|*.dxw|Wave file(*.wav)|*.wav|All files(*.*)|*.*';
  91.   SSinglePlayer = '&Single player';
  92.   SMultiPlayer1 = 'Multi player &1';
  93.   SMultiPlayer2 = 'Multi player &2';
  94.  
  95.   SOpen = '&Open...';
  96.   SSave = '&Save..';
  97.  
  98.   SKeyLeft = 'Left';
  99.   SKeyUp = 'Up';
  100.   SKeyRight = 'Right';
  101.   SKeyDown = 'Down';
  102.  
  103.   SIsGUIDnewlyMade = 'Is GUID newly made?';
  104.  
  105. implementation
  106.  
  107. end.
  108.