-
Notifications
You must be signed in to change notification settings - Fork 0
/
Romulus.drc
1198 lines (1195 loc) · 58.4 KB
/
Romulus.drc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* VER150
Generated by the Borland Delphi Pascal Compiler
because -GD or --drc was supplied to the compiler.
This file contains compiler-generated resources that
were bound to the executable.
If this file is empty, then no compiler-generated
resources were bound to the produced executable.
*/
#define IdResourceStrings_RSSocksRequestServerFailed 64944
#define IdResourceStrings_RSSocksRequestIdentFailed 64945
#define IdResourceStrings_RSSocksUnknownError 64946
#define IdResourceStrings_RSSocksServerRespondError 64947
#define IdResourceStrings_RSSocksAuthMethodError 64948
#define IdResourceStrings_RSSocksAuthError 64949
#define IdResourceStrings_RSSocksServerGeneralError 64950
#define IdResourceStrings_RSSocksServerPermissionError 64951
#define IdResourceStrings_RSSocksServerNetUnreachableError 64952
#define IdResourceStrings_RSSocksServerHostUnreachableError 64953
#define IdResourceStrings_RSSocksServerConnectionRefusedError 64954
#define IdResourceStrings_RSSocksServerTTLExpiredError 64955
#define IdResourceStrings_RSSocksServerCommandError 64956
#define IdResourceStrings_RSSocksServerAddressError 64957
#define IdResourceStrings_RSIHTChainedNotAssigned 64958
#define IdResourceStrings_RSThreadTerminateAndWaitFor 64959
#define IdResourceStrings_RSStackECONNABORTED 64960
#define IdResourceStrings_RSStackECONNRESET 64961
#define IdResourceStrings_RSStackENOBUFS 64962
#define IdResourceStrings_RSStackEISCONN 64963
#define IdResourceStrings_RSStackENOTCONN 64964
#define IdResourceStrings_RSStackESHUTDOWN 64965
#define IdResourceStrings_RSStackETOOMANYREFS 64966
#define IdResourceStrings_RSStackETIMEDOUT 64967
#define IdResourceStrings_RSStackECONNREFUSED 64968
#define IdResourceStrings_RSStackELOOP 64969
#define IdResourceStrings_RSStackENAMETOOLONG 64970
#define IdResourceStrings_RSStackEHOSTDOWN 64971
#define IdResourceStrings_RSStackEHOSTUNREACH 64972
#define IdResourceStrings_RSStackENOTEMPTY 64973
#define IdResourceStrings_RSStackHOST_NOT_FOUND 64974
#define IdResourceStrings_RSSocksRequestFailed 64975
#define IdResourceStrings_RSStackEALREADY 64976
#define IdResourceStrings_RSStackENOTSOCK 64977
#define IdResourceStrings_RSStackEDESTADDRREQ 64978
#define IdResourceStrings_RSStackEMSGSIZE 64979
#define IdResourceStrings_RSStackEPROTOTYPE 64980
#define IdResourceStrings_RSStackENOPROTOOPT 64981
#define IdResourceStrings_RSStackEPROTONOSUPPORT 64982
#define IdResourceStrings_RSStackESOCKTNOSUPPORT 64983
#define IdResourceStrings_RSStackEOPNOTSUPP 64984
#define IdResourceStrings_RSStackEPFNOSUPPORT 64985
#define IdResourceStrings_RSStackEAFNOSUPPORT 64986
#define IdResourceStrings_RSStackEADDRINUSE 64987
#define IdResourceStrings_RSStackEADDRNOTAVAIL 64988
#define IdResourceStrings_RSStackENETDOWN 64989
#define IdResourceStrings_RSStackENETUNREACH 64990
#define IdResourceStrings_RSStackENETRESET 64991
#define IdResourceStrings_RSStatusConnected 64992
#define IdResourceStrings_RSStatusDisconnecting 64993
#define IdResourceStrings_RSStatusDisconnected 64994
#define IdResourceStrings_RSStatusText 64995
#define IdResourceStrings_RSConnectTimeout 64996
#define IdResourceStrings_RSInvalidServiceName 64997
#define IdResourceStrings_RSStackError 64998
#define IdResourceStrings_RSStackInvalidIP 64999
#define IdResourceStrings_RSStackEINTR 65000
#define IdResourceStrings_RSStackEBADF 65001
#define IdResourceStrings_RSStackEACCES 65002
#define IdResourceStrings_RSStackEFAULT 65003
#define IdResourceStrings_RSStackEINVAL 65004
#define IdResourceStrings_RSStackEMFILE 65005
#define IdResourceStrings_RSStackEWOULDBLOCK 65006
#define IdResourceStrings_RSStackEINPROGRESS 65007
#define IdResourceStrings_RSThreadClassNotSpecified 65008
#define IdResourceStrings_RSFileNotFound 65009
#define IdResourceStrings_RSOnlyOneAntiFreeze 65010
#define IdResourceStrings_RSNotConnected 65011
#define IdResourceStrings_RSTerminateThreadTimeout 65012
#define IdResourceStrings_RSNoExecuteSpecified 65013
#define IdResourceStrings_RSIdNoDataToRead 65014
#define IdResourceStrings_RSCanNotBindRange 65015
#define IdResourceStrings_RSInvalidPortRange 65016
#define IdResourceStrings_RSReadTimeout 65017
#define IdResourceStrings_RSReadLnMaxLineLengthExceeded 65018
#define IdResourceStrings_RSNoCommandHandlerFound 65019
#define IdResourceStrings_RSWS2CallError 65020
#define IdResourceStrings_RSWS2LoadError 65021
#define IdResourceStrings_RSStatusResolving 65022
#define IdResourceStrings_RSStatusConnecting 65023
#define VDBConsts_SNextRecord 65024
#define VDBConsts_SLastRecord 65025
#define VDBConsts_SInsertRecord 65026
#define VDBConsts_SDeleteRecord 65027
#define VDBConsts_SEditRecord 65028
#define VDBConsts_SPostEdit 65029
#define VDBConsts_SCancelEdit 65030
#define VDBConsts_SRefreshRecord 65031
#define VDBConsts_SRemoteLogin 65032
#define IdResourceStrings_RSAlreadyConnected 65033
#define IdResourceStrings_RSCannotAllocateSocket 65034
#define IdResourceStrings_RSConnectionClosedGracefully 65035
#define IdResourceStrings_RSCouldNotBindSocket 65036
#define IdResourceStrings_RSNotEnoughDataInBuffer 65037
#define IdResourceStrings_RSWinsockInitializationError 65038
#define IdResourceStrings_RSSetSizeExceeded 65039
#define pnglang_EPNGSizeExceedsText 65040
#define pnglang_EPNGUnknownPalEntryText 65041
#define pnglang_EPNGUnknownCriticalChunkText 65042
#define pnglang_EPNGUnknownCompressionText 65043
#define pnglang_EPNGUnknownInterlaceText 65044
#define pnglang_EPNGCannotAssignChunkText 65045
#define pnglang_EPNGUnexpectedEndText 65046
#define pnglang_EPNGNoImageDataText 65047
#define pnglang_EPNGOutMemoryText 65048
#define pnglang_EPNGHeaderNotPresentText 65049
#define pnglang_EInvalidNewSize 65050
#define JConsts_sChangeJPGSize 65051
#define JConsts_sJPEGError 65052
#define JConsts_sJPEGImageFile 65053
#define VDBConsts_SFirstRecord 65054
#define VDBConsts_SPriorRecord 65055
#define ZFConst_SPasswordTitle 65056
#define ZFConst_SPasswordPrompt 65057
#define ZFConst_SOnRequestBlankDisk 65058
#define ZFConst_SOnRequestFirstDisk 65059
#define ZFConst_SOnRequestLastDisk 65060
#define ZFConst_SOnRequestMiddleDisk 65061
#define ZFConst_SOnDiskFull 65062
#define ZFConst_SOnProcessFileFailure 65063
#define ZFConst_SWrongDiskRequestLastDisk 65064
#define pnglang_EPngInvalidCRCText 65065
#define pnglang_EPNGInvalidIHDRText 65066
#define pnglang_EPNGMissingMultipleIDATText 65067
#define pnglang_EPNGZLIBErrorText 65068
#define pnglang_EPNGInvalidPaletteText 65069
#define pnglang_EPNGInvalidFileHeaderText 65070
#define pnglang_EPNGIHDRNotFirstText 65071
#define fspTaskbarApi_SfspTbrInvalidOwner 65072
#define ZFDecConst_sProtectionCircular 65073
#define ZFDecConst_sStringFormatExists 65074
#define ZFDecConst_sInvalidStringFormat 65075
#define ZFDecConst_sInvalidFormatString 65076
#define ZFDecConst_sFMT_COPY 65077
#define ZFDecConst_sFMT_HEX 65078
#define ZFDecConst_sFMT_HEXL 65079
#define ZFDecConst_sFMT_MIME64 65080
#define ZFDecConst_sFMT_UU 65081
#define ZFDecConst_sFMT_XX 65082
#define ZFDecConst_sInvalidKeySize 65083
#define ZFDecConst_sNotInitialized 65084
#define ZFUSystem_SBufferOverflow 65085
#define ZFUSystem_SInvalidUTF7 65086
#define ZFConst_SConfirmOverwrite 65087
#define XMLConst_SNodeNotFound 65088
#define XMLConst_SMissingNode 65089
#define XMLConst_SNoAttributes 65090
#define XMLConst_SInvalidNodeType 65091
#define XMLConst_SMismatchedRegItems 65092
#define XMLConst_SNotSingleTextNode 65093
#define XMLConst_SNoDOMParseOptions 65094
#define XMLConst_SNodeReadOnly 65095
#define XMLConst_SNoRefresh 65096
#define XMLConst_SMissingFileName 65097
#define XMLConst_SLine 65098
#define GpTextFile_sCannotAppendReversedUnicodeFile 65099
#define GpTextFile_sCannotWriteReversedUnicodeFile 65100
#define GpTextFile_sFailedToAppendFile 65101
#define GpTextFile_sFailedToResetFile 65102
#define GpTextFile_sFailedToRewriteFile 65103
#define GPHugeF_sPrefetchWhileNotInBufferedReadMode 65104
#define GPHugeF_sReadWhileInBufferedWriteMode 65105
#define GPHugeF_sTryingToReadEmptyBuffer 65106
#define GPHugeF_sTryingToWriteEmptyBuffer 65107
#define GPHugeF_sWriteFailed 65108
#define GPHugeF_sWriteWhileInBufferedReadMode 65109
#define GPHugeF_sInvalidMode 65110
#define GPHugeF_sInvalidSeekOffset 65111
#define GPHugeF_sStreamFailed 65112
#define XMLConst_SDuplicateRegistration 65113
#define XMLConst_SNoMatchingDOMVendor 65114
#define XMLConst_SNoDOMNodeEx 65115
#define XMLConst_SDOMNotSupported 65116
#define XMLConst_SNodeExpected 65117
#define XMLConst_SMSDOMNotInstalled 65118
#define XMLConst_SNotActive 65119
#define OleConst_SCannotActivate 65120
#define OleConst_SNoWindowHandle 65121
#define OleConst_SLinkProperties 65122
#define OleConst_SInvalidLinkSource 65123
#define OleConst_SCannotBreakLink 65124
#define OleConst_SPropDlgCaption 65125
#define OleConst_SInvalidLicense 65126
#define OleConst_SNotLicensed 65127
#define OleConst_sNoRunningObject 65128
#define GPHugeF_sAsyncWhileNotInBufferedWriteMode 65129
#define GPHugeF_sBlockSizeMustBeGreaterThanZero 65130
#define GPHugeF_sCannotReopenWithPrefetch 65131
#define GPHugeF_sFailedToAllocateBuffer 65132
#define GPHugeF_sFileFailed 65133
#define GPHugeF_sFileNotOpen 65134
#define GPHugeF_sPrefetchNotSupported 65135
#define ABSDecConst2_sFMT_COPY 65136
#define ABSDecConst2_sFMT_HEX 65137
#define ABSDecConst2_sFMT_HEXL 65138
#define ABSDecConst2_sFMT_MIME64 65139
#define ABSDecConst2_sFMT_UU 65140
#define ABSDecConst2_sFMT_XX 65141
#define ABSDecConst2_sInvalidKeySize 65142
#define ABSDecConst2_sNotInitialized 65143
#define VirtualTrees_SWrongMoveError 65144
#define VirtualTrees_SWrongStreamFormat 65145
#define VirtualTrees_SWrongStreamVersion 65146
#define VirtualTrees_SStreamTooSmall 65147
#define VirtualTrees_SCorruptStream1 65148
#define VirtualTrees_SCorruptStream2 65149
#define VirtualTrees_SClipboardFailed 65150
#define VirtualTrees_SCannotSetUserData 65151
#define DBConsts_SInvalidVersion 65152
#define DBConsts_SBadFieldType 65153
#define DBConsts_SProviderSQLNotSupported 65154
#define DBConsts_SProviderExecuteNotSupported 65155
#define DBConsts_SDataSetUnidirectional 65156
#define DBConsts_SUnassignedVar 65157
#define DBConsts_SRecordNotFound 65158
#define DBConsts_SBcdOverflow 65159
#define DBConsts_SInvalidBcdValue 65160
#define DBConsts_SInvalidFormatType 65161
#define DBConsts_SCouldNotParseTimeStamp 65162
#define DBConsts_SInvalidSqlTimeStamp 65163
#define ABSDecConst2_sProtectionCircular 65164
#define ABSDecConst2_sStringFormatExists 65165
#define ABSDecConst2_sInvalidStringFormat 65166
#define ABSDecConst2_sInvalidFormatString 65167
#define DBConsts_SInvalidCalcType 65168
#define DBConsts_SDuplicateIndexName 65169
#define DBConsts_SNoIndexForFields 65170
#define DBConsts_SIndexNotFound 65171
#define DBConsts_SCircularDataLink 65172
#define DBConsts_SLookupInfoError 65173
#define DBConsts_SDataSourceChange 65174
#define DBConsts_SDataSetOpen 65175
#define DBConsts_SNotEditing 65176
#define DBConsts_SDataSetClosed 65177
#define DBConsts_SDataSetEmpty 65178
#define DBConsts_SDataSetReadOnly 65179
#define DBConsts_SNestedDataSetClass 65180
#define DBConsts_STextFalse 65181
#define DBConsts_STextTrue 65182
#define DBConsts_SParameterNotFound 65183
#define DBConsts_SFieldNameMissing 65184
#define DBConsts_SDuplicateFieldName 65185
#define DBConsts_SFieldNotFound 65186
#define DBConsts_SFieldAccessError 65187
#define DBConsts_SFieldValueError 65188
#define DBConsts_SFieldRangeError 65189
#define DBConsts_SBcdFieldRangeError 65190
#define DBConsts_SInvalidIntegerValue 65191
#define DBConsts_SInvalidBoolValue 65192
#define DBConsts_SInvalidFloatValue 65193
#define DBConsts_SFieldTypeMismatch 65194
#define DBConsts_SFieldSizeMismatch 65195
#define DBConsts_SInvalidVarByteArray 65196
#define DBConsts_SFieldOutOfRange 65197
#define DBConsts_SFieldRequired 65198
#define DBConsts_SDataSetMissing 65199
#define ExtCtrls_clNameInactiveCaptionText 65200
#define ExtCtrls_clNameInfoBk 65201
#define ExtCtrls_clNameInfoText 65202
#define ExtCtrls_clNameMenu 65203
#define ExtCtrls_clNameMenuText 65204
#define ExtCtrls_clNameNone 65205
#define ExtCtrls_clNameScrollBar 65206
#define ExtCtrls_clName3DDkShadow 65207
#define ExtCtrls_clName3DLight 65208
#define ExtCtrls_clNameWindow 65209
#define ExtCtrls_clNameWindowFrame 65210
#define ExtCtrls_clNameWindowText 65211
#define WinHelpViewer_hNoKeyword 65212
#define DBConsts_SInvalidFieldSize 65213
#define DBConsts_SInvalidFieldKind 65214
#define DBConsts_SUnknownFieldType 65215
#define ExtCtrls_clNameMedGray 65216
#define ExtCtrls_clNameActiveBorder 65217
#define ExtCtrls_clNameActiveCaption 65218
#define ExtCtrls_clNameAppWorkSpace 65219
#define ExtCtrls_clNameBackground 65220
#define ExtCtrls_clNameBtnFace 65221
#define ExtCtrls_clNameBtnHighlight 65222
#define ExtCtrls_clNameBtnShadow 65223
#define ExtCtrls_clNameBtnText 65224
#define ExtCtrls_clNameCaptionText 65225
#define ExtCtrls_clNameDefault 65226
#define ExtCtrls_clNameGrayText 65227
#define ExtCtrls_clNameHighlight 65228
#define ExtCtrls_clNameHighlightText 65229
#define ExtCtrls_clNameInactiveBorder 65230
#define ExtCtrls_clNameInactiveCaption 65231
#define ExtCtrls_clNameOlive 65232
#define ExtCtrls_clNameNavy 65233
#define ExtCtrls_clNamePurple 65234
#define ExtCtrls_clNameTeal 65235
#define ExtCtrls_clNameGray 65236
#define ExtCtrls_clNameSilver 65237
#define ExtCtrls_clNameRed 65238
#define ExtCtrls_clNameLime 65239
#define ExtCtrls_clNameYellow 65240
#define ExtCtrls_clNameBlue 65241
#define ExtCtrls_clNameFuchsia 65242
#define ExtCtrls_clNameAqua 65243
#define ExtCtrls_clNameWhite 65244
#define ExtCtrls_clNameMoneyGreen 65245
#define ExtCtrls_clNameSkyBlue 65246
#define ExtCtrls_clNameCream 65247
#define ComStrs_sTabFailRetrieve 65248
#define ComStrs_sTabFailGetObject 65249
#define ComStrs_sTabFailSet 65250
#define ComStrs_sTabFailSetObject 65251
#define ComStrs_sTabMustBeMultiLine 65252
#define ComStrs_sInvalidIndex 65253
#define ComStrs_sInsertError 65254
#define ComStrs_sInvalidOwner 65255
#define ComStrs_sRichEditInsertError 65256
#define ComStrs_sRichEditLoadFail 65257
#define ComStrs_sRichEditSaveFail 65258
#define ComStrs_sPageIndexError 65259
#define ComStrs_sInvalidComCtl32 65260
#define ExtCtrls_clNameBlack 65261
#define ExtCtrls_clNameMaroon 65262
#define ExtCtrls_clNameGreen 65263
#define Consts_SListBoxMustBeVirtual 65264
#define Consts_SNoGetItemEventHandler 65265
#define HelpIntfs_hNoTableOfContents 65266
#define HelpIntfs_hNothingFound 65267
#define HelpIntfs_hNoContext 65268
#define HelpIntfs_hNoTopics 65269
#define ComConst_SOleError 65270
#define ComConst_SNoMethod 65271
#define ComConst_SVarNotObject 65272
#define ComConst_STooManyParams 65273
#define ComConst_SDCOMNotInstalled 65274
#define TntSystem_SBufferOverflow 65275
#define TntSystem_SInvalidUTF7 65276
#define TntFormatStrUtils_SInvalidFormatSpecifier 65277
#define ComStrs_sTabFailClear 65278
#define ComStrs_sTabFailDelete 65279
#define Consts_SOutOfRange 65280
#define Consts_SInsertLineError 65281
#define Consts_SInvalidClipFmt 65282
#define Consts_SIconToClipboard 65283
#define Consts_SCannotOpenClipboard 65284
#define Consts_SInvalidMemoSize 65285
#define Consts_SNoDefaultPrinter 65286
#define Consts_SDuplicateMenus 65287
#define Consts_SDockedCtlNeedsName 65288
#define Consts_SDockTreeRemoveError 65289
#define Consts_SDockZoneNotFound 65290
#define Consts_SDockZoneHasNoCtl 65291
#define Consts_SMultiSelectRequired 65292
#define Consts_SErrorDownloadingURL 65293
#define Consts_SUrlMonDllMissing 65294
#define Consts_SErrorSettingCount 65295
#define Consts_SmkcEsc 65296
#define Consts_SmkcEnter 65297
#define Consts_SmkcSpace 65298
#define Consts_SmkcPgUp 65299
#define Consts_SmkcPgDn 65300
#define Consts_SmkcEnd 65301
#define Consts_SmkcHome 65302
#define Consts_SmkcLeft 65303
#define Consts_SmkcUp 65304
#define Consts_SmkcRight 65305
#define Consts_SmkcDown 65306
#define Consts_SmkcIns 65307
#define Consts_SmkcDel 65308
#define Consts_SmkcShift 65309
#define Consts_SmkcCtrl 65310
#define Consts_SmkcAlt 65311
#define Consts_SMsgDlgError 65312
#define Consts_SMsgDlgInformation 65313
#define Consts_SMsgDlgConfirm 65314
#define Consts_SMsgDlgYes 65315
#define Consts_SMsgDlgNo 65316
#define Consts_SMsgDlgOK 65317
#define Consts_SMsgDlgCancel 65318
#define Consts_SMsgDlgHelp 65319
#define Consts_SMsgDlgAbort 65320
#define Consts_SMsgDlgRetry 65321
#define Consts_SMsgDlgIgnore 65322
#define Consts_SMsgDlgAll 65323
#define Consts_SMsgDlgNoToAll 65324
#define Consts_SMsgDlgYesToAll 65325
#define Consts_SmkcBkSp 65326
#define Consts_SmkcTab 65327
#define Consts_SYesButton 65328
#define Consts_SNoButton 65329
#define Consts_SHelpButton 65330
#define Consts_SCloseButton 65331
#define Consts_SIgnoreButton 65332
#define Consts_SRetryButton 65333
#define Consts_SAbortButton 65334
#define Consts_SAllButton 65335
#define Consts_SCannotDragForm 65336
#define Consts_SVMetafiles 65337
#define Consts_SVEnhMetafiles 65338
#define Consts_SVIcons 65339
#define Consts_SVBitmaps 65340
#define Consts_SInvalidEnumValue 65341
#define Consts_SOutlineLongLine 65342
#define Consts_SMsgDlgWarning 65343
#define Consts_SMDIChildNotVisible 65344
#define Consts_SVisibleChanged 65345
#define Consts_SPropertyOutOfRange 65346
#define Consts_SMenuIndexError 65347
#define Consts_SMenuReinserted 65348
#define Consts_SMenuNotFound 65349
#define Consts_SNoTimers 65350
#define Consts_SNotPrinting 65351
#define Consts_SPrinting 65352
#define Consts_SInvalidPrinter 65353
#define Consts_SDeviceOnPort 65354
#define Consts_SGroupIndexTooLow 65355
#define Consts_SNoMDIForm 65356
#define Consts_SControlParentSetToSelf 65357
#define Consts_SOKButton 65358
#define Consts_SCancelButton 65359
#define Consts_SScanLine 65360
#define Consts_SChangeIconSize 65361
#define Consts_SOleGraphic 65362
#define Consts_SUnknownClipboardFormat 65363
#define Consts_SOutOfResources 65364
#define Consts_SNoCanvasHandle 65365
#define Consts_SInvalidImageSize 65366
#define Consts_SInvalidImageList 65367
#define Consts_SReplaceImage 65368
#define Consts_SImageIndexError 65369
#define Consts_SImageReadFail 65370
#define Consts_SImageWriteFail 65371
#define Consts_SWindowDCError 65372
#define Consts_SWindowClass 65373
#define Consts_SCannotFocus 65374
#define Consts_SParentRequired 65375
#define RTLConsts_SSeekNotImplemented 65376
#define RTLConsts_SSortedListError 65377
#define RTLConsts_SUnknownGroup 65378
#define RTLConsts_SUnknownProperty 65379
#define RTLConsts_SWriteError 65380
#define RTLConsts_SThreadCreateError 65381
#define RTLConsts_SThreadError 65382
#define RTLConsts_SMissingDateTimeField 65383
#define RTLConsts_SInvalidDateTime 65384
#define Consts_SCantWriteResourceStreamError 65385
#define Consts_SInvalidTabPosition 65386
#define Consts_SInvalidTabStyle 65387
#define Consts_SInvalidBitmap 65388
#define Consts_SInvalidIcon 65389
#define Consts_SInvalidMetafile 65390
#define Consts_SInvalidPixelFormat 65391
#define RTLConsts_SInvalidPropertyPath 65392
#define RTLConsts_SInvalidPropertyType 65393
#define RTLConsts_SInvalidPropertyValue 65394
#define RTLConsts_SInvalidRegType 65395
#define RTLConsts_SItemNotFound 65396
#define RTLConsts_SListCapacityError 65397
#define RTLConsts_SListCountError 65398
#define RTLConsts_SListIndexError 65399
#define RTLConsts_SMemoryStreamError 65400
#define RTLConsts_SPropertyException 65401
#define RTLConsts_SReadError 65402
#define RTLConsts_SReadOnlyProperty 65403
#define RTLConsts_SRegCreateFailed 65404
#define RTLConsts_SRegGetDataFailed 65405
#define RTLConsts_SRegSetDataFailed 65406
#define RTLConsts_SResNotFound 65407
#define RTLConsts_SBitsIndexError 65408
#define RTLConsts_SCantWriteResourceStreamError 65409
#define RTLConsts_SCheckSynchronizeError 65410
#define RTLConsts_SClassNotFound 65411
#define RTLConsts_SDuplicateClass 65412
#define RTLConsts_SDuplicateItem 65413
#define RTLConsts_SDuplicateName 65414
#define RTLConsts_SDuplicateString 65415
#define RTLConsts_SFCreateErrorEx 65416
#define RTLConsts_SFOpenErrorEx 65417
#define RTLConsts_SIniFileWriteError 65418
#define RTLConsts_SInvalidImage 65419
#define RTLConsts_SInvalidMask 65420
#define RTLConsts_SInvalidName 65421
#define RTLConsts_SInvalidProperty 65422
#define RTLConsts_SInvalidPropertyElement 65423
#define SysConst_SShortDayNameMon 65424
#define SysConst_SShortDayNameTue 65425
#define SysConst_SShortDayNameWed 65426
#define SysConst_SShortDayNameThu 65427
#define SysConst_SShortDayNameFri 65428
#define SysConst_SShortDayNameSat 65429
#define SysConst_SLongDayNameSun 65430
#define SysConst_SLongDayNameMon 65431
#define SysConst_SLongDayNameTue 65432
#define SysConst_SLongDayNameWed 65433
#define SysConst_SLongDayNameThu 65434
#define SysConst_SLongDayNameFri 65435
#define SysConst_SLongDayNameSat 65436
#define SysConst_SCannotCreateDir 65437
#define RTLConsts_SAncestorNotFound 65438
#define RTLConsts_SAssignError 65439
#define SysConst_SShortMonthNameOct 65440
#define SysConst_SShortMonthNameNov 65441
#define SysConst_SShortMonthNameDec 65442
#define SysConst_SLongMonthNameJan 65443
#define SysConst_SLongMonthNameFeb 65444
#define SysConst_SLongMonthNameMar 65445
#define SysConst_SLongMonthNameApr 65446
#define SysConst_SLongMonthNameMay 65447
#define SysConst_SLongMonthNameJun 65448
#define SysConst_SLongMonthNameJul 65449
#define SysConst_SLongMonthNameAug 65450
#define SysConst_SLongMonthNameSep 65451
#define SysConst_SLongMonthNameOct 65452
#define SysConst_SLongMonthNameNov 65453
#define SysConst_SLongMonthNameDec 65454
#define SysConst_SShortDayNameSun 65455
#define SysConst_SSafecallException 65456
#define SysConst_SAssertError 65457
#define SysConst_SAbstractError 65458
#define SysConst_SModuleAccessViolation 65459
#define SysConst_SOSError 65460
#define SysConst_SUnkOSError 65461
#define SysConst_SNL 65462
#define SysConst_SShortMonthNameJan 65463
#define SysConst_SShortMonthNameFeb 65464
#define SysConst_SShortMonthNameMar 65465
#define SysConst_SShortMonthNameApr 65466
#define SysConst_SShortMonthNameMay 65467
#define SysConst_SShortMonthNameJun 65468
#define SysConst_SShortMonthNameJul 65469
#define SysConst_SShortMonthNameAug 65470
#define SysConst_SShortMonthNameSep 65471
#define SysConst_SInvalidVarNullOp 65472
#define SysConst_SInvalidVarOpWithHResultWithPrefix 65473
#define SysConst_SVarTypeOutOfRangeWithPrefix 65474
#define SysConst_SVarTypeAlreadyUsedWithPrefix 65475
#define SysConst_SVarTypeNotUsableWithPrefix 65476
#define SysConst_SVarTypeTooManyCustom 65477
#define SysConst_SVarTypeCouldNotConvert 65478
#define SysConst_SVarTypeConvertOverflow 65479
#define SysConst_SVarOverflow 65480
#define SysConst_SVarInvalid 65481
#define SysConst_SVarBadType 65482
#define SysConst_SVarNotImplemented 65483
#define SysConst_SVarUnexpected 65484
#define SysConst_SExternalException 65485
#define SysConst_SAssertionFailed 65486
#define SysConst_SIntfCastError 65487
#define SysConst_SControlC 65488
#define SysConst_SPrivilege 65489
#define SysConst_SOperationAborted 65490
#define SysConst_SException 65491
#define SysConst_SExceptTitle 65492
#define SysConst_SInvalidFormat 65493
#define SysConst_SArgumentMissing 65494
#define SysConst_SDispatchError 65495
#define SysConst_SReadAccess 65496
#define SysConst_SWriteAccess 65497
#define SysConst_SFormatTooLong 65498
#define SysConst_SVarArrayCreate 65499
#define SysConst_SVarArrayBounds 65500
#define SysConst_SVarArrayLocked 65501
#define SysConst_SInvalidVarCast 65502
#define SysConst_SInvalidVarOp 65503
#define SysConst_SAccessDenied 65504
#define SysConst_SEndOfFile 65505
#define SysConst_SDiskFull 65506
#define SysConst_SInvalidInput 65507
#define SysConst_SDivByZero 65508
#define SysConst_SRangeError 65509
#define SysConst_SIntOverflow 65510
#define SysConst_SInvalidOp 65511
#define SysConst_SZeroDivide 65512
#define SysConst_SOverflow 65513
#define SysConst_SUnderflow 65514
#define SysConst_SInvalidPointer 65515
#define SysConst_SInvalidCast 65516
#define SysConst_SAccessViolationArg3 65517
#define SysConst_SAccessViolationNoArg 65518
#define SysConst_SStackOverflow 65519
#define SysConst_SInvalidInteger 65520
#define SysConst_SInvalidFloat 65521
#define SysConst_SInvalidCurrency 65522
#define SysConst_SInvalidDate 65523
#define SysConst_SInvalidTime 65524
#define SysConst_SInvalidDateTime 65525
#define SysConst_SInvalidTimeStamp 65526
#define SysConst_SInvalidGUID 65527
#define SysConst_SInvalidBoolean 65528
#define SysConst_STimeEncodeError 65529
#define SysConst_SDateEncodeError 65530
#define SysConst_SOutOfMemory 65531
#define SysConst_SInOutError 65532
#define SysConst_SFileNotFound 65533
#define SysConst_SInvalidFilename 65534
#define SysConst_STooManyOpenFiles 65535
STRINGTABLE
BEGIN
IdResourceStrings_RSSocksRequestServerFailed, "Request rejected because SOCKS server cannot connect."
IdResourceStrings_RSSocksRequestIdentFailed, "Request rejected because the client program and identd report different user-ids."
IdResourceStrings_RSSocksUnknownError, "Unknown socks error."
IdResourceStrings_RSSocksServerRespondError, "Socks server did not respond."
IdResourceStrings_RSSocksAuthMethodError, "Invalid socks authentication method."
IdResourceStrings_RSSocksAuthError, "Authentication error to socks server."
IdResourceStrings_RSSocksServerGeneralError, "General SOCKS server failure."
IdResourceStrings_RSSocksServerPermissionError, "Connection not allowed by ruleset."
IdResourceStrings_RSSocksServerNetUnreachableError, "Network unreachable."
IdResourceStrings_RSSocksServerHostUnreachableError, "Host unreachable."
IdResourceStrings_RSSocksServerConnectionRefusedError, "Connection refused."
IdResourceStrings_RSSocksServerTTLExpiredError, "TTL expired."
IdResourceStrings_RSSocksServerCommandError, "Command not supported."
IdResourceStrings_RSSocksServerAddressError, "Address type not supported."
IdResourceStrings_RSIHTChainedNotAssigned, "You must chain this component to another I/O Handler before using it"
IdResourceStrings_RSThreadTerminateAndWaitFor, "Cannot call TerminateAndWaitFor on FreeAndTerminate threads"
IdResourceStrings_RSStackECONNABORTED, "Software caused connection abort."
IdResourceStrings_RSStackECONNRESET, "Connection reset by peer."
IdResourceStrings_RSStackENOBUFS, "No buffer space available."
IdResourceStrings_RSStackEISCONN, "Socket is already connected."
IdResourceStrings_RSStackENOTCONN, "Socket is not connected."
IdResourceStrings_RSStackESHUTDOWN, "Cannot send or receive after socket is closed."
IdResourceStrings_RSStackETOOMANYREFS, "Too many references, cannot splice."
IdResourceStrings_RSStackETIMEDOUT, "Connection timed out."
IdResourceStrings_RSStackECONNREFUSED, "Connection refused."
IdResourceStrings_RSStackELOOP, "Too many levels of symbolic links."
IdResourceStrings_RSStackENAMETOOLONG, "File name too long."
IdResourceStrings_RSStackEHOSTDOWN, "Host is down."
IdResourceStrings_RSStackEHOSTUNREACH, "No route to host."
IdResourceStrings_RSStackENOTEMPTY, "Directory not empty"
IdResourceStrings_RSStackHOST_NOT_FOUND, "Host not found."
IdResourceStrings_RSSocksRequestFailed, "Request rejected or failed."
IdResourceStrings_RSStackEALREADY, "Operation already in progress."
IdResourceStrings_RSStackENOTSOCK, "Socket operation on non-socket."
IdResourceStrings_RSStackEDESTADDRREQ, "Destination address required."
IdResourceStrings_RSStackEMSGSIZE, "Message too long."
IdResourceStrings_RSStackEPROTOTYPE, "Protocol wrong type for socket."
IdResourceStrings_RSStackENOPROTOOPT, "Bad protocol option."
IdResourceStrings_RSStackEPROTONOSUPPORT, "Protocol not supported."
IdResourceStrings_RSStackESOCKTNOSUPPORT, "Socket type not supported."
IdResourceStrings_RSStackEOPNOTSUPP, "Operation not supported on socket."
IdResourceStrings_RSStackEPFNOSUPPORT, "Protocol family not supported."
IdResourceStrings_RSStackEAFNOSUPPORT, "Address family not supported by protocol family."
IdResourceStrings_RSStackEADDRINUSE, "Address already in use."
IdResourceStrings_RSStackEADDRNOTAVAIL, "Cannot assign requested address."
IdResourceStrings_RSStackENETDOWN, "Network is down."
IdResourceStrings_RSStackENETUNREACH, "Network is unreachable."
IdResourceStrings_RSStackENETRESET, "Net dropped connection or reset."
IdResourceStrings_RSStatusConnected, "Connected."
IdResourceStrings_RSStatusDisconnecting, "Disconnecting."
IdResourceStrings_RSStatusDisconnected, "Disconnected."
IdResourceStrings_RSStatusText, "%s"
IdResourceStrings_RSConnectTimeout, "Connect timed out."
IdResourceStrings_RSInvalidServiceName, "%s is not a valid service."
IdResourceStrings_RSStackError, "Socket Error # %d\r\n%s"
IdResourceStrings_RSStackInvalidIP, "%s is not a valid IP address."
IdResourceStrings_RSStackEINTR, "Interrupted system call."
IdResourceStrings_RSStackEBADF, "Bad file number."
IdResourceStrings_RSStackEACCES, "Access denied."
IdResourceStrings_RSStackEFAULT, "Bad address."
IdResourceStrings_RSStackEINVAL, "Invalid argument."
IdResourceStrings_RSStackEMFILE, "Too many open files."
IdResourceStrings_RSStackEWOULDBLOCK, "Operation would block. "
IdResourceStrings_RSStackEINPROGRESS, "Operation now in progress."
IdResourceStrings_RSThreadClassNotSpecified, "Thread Class Not Specified."
IdResourceStrings_RSFileNotFound, "File \"%s\" not found"
IdResourceStrings_RSOnlyOneAntiFreeze, "Only one TIdAntiFreeze can exist per application."
IdResourceStrings_RSNotConnected, "Not Connected"
IdResourceStrings_RSTerminateThreadTimeout, "Terminate Thread Timeout"
IdResourceStrings_RSNoExecuteSpecified, "No execute handler found."
IdResourceStrings_RSIdNoDataToRead, "No data to read."
IdResourceStrings_RSCanNotBindRange, "Can not bind in port range (%d - %d)"
IdResourceStrings_RSInvalidPortRange, "Invalid Port Range (%d - %d)"
IdResourceStrings_RSReadTimeout, "Read Timeout"
IdResourceStrings_RSReadLnMaxLineLengthExceeded, "Max line length exceeded."
IdResourceStrings_RSNoCommandHandlerFound, "No command handler found."
IdResourceStrings_RSWS2CallError, "Error on call Winsock2 library function %s"
IdResourceStrings_RSWS2LoadError, "Error on loading Winsock2 library (%s)"
IdResourceStrings_RSStatusResolving, "Resolving hostname %s."
IdResourceStrings_RSStatusConnecting, "Connecting to %s."
VDBConsts_SNextRecord, "Next record"
VDBConsts_SLastRecord, "Last record"
VDBConsts_SInsertRecord, "Insert record"
VDBConsts_SDeleteRecord, "Delete record"
VDBConsts_SEditRecord, "Edit record"
VDBConsts_SPostEdit, "Post edit"
VDBConsts_SCancelEdit, "Cancel edit"
VDBConsts_SRefreshRecord, "Refresh data"
VDBConsts_SRemoteLogin, "Remote Login"
IdResourceStrings_RSAlreadyConnected, "Already connected."
IdResourceStrings_RSCannotAllocateSocket, "Cannot allocate socket."
IdResourceStrings_RSConnectionClosedGracefully, "Connection Closed Gracefully."
IdResourceStrings_RSCouldNotBindSocket, "Could not bind socket. Address and port are already in use."
IdResourceStrings_RSNotEnoughDataInBuffer, "Not enough data in buffer."
IdResourceStrings_RSWinsockInitializationError, "Winsock Initialization Error."
IdResourceStrings_RSSetSizeExceeded, "Set Size Exceeded."
pnglang_EPNGSizeExceedsText, "This \"Portable Network Graphics\" image is not supported because either it's width or height exceeds the maximum size, which is 65535 pixels length."
pnglang_EPNGUnknownPalEntryText, "There is no such palette entry."
pnglang_EPNGUnknownCriticalChunkText, "This \"Portable Network Graphics\" image contains an unknown critical part which could not be decoded."
pnglang_EPNGUnknownCompressionText, "This \"Portable Network Graphics\" image is encoded with an unknown compression scheme which could not be decoded."
pnglang_EPNGUnknownInterlaceText, "This \"Portable Network Graphics\" image uses an unknown interlace scheme which could not be decoded."
pnglang_EPNGCannotAssignChunkText, "The chunks must be compatible to be assigned."
pnglang_EPNGUnexpectedEndText, "This \"Portable Network Graphics\" image is invalid because the decoder found an unexpected end of the file."
pnglang_EPNGNoImageDataText, "This \"Portable Network Graphics\" image contains no data."
pnglang_EPNGOutMemoryText, "Some operation could not be performed because the system is out of resources. Close some windows and try again."
pnglang_EPNGHeaderNotPresentText, "This operation is not valid because the current image contains no valid header."
pnglang_EInvalidNewSize, "The new size provided for image resizing is invalid."
JConsts_sChangeJPGSize, "Cannot change the size of a JPEG image"
JConsts_sJPEGError, "JPEG error #%d"
JConsts_sJPEGImageFile, "JPEG Image File"
VDBConsts_SFirstRecord, "First record"
VDBConsts_SPriorRecord, "Prior record"
ZFConst_SPasswordTitle, "Password for \"%s\""
ZFConst_SPasswordPrompt, "Enter password: "
ZFConst_SOnRequestBlankDisk, "Please insert a blank disk #%d"
ZFConst_SOnRequestFirstDisk, "Please insert the first disk"
ZFConst_SOnRequestLastDisk, "Please insert the last disk"
ZFConst_SOnRequestMiddleDisk, "Please insert disk #%d"
ZFConst_SOnDiskFull, "Disk is full. Required free space: %d bytes, but available only: %d bytes. Clean the disk or find another blank disk"
ZFConst_SOnProcessFileFailure, "%s. File processing error, possibly disk is full"
ZFConst_SWrongDiskRequestLastDisk, "File '%s' not found on inserted disk. Please insert last disk with required file"
pnglang_EPngInvalidCRCText, "This \"Portable Network Graphics\" image is not valid because it contains invalid pieces of data (crc error)"
pnglang_EPNGInvalidIHDRText, "The \"Portable Network Graphics\" image could not be loaded because one of its main piece of data (ihdr) might be corrupted"
pnglang_EPNGMissingMultipleIDATText, "This \"Portable Network Graphics\" image is invalid because it has missing image parts."
pnglang_EPNGZLIBErrorText, "Could not decompress the image because it contains invalid compressed data.\r\n Description: "
pnglang_EPNGInvalidPaletteText, "The \"Portable Network Graphics\" image contains an invalid palette."
pnglang_EPNGInvalidFileHeaderText, "The file being readed is not a valid \"Portable Network Graphics\" image because it contains an invalid header. This file may be corruped, try obtaining it again."
pnglang_EPNGIHDRNotFirstText, "This \"Portable Network Graphics\" image is not supported or it might be invalid.\r\n(IHDR chunk is not the first)"
fspTaskbarApi_SfspTbrInvalidOwner, "This component must be placed on TCustomForm or its descendant"
ZFDecConst_sProtectionCircular, "Circular Protection detected, Protection Object is invalid."
ZFDecConst_sStringFormatExists, "String Format \"%d\" not exists."
ZFDecConst_sInvalidStringFormat, "Input is not an valid %s Format."
ZFDecConst_sInvalidFormatString, "Input can not be convert to %s Format."
ZFDecConst_sFMT_COPY, "copy Input to Output"
ZFDecConst_sFMT_HEX, "Hexadecimal"
ZFDecConst_sFMT_HEXL, "Hexadecimal lowercase"
ZFDecConst_sFMT_MIME64, "MIME Base 64"
ZFDecConst_sFMT_UU, "UU Coding"
ZFDecConst_sFMT_XX, "XX Coding"
ZFDecConst_sInvalidKeySize, "Length from Encryptionkey is invalid.\r\nKeysize for %s must be to %d-%d bytes"
ZFDecConst_sNotInitialized, "%s is not initialized call Init() or InitKey() before."
ZFUSystem_SBufferOverflow, "Buffer overflow"
ZFUSystem_SInvalidUTF7, "Invalid UTF7"
ZFConst_SConfirmOverwrite, "Overwrite file \"%s\" with \"%s\""
XMLConst_SNodeNotFound, "Node \"%s\" not found"
XMLConst_SMissingNode, "IDOMNode required"
XMLConst_SNoAttributes, "Attributes are not supported on this node type"
XMLConst_SInvalidNodeType, "Invalid node type"
XMLConst_SMismatchedRegItems, "Mismatched paramaters to RegisterChildNodes"
XMLConst_SNotSingleTextNode, "Element does not contain a single text node"
XMLConst_SNoDOMParseOptions, "DOM Implementation does not support IDOMParseOptions"
XMLConst_SNodeReadOnly, "Node is readonly"
XMLConst_SNoRefresh, "Refresh is only supported if the FileName or XML properties are set"
XMLConst_SMissingFileName, "FileName cannot be blank"
XMLConst_SLine, "Line"
GpTextFile_sCannotAppendReversedUnicodeFile, "TGpTextFile(%s):Cannot append reversed Unicode file."
GpTextFile_sCannotWriteReversedUnicodeFile, "TGpTextFile(%s):Cannot write to reversed Unicode file."
GpTextFile_sFailedToAppendFile, "TGpTextFile(%s):Failed to append."
GpTextFile_sFailedToResetFile, "TGpTextFile(%s):Failed to reset file."
GpTextFile_sFailedToRewriteFile, "TGpTextFile(%s):Failed to rewrite file."
GPHugeF_sPrefetchWhileNotInBufferedReadMode, "TGpHugeFile(%s): Prefetch only works in buffered read mode"
GPHugeF_sReadWhileInBufferedWriteMode, "TGpHugeFile(%s): Read while in buffered write mode"
GPHugeF_sTryingToReadEmptyBuffer, "TGpHugeFile(%s) :Trying to read <= 0 bytes."
GPHugeF_sTryingToWriteEmptyBuffer, "TGpHugeFile(%s): Trying to write <= 0 bytes."
GPHugeF_sWriteFailed, "TGpHugeFile(%s): Write failed!"
GPHugeF_sWriteWhileInBufferedReadMode, "TGpHugeFile(%s): Write while in buffered read mode!"
GPHugeF_sInvalidMode, "TGpHugeFileStream(%s): Invalid mode!"
GPHugeF_sInvalidSeekOffset, "TGpHugeFileStream(%s): Cannot assign seek to position %d to a 32-bit result. Use 64-bit version of Seek."
GPHugeF_sStreamFailed, "TGpHugeFileStream.%s(%s) failed. "
XMLConst_SDuplicateRegistration, "\"%s\" DOMImplementation already registered"
XMLConst_SNoMatchingDOMVendor, "No matching DOM Vendor: \"%s\""
XMLConst_SNoDOMNodeEx, "Selected DOM Vendor does not support this property or method"
XMLConst_SDOMNotSupported, "Property or Method \"%s\" is not supported by DOM Vendor \"%s\""
XMLConst_SNodeExpected, "Node cannot be null"
XMLConst_SMSDOMNotInstalled, "Microsoft MSXML is not installed"
XMLConst_SNotActive, "No active document"
OleConst_SCannotActivate, "OLE control activation failed"
OleConst_SNoWindowHandle, "Could not obtain OLE control window handle"
OleConst_SLinkProperties, "Link Properties"
OleConst_SInvalidLinkSource, "Cannot link to an invalid source."
OleConst_SCannotBreakLink, "Break link operation is not supported."
OleConst_SPropDlgCaption, "%s Properties"
OleConst_SInvalidLicense, "License information for %s is invalid"
OleConst_SNotLicensed, "License information for %s not found. You cannot use this control in design mode"
OleConst_sNoRunningObject, "Unable to retrieve a pointer to a running object registered with OLE for %s/%s"
GPHugeF_sAsyncWhileNotInBufferedWriteMode, "TGpHugeFile(%s): Asynchronous access only works in buffered write mode!"
GPHugeF_sBlockSizeMustBeGreaterThanZero, "TGpHugeFile(%s): BlockSize must be greater than zero!"
GPHugeF_sCannotReopenWithPrefetch, "TGpHugeFile(%s): Cannot reopen file in prefetch mode!"
GPHugeF_sFailedToAllocateBuffer, "TGpHugeFile(%s): Failed to allocate buffer!"
GPHugeF_sFileFailed, "TGpHugeFile.%s(%s) failed. "
GPHugeF_sFileNotOpen, "TGpHugeFile(%s): File not open!"
GPHugeF_sPrefetchNotSupported, "TGpHugeFile(%s): Prefetch is supported only in D2007+"
ABSDecConst2_sFMT_COPY, "copy Input to Output"
ABSDecConst2_sFMT_HEX, "Hexadecimal"
ABSDecConst2_sFMT_HEXL, "Hexadecimal lowercase"
ABSDecConst2_sFMT_MIME64, "MIME Base 64"
ABSDecConst2_sFMT_UU, "UU Coding"
ABSDecConst2_sFMT_XX, "XX Coding"
ABSDecConst2_sInvalidKeySize, "Length from Encryptionkey is invalid.\r\nKeysize for %s must be to %d-%d bytes"
ABSDecConst2_sNotInitialized, "%s is not initialized call Init() or InitKey() before."
VirtualTrees_SWrongMoveError, "Target node cannot be a child node of the node to be moved."
VirtualTrees_SWrongStreamFormat, "Unable to load tree structure, the format is wrong."
VirtualTrees_SWrongStreamVersion, "Unable to load tree structure, the version is unknown."
VirtualTrees_SStreamTooSmall, "Unable to load tree structure, not enough data available."
VirtualTrees_SCorruptStream1, "Stream data corrupt. A node's anchor chunk is missing."
VirtualTrees_SCorruptStream2, "Stream data corrupt. Unexpected data after node's end position."
VirtualTrees_SClipboardFailed, "Clipboard operation failed."
VirtualTrees_SCannotSetUserData, "Cannot set initial user data because there is not enough user data space allocated."
DBConsts_SInvalidVersion, "Unable to load bind parameters"
DBConsts_SBadFieldType, "Field '%s' is of an unsupported type"
DBConsts_SProviderSQLNotSupported, "SQL not supported: %s"
DBConsts_SProviderExecuteNotSupported, "Execute not supported: %s"
DBConsts_SDataSetUnidirectional, "Operation not allowed on a unidirectional dataset"
DBConsts_SUnassignedVar, "Unassigned variant value"
DBConsts_SRecordNotFound, "Record not found"
DBConsts_SBcdOverflow, "BCD overflow"
DBConsts_SInvalidBcdValue, "%s is not a valid BCD value"
DBConsts_SInvalidFormatType, "Invalid format type for BCD"
DBConsts_SCouldNotParseTimeStamp, "Could not parse SQL TimeStamp string"
DBConsts_SInvalidSqlTimeStamp, "Invalid SQL date/time values"
ABSDecConst2_sProtectionCircular, "Circular Protection detected, Protection Object is invalid."
ABSDecConst2_sStringFormatExists, "String Format \"%d\" not exists."
ABSDecConst2_sInvalidStringFormat, "Input is not an valid %s Format."
ABSDecConst2_sInvalidFormatString, "Input can not be convert to %s Format."
DBConsts_SInvalidCalcType, "Field '%s' cannot be a calculated or lookup field"
DBConsts_SDuplicateIndexName, "Duplicate index name '%s'"
DBConsts_SNoIndexForFields, "No index for fields '%s'"
DBConsts_SIndexNotFound, "Index '%s' not found"
DBConsts_SCircularDataLink, "Circular datalinks are not allowed"
DBConsts_SLookupInfoError, "Lookup information for field '%s' is incomplete"
DBConsts_SDataSourceChange, "DataSource cannot be changed"
DBConsts_SDataSetOpen, "Cannot perform this operation on an open dataset"
DBConsts_SNotEditing, "Dataset not in edit or insert mode"
DBConsts_SDataSetClosed, "Cannot perform this operation on a closed dataset"
DBConsts_SDataSetEmpty, "Cannot perform this operation on an empty dataset"
DBConsts_SDataSetReadOnly, "Cannot modify a read-only dataset"
DBConsts_SNestedDataSetClass, "Nested dataset must inherit from %s"
DBConsts_STextFalse, "False"
DBConsts_STextTrue, "True"
DBConsts_SParameterNotFound, "Parameter '%s' not found"
DBConsts_SFieldNameMissing, "Field name missing"
DBConsts_SDuplicateFieldName, "Duplicate field name '%s'"
DBConsts_SFieldNotFound, "Field '%s' not found"
DBConsts_SFieldAccessError, "Cannot access field '%s' as type %s"
DBConsts_SFieldValueError, "Invalid value for field '%s'"
DBConsts_SFieldRangeError, "%g is not a valid value for field '%s'. The allowed range is %g to %g"
DBConsts_SBcdFieldRangeError, "%s is not a valid value for field '%s'. The allowed range is %s to %s"
DBConsts_SInvalidIntegerValue, "'%s' is not a valid integer value for field '%s'"
DBConsts_SInvalidBoolValue, "'%s' is not a valid boolean value for field '%s'"
DBConsts_SInvalidFloatValue, "'%s' is not a valid floating point value for field '%s'"
DBConsts_SFieldTypeMismatch, "Type mismatch for field '%s', expecting: %s actual: %s"
DBConsts_SFieldSizeMismatch, "Size mismatch for field '%s', expecting: %d actual: %d"
DBConsts_SInvalidVarByteArray, "Invalid variant type or size for field '%s'"
DBConsts_SFieldOutOfRange, "Value of field '%s' is out of range"
DBConsts_SFieldRequired, "Field '%s' must have a value"
DBConsts_SDataSetMissing, "Field '%s' has no dataset"
ExtCtrls_clNameInactiveCaptionText, "Inactive Caption Text"
ExtCtrls_clNameInfoBk, "Info Background"
ExtCtrls_clNameInfoText, "Info Text"
ExtCtrls_clNameMenu, "Menu Background"
ExtCtrls_clNameMenuText, "Menu Text"
ExtCtrls_clNameNone, "None"
ExtCtrls_clNameScrollBar, "Scroll Bar"
ExtCtrls_clName3DDkShadow, "3D Dark Shadow"
ExtCtrls_clName3DLight, "3D Light"
ExtCtrls_clNameWindow, "Window Background"
ExtCtrls_clNameWindowFrame, "Window Frame"
ExtCtrls_clNameWindowText, "Window Text"
WinHelpViewer_hNoKeyword, "No help keyword specified."
DBConsts_SInvalidFieldSize, "Invalid field size"
DBConsts_SInvalidFieldKind, "Invalid FieldKind"
DBConsts_SUnknownFieldType, "Field '%s' is of an unknown type"
ExtCtrls_clNameMedGray, "Medium Gray"
ExtCtrls_clNameActiveBorder, "Active Border"
ExtCtrls_clNameActiveCaption, "Active Caption"
ExtCtrls_clNameAppWorkSpace, "Application Workspace"
ExtCtrls_clNameBackground, "Background"
ExtCtrls_clNameBtnFace, "Button Face"
ExtCtrls_clNameBtnHighlight, "Button Highlight"
ExtCtrls_clNameBtnShadow, "Button Shadow"
ExtCtrls_clNameBtnText, "Button Text"
ExtCtrls_clNameCaptionText, "Caption Text"
ExtCtrls_clNameDefault, "Default"
ExtCtrls_clNameGrayText, "Gray Text"
ExtCtrls_clNameHighlight, "Highlight Background"
ExtCtrls_clNameHighlightText, "Highlight Text"
ExtCtrls_clNameInactiveBorder, "Inactive Border"
ExtCtrls_clNameInactiveCaption, "Inactive Caption"
ExtCtrls_clNameOlive, "Olive"
ExtCtrls_clNameNavy, "Navy"
ExtCtrls_clNamePurple, "Purple"
ExtCtrls_clNameTeal, "Teal"
ExtCtrls_clNameGray, "Gray"
ExtCtrls_clNameSilver, "Silver"
ExtCtrls_clNameRed, "Red"
ExtCtrls_clNameLime, "Lime"
ExtCtrls_clNameYellow, "Yellow"
ExtCtrls_clNameBlue, "Blue"
ExtCtrls_clNameFuchsia, "Fuchsia"
ExtCtrls_clNameAqua, "Aqua"
ExtCtrls_clNameWhite, "White"
ExtCtrls_clNameMoneyGreen, "Money Green"
ExtCtrls_clNameSkyBlue, "Sky Blue"
ExtCtrls_clNameCream, "Cream"
ComStrs_sTabFailRetrieve, "Failed to retrieve tab at index %d"
ComStrs_sTabFailGetObject, "Failed to get object at index %d"
ComStrs_sTabFailSet, "Failed to set tab \"%s\" at index %d"
ComStrs_sTabFailSetObject, "Failed to set object at index %d"
ComStrs_sTabMustBeMultiLine, "MultiLine must be True when TabPosition is tpLeft or tpRight"
ComStrs_sInvalidIndex, "Invalid index"
ComStrs_sInsertError, "Unable to insert an item"
ComStrs_sInvalidOwner, "Invalid owner"
ComStrs_sRichEditInsertError, "RichEdit line insertion error"
ComStrs_sRichEditLoadFail, "Failed to Load Stream"
ComStrs_sRichEditSaveFail, "Failed to Save Stream"
ComStrs_sPageIndexError, "%d is an invalid PageIndex value. PageIndex must be between 0 and %d"
ComStrs_sInvalidComCtl32, "This control requires version 4.70 or greater of COMCTL32.DLL"
ExtCtrls_clNameBlack, "Black"
ExtCtrls_clNameMaroon, "Maroon"
ExtCtrls_clNameGreen, "Green"
Consts_SListBoxMustBeVirtual, "Listbox (%s) style must be virtual in order to set Count"
Consts_SNoGetItemEventHandler, "No OnGetItem event handler assigned"
HelpIntfs_hNoTableOfContents, "Unable to find a Table of Contents"
HelpIntfs_hNothingFound, "No help found for %s"
HelpIntfs_hNoContext, "No context-sensitive help installed"
HelpIntfs_hNoTopics, "No topic-based help system installed"
ComConst_SOleError, "OLE error %.8x"
ComConst_SNoMethod, "Method '%s' not supported by automation object"
ComConst_SVarNotObject, "Variant does not reference an automation object"
ComConst_STooManyParams, "Dispatch methods do not support more than 64 parameters"
ComConst_SDCOMNotInstalled, "DCOM not installed"
TntSystem_SBufferOverflow, "Buffer overflow"
TntSystem_SInvalidUTF7, "Invalid UTF7"
TntFormatStrUtils_SInvalidFormatSpecifier, "Invalid Format Specifier: %s"
ComStrs_sTabFailClear, "Failed to clear tab control"
ComStrs_sTabFailDelete, "Failed to delete tab at index %d"
Consts_SOutOfRange, "Value must be between %d and %d"
Consts_SInsertLineError, "Unable to insert a line"
Consts_SInvalidClipFmt, "Invalid clipboard format"
Consts_SIconToClipboard, "Clipboard does not support Icons"
Consts_SCannotOpenClipboard, "Cannot open clipboard"
Consts_SInvalidMemoSize, "Text exceeds memo capacity"
Consts_SNoDefaultPrinter, "There is no default printer currently selected"
Consts_SDuplicateMenus, "Menu '%s' is already being used by another form"
Consts_SDockedCtlNeedsName, "Docked control must have a name"
Consts_SDockTreeRemoveError, "Error removing control from dock tree"
Consts_SDockZoneNotFound, " - Dock zone not found"
Consts_SDockZoneHasNoCtl, " - Dock zone has no control"
Consts_SMultiSelectRequired, "Multiselect mode must be on for this feature"
Consts_SErrorDownloadingURL, "Error downloading URL: %s"
Consts_SUrlMonDllMissing, "Unable to load %s"
Consts_SErrorSettingCount, "Error setting %s.Count"
Consts_SmkcEsc, "Esc"
Consts_SmkcEnter, "Enter"
Consts_SmkcSpace, "Space"
Consts_SmkcPgUp, "PgUp"
Consts_SmkcPgDn, "PgDn"
Consts_SmkcEnd, "End"
Consts_SmkcHome, "Home"
Consts_SmkcLeft, "Left"
Consts_SmkcUp, "Up"
Consts_SmkcRight, "Right"
Consts_SmkcDown, "Down"
Consts_SmkcIns, "Ins"
Consts_SmkcDel, "Del"
Consts_SmkcShift, "Shift+"
Consts_SmkcCtrl, "Ctrl+"
Consts_SmkcAlt, "Alt+"
Consts_SMsgDlgError, "Error"
Consts_SMsgDlgInformation, "Information"
Consts_SMsgDlgConfirm, "Confirm"
Consts_SMsgDlgYes, "&Yes"
Consts_SMsgDlgNo, "&No"
Consts_SMsgDlgOK, "OK"
Consts_SMsgDlgCancel, "Cancel"
Consts_SMsgDlgHelp, "&Help"
Consts_SMsgDlgAbort, "&Abort"
Consts_SMsgDlgRetry, "&Retry"
Consts_SMsgDlgIgnore, "&Ignore"
Consts_SMsgDlgAll, "&All"
Consts_SMsgDlgNoToAll, "N&o to All"
Consts_SMsgDlgYesToAll, "Yes to &All"
Consts_SmkcBkSp, "BkSp"
Consts_SmkcTab, "Tab"
Consts_SYesButton, "&Yes"
Consts_SNoButton, "&No"
Consts_SHelpButton, "&Help"
Consts_SCloseButton, "&Close"
Consts_SIgnoreButton, "&Ignore"
Consts_SRetryButton, "&Retry"
Consts_SAbortButton, "Abort"
Consts_SAllButton, "&All"
Consts_SCannotDragForm, "Cannot drag a form"
Consts_SVMetafiles, "Metafiles"
Consts_SVEnhMetafiles, "Enhanced Metafiles"
Consts_SVIcons, "Icons"