-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathshorter.drc
More file actions
897 lines (894 loc) · 44.5 KB
/
shorter.drc
File metadata and controls
897 lines (894 loc) · 44.5 KB
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
/* VER210
Generated by the CodeGear 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 pnglang_EPNGUnknownCompressionText 65104
#define pnglang_EPNGUnknownInterlaceText 65105
#define pnglang_EPNGCannotAssignChunkText 65106
#define pnglang_EPNGUnexpectedEndText 65107
#define pnglang_EPNGNoImageDataText 65108
#define pnglang_EPNGCannotAddChunkText 65109
#define pnglang_EPNGCannotAddInvalidImageText 65110
#define pnglang_EPNGCouldNotLoadResourceText 65111
#define pnglang_EPNGOutMemoryText 65112
#define pnglang_EPNGCannotChangeTransparentText 65113
#define pnglang_EPNGHeaderNotPresentText 65114
#define pnglang_EInvalidNewSize 65115
#define pnglang_EInvalidSpec 65116
#define LCExceptions_rcFF 65120
#define LCExceptions_rcErrorProg 65121
#define LCExceptions_rcHeadError 65122
#define JConsts_sChangeJPGSize 65123
#define JConsts_sJPEGError 65124
#define JConsts_sJPEGImageFile 65125
#define pnglang_EPngInvalidCRCText 65126
#define pnglang_EPNGInvalidIHDRText 65127
#define pnglang_EPNGMissingMultipleIDATText 65128
#define pnglang_EPNGZLIBErrorText 65129
#define pnglang_EPNGInvalidPaletteText 65130
#define pnglang_EPNGInvalidFileHeaderText 65131
#define pnglang_EPNGIHDRNotFirstText 65132
#define pnglang_EPNGSizeExceedsText 65133
#define pnglang_EPNGUnknownPalEntryText 65134
#define pnglang_EPNGUnknownCriticalChunkText 65135
#define LCExceptions_rcWrongAuth 65136
#define LCExceptions_rcServiceCompressError 65137
#define LCExceptions_rcErrorHistory 65138
#define LCExceptions_rcErrorHistoryLoad 65139
#define LCExceptions_rcErrorOpenGroup 65140
#define LCExceptions_rcNewVersionFound 65141
#define LCExceptions_rcNewVersion 65142
#define LCExceptions_rcNoNewVersions 65143
#define LCExceptions_rcReady 65144
#define LCExceptions_rcNotReady 65145
#define LCExceptions_rcLinkError 65146
#define LCExceptions_rcFFAuthError 65147
#define LCExceptions_rcFFSendError 65148
#define LCExceptions_rcFFSubscribeError 65149
#define LCExceptions_rcFFSendGroupErr 65150
#define LCExceptions_rcTwitter 65151
#define OverbyteIcsCharsetUtils_sVietnameseWindows 65152
#define OverbyteIcsCharsetUtils_sWesternEuropeanISO 65153
#define OverbyteIcsCharsetUtils_sWesternEuropeanWindows 65154
#define OverbyteIcsHttpContCod_ERR_GETCODING_OVERRIDE 65155
#define OleConst_SBadPropValue 65156
#define OleConst_SCannotActivate 65157
#define OleConst_SNoWindowHandle 65158
#define OleConst_SInvalidLicense 65159
#define OleConst_SNotLicensed 65160
#define OleConst_sNoRunningObject 65161
#define LCExceptions_rcHTMLLink 65162
#define LCExceptions_rcForumAnchor 65163
#define LCExceptions_rcAnchor 65164
#define LCExceptions_rcError 65165
#define LCExceptions_rcNoTwitAuth 65166
#define LCExceptions_rcNoTwitAuthHead 65167
#define OverbyteIcsCharsetUtils_sCyrillicWindows 65168
#define OverbyteIcsCharsetUtils_sEstonianISO 65169
#define OverbyteIcsCharsetUtils_sGreekISO 65170
#define OverbyteIcsCharsetUtils_sGreekWindows 65171
#define OverbyteIcsCharsetUtils_sHebrewISOLogical 65172
#define OverbyteIcsCharsetUtils_sHebrewISOVisual 65173
#define OverbyteIcsCharsetUtils_sHebrewWindows 65174
#define OverbyteIcsCharsetUtils_sJapaneseJIS 65175
#define OverbyteIcsCharsetUtils_sKorean 65176
#define OverbyteIcsCharsetUtils_sKoreanEUC 65177
#define OverbyteIcsCharsetUtils_sLatin9 65178
#define OverbyteIcsCharsetUtils_sThaiWindows 65179
#define OverbyteIcsCharsetUtils_sTurkishISO 65180
#define OverbyteIcsCharsetUtils_sTurkishWindows 65181
#define OverbyteIcsCharsetUtils_sUnicodeUTF7 65182
#define OverbyteIcsCharsetUtils_sUnicodeUTF8 65183
#define ComConst_SVarNotObject 65184
#define ComConst_STooManyParams 65185
#define ComConst_SDCOMNotInstalled 65186
#define OverbyteIcsCharsetUtils_sArabicISO 65187
#define OverbyteIcsCharsetUtils_sArabicWindows 65188
#define OverbyteIcsCharsetUtils_sBalticISO 65189
#define OverbyteIcsCharsetUtils_sBalticWindows 65190
#define OverbyteIcsCharsetUtils_sCentralEuropeanISO 65191
#define OverbyteIcsCharsetUtils_sCentralEuropeanWindows 65192
#define OverbyteIcsCharsetUtils_sChineseTraditionalBig5 65193
#define OverbyteIcsCharsetUtils_sChineseSimplifiedGB18030 65194
#define OverbyteIcsCharsetUtils_sChineseSimplifiedGB2312 65195
#define OverbyteIcsCharsetUtils_sChineseSimplifiedHZ 65196
#define OverbyteIcsCharsetUtils_sCyrillicISO 65197
#define OverbyteIcsCharsetUtils_sCyrillicKOI8R 65198
#define OverbyteIcsCharsetUtils_sCyrillicKOI8U 65199
#define NativeXml_sxeCDATAInRoot 65200
#define NativeXml_sxeRootElementNotDefined 65201
#define NativeXml_sxeCodecStreamNotAssigned 65202
#define NativeXml_sxeUnsupportedEncoding 65203
#define NativeXml_sxeCannotReadCodecForWriting 65204
#define NativeXml_sxeCannotWriteCodecForReading 65205
#define NativeXml_sxeCannotReadMultipeChar 65206
#define NativeXml_sxeCannotPerformSeek 65207
#define NativeXml_sxeCannotSeekBeforeReadWrite 65208
#define NativeXml_sxeCannotWriteToOutputStream 65209
#define NativeXml_sxeCannotConverToBool 65210
#define NativeXml_sxeCannotConvertToFloat 65211
#define NativeXml_sxeSignificantDigitsOutOfRange 65212
#define BitlyParser_rcErrorResponse 65213
#define ComConst_SOleError 65214
#define ComConst_SNoMethod 65215
#define BitlyAPI_rcOutputFormatError 65216
#define NativeXml_sxeErrorCalcStreamLength 65217
#define NativeXml_sxeMissingDataInBinaryStream 65218
#define NativeXml_sxeMissingElementName 65219
#define NativeXml_sxeMissingCloseTag 65220
#define NativeXml_sxeMissingDataAfterGreaterThan 65221
#define NativeXml_sxeMissingLessThanInCloseTag 65222
#define NativeXml_sxeIncorrectCloseTag 65223
#define NativeXml_sxeIllegalCharInNodeName 65224
#define NativeXml_sxeMoreThanOneRootElement 65225
#define NativeXml_sxeMoreThanOneDeclaration 65226
#define NativeXml_sxeDeclarationMustBeFirstElem 65227
#define NativeXml_sxeMoreThanOneDoctype 65228
#define NativeXml_sxeDoctypeAfterRootElement 65229
#define NativeXml_sxeNoRootElement 65230
#define NativeXml_sxeIllegalElementType 65231
#define Consts_SWindowsVistaRequired 65232
#define Consts_SXPThemesRequired 65233
#define Consts_STaskDlgButtonCaption 65234
#define Consts_STaskDlgRadioButtonCaption 65235
#define Consts_SInvalidTaskDlgButtonCaption 65236
#define ComStrs_sTabFailClear 65237
#define ComStrs_sTabFailDelete 65238
#define ComStrs_sTabFailRetrieve 65239
#define ComStrs_sTabFailGetObject 65240
#define ComStrs_sTabFailSet 65241
#define ComStrs_sTabFailSetObject 65242
#define ComStrs_sTabMustBeMultiLine 65243
#define ComStrs_sUDAssociated 65244
#define ComStrs_sPageIndexError 65245
#define BitlyAPI_rcValidateError 65246
#define BitlyAPI_rcQueryError 65247
#define Consts_SInvalidPrinterOp 65248
#define Consts_SNoDefaultPrinter 65249
#define Consts_SDuplicateMenus 65250
#define Consts_SDockedCtlNeedsName 65251
#define Consts_SDockTreeRemoveError 65252
#define Consts_SDockZoneNotFound 65253
#define Consts_SDockZoneHasNoCtl 65254
#define Consts_SDockZoneVersionConflict 65255
#define Consts_SSeparator 65256
#define Consts_SANSIEncoding 65257
#define Consts_SASCIIEncoding 65258
#define Consts_SUnicodeEncoding 65259
#define Consts_SBigEndianEncoding 65260
#define Consts_SUTF8Encoding 65261
#define Consts_SUTF7Encoding 65262
#define Consts_SPageControlNotSet 65263
#define Consts_SmkcLeft 65264
#define Consts_SmkcUp 65265
#define Consts_SmkcRight 65266
#define Consts_SmkcDown 65267
#define Consts_SmkcIns 65268
#define Consts_SmkcDel 65269
#define Consts_SmkcShift 65270
#define Consts_SmkcCtrl 65271
#define Consts_SmkcAlt 65272
#define Consts_SOutOfRange 65273
#define Consts_sAllFilter 65274
#define Consts_SInsertLineError 65275
#define Consts_SInvalidClipFmt 65276
#define Consts_SIconToClipboard 65277
#define Consts_SCannotOpenClipboard 65278
#define Consts_SInvalidMemoSize 65279
#define Consts_SMsgDlgAbort 65280
#define Consts_SMsgDlgRetry 65281
#define Consts_SMsgDlgIgnore 65282
#define Consts_SMsgDlgAll 65283
#define Consts_SMsgDlgNoToAll 65284
#define Consts_SMsgDlgYesToAll 65285
#define Consts_SMsgDlgClose 65286
#define Consts_SmkcBkSp 65287
#define Consts_SmkcTab 65288
#define Consts_SmkcEsc 65289
#define Consts_SmkcEnter 65290
#define Consts_SmkcSpace 65291
#define Consts_SmkcPgUp 65292
#define Consts_SmkcPgDn 65293
#define Consts_SmkcEnd 65294
#define Consts_SmkcHome 65295
#define Consts_SAllButton 65296
#define Consts_SCannotDragForm 65297
#define Consts_SVMetafiles 65298
#define Consts_SVEnhMetafiles 65299
#define Consts_SVIcons 65300
#define Consts_SVBitmaps 65301
#define Consts_SVTIFFImages 65302
#define Consts_SMsgDlgWarning 65303
#define Consts_SMsgDlgError 65304
#define Consts_SMsgDlgInformation 65305
#define Consts_SMsgDlgConfirm 65306
#define Consts_SMsgDlgYes 65307
#define Consts_SMsgDlgNo 65308
#define Consts_SMsgDlgOK 65309
#define Consts_SMsgDlgCancel 65310
#define Consts_SMsgDlgHelp 65311
#define Consts_SPrinterIndexError 65312
#define Consts_SInvalidPrinter 65313
#define Consts_SDeviceOnPort 65314
#define Consts_SGroupIndexTooLow 65315
#define Consts_SNoMDIForm 65316
#define Consts_SImageCanvasNeedsBitmap 65317
#define Consts_SControlParentSetToSelf 65318
#define Consts_SOKButton 65319
#define Consts_SCancelButton 65320
#define Consts_SYesButton 65321
#define Consts_SNoButton 65322
#define Consts_SHelpButton 65323
#define Consts_SCloseButton 65324
#define Consts_SIgnoreButton 65325
#define Consts_SRetryButton 65326
#define Consts_SAbortButton 65327
#define Consts_SImageWriteFail 65328
#define Consts_SWindowDCError 65329
#define Consts_SWindowClass 65330
#define Consts_SCannotFocus 65331
#define Consts_SParentRequired 65332
#define Consts_SParentGivenNotAParent 65333
#define Consts_SMDIChildNotVisible 65334
#define Consts_SVisibleChanged 65335
#define Consts_SCannotShowModal 65336
#define Consts_SPropertyOutOfRange 65337
#define Consts_SMenuIndexError 65338
#define Consts_SMenuReinserted 65339
#define Consts_SMenuNotFound 65340
#define Consts_SNoTimers 65341
#define Consts_SNotPrinting 65342
#define Consts_SPrinting 65343
#define Consts_SInvalidMetafile 65344
#define Consts_SInvalidPixelFormat 65345
#define Consts_SInvalidImage 65346
#define Consts_SScanLine 65347
#define Consts_SChangeIconSize 65348
#define Consts_SChangeWicSize 65349
#define Consts_SOleGraphic 65350
#define Consts_SUnknownExtension 65351
#define Consts_SUnknownClipboardFormat 65352
#define Consts_SOutOfResources 65353
#define Consts_SNoCanvasHandle 65354
#define Consts_SInvalidImageSize 65355
#define Consts_SInvalidImageList 65356
#define Consts_SReplaceImage 65357
#define Consts_SImageIndexError 65358
#define Consts_SImageReadFail 65359
#define RTLConsts_SInvalidDateTime 65360
#define RTLConsts_SInvalidInteger 65361
#define RTLConsts_SInvalidTime 65362
#define RTLConsts_STimeEncodeError 65363
#define RTLConsts_SNoContext 65364
#define RTLConsts_SNoContextFound 65365
#define RTLConsts_SNoIndex 65366
#define RTLConsts_SNoSearch 65367
#define RTLConsts_SNoTableOfContents 65368
#define RTLConsts_SNoTopics 65369
#define RTLConsts_SNothingFound 65370
#define RTLConsts_SArgumentOutOfRange 65371
#define Consts_SInvalidTabPosition 65372
#define Consts_SInvalidTabStyle 65373
#define Consts_SInvalidBitmap 65374
#define Consts_SInvalidIcon 65375
#define RTLConsts_SThreadCreateError 65376
#define RTLConsts_SThreadError 65377
#define RTLConsts_SThreadExternalTerminate 65378
#define RTLConsts_SThreadExternalWait 65379
#define RTLConsts_SThreadStartError 65380
#define RTLConsts_SParamIsNegative 65381
#define RTLConsts_SInputBufferExceed 65382
#define RTLConsts_SInvalidCharsInPath 65383
#define RTLConsts_SPathTooLong 65384
#define RTLConsts_SPathNotFound 65385
#define RTLConsts_SPathFormatNotSupported 65386
#define RTLConsts_SDriveNotFound 65387
#define RTLConsts_SFileNotFound 65388
#define RTLConsts_hNoFilterViewer 65389
#define RTLConsts_sInvalidTimeoutValue 65390
#define RTLConsts_SInvalidDate 65391
#define RTLConsts_SListCountError 65392
#define RTLConsts_SListIndexError 65393
#define RTLConsts_SMemoryStreamError 65394
#define RTLConsts_SNoComSupport 65395
#define RTLConsts_SPropertyException 65396
#define RTLConsts_SReadError 65397
#define RTLConsts_SReadOnlyProperty 65398
#define RTLConsts_SRegCreateFailed 65399
#define RTLConsts_SRegGetDataFailed 65400
#define RTLConsts_SRegSetDataFailed 65401
#define RTLConsts_SResNotFound 65402
#define RTLConsts_SSeekNotImplemented 65403
#define RTLConsts_SSortedListError 65404
#define RTLConsts_SUnknownGroup 65405
#define RTLConsts_SUnknownProperty 65406
#define RTLConsts_SWriteError 65407
#define RTLConsts_SDuplicateClass 65408
#define RTLConsts_SDuplicateItem 65409
#define RTLConsts_SDuplicateName 65410
#define RTLConsts_SDuplicateString 65411
#define RTLConsts_SFCreateErrorEx 65412
#define RTLConsts_SFOpenErrorEx 65413
#define RTLConsts_SIniFileWriteError 65414
#define RTLConsts_SInvalidFileName 65415
#define RTLConsts_SInvalidImage 65416
#define RTLConsts_SInvalidName 65417
#define RTLConsts_SInvalidProperty 65418
#define RTLConsts_SInvalidPropertyElement 65419
#define RTLConsts_SInvalidPropertyPath 65420
#define RTLConsts_SInvalidPropertyValue 65421
#define RTLConsts_SInvalidRegType 65422
#define RTLConsts_SListCapacityError 65423
#define SysConst_SLongDayNameFri 65424
#define SysConst_SLongDayNameSat 65425
#define SysConst_SCannotCreateDir 65426
#define SysConst_SInvalidSourceArray 65427
#define SysConst_SInvalidDestinationArray 65428
#define SysConst_SCharIndexOutOfBounds 65429
#define SysConst_SByteIndexOutOfBounds 65430
#define SysConst_SInvalidCharCount 65431
#define SysConst_SInvalidDestinationIndex 65432
#define SysConst_SInvalidCodePage 65433
#define RTLConsts_SAncestorNotFound 65434
#define RTLConsts_SAssignError 65435
#define RTLConsts_SBitsIndexError 65436
#define RTLConsts_SCantWriteResourceStreamError 65437
#define RTLConsts_SCheckSynchronizeError 65438
#define RTLConsts_SClassNotFound 65439
#define SysConst_SLongMonthNameSep 65440
#define SysConst_SLongMonthNameOct 65441
#define SysConst_SLongMonthNameNov 65442
#define SysConst_SLongMonthNameDec 65443
#define SysConst_SShortDayNameSun 65444
#define SysConst_SShortDayNameMon 65445
#define SysConst_SShortDayNameTue 65446
#define SysConst_SShortDayNameWed 65447
#define SysConst_SShortDayNameThu 65448
#define SysConst_SShortDayNameFri 65449
#define SysConst_SShortDayNameSat 65450
#define SysConst_SLongDayNameSun 65451
#define SysConst_SLongDayNameMon 65452
#define SysConst_SLongDayNameTue 65453
#define SysConst_SLongDayNameWed 65454
#define SysConst_SLongDayNameThu 65455
#define SysConst_SShortMonthNameMay 65456
#define SysConst_SShortMonthNameJun 65457
#define SysConst_SShortMonthNameJul 65458
#define SysConst_SShortMonthNameAug 65459
#define SysConst_SShortMonthNameSep 65460
#define SysConst_SShortMonthNameOct 65461
#define SysConst_SShortMonthNameNov 65462
#define SysConst_SShortMonthNameDec 65463
#define SysConst_SLongMonthNameJan 65464
#define SysConst_SLongMonthNameFeb 65465
#define SysConst_SLongMonthNameMar 65466
#define SysConst_SLongMonthNameApr 65467
#define SysConst_SLongMonthNameMay 65468
#define SysConst_SLongMonthNameJun 65469
#define SysConst_SLongMonthNameJul 65470
#define SysConst_SLongMonthNameAug 65471
#define SysConst_SVarUnexpected 65472
#define SysConst_SExternalException 65473
#define SysConst_SAssertionFailed 65474
#define SysConst_SIntfCastError 65475
#define SysConst_SSafecallException 65476
#define SysConst_SMonitorLockException 65477
#define SysConst_SNoMonitorSupportException 65478
#define SysConst_SAssertError 65479
#define SysConst_SAbstractError 65480
#define SysConst_SModuleAccessViolation 65481
#define SysConst_SOSError 65482
#define SysConst_SUnkOSError 65483
#define SysConst_SShortMonthNameJan 65484
#define SysConst_SShortMonthNameFeb 65485
#define SysConst_SShortMonthNameMar 65486
#define SysConst_SShortMonthNameApr 65487
#define SysConst_SVarArrayBounds 65488
#define SysConst_SVarArrayLocked 65489
#define SysConst_SInvalidVarCast 65490
#define SysConst_SInvalidVarOp 65491
#define SysConst_SInvalidVarNullOp 65492
#define SysConst_SInvalidVarOpWithHResultWithPrefix 65493
#define SysConst_SVarTypeOutOfRangeWithPrefix 65494
#define SysConst_SVarTypeAlreadyUsedWithPrefix 65495
#define SysConst_SVarTypeNotUsableWithPrefix 65496
#define SysConst_SVarTypeTooManyCustom 65497
#define SysConst_SVarTypeCouldNotConvert 65498
#define SysConst_SVarTypeConvertOverflow 65499
#define SysConst_SVarOverflow 65500
#define SysConst_SVarInvalid 65501
#define SysConst_SVarBadType 65502
#define SysConst_SVarNotImplemented 65503
#define SysConst_SInvalidPointer 65504
#define SysConst_SInvalidCast 65505
#define SysConst_SAccessViolationArg3 65506
#define SysConst_SAccessViolationNoArg 65507
#define SysConst_SStackOverflow 65508
#define SysConst_SControlC 65509
#define SysConst_SPrivilege 65510
#define SysConst_SException 65511
#define SysConst_SExceptTitle 65512
#define SysConst_SInvalidFormat 65513
#define SysConst_SArgumentMissing 65514
#define SysConst_SDispatchError 65515
#define SysConst_SReadAccess 65516
#define SysConst_SWriteAccess 65517
#define SysConst_SFormatTooLong 65518
#define SysConst_SVarArrayCreate 65519
#define SysConst_SInvalidFloat 65520
#define SysConst_SDateEncodeError 65521
#define SysConst_SOutOfMemory 65522
#define SysConst_SInOutError 65523
#define SysConst_STooManyOpenFiles 65524
#define SysConst_SAccessDenied 65525
#define SysConst_SEndOfFile 65526
#define SysConst_SDiskFull 65527
#define SysConst_SInvalidInput 65528
#define SysConst_SDivByZero 65529
#define SysConst_SRangeError 65530
#define SysConst_SIntOverflow 65531
#define SysConst_SInvalidOp 65532
#define SysConst_SZeroDivide 65533
#define SysConst_SOverflow 65534
#define SysConst_SUnderflow 65535
STRINGTABLE
BEGIN
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_EPNGCannotAddChunkText, "The program tried to add a existent critical chunk to the current image which is not allowed."
pnglang_EPNGCannotAddInvalidImageText, "It's not allowed to add a new chunk because the current image is invalid."
pnglang_EPNGCouldNotLoadResourceText, "The png image could not be loaded from the resource ID."
pnglang_EPNGOutMemoryText, "Some operation could not be performed because the system is out of resources. Close some windows and try again."
pnglang_EPNGCannotChangeTransparentText, "Setting bit transparency color is not allowed for png images containing alpha value for each pixel (COLOR_RGBALPHA and COLOR_GRAYSCALEALPHA)"
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."
pnglang_EInvalidSpec, "The \"Portable Network Graphics\" could not be created because invalid image type parameters have being provided."
LCExceptions_rcFF, "FriendFeed"
LCExceptions_rcErrorProg, "Öåëîñòíîñòü ïðîãðàììû áûëà íàðóøåíà. Ïåðåóñòàíîâèòå ïðèëîæåíèå."
LCExceptions_rcHeadError, "Îøèáêà ïîëó÷åíèÿ äàííûõ ïî URL"
JConsts_sChangeJPGSize, "Cannot change the size of a JPEG image"
JConsts_sJPEGError, "JPEG error #%d"
JConsts_sJPEGImageFile, "JPEG Image 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 read is not a valid \"Portable Network Graphics\" image because it contains an invalid header. This file may be corrupted, 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)"
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."
LCExceptions_rcWrongAuth, "Îøèáêà àâòîðèçàöèè. Ïîâòîðèòå ïîïûòêó çàíîâî"
LCExceptions_rcServiceCompressError, "Îøèáêà ñæàòèÿ ññûëêè ñ ïîìîùüþ ñåðâèñà %s"
LCExceptions_rcErrorHistory, "Íå óäàëîñü ñîõðàíèòü èñòîðèþ ñæàòèÿ ññûëîê"
LCExceptions_rcErrorHistoryLoad, "Íå óäàëîñü çàãðóçèòü èñòîðèþ ñæàòèÿ ññûëîê"
LCExceptions_rcErrorOpenGroup, "Íå óäàëîñü îòêðûòü øàáëîí ãðóïïîâîãî êîïèðîâàíèÿ"
LCExceptions_rcNewVersionFound, "Îáíàðóæåíà íîâàÿ âåðñèÿ ïðîãðàììû. Ïåðåéòè íà ñàéò çà îáíîâëåíèåì?"
LCExceptions_rcNewVersion, "Âûøëà íîâàÿ âåðñèÿ"
LCExceptions_rcNoNewVersions, "Íîâûõ âåðñèé íå îáíàðóæåíî"
LCExceptions_rcReady, "íàñòðîåí"
LCExceptions_rcNotReady, "íå íàñòðîåí"
LCExceptions_rcLinkError, "Ññûëêà äîëæíà íà÷èíàòüñÿ ñ http://, https:// èëè ftp://"
LCExceptions_rcFFAuthError, "Âû íå àâòîðèçîâàíû â FF. Àâòîðèçóéòåñü"
LCExceptions_rcFFSendError, "Âî âðåìÿ îòïðàâêè ñîîáùåíèÿ ïðîèçîøëà îøèáêà. Ïîïðîáóéòå îòïðàâèòü ñîîáùåíèå ïîçæå"
LCExceptions_rcFFSubscribeError, "Íå óäàëîñü ïîäïèñàòüñÿ íà ãðóïïó LinkCompressor"
LCExceptions_rcFFSendGroupErr, "Íå óäàëîñü îòïðàâèòü ñîîáùåíèå â ãðóïïó LinkCompressor"
LCExceptions_rcTwitter, "Twitter"
OverbyteIcsCharsetUtils_sVietnameseWindows, "Vietnamese (Windows)"
OverbyteIcsCharsetUtils_sWesternEuropeanISO, "Western European (ISO)"
OverbyteIcsCharsetUtils_sWesternEuropeanWindows, "Western European (Windows)"
OverbyteIcsHttpContCod_ERR_GETCODING_OVERRIDE, "GetCoding must be overridden in %s"
OleConst_SBadPropValue, "'%s' is not a valid property value"
OleConst_SCannotActivate, "OLE control activation failed"
OleConst_SNoWindowHandle, "Could not obtain OLE control window handle"
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"
LCExceptions_rcHTMLLink, "<a href=\"%s\">ÒÅÊÑÒ_ÑÑÛËÊÈ</a>"
LCExceptions_rcForumAnchor, "[url=%s]ÒÅÊÑÒ_ÑÑÛËÊÈ[/url]"
LCExceptions_rcAnchor, "ÒÅÊÑÒ_ÑÑÛËÊÈ"
LCExceptions_rcError, "Îøèáêà"
LCExceptions_rcNoTwitAuth, "Àâòîðèçàöèÿ â Twitter íå ïðîéäåíà. Ïðîéòè?"
LCExceptions_rcNoTwitAuthHead, "Íåò äîñòóïà ê Twitter"
OverbyteIcsCharsetUtils_sCyrillicWindows, "Cyrillic (Windows)"
OverbyteIcsCharsetUtils_sEstonianISO, "Estonian (ISO)"
OverbyteIcsCharsetUtils_sGreekISO, "Greek (ISO)"
OverbyteIcsCharsetUtils_sGreekWindows, "Greek (Windows)"
OverbyteIcsCharsetUtils_sHebrewISOLogical, "Hebrew (ISO-Logical)"
OverbyteIcsCharsetUtils_sHebrewISOVisual, "Hebrew (ISO-Visual)"
OverbyteIcsCharsetUtils_sHebrewWindows, "Hebrew (Windows)"
OverbyteIcsCharsetUtils_sJapaneseJIS, "Japanese (JIS)"
OverbyteIcsCharsetUtils_sKorean, "Korean"
OverbyteIcsCharsetUtils_sKoreanEUC, "Korean (EUC)"
OverbyteIcsCharsetUtils_sLatin9, "Latin 9 (ISO)"
OverbyteIcsCharsetUtils_sThaiWindows, "Thai (Windows)"
OverbyteIcsCharsetUtils_sTurkishISO, "Turkish (ISO)"
OverbyteIcsCharsetUtils_sTurkishWindows, "Turkish (Windows)"
OverbyteIcsCharsetUtils_sUnicodeUTF7, "Unicode (UTF-7)"
OverbyteIcsCharsetUtils_sUnicodeUTF8, "Unicode (UTF-8)"
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"
OverbyteIcsCharsetUtils_sArabicISO, "Arabic (ISO)"
OverbyteIcsCharsetUtils_sArabicWindows, "Arabic (Windows)"
OverbyteIcsCharsetUtils_sBalticISO, "Baltic (ISO)"
OverbyteIcsCharsetUtils_sBalticWindows, "Baltic (Windows)"
OverbyteIcsCharsetUtils_sCentralEuropeanISO, "Central European (ISO)"
OverbyteIcsCharsetUtils_sCentralEuropeanWindows, "Central European (Windows)"
OverbyteIcsCharsetUtils_sChineseTraditionalBig5, "Chinese Traditional (Big5)"
OverbyteIcsCharsetUtils_sChineseSimplifiedGB18030, "Chinese Simplified (GB18030)"
OverbyteIcsCharsetUtils_sChineseSimplifiedGB2312, "Chinese Simplified (GB2312)"
OverbyteIcsCharsetUtils_sChineseSimplifiedHZ, "Chinese Simplified (HZ)"
OverbyteIcsCharsetUtils_sCyrillicISO, "Cyrillic (ISO)"
OverbyteIcsCharsetUtils_sCyrillicKOI8R, "Cyrillic (KOI8-R)"
OverbyteIcsCharsetUtils_sCyrillicKOI8U, "Cyrillic (KOI8-U)"
NativeXml_sxeCDATAInRoot, "No CDATA allowed in root"
NativeXml_sxeRootElementNotDefined, "XML root element not defined."
NativeXml_sxeCodecStreamNotAssigned, "Encoding stream unassigned"
NativeXml_sxeUnsupportedEncoding, "Unsupported string encoding"
NativeXml_sxeCannotReadCodecForWriting, "Cannot read from a conversion stream opened for writing"
NativeXml_sxeCannotWriteCodecForReading, "Cannot write to an UTF stream opened for reading"
NativeXml_sxeCannotReadMultipeChar, "Cannot read multiple chars from conversion stream at once"
NativeXml_sxeCannotPerformSeek, "Cannot perform seek on codec stream"
NativeXml_sxeCannotSeekBeforeReadWrite, "Cannot seek before reading or writing in conversion stream"
NativeXml_sxeCannotWriteToOutputStream, "Cannot write to output stream"
NativeXml_sxeCannotConverToBool, "Cannot convert value to bool"
NativeXml_sxeCannotConvertToFloat, "Cannot convert value to float"
NativeXml_sxeSignificantDigitsOutOfRange, "Significant digits out of range"
BitlyParser_rcErrorResponse, "Îòâåò ñåðâåðà bit.ly: %s"
ComConst_SOleError, "OLE error %.8x"
ComConst_SNoMethod, "Method '%s' not supported by automation object"
BitlyAPI_rcOutputFormatError, "Ôîðìàò %s íå ïîääåðæèâàåòñÿ â çàïðîñå %s"
NativeXml_sxeErrorCalcStreamLength, "Error while calculating streamlength"
NativeXml_sxeMissingDataInBinaryStream, "Missing data in binary stream"
NativeXml_sxeMissingElementName, "Missing element name"
NativeXml_sxeMissingCloseTag, "Missing close tag in element %s"
NativeXml_sxeMissingDataAfterGreaterThan, "Missing data after \"<\" in element %s"
NativeXml_sxeMissingLessThanInCloseTag, "Missing \">\" in close tag of element %s"
NativeXml_sxeIncorrectCloseTag, "Incorrect close tag in element %s"
NativeXml_sxeIllegalCharInNodeName, "Illegal character in node name \"%s\""
NativeXml_sxeMoreThanOneRootElement, "More than one root element found in xml"
NativeXml_sxeMoreThanOneDeclaration, "More than one xml declaration found in xml"
NativeXml_sxeDeclarationMustBeFirstElem, "Xml declaration must be first element"
NativeXml_sxeMoreThanOneDoctype, "More than one doctype declaration found in root"
NativeXml_sxeDoctypeAfterRootElement, "Doctype declaration found after root element"
NativeXml_sxeNoRootElement, "No root element found in xml"
NativeXml_sxeIllegalElementType, "Illegal element type"
Consts_SWindowsVistaRequired, "%s requires Windows Vista or later"
Consts_SXPThemesRequired, "%s requires themes to be enabled"
Consts_STaskDlgButtonCaption, "Button%d"
Consts_STaskDlgRadioButtonCaption, "RadioButton%d"
Consts_SInvalidTaskDlgButtonCaption, "Caption cannot be empty"
ComStrs_sTabFailClear, "Failed to clear tab control"
ComStrs_sTabFailDelete, "Failed to delete tab at index %d"
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_sUDAssociated, "%s is already associated with %s"
ComStrs_sPageIndexError, "%d is an invalid PageIndex value. PageIndex must be between 0 and %d"
BitlyAPI_rcValidateError, "BIT.LY: Íåäåéñòâèòåëüíîå çíà÷åíèå API-key èëè Login"
BitlyAPI_rcQueryError, "Îøèáêà âûïîëíåíèÿ çàïðîñà"
Consts_SInvalidPrinterOp, "Operation not supported on selected printer"
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_SDockZoneVersionConflict, "Error loading dock zone from the stream. Expecting version %d, but found %d."
Consts_SSeparator, "Separator"
Consts_SANSIEncoding, "ANSI"
Consts_SASCIIEncoding, "ASCII"
Consts_SUnicodeEncoding, "Unicode"
Consts_SBigEndianEncoding, "Big Endian Unicode"
Consts_SUTF8Encoding, "UTF-8"
Consts_SUTF7Encoding, "UTF-7"
Consts_SPageControlNotSet, "PageControl must first be assigned"
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_SOutOfRange, "Value must be between %d and %d"
Consts_sAllFilter, "All"
Consts_SInsertLineError, "Unable to insert a line"
Consts_SInvalidClipFmt, "Invalid clipboard format"
Consts_SIconToClipboard, "Clipboard does not support Icons"
Consts_SCannotOpenClipboard, "Cannot open clipboard: %s"
Consts_SInvalidMemoSize, "Text exceeds memo capacity"
Consts_SMsgDlgAbort, "&Abort"
Consts_SMsgDlgRetry, "&Retry"
Consts_SMsgDlgIgnore, "&Ignore"
Consts_SMsgDlgAll, "&All"
Consts_SMsgDlgNoToAll, "N&o to All"
Consts_SMsgDlgYesToAll, "Yes to &All"
Consts_SMsgDlgClose, "&Close"
Consts_SmkcBkSp, "BkSp"
Consts_SmkcTab, "Tab"
Consts_SmkcEsc, "Esc"
Consts_SmkcEnter, "Enter"
Consts_SmkcSpace, "Space"
Consts_SmkcPgUp, "PgUp"
Consts_SmkcPgDn, "PgDn"
Consts_SmkcEnd, "End"
Consts_SmkcHome, "Home"
Consts_SAllButton, "&All"
Consts_SCannotDragForm, "Cannot drag a form"
Consts_SVMetafiles, "Metafiles"
Consts_SVEnhMetafiles, "Enhanced Metafiles"
Consts_SVIcons, "Icons"
Consts_SVBitmaps, "Bitmaps"
Consts_SVTIFFImages, "TIFF Images"
Consts_SMsgDlgWarning, "Warning"
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_SPrinterIndexError, "Printer index out of range"
Consts_SInvalidPrinter, "Printer selected is not valid"
Consts_SDeviceOnPort, "%s on %s"
Consts_SGroupIndexTooLow, "GroupIndex cannot be less than a previous menu item's GroupIndex"
Consts_SNoMDIForm, "Cannot create form. No MDI forms are currently active"
Consts_SImageCanvasNeedsBitmap, "Can only modify an image if it contains a bitmap"
Consts_SControlParentSetToSelf, "A control cannot have itself as its parent"
Consts_SOKButton, "OK"
Consts_SCancelButton, "Cancel"
Consts_SYesButton, "&Yes"
Consts_SNoButton, "&No"
Consts_SHelpButton, "&Help"
Consts_SCloseButton, "&Close"
Consts_SIgnoreButton, "&Ignore"
Consts_SRetryButton, "&Retry"
Consts_SAbortButton, "Abort"
Consts_SImageWriteFail, "Failed to write ImageList data to stream"
Consts_SWindowDCError, "Error creating window device context"
Consts_SWindowClass, "Error creating window class"
Consts_SCannotFocus, "Cannot focus a disabled or invisible window"
Consts_SParentRequired, "Control '%s' has no parent window"
Consts_SParentGivenNotAParent, "Parent given is not a parent of '%s'"
Consts_SMDIChildNotVisible, "Cannot hide an MDI Child Form"
Consts_SVisibleChanged, "Cannot change Visible in OnShow or OnHide"
Consts_SCannotShowModal, "Cannot make a visible window modal"
Consts_SPropertyOutOfRange, "%s property out of range"
Consts_SMenuIndexError, "Menu index out of range"
Consts_SMenuReinserted, "Menu inserted twice"
Consts_SMenuNotFound, "Sub-menu is not in menu"
Consts_SNoTimers, "Not enough timers available"
Consts_SNotPrinting, "Printer is not currently printing"
Consts_SPrinting, "Printing in progress"
Consts_SInvalidMetafile, "Metafile is not valid"
Consts_SInvalidPixelFormat, "Invalid pixel format"
Consts_SInvalidImage, "Invalid image"
Consts_SScanLine, "Scan line index out of range"
Consts_SChangeIconSize, "Cannot change the size of an icon"
Consts_SChangeWicSize, "Cannot change the size of a WIC Image"
Consts_SOleGraphic, "Invalid operation on TOleGraphic"
Consts_SUnknownExtension, "Unknown picture file extension (.%s)"
Consts_SUnknownClipboardFormat, "Unsupported clipboard format"
Consts_SOutOfResources, "Out of system resources"
Consts_SNoCanvasHandle, "Canvas does not allow drawing"
Consts_SInvalidImageSize, "Invalid image size"
Consts_SInvalidImageList, "Invalid ImageList"
Consts_SReplaceImage, "Unable to Replace Image"
Consts_SImageIndexError, "Invalid ImageList Index"
Consts_SImageReadFail, "Failed to read ImageList data from stream"
RTLConsts_SInvalidDateTime, "''%s'' is not a valid date and time"
RTLConsts_SInvalidInteger, "''%s'' is not a valid integer value"
RTLConsts_SInvalidTime, "''%s'' is not a valid time"
RTLConsts_STimeEncodeError, "Invalid argument to time encode"
RTLConsts_SNoContext, "No context-sensitive help installed"
RTLConsts_SNoContextFound, "No help found for context"
RTLConsts_SNoIndex, "Unable to open Index"
RTLConsts_SNoSearch, "Unable to open Search"
RTLConsts_SNoTableOfContents, "Unable to find a Table of Contents"
RTLConsts_SNoTopics, "No topic-based help system installed"
RTLConsts_SNothingFound, "No help found for %s"
RTLConsts_SArgumentOutOfRange, "Argument out of range"
Consts_SInvalidTabPosition, "Tab position incompatible with current tab style"
Consts_SInvalidTabStyle, "Tab style incompatible with current tab position"
Consts_SInvalidBitmap, "Bitmap image is not valid"
Consts_SInvalidIcon, "Icon image is not valid"
RTLConsts_SThreadCreateError, "Thread creation error: %s"
RTLConsts_SThreadError, "Thread Error: %s (%d)"
RTLConsts_SThreadExternalTerminate, "Cannot terminate an externally created thread"
RTLConsts_SThreadExternalWait, "Cannot wait for an externally created thread"
RTLConsts_SThreadStartError, "Cannot call Start on a running or suspended thread"
RTLConsts_SParamIsNegative, "Parameter %s cannot be a negative value"
RTLConsts_SInputBufferExceed, "Input buffer exceeded for %s = %d, %s = %d"
RTLConsts_SInvalidCharsInPath, "Invalid characters in path"
RTLConsts_SPathTooLong, "The specified path is too long"
RTLConsts_SPathNotFound, "The specified path was not found"
RTLConsts_SPathFormatNotSupported, "The path format is not supported"
RTLConsts_SDriveNotFound, "The drive cannot be found"
RTLConsts_SFileNotFound, "The specified file was not found"
RTLConsts_hNoFilterViewer, "No help viewer that supports filters"
RTLConsts_sInvalidTimeoutValue, "Invalid Timeout value: %s"
RTLConsts_SInvalidDate, "''%s'' is not a valid date"
RTLConsts_SListCountError, "List count out of bounds (%d)"
RTLConsts_SListIndexError, "List index out of bounds (%d)"
RTLConsts_SMemoryStreamError, "Out of memory while expanding memory stream"
RTLConsts_SNoComSupport, "%s has not been registered as a COM class"
RTLConsts_SPropertyException, "Error reading %s%s%s: %s"
RTLConsts_SReadError, "Stream read error"
RTLConsts_SReadOnlyProperty, "Property is read-only"
RTLConsts_SRegCreateFailed, "Failed to create key %s"
RTLConsts_SRegGetDataFailed, "Failed to get data for '%s'"
RTLConsts_SRegSetDataFailed, "Failed to set data for '%s'"
RTLConsts_SResNotFound, "Resource %s not found"
RTLConsts_SSeekNotImplemented, "%s.Seek not implemented"
RTLConsts_SSortedListError, "Operation not allowed on sorted list"
RTLConsts_SUnknownGroup, "%s not in a class registration group"
RTLConsts_SUnknownProperty, "Property %s does not exist"
RTLConsts_SWriteError, "Stream write error"
RTLConsts_SDuplicateClass, "A class named %s already exists"
RTLConsts_SDuplicateItem, "List does not allow duplicates ($0%x)"
RTLConsts_SDuplicateName, "A component named %s already exists"
RTLConsts_SDuplicateString, "String list does not allow duplicates"
RTLConsts_SFCreateErrorEx, "Cannot create file \"%s\". %s"
RTLConsts_SFOpenErrorEx, "Cannot open file \"%s\". %s"
RTLConsts_SIniFileWriteError, "Unable to write to %s"
RTLConsts_SInvalidFileName, "Invalid file name - %s"
RTLConsts_SInvalidImage, "Invalid stream format"
RTLConsts_SInvalidName, "''%s'' is not a valid component name"
RTLConsts_SInvalidProperty, "Invalid property value"
RTLConsts_SInvalidPropertyElement, "Invalid property element: %s"
RTLConsts_SInvalidPropertyPath, "Invalid property path"
RTLConsts_SInvalidPropertyValue, "Invalid property value"
RTLConsts_SInvalidRegType, "Invalid data type for '%s'"
RTLConsts_SListCapacityError, "List capacity out of bounds (%d)"
SysConst_SLongDayNameFri, "Friday"
SysConst_SLongDayNameSat, "Saturday"
SysConst_SCannotCreateDir, "Unable to create directory"
SysConst_SInvalidSourceArray, "Invalid source array"
SysConst_SInvalidDestinationArray, "Invalid destination array"
SysConst_SCharIndexOutOfBounds, "Character index out of bounds (%d)"
SysConst_SByteIndexOutOfBounds, "Start index out of bounds (%d)"
SysConst_SInvalidCharCount, "Invalid count (%d)"
SysConst_SInvalidDestinationIndex, "Invalid destination index (%d)"
SysConst_SInvalidCodePage, "Invalid code page"
RTLConsts_SAncestorNotFound, "Ancestor for '%s' not found"
RTLConsts_SAssignError, "Cannot assign a %s to a %s"
RTLConsts_SBitsIndexError, "Bits index out of range"
RTLConsts_SCantWriteResourceStreamError, "Can't write to a read-only resource stream"
RTLConsts_SCheckSynchronizeError, "CheckSynchronize called from thread $%x, which is NOT the main thread"
RTLConsts_SClassNotFound, "Class %s not found"
SysConst_SLongMonthNameSep, "September"
SysConst_SLongMonthNameOct, "October"
SysConst_SLongMonthNameNov, "November"
SysConst_SLongMonthNameDec, "December"
SysConst_SShortDayNameSun, "Sun"
SysConst_SShortDayNameMon, "Mon"
SysConst_SShortDayNameTue, "Tue"
SysConst_SShortDayNameWed, "Wed"
SysConst_SShortDayNameThu, "Thu"
SysConst_SShortDayNameFri, "Fri"
SysConst_SShortDayNameSat, "Sat"
SysConst_SLongDayNameSun, "Sunday"
SysConst_SLongDayNameMon, "Monday"
SysConst_SLongDayNameTue, "Tuesday"
SysConst_SLongDayNameWed, "Wednesday"
SysConst_SLongDayNameThu, "Thursday"
SysConst_SShortMonthNameMay, "May"
SysConst_SShortMonthNameJun, "Jun"
SysConst_SShortMonthNameJul, "Jul"
SysConst_SShortMonthNameAug, "Aug"
SysConst_SShortMonthNameSep, "Sep"
SysConst_SShortMonthNameOct, "Oct"
SysConst_SShortMonthNameNov, "Nov"
SysConst_SShortMonthNameDec, "Dec"
SysConst_SLongMonthNameJan, "January"
SysConst_SLongMonthNameFeb, "February"
SysConst_SLongMonthNameMar, "March"
SysConst_SLongMonthNameApr, "April"
SysConst_SLongMonthNameMay, "May"
SysConst_SLongMonthNameJun, "June"
SysConst_SLongMonthNameJul, "July"
SysConst_SLongMonthNameAug, "August"
SysConst_SVarUnexpected, "Unexpected variant error"
SysConst_SExternalException, "External exception %x"
SysConst_SAssertionFailed, "Assertion failed"
SysConst_SIntfCastError, "Interface not supported"
SysConst_SSafecallException, "Exception in safecall method"
SysConst_SMonitorLockException, "Object lock not owned"
SysConst_SNoMonitorSupportException, "Monitor support function not initialized"
SysConst_SAssertError, "%s (%s, line %d)"
SysConst_SAbstractError, "Abstract Error"
SysConst_SModuleAccessViolation, "Access violation at address %p in module '%s'. %s of address %p"
SysConst_SOSError, "System Error. Code: %d.\r\n%s"
SysConst_SUnkOSError, "A call to an OS function failed"
SysConst_SShortMonthNameJan, "Jan"
SysConst_SShortMonthNameFeb, "Feb"
SysConst_SShortMonthNameMar, "Mar"
SysConst_SShortMonthNameApr, "Apr"
SysConst_SVarArrayBounds, "Variant or safe array index out of bounds"
SysConst_SVarArrayLocked, "Variant or safe array is locked"
SysConst_SInvalidVarCast, "Invalid variant type conversion"
SysConst_SInvalidVarOp, "Invalid variant operation"
SysConst_SInvalidVarNullOp, "Invalid NULL variant operation"
SysConst_SInvalidVarOpWithHResultWithPrefix, "Invalid variant operation (%s%.8x)\n%s"
SysConst_SVarTypeOutOfRangeWithPrefix, "Custom variant type (%s%.4x) is out of range"
SysConst_SVarTypeAlreadyUsedWithPrefix, "Custom variant type (%s%.4x) already used by %s"
SysConst_SVarTypeNotUsableWithPrefix, "Custom variant type (%s%.4x) is not usable"
SysConst_SVarTypeTooManyCustom, "Too many custom variant types have been registered"
SysConst_SVarTypeCouldNotConvert, "Could not convert variant of type (%s) into type (%s)"
SysConst_SVarTypeConvertOverflow, "Overflow while converting variant of type (%s) into type (%s)"
SysConst_SVarOverflow, "Variant overflow"
SysConst_SVarInvalid, "Invalid argument"
SysConst_SVarBadType, "Invalid variant type"
SysConst_SVarNotImplemented, "Operation not supported"
SysConst_SInvalidPointer, "Invalid pointer operation"
SysConst_SInvalidCast, "Invalid class typecast"
SysConst_SAccessViolationArg3, "Access violation at address %p. %s of address %p"
SysConst_SAccessViolationNoArg, "Access violation"
SysConst_SStackOverflow, "Stack overflow"
SysConst_SControlC, "Control-C hit"
SysConst_SPrivilege, "Privileged instruction"
SysConst_SException, "Exception %s in module %s at %p.\r\n%s%s\r\n"
SysConst_SExceptTitle, "Application Error"
SysConst_SInvalidFormat, "Format '%s' invalid or incompatible with argument"
SysConst_SArgumentMissing, "No argument for format '%s'"
SysConst_SDispatchError, "Variant method calls not supported"
SysConst_SReadAccess, "Read"
SysConst_SWriteAccess, "Write"
SysConst_SFormatTooLong, "Format string too long"
SysConst_SVarArrayCreate, "Error creating variant or safe array"
SysConst_SInvalidFloat, "'%s' is not a valid floating point value"
SysConst_SDateEncodeError, "Invalid argument to date encode"
SysConst_SOutOfMemory, "Out of memory"
SysConst_SInOutError, "I/O error %d"
SysConst_STooManyOpenFiles, "Too many open files"
SysConst_SAccessDenied, "File access denied"
SysConst_SEndOfFile, "Read beyond end of file"
SysConst_SDiskFull, "Disk full"
SysConst_SInvalidInput, "Invalid numeric input"
SysConst_SDivByZero, "Division by zero"
SysConst_SRangeError, "Range check error"
SysConst_SIntOverflow, "Integer overflow"
SysConst_SInvalidOp, "Invalid floating point operation"
SysConst_SZeroDivide, "Floating point division by zero"
SysConst_SOverflow, "Floating point overflow"
SysConst_SUnderflow, "Floating point underflow"
END
/* c:\program files\embarcadero\rad studio\7.0\lib\character.res */
/* c:\program files\embarcadero\rad studio\7.0\lib\Controls.res */
/* uAbout.dfm */
/* c:\program files\embarcadero\rad studio\7.0\lib\Buttons.res */
/* c:\program files\embarcadero\rad studio\7.0\lib\SPIN.RES */
/* c:\program files\embarcadero\rad studio\7.0\lib\CategoryButtons.res */
/* uTwitter.dfm */
/* TwitAuth.dfm */
/* udeshifr.dfm */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\sStrings.res */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\SRES.RES */
/* c:\program files\embarcadero\rad studio\7.0\lib\FileCtrl.res */
/* c:\program files\embarcadero\rad studio\7.0\lib\ExtDlgs.res */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\acPathDialog.DFM */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\sPopupClndr.dfm */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\sCalcUnit.dfm */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\sxb.res */
/* E:\Distr\_Programming\Alpha_Scins_2010\D2010\sColorDialog.DFM */
/* uFFSender.dfm */
/* uReport.dfm */
/* OldMain.dfm */
/* uFFAuth.dfm */
/* D:\Google Login\СокÑаÑаÑÐµÐ»Ñ ÑÑÑлок\OldInterface\shrtOptions.dfm */
/* D:\Google Login\СокÑаÑаÑÐµÐ»Ñ ÑÑÑлок\OldInterface\shorter.res */
/* D:\Google Login\СокÑаÑаÑÐµÐ»Ñ ÑÑÑлок\OldInterface\shorter.drf */