CnCompConsts.pas 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {******************************************************************************}
  2. { CnPack For Delphi/C++Builder }
  3. { 中国人自己的开放源码第三方开发包 }
  4. { (C)Copyright 2001-2018 CnPack 开发组 }
  5. { ------------------------------------ }
  6. { }
  7. { 本开发包是开源的自由软件,您可以遵照 CnPack 的发布协议来修 }
  8. { 改和重新发布这一程序。 }
  9. { }
  10. { 发布这一开发包的目的是希望它有用,但没有任何担保。甚至没有 }
  11. { 适合特定目的而隐含的担保。更详细的情况请参阅 CnPack 发布协议。 }
  12. { }
  13. { 您应该已经和开发包一起收到一份 CnPack 发布协议的副本。如果 }
  14. { 还没有,可访问我们的网站: }
  15. { }
  16. { 网站地址:http://www.cnpack.org }
  17. { 电子邮件:master@cnpack.org }
  18. { }
  19. {******************************************************************************}
  20. unit CnCompConsts;
  21. {* |<PRE>
  22. ================================================================================
  23. * 软件名称:不可视工具组件包
  24. * 单元名称:资源字符串定义单元
  25. * 单元作者:CnPack开发组
  26. * 备 注:该单元定义了不可视工具组件类用到的资源字符串
  27. * 开发平台:PWin98SE + Delphi 5.0
  28. * 兼容测试:PWin9X/2000/XP + Delphi 5/6
  29. * 本 地 化:该单元中的字符串均符合本地化处理方式
  30. * 单元标识:$Id$
  31. * 修改记录:2002.04.18 V1.0
  32. * 创建单元
  33. ================================================================================
  34. |</PRE>}
  35. interface
  36. {$I CnPack.inc}
  37. resourcestring
  38. // CnTimer
  39. SCnTimerName = 'Thread Timer Component';
  40. SCnTimerComment = 'Thread Timer Component';
  41. SCnTimerListName = 'Thread Timer List Component';
  42. SCnTimerListComment = 'Thread Timer List Component';
  43. // CnControlHook
  44. SCnControlHookName = 'Control Hook Component';
  45. SCnControlHookComment = 'Control Hooker by Modify WindowProc Property';
  46. // CnActionListHook
  47. SCnActionListHookName = 'ActionList Hook Component';
  48. SCnActionListHookComment = 'Hook Actions in ActionList';
  49. // CnActiveScriptSite
  50. SCnActiveScriptSiteName = 'ActiveScript Site Component';
  51. SCnActiveScriptSiteComment = 'ActiveScript Site Engine Wrapper Component';
  52. // CnActiveScriptWindow
  53. SCnActiveScriptWindowName = 'ActiveScript Window Component';
  54. SCnActiveScriptWindowComment = 'ActiveScript Window Engine Wrapper Component';
  55. // CnADOConPool
  56. SCnADOConPoolName = 'ADO Connection Pool Component';
  57. SCnADOConPoolComment = 'ADO Connection Pool Component';
  58. // CnFormScaler
  59. SCnFormScalerName = 'Form Scale Component';
  60. SCnFormScalerComment = 'Auto Process Form Scale';
  61. // CnMDIBackGround
  62. SCnMDIBackGroundName = 'MDI Background Component';
  63. SCnMDIBackGroundComment = 'Draw MDI Window Background';
  64. // CnMenuHook
  65. SCnMenuHookName = 'Menu Hook Component';
  66. SCnMenuHookComment = 'Hook Menu and Items';
  67. // CnObjectPool
  68. SCnObjectPoolName = 'Object Pool Component';
  69. SCnObjectPoolComment = 'Object Pool Component';
  70. // CnThreadPool
  71. SCnThreadPoolName = 'Thread Pool Component';
  72. SCnThreadPoolComment = 'Thread Pool Component';
  73. // CnRestoreSystemMenu
  74. SCnRestoreSystemMenuName = 'System Menu Restore Component';
  75. SCnRestoreSystemMenuComment = 'Component to Restore System Menu';
  76. // CnConsole
  77. SCnConsoleName = 'Console Component';
  78. SCnConsoleComment = 'Add Console to GUI Application';
  79. // CnTrayIcon
  80. SCnTrayIconName = 'Tray Icon Component';
  81. SCnTrayIconComment = 'Tray Icon Component';
  82. // CnVolumnCtrl
  83. SCnVolumnCtrlName = 'Volume Control Component';
  84. SCnVolumnCtrlComment = 'Volume Control Component';
  85. SCnMixerOpenError = 'Open Audio Device Failed!';
  86. SCnMixerGetDevCapsError = 'Get Device Caps Failed!';
  87. SCnMixerGetLineInfoError = 'Get Line Failed!';
  88. SCnMixerGetVolumeError = 'Get Volume Failed!';
  89. SCnMixerGetMuteError = 'Get Mute State Failed!';
  90. SCnMixerSetVolumeError = 'Set Volume Failed!';
  91. SCnMixerSetMuteError = 'Set Mute State Failed!';
  92. // CnWinampCtrl
  93. SCnWinampCtrlName = 'Winamp Control Component';
  94. SCnWinampCtrlComment = 'Winamp Control Component';
  95. // CnSkinMagic
  96. SCnSkinMagicName = 'Runtime Skin Frame';
  97. SCnSkinMagicComment = 'Runtime Skin Frame using Customized Painting';
  98. // CnDockServer
  99. SCnDockServerName = 'Dock Server Component';
  100. SCnDockServerComment = 'Dock Server Component, Makes a DockSite Form';
  101. // CnDockClient
  102. SCnDockClientName = 'Dock Client Component';
  103. SCnDockClientComment = 'Dock Client Component, Makes a Dockable Form';
  104. // CnDelphiDockStyle
  105. SCnDelphiDockStyleName = 'Delphi Dock Style Component';
  106. SCnDelphiDockStyleComment = 'A Dock Style Component with Delphi Dock Style';
  107. // CnVCDockStyle
  108. SCnVCDockStyleName = 'Visual C++ Dock Style Component';
  109. SCnVCDockStyleComment = 'A Dock Style Component with Visual C++ Dock Style';
  110. // CnVIDDockStyle
  111. SCnVIDDockStyleName = 'Visual InterDev Dock Style Component';
  112. SCnVIDDockStyleComment = 'A Dock Style Component with Visual InterDev Dock Style';
  113. // CnVSNETDockStyle
  114. SCnVSNETDockStyleName = 'Visual Studio.NET Dock Style Component';
  115. SCnVSNETDockStyleComment = 'A Dock Style Component with Visual Studio.NET Dock Style';
  116. // CnFileSystemWatcher
  117. SCnFileSystemWatcherName = 'File System Watcher';
  118. SCnFileSystemWatcherComment = 'File System Watcher';
  119. // CnFilePacker
  120. SCnFilePackerName = 'File Packer and Unpacker';
  121. SCnFilePackerComment = 'File Packer and Unpacker';
  122. implementation
  123. end.