FlatCnsts.pas 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. unit FlatCnsts;
  2. interface
  3. resourcestring
  4. myFirstHint = '移动到最前一条记录';
  5. myPriorHint = '向前移动一条记录';
  6. myNextHint = '向后移动一条记录';
  7. myLastHint = '移动到最后一条记录';
  8. myNewHint = '新建一条记录';
  9. myDeleteHint = '删除一条记录';
  10. myEditHint = '编辑当前记录';
  11. myPostHint = '保存当前记录';
  12. myCancelHint = '取消编辑数据';
  13. myRefreshHint = '更新数据记录';
  14. myFirstCap = '最前';
  15. myPriorCap = '向前';
  16. myNextCap = '向后';
  17. myLastCap = '最后';
  18. myNewCap = '新建';
  19. myDeleteCap = '删除';
  20. myEditCap = '编辑';
  21. myPostCap = '保存';
  22. myCancelCap = '取消';
  23. myRefreshCap = '更新';
  24. myDeleteRecordQuestion = '您想删除记录(Y/N)?';
  25. myNewRecordQuestion = '您想新建记录(Y/N)?';
  26. mySaveRecordQuestion = '您想保存记录(Y/N)?';
  27. myDeleteMultipleRecordsQuestion = '您想删除选定的所有记录?';
  28. SListIndexError = '列表索引超出边界值(%d)';
  29. SDuplicateString = '字串列表不充许复制!';
  30. SSortedListError = '在索引列表中不充许操作!';
  31. sInsertError = '不能插入一个项目!';
  32. sInvalidIndex = '无效索引!';
  33. sInvalidLevel = '无效项目标准分配!';
  34. sInvalidLevelEx = '无效标准(%d)为项目"%s"!';
  35. SMultiSelectRequired = '为打开必须多选方式!';
  36. SOpenFileTitle = '打开';
  37. SAssignError = '不能分配一个 %s 到一个 %s';
  38. SFCreateError = '不能建立文件 %s';
  39. SFOpenError = '不能打开文件 %s';
  40. SReadError = '串流读错误';
  41. SWriteError = '串流写错误';
  42. SMemoryStreamError = '展开内在流时,内存溢出';
  43. SCantWriteResourceStreamError = '不能写入只读资源流';
  44. SDuplicateReference = 'WriteObject called twice for the same instance';
  45. SClassNotFound = '找不到类 %s ';
  46. SInvalidImage = '无效流格式';
  47. SResNotFound = '找不到资源 %s ';
  48. SClassMismatch = 'Resource %s is of incorrect class';
  49. SListCapacityError = 'List capacity out of bounds (%d)';
  50. SListCountError = 'List count out of bounds (%d)';
  51. SInvalidTabIndex = 'Tab index out of bounds';
  52. SInvalidTabPosition = 'Tab position incompatible with current tab style';
  53. SInvalidTabStyle = 'Tab style incompatible with current tab position';
  54. SDuplicateName = 'A component named %s already exists';
  55. SInvalidName = '''''%s'''' is not a valid component name';
  56. SDuplicateClass = 'A class named %s already exists';
  57. SNoComSupport = '%s has not been registered as a COM class';
  58. SInvalidInteger = '''''%s'''' is not a valid integer value';
  59. SLineTooLong = 'Line too long';
  60. SInvalidPropertyValue = '无效属性值';
  61. SInvalidPropertyPath = '无效属性路径';
  62. SInvalidPropertyType = '无效属性类型: %s';
  63. SInvalidPropertyElement = '无效属性元素: %s';
  64. SUnknownProperty = '属性不存在!';
  65. SReadOnlyProperty = '属性是只读的!';
  66. SPropertyException = '读取错误: %s%s%s: %s';
  67. SAncestorNotFound = 'Ancestor for ''%s'' not found';
  68. SInvalidBitmap = 'Bitmap image is not valid';
  69. SInvalidIcon = 'Icon image is not valid';
  70. SInvalidMetafile = 'Metafile is not valid';
  71. SInvalidPixelFormat = 'Invalid pixel format';
  72. SBitmapEmpty = 'Bitmap is empty';
  73. SScanLine = 'Scan line index out of range';
  74. SChangeIconSize = 'Cannot change the size of an icon';
  75. SOleGraphic = 'Invalid operation on TOleGraphic';
  76. SUnknownExtension = 'Unknown picture file extension (.%s)';
  77. SUnknownClipboardFormat = 'Unsupported clipboard format';
  78. SOutOfResources = 'Out of system resources';
  79. SNoCanvasHandle = 'Canvas does not allow drawing';
  80. SInvalidImageSize = 'Invalid image size';
  81. STooManyImages = 'Too many images';
  82. SDimsDoNotMatch = 'Image dimensions do not match image list dimensions';
  83. SInvalidImageList = 'Invalid ImageList';
  84. SReplaceImage = 'Unable to Replace Image';
  85. SImageIndexError = 'Invalid ImageList Index';
  86. SImageReadFail = 'Failed to read ImageList data from stream';
  87. SImageWriteFail = 'Failed to write ImageList data to stream';
  88. SWindowDCError = 'Error creating window device context';
  89. SClientNotSet = 'Client of TDrag not initialized';
  90. SWindowClass = 'Error creating window class';
  91. SWindowCreate = 'Error creating window';
  92. SCannotFocus = 'Cannot focus a disabled or invisible window';
  93. SParentRequired = 'Control ''%s'' has no parent window';
  94. SMDIChildNotVisible = 'Cannot hide an MDI Child Form';
  95. SVisibleChanged = 'Cannot change Visible in OnShow or OnHide';
  96. SCannotShowModal = 'Cannot make a visible window modal';
  97. SScrollBarRange = 'Scrollbar property out of range';
  98. SPropertyOutOfRange = '%s property out of range';
  99. SMenuIndexError = 'Menu index out of range';
  100. SMenuReinserted = 'Menu inserted twice';
  101. SMenuNotFound = 'Sub-menu is not in menu';
  102. SNoTimers = 'Not enough timers available';
  103. SNotPrinting = 'Printer is not currently printing';
  104. SPrinting = 'Printing in progress';
  105. SPrinterIndexError = 'Printer index out of range';
  106. SInvalidPrinter = 'Printer selected is not valid';
  107. SDeviceOnPort = '%s on %s';
  108. SGroupIndexTooLow = 'GroupIndex cannot be less than a previous menu item''s GroupIndex';
  109. STwoMDIForms = 'Cannot have more than one MDI form per application';
  110. SNoMDIForm = 'Cannot create form. No MDI forms are currently active';
  111. SRegisterError = 'Invalid component registration';
  112. SImageCanvasNeedsBitmap = 'Can only modify an image if it contains a bitmap';
  113. SControlParentSetToSelf = 'A control cannot have itself as its parent';
  114. SOKButton = '确定';
  115. SCancelButton = '取消';
  116. SYesButton = '是(&Y)';
  117. SNoButton = '否(&N)';
  118. SHelpButton = '帮助(&H)';
  119. SCloseButton = '关闭(&C)';
  120. SIgnoreButton = '忽略(&I)';
  121. SRetryButton = '重试(&R)';
  122. SAbortButton = '中止(&B)';
  123. SAllButton = '所有(&A)';
  124. SCannotDragForm = 'Cannot drag a form';
  125. SPutObjectError = 'PutObject to undefined item';
  126. SCardDLLNotLoaded = 'Could not load CARDS.DLL';
  127. SDuplicateCardId = 'Duplicate CardId found';
  128. SDdeErr = 'An error returned from DDE ($0%x)';
  129. SDdeConvErr = 'DDE Error - conversation not established ($0%x)';
  130. SDdeMemErr = 'Error occurred when DDE ran out of memory ($0%x)';
  131. SDdeNoConnect = 'Unable to connect DDE conversation';
  132. SFB = 'FB';
  133. SFG = 'FG';
  134. SBG = 'BG';
  135. SOldTShape = 'Cannot load older version of TShape';
  136. SVMetafiles = '位图文件';
  137. SVEnhMetafiles = '增强位图文件';
  138. SVIcons = '图标';
  139. SVBitmaps = '位图';
  140. SGridTooLarge = 'Grid too large for operation';
  141. STooManyDeleted = 'Too many rows or columns deleted';
  142. SIndexOutOfRange = 'Grid index out of range';
  143. SFixedColTooBig = 'Fixed column count must be less than column count';
  144. SFixedRowTooBig = 'Fixed row count must be less than row count';
  145. SInvalidStringGridOp = 'Cannot insert or delete rows from grid';
  146. SParseError = '%s on line %d';
  147. SIdentifierExpected = 'Identifier expected';
  148. SStringExpected = 'String expected';
  149. SNumberExpected = 'Number expected';
  150. SCharExpected = '''''%s'''' expected';
  151. SSymbolExpected = '%s expected';
  152. SInvalidNumber = 'Invalid numeric value';
  153. SInvalidString = 'Invalid string constant';
  154. SInvalidProperty = 'Invalid property value';
  155. SInvalidBinary = 'Invalid binary value';
  156. SOutlineIndexError = 'Outline index not found';
  157. SOutlineExpandError = 'Parent must be expanded';
  158. SInvalidCurrentItem = 'Invalid value for current item';
  159. SMaskErr = 'Invalid input value';
  160. SMaskEditErr = 'Invalid input value. Use escape key to abandon changes';
  161. SOutlineError = 'Invalid outline index';
  162. SOutlineBadLevel = 'Incorrect level assignment';
  163. SOutlineSelection = 'Invalid selection';
  164. SOutlineFileLoad = 'File load error';
  165. SOutlineLongLine = 'Line too long';
  166. SOutlineMaxLevels = 'Maximum outline depth exceeded';
  167. SMsgDlgWarning = '警告';
  168. SMsgDlgError = '错误';
  169. SMsgDlgInformation = '信息';
  170. SMsgDlgConfirm = '确认';
  171. SMsgDlgYes = '是(&Y)';
  172. SMsgDlgNo = '不(&N)';
  173. SMsgDlgOK = '确定';
  174. SMsgDlgCancel = '取消';
  175. SMsgDlgHelp = '帮助(&H)';
  176. SMsgDlgHelpNone = 'No help available';
  177. SMsgDlgHelpHelp = '帮助';
  178. SMsgDlgAbort = '中止(&A)';
  179. SMsgDlgRetry = '重试(&R)';
  180. SMsgDlgIgnore = '忽略(&I)';
  181. SMsgDlgAll = '所有(&A)';
  182. SMsgDlgNoToAll = '取消所有(&O)';
  183. SMsgDlgYesToAll = '确认所有(&A)';
  184. SmkcBkSp = 'BkSp';
  185. SmkcTab = 'Tab';
  186. SmkcEsc = 'Esc';
  187. SmkcEnter = 'Enter';
  188. SmkcSpace = 'Space';
  189. SmkcPgUp = 'PgUp';
  190. SmkcPgDn = 'PgDn';
  191. SmkcEnd = 'End';
  192. SmkcHome = 'Home';
  193. SmkcLeft = 'Left';
  194. SmkcUp = 'Up';
  195. SmkcRight = 'Right';
  196. SmkcDown = 'Down';
  197. SmkcIns = 'Ins';
  198. SmkcDel = 'Del';
  199. SmkcShift = 'Shift+';
  200. SmkcCtrl = 'Ctrl+';
  201. SmkcAlt = 'Alt+';
  202. srUnknown = '(未知)';
  203. srNone = '(没有)';
  204. SOutOfRange = '数值必须在 %d 和 %d 之间!';
  205. SCannotCreateName = 'Cannot create a default method name for an unnamed component';
  206. SDateEncodeError = 'Invalid argument to date encode';
  207. STimeEncodeError = 'Invalid argument to time encode';
  208. SInvalidDate = '''''%s'''' 是一个无效日期!';
  209. SInvalidTime = '''''%s'''' 是一个无效时间!';
  210. SInvalidDateTime = '''''%s'''' 是一个无效日期和时间!';
  211. SInvalidFileName = '无效文件名 - %s';
  212. SDefaultFilter = '所有文件 (*.*)|*.*';
  213. sAllFilter = '全部';
  214. SNoVolumeLabel = ': [ - 没有卷标 - ]';
  215. SInsertLineError = '不能插入一行!';
  216. SConfirmCreateDir = '指定目录不存在.创建它?';
  217. SSelectDirCap = '选定目录';
  218. SCannotCreateDir = '不能创建目录!';
  219. SDirNameCap = '目录名称::';
  220. SDrivesCap = '驱动器:';
  221. SDirsCap = '目录:';
  222. SFilesCap = '文件: (*.*)';
  223. SNetworkCap = '网络...';
  224. SColorPrefix = 'Color'; //!! obsolete - delete in 5.0
  225. SColorTags = 'ABCDEFGHIJKLMNOP'; //!! obsolete - delete in 5.0
  226. SInvalidClipFmt = 'Invalid clipboard format';
  227. SIconToClipboard = 'Clipboard does not support Icons';
  228. SCannotOpenClipboard = 'Cannot open clipboard';
  229. SDefault = '默认';
  230. SInvalidMemoSize = 'Text exceeds memo capacity';
  231. SCustomColors = 'Custom Colors';
  232. SInvalidPrinterOp = 'Operation not supported on selected printer';
  233. SNoDefaultPrinter = 'There is no default printer currently selected';
  234. SIniFileWriteError = 'Unable to write to %s';
  235. SBitsIndexError = 'Bits index out of range';
  236. SUntitled = '(Untitled)';
  237. SInvalidRegType = 'Invalid data type for ''%s''';
  238. SRegCreateFailed = 'Failed to create key %s';
  239. SRegSetDataFailed = 'Failed to set data for ''%s''';
  240. SRegGetDataFailed = 'Failed to get data for ''%s''';
  241. SUnknownConversion = 'Unknown RichEdit conversion file extension (.%s)';
  242. SDuplicateMenus = 'Menu ''%s'' is already being used by another form';
  243. SPictureLabel = 'Picture:';
  244. SPictureDesc = ' (%dx%d)';
  245. SPreviewLabel = 'Preview';
  246. SCannotOpenAVI = 'Cannot open AVI';
  247. SNotOpenErr = 'No MCI device open';
  248. SMPOpenFilter = 'All files (*.*)|*.*|Wave files (*.wav)|*.wav|Midi files (*.mid)|*.mid|Video for Windows (*.avi)|*.avi';
  249. SMCINil = '';
  250. SMCIAVIVideo = 'AVIVideo';
  251. SMCICDAudio = 'CDAudio';
  252. SMCIDAT = 'DAT';
  253. SMCIDigitalVideo = 'DigitalVideo';
  254. SMCIMMMovie = 'MMMovie';
  255. SMCIOther = 'Other';
  256. SMCIOverlay = 'Overlay';
  257. SMCIScanner = 'Scanner';
  258. SMCISequencer = 'Sequencer';
  259. SMCIVCR = 'VCR';
  260. SMCIVideodisc = 'Videodisc';
  261. SMCIWaveAudio = 'WaveAudio';
  262. SMCIUnknownError = 'Unknown error code';
  263. SBoldItalicFont = 'Bold Italic';
  264. SBoldFont = 'Bold';
  265. SItalicFont = 'Italic';
  266. SRegularFont = 'Regular';
  267. SPropertiesVerb = 'Properties';
  268. sWindowsSocketError = 'Windows socket error: %s (%d), on API ''%s''';
  269. sAsyncSocketError = 'Asynchronous socket error %d';
  270. sNoAddress = 'No address specified';
  271. sCannotListenOnOpen = 'Can''t listen on an open socket';
  272. sCannotCreateSocket = 'Can''t create new socket';
  273. sSocketAlreadyOpen = 'Socket already open';
  274. sCantChangeWhileActive = 'Can''t change value while socket is active';
  275. sSocketMustBeBlocking = 'Socket must be in blocking mode';
  276. sSocketIOError = '%s error %d, %s';
  277. sSocketRead = 'Read';
  278. sSocketWrite = 'Write';
  279. SServiceFailed = 'Service failed on %s: %s';
  280. SExecute = 'execute';
  281. SStart = 'start';
  282. SStop = 'stop';
  283. SPause = 'pause';
  284. SContinue = 'continue';
  285. SInterrogate = 'interrogate';
  286. SShutdown = 'shutdown';
  287. SCustomError = 'Service failed in custom message(%d): %s';
  288. SServiceInstallOK = 'Service installed successfully';
  289. SServiceInstallFailed = 'Service "%s" failed to install with error: "%s"';
  290. SServiceUninstallOK = 'Service uninstalled successfully';
  291. SServiceUninstallFailed = 'Service "%s" failed to uninstall with error: "%s"';
  292. SInvalidActionRegistration = 'Invalid action registration';
  293. SInvalidActionUnregistration = 'Invalid action unregistration';
  294. SInvalidActionEnumeration = 'Invalid action enumeration';
  295. SInvalidActionCreation = 'Invalid action creation';
  296. SDockedCtlNeedsName = 'Docked control must have a name';
  297. SDockTreeRemoveError = 'Error removing control from dock tree';
  298. SDockZoneNotFound = ' - Dock zone not found';
  299. SDockZoneHasNoCtl = ' - Dock zone has no control';
  300. SAllCommands = 'All Commands';
  301. SDuplicateItem = 'List does not allow duplicates ($0%x)';
  302. SDuplicatePropertyCategory = 'A property category called %s already exists';
  303. SUnknownPropertyCategory = 'Property category does not exist (%s)';
  304. SActionCategoryName = 'Action';
  305. SActionCategoryDesc = 'Action properties and/or events';
  306. SDataCategoryName = 'Data';
  307. SDataCategoryDesc = 'Data properties and/or events';
  308. SDatabaseCategoryName = 'Database';
  309. SDatabaseCategoryDesc = 'Database and Data Aware properties and/or events';
  310. SDragNDropCategoryName = 'Drag, Drop and Docking';
  311. SDragNDropCategoryDesc = 'Drag, Drop and Docking properties and/or events';
  312. SHelpCategoryName = 'Help and Hints';
  313. SHelpCategoryDesc = 'Help and Hint properties and/or events';
  314. SLayoutCategoryName = 'Layout';
  315. SLayoutCategoryDesc = 'Layout properties and/or events';
  316. SLegacyCategoryName = 'Legacy';
  317. SLegacyCategoryDesc = 'Legacy properties and/or events';
  318. SLinkageCategoryName = 'Linkage';
  319. SLinkageCategoryDesc = 'Linkage properties and/or events';
  320. SLocaleCategoryName = 'Locale';
  321. SLocaleCategoryDesc = 'Locale properties and/or events';
  322. SLocalizableCategoryName = 'Localizable';
  323. SLocalizableCategoryDesc = 'Localizable properties and/or events';
  324. SMiscellaneousCategoryName = 'Miscellaneous';
  325. SMiscellaneousCategoryDesc = 'Miscellaneous properties and/or events';
  326. SVisualCategoryName = 'Visual';
  327. SVisualCategoryDesc = 'Visual properties and/or events';
  328. SInputCategoryName = 'Input';
  329. SInputCategoryDesc = 'Input properties and/or events';
  330. SInvalidMask = '''%s'' is an invalid mask at (%d)';
  331. SInvalidFilter = 'Property filters may only be name, class or type based (%d:%d)';
  332. SInvalidCategory = 'Categories must define their own name and description';
  333. SOperationNotAllowed = 'Operation not allowed while dispatching application events';
  334. SParentForm = 'TFlatTitlebar can only be placed on a descndant of a TCustomForm';
  335. SNotReplicatable = 'Control cannot be used in a DBCtrlGrid';
  336. STextFalse = 'False';
  337. STextTrue = 'True';
  338. implementation
  339. end.