-
Notifications
You must be signed in to change notification settings - Fork 140
/
hfs.drc
1783 lines (1780 loc) · 97.4 KB
/
hfs.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
/* VER330
Generated by the Embarcadero 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 main_MSG_NUM_ADDR 64656
#define main_MSG_NUM_ADDR_DL 64657
#define main_MSG_MAX_LINES 64658
#define main_MSG_APACHE_LOG_FMT 64659
#define main_MSG_APACHE_LOG_FMT_LONG 64660
#define main_MSG_ICONS_ADDED 64661
#define main_MSG_DDNS_DISABLED 64662
#define main_MSG_MD5_WARN 64663
#define main_MSG_AUTO_MD5 64664
#define main_MSG_AUTO_MD5_LONG 64665
#define main_MSG_UPL_HOWTO 64666
#define main_MSG_EVENTS_HLP 64672
#define main_MSG_EDIT_RES 64673
#define main_MSG_TPL_USE_MACROS 64674
#define main_REMOVE_SHELL 64675
#define main_S_OFF 64676
#define main_S_ON 64677
#define main_LOG 64678
#define main_MSG_RE_NOIP 64679
#define main_MSG_TRAY_DEF 64680
#define main_MSG_CLEAN_START 64681
#define main_MSG_RESTORE_BAK 64682
#define main_MSG_EXT_ADDR_FAIL 64683
#define main_MSG_TO_EXPERT 64684
#define main_MSG_DONT_LOG_HINT 64685
#define main_MSG_DL_PERC 64686
#define main_MSG_UNINSTALL_WARN 64687
#define main_MSG_SELF_3 64688
#define main_MSG_SELF_6 64689
#define main_MSG_SELF_7 64690
#define main_MSG_RET_EXT 64691
#define main_MSG_SELF_CANT_ON 64692
#define main_MSG_SELF_CANT_LIST 64693
#define main_MSG_SELF_CANT_S 64694
#define main_MSG_SELF_ING 64695
#define main_MSG_TEST_CANC 64696
#define main_MSG_TEST_INET 64697
#define main_MSG_SELF_UNAV 64698
#define main_MSG_SELF_NO_INET 64699
#define main_MSG_SELF_NO_ANSWER 64700
#define main_MSG_OPEN_BROW 64701
#define main_MSG_OPEN_BROW_LONG 64702
#define main_MSG_HIDE_PORT 64703
#define main_MSG_RESET_TOT 64704
#define main_MSG_DISAB_FIND_EXT 64705
#define main_MSG_ENT_URL 64706
#define main_MSG_ENT_URL_LONG 64707
#define main_MSG_ENT_USR 64708
#define main_MSG_ENT_PWD 64709
#define main_MSG_ENT_HOST 64710
#define main_MSG_ENT_HOST_LONG 64711
#define main_MSG_HOST_FORM 64712
#define main_MSG_MIN_SPACE 64713
#define main_MSG_MIN_SPACE_LONG 64714
#define main_MSG_REN_PART 64715
#define main_MSG_REN_PART_LONG 64716
#define main_MSG_SELF_BEFORE 64717
#define main_MSG_SELF_OK 64718
#define main_MSG_SELF_OK_PORT 64719
#define main_MSG_LOG_FILE 64720
#define main_MSG_LOG_FILE_LONG 64721
#define main_MSG_SET_URL 64722
#define main_MSG_SET_URL_LONG 64723
#define main_MSG_REALM 64724
#define main_MSG_REALM_LONG 64725
#define main_MSG_INACT_TIMEOUT 64726
#define main_MSG_INACT_TIMEOUT_LONG 64727
#define main_MSG_CHANGES_LOST 64728
#define main_MSG_FLAG_NEW 64729
#define main_MSG_FLAG_NEW_LONG 64730
#define main_MSG_DONT_LOG_MASK 64731
#define main_MSG_DONT_LOG_MASK_LONG 64732
#define main_MSG_CUST_IP 64733
#define main_MSG_CUST_IP_LONG 64734
#define main_MSG_NO_EXT_IP 64735
#define main_MSG_TENTH_SEC 64736
#define main_MSG_LOADING_VFS 64737
#define main_MSG_VFS_OLD 64738
#define main_MSG_UNK_FK 64739
#define main_MSG_VIS_ONLY_ANON 64740
#define main_MSG_AUTO_DISABLED 64741
#define main_MSG_CORRUPTED 64742
#define main_MSG_MACROS_FOUND 64743
#define main_MSG_UPD_INFO 64744
#define main_MSG_NEWER 64745
#define main_MSG_SRC_UPD 64746
#define main_ARE_EXPERT 64747
#define main_ARE_EASY 64748
#define main_SW2EXPERT 64749
#define main_SW2EASY 64750
#define main_MSG_DL_TIMEOUT_LONG 64751
#define main_MSG_NEWER_INCOMP 64752
#define main_MSG_ZLIB 64753
#define main_MSG_BAKAVAILABLE 64754
#define main_MSG_CANT_LOAD_SAVE 64755
#define main_MSG_OPEN_VFS 64756
#define main_LIMIT 64757
#define main_TOP_SPEED 64758
#define main_MSG_MAX_BW 64759
#define main_MSG_LIM0 64760
#define main_MSG_MAX_BW_1 64761
#define main_MSG_GRAPH_RATE_MENU 64762
#define main_MSG_MAX_CON_LONG 64763
#define main_MSG_WARN_CONN 64764
#define main_MSG_WARN_ACT_DL 64765
#define main_MSG_MAX_CON_SING_LONG 64766
#define main_MSG_GRAPH_RATE 64767
#define main_MSG_VFS_DONT_CONS_DL_MASK 64768
#define main_MSG_VFS_INHERITED 64769
#define main_MSG_VFS_EXTERNAL 64770
#define main_MSG_CON_HINT 64771
#define main_MSG_CON_STATE_IDLE 64772
#define main_MSG_CON_STATE_REQ 64773
#define main_MSG_CON_STATE_RCV 64774
#define main_MSG_CON_STATE_THINK 64775
#define main_MSG_CON_STATE_REP 64776
#define main_MSG_CON_STATE_SEND 64777
#define main_MSG_CON_STATE_DISC 64778
#define main_MSG_TPL_RESET 64779
#define main_MSG_ALLO_REF 64780
#define main_MSG_ALLO_REF_LONG 64781
#define main_MSG_BETTERSTOP 64782
#define main_MSG_BADCRC 64783
#define main_MSG_VFS_HIDE_EMPTY 64784
#define main_MSG_VFS_NOT_BROW 64785
#define main_MSG_VFS_HIDE_EMPTY_FLD 64786
#define main_MSG_VFS_HIDE_EXT 64787
#define main_MSG_VFS_ARCABLE 64788
#define main_MSG_VFS_DEF_MASK 64789
#define main_MSG_VFS_ACCESS 64790
#define main_MSG_VFS_UPLOAD 64791
#define main_MSG_VFS_DELETE 64792
#define main_MSG_VFS_COMMENT 64793
#define main_MSG_VFS_REALM 64794
#define main_MSG_VFS_DIFF_TPL 64795
#define main_MSG_VFS_FILES_FLT 64796
#define main_MSG_VFS_FLD_FLT 64797
#define main_MSG_VFS_UPL_FLT 64798
#define main_MSG_VFS_DONT_CONS_DL 64799
#define main_IN_SPEED 64800
#define main_BANS 64801
#define main_MEMORY 64802
#define main_CUST_TPL 64803
#define main_VFS_ITEMS 64804
#define main_MSG_ITEM_EXISTS 64805
#define main_MSG_INSTALL_TPL 64806
#define main_MSG_FOLDER_UPLOAD 64807
#define main_MSG_VFS_DRAG_INVIT 64808
#define main_MSG_VFS_URL 64809
#define main_MSG_VFS_PATH 64810
#define main_MSG_VFS_SIZE 64811
#define main_MSG_VFS_DLS 64812
#define main_MSG_VFS_INVISIBLE 64813
#define main_MSG_VFS_DL_FORB 64814
#define main_MSG_VFS_DONT_LOG 64815
#define main_MSG_UPD_DL 64816
#define main_MSG_UPDATE 64817
#define main_MSG_REQUESTING 64818
#define main_MSG_CHK_UPD 64819
#define main_MSG_CHK_UPD_FAIL 64820
#define main_MSG_CHK_UPD_HEAD 64821
#define main_MSG_CHK_UPD_VER 64822
#define main_MSG_CHK_UPD_VER_EXT 64823
#define main_MSG_CHK_UPD_NONE 64824
#define main_TO_CLIP 64825
#define main_ALREADY_CLIP 64826
#define main_MSG_NO_SPACE 64827
#define main_CONN 64828
#define main_TOT_IN 64829
#define main_TOT_OUT 64830
#define main_OUT_SPEED 64831
#define main_MSG_FILE_ADD_ABORT 64832
#define main_MSG_ADDING 64833
#define main_MSG_INV_FILENAME 64834
#define main_MSG_DELETE 64835
#define main_AUTOSAVE 64836
#define main_SECONDS 64837
#define main_MSG_SPD_LIMIT_SING 64838
#define main_MSG_SPD_LIMIT 64839
#define main_MSG_AUTO_SAVE 64840
#define main_MSG_AUTO_SAVE_LONG 64841
#define main_MSG_MIN 64842
#define main_MSG_BAN 64843
#define main_MSG_CANT_SAVE_OPT 64844
#define main_MSG_UPD_SAVE_ERROR 64845
#define main_MSG_UPD_REQ_ONLY1 64846
#define main_MSG_UPD_WAIT 64847
#define main_MSG_LOG_HEAD 64848
#define main_MSG_LOG_NOT_MOD 64849
#define main_MSG_LOG_REDIR 64850
#define main_MSG_LOG_NOT_SERVED 64851
#define main_MSG_LOG_UPL 64852
#define main_MSG_LOG_UPLOADED 64853
#define main_MSG_LOG_UPL_FAIL 64854
#define main_MSG_LOG_DL 64855
#define main_MSG_LOGIN_FAILED 64856
#define main_MSG_MIN_DISK_REACHED 64857
#define main_MSG_UPL_NAME_FORB 64858
#define main_MSG_UPL_CANT_CREATE 64859
#define main_FINGERPRINT 64860
#define main_NO_FINGERPRINT 64861
#define main_MSG_SAVE_VFS 64862
#define main_MSG_INP_COMMENT 64863
#define main_MSG_BAN_CMT 64864
#define main_MSG_BAN_CMT_LONG 64865
#define main_MSG_BREAK_DYN_DNS 64866
#define main_MSG_CANT_OPEN_PORT 64867
#define main_MSG_PORT_USED_BY 64868
#define main_MSG_PORT_BLOCKED 64869
#define main_MSG_KICK_ALL 64870
#define main_MSG_TPL_INCOMPATIBLE 64871
#define main_MSG_LOG_SERVER_START 64872
#define main_MSG_LOG_SERVER_STOP 64873
#define main_MSG_LOG_CONNECTED 64874
#define main_MSG_LOG_DISC_SRV 64875
#define main_MSG_LOG_DISC 64876
#define main_MSG_LOG_GOT 64877
#define main_MSG_LOG_BYTES_SENT 64878
#define main_MSG_LOG_SERVED 64879
#define main_MSG_DDNS_FAIL 64880
#define main_MSG_DDNS_REPLY_SIZE 64881
#define main_MSG_DDNS_badauth 64882
#define main_MSG_DDNS_notfqdn 64883
#define main_MSG_DDNS_nohost 64884
#define main_MSG_DDNS_notyours 64885
#define main_MSG_DDNS_numhost 64886
#define main_MSG_DDNS_abuse 64887
#define main_MSG_DDNS_dnserr 64888
#define main_MSG_DDNS_911 64889
#define main_MSG_DDNS_notdonator 64890
#define main_MSG_DDNS_badagent 64891
#define main_MSG_BAN_MASK 64892
#define main_MSG_IP_MASK_LONG 64893
#define main_MSG_KICK_ADDR 64894
#define main_MSG_BAN_ALREADY 64895
#define main_MSG_ADDRESSES_EXCEED 64896
#define main_MSG_NO_TEMP 64897
#define main_MSG_ERROR_REGISTRY 64898
#define main_MSG_MANY_ITEMS 64899
#define main_MSG_ADD_TO_HFS 64900
#define main_MSG_SINGLE_INSTANCE 64901
#define main_MSG_COMM_ERROR 64902
#define main_MSG_CON_PAUSED 64903
#define main_MSG_CON_SENT 64904
#define main_MSG_CON_RECEIVED 64905
#define main_MSG_DDNS_NO_REPLY 64906
#define main_MSG_DDNS_OK 64907
#define main_MSG_DDNS_UNK 64908
#define main_MSG_DDNS_ERR 64909
#define main_MSG_DDNS_REQ 64910
#define main_MSG_DDNS_DOING 64911
#define main_MSG_MAX_CON_SING 64912
#define main_MSG_MAX_SIM_ADDR 64913
#define main_MSG_MAX_SIM_ADDR_DL 64914
#define main_MSG_MAX_SIM_DL_SING 64915
#define main_MSG_MAX_SIM_DL 64916
#define main_MSG_SET_LIMIT 64917
#define main_MSG_UNPROTECTED_LINKS 64918
#define main_MSG_SAME_NAME 64919
#define main_MSG_CONTINUE 64920
#define main_MSG_PROCESSING 64921
#define main_MSG_SPEED_KBS 64922
#define main_MSG_OPTIONS_SAVED 64923
#define main_MSG_SOME_LOCKED 64924
#define main_MSG_ITEM_LOCKED 64925
#define main_MSG_INVALID_VALUE 64926
#define main_MSG_EMPTY_NO_LIMIT 64927
#define JclResources_RsIntelCacheDescrF0 64928
#define JclResources_RsIntelCacheDescrF1 64929
#define JclResources_RsIntelCacheDescrFF 64930
#define JclResources_RsOSVersionWin8 64931
#define JclResources_RsOSVersionWinServer2012 64932
#define JclResources_RsOSVersionWin81 64933
#define JclResources_RsOSVersionWinServer2012R2 64934
#define classesLib_MSG_ANTIDOS_REPLY 64935
#define optionsDlg_MSG_INVERT_BAN 64936
#define main_S_PORT_LABEL 64937
#define main_S_PORT_ANY 64938
#define main_DISABLED 64939
#define main_S_OK 64940
#define main_MSG_MENU_VAL 64941
#define main_MSG_DL_TIMEOUT 64942
#define main_MSG_MAX_CON 64943
#define JclResources_RsIntelCacheDescrCA 64944
#define JclResources_RsIntelCacheDescrD0 64945
#define JclResources_RsIntelCacheDescrD1 64946
#define JclResources_RsIntelCacheDescrD2 64947
#define JclResources_RsIntelCacheDescrD6 64948
#define JclResources_RsIntelCacheDescrD7 64949
#define JclResources_RsIntelCacheDescrD8 64950
#define JclResources_RsIntelCacheDescrDC 64951
#define JclResources_RsIntelCacheDescrDD 64952
#define JclResources_RsIntelCacheDescrDE 64953
#define JclResources_RsIntelCacheDescrE2 64954
#define JclResources_RsIntelCacheDescrE3 64955
#define JclResources_RsIntelCacheDescrE4 64956
#define JclResources_RsIntelCacheDescrEA 64957
#define JclResources_RsIntelCacheDescrEB 64958
#define JclResources_RsIntelCacheDescrEC 64959
#define JclResources_RsIntelCacheDescr7D 64960
#define JclResources_RsIntelCacheDescr7F 64961
#define JclResources_RsIntelCacheDescr80 64962
#define JclResources_RsIntelCacheDescr82 64963
#define JclResources_RsIntelCacheDescr83 64964
#define JclResources_RsIntelCacheDescr84 64965
#define JclResources_RsIntelCacheDescr85 64966
#define JclResources_RsIntelCacheDescr86 64967
#define JclResources_RsIntelCacheDescr87 64968
#define JclResources_RsIntelCacheDescrB0 64969
#define JclResources_RsIntelCacheDescrB1 64970
#define JclResources_RsIntelCacheDescrB2 64971
#define JclResources_RsIntelCacheDescrB3 64972
#define JclResources_RsIntelCacheDescrB4 64973
#define JclResources_RsIntelCacheDescrBA 64974
#define JclResources_RsIntelCacheDescrC0 64975
#define JclResources_RsIntelCacheDescr5C 64976
#define JclResources_RsIntelCacheDescr5D 64977
#define JclResources_RsIntelCacheDescr60 64978
#define JclResources_RsIntelCacheDescr66 64979
#define JclResources_RsIntelCacheDescr67 64980
#define JclResources_RsIntelCacheDescr68 64981
#define JclResources_RsIntelCacheDescr70 64982
#define JclResources_RsIntelCacheDescr71 64983
#define JclResources_RsIntelCacheDescr72 64984
#define JclResources_RsIntelCacheDescr73 64985
#define JclResources_RsIntelCacheDescr76 64986
#define JclResources_RsIntelCacheDescr78 64987
#define JclResources_RsIntelCacheDescr79 64988
#define JclResources_RsIntelCacheDescr7A 64989
#define JclResources_RsIntelCacheDescr7B 64990
#define JclResources_RsIntelCacheDescr7C 64991
#define JclResources_RsIntelCacheDescr49 64992
#define JclResources_RsIntelCacheDescr4A 64993
#define JclResources_RsIntelCacheDescr4B 64994
#define JclResources_RsIntelCacheDescr4C 64995
#define JclResources_RsIntelCacheDescr4D 64996
#define JclResources_RsIntelCacheDescr4E 64997
#define JclResources_RsIntelCacheDescr4F 64998
#define JclResources_RsIntelCacheDescr50 64999
#define JclResources_RsIntelCacheDescr51 65000
#define JclResources_RsIntelCacheDescr52 65001
#define JclResources_RsIntelCacheDescr55 65002
#define JclResources_RsIntelCacheDescr56 65003
#define JclResources_RsIntelCacheDescr57 65004
#define JclResources_RsIntelCacheDescr59 65005
#define JclResources_RsIntelCacheDescr5A 65006
#define JclResources_RsIntelCacheDescr5B 65007
#define JclResources_RsIntelCacheDescr30 65008
#define JclResources_RsIntelCacheDescr39 65009
#define JclResources_RsIntelCacheDescr3A 65010
#define JclResources_RsIntelCacheDescr3B 65011
#define JclResources_RsIntelCacheDescr3C 65012
#define JclResources_RsIntelCacheDescr3D 65013
#define JclResources_RsIntelCacheDescr3E 65014
#define JclResources_RsIntelCacheDescr40 65015
#define JclResources_RsIntelCacheDescr41 65016
#define JclResources_RsIntelCacheDescr42 65017
#define JclResources_RsIntelCacheDescr43 65018
#define JclResources_RsIntelCacheDescr44 65019
#define JclResources_RsIntelCacheDescr45 65020
#define JclResources_RsIntelCacheDescr46 65021
#define JclResources_RsIntelCacheDescr47 65022
#define JclResources_RsIntelCacheDescr48 65023
#define JclResources_RsIntelCacheDescr04 65024
#define JclResources_RsIntelCacheDescr05 65025
#define JclResources_RsIntelCacheDescr06 65026
#define JclResources_RsIntelCacheDescr08 65027
#define JclResources_RsIntelCacheDescr09 65028
#define JclResources_RsIntelCacheDescr0A 65029
#define JclResources_RsIntelCacheDescr0B 65030
#define JclResources_RsIntelCacheDescr0C 65031
#define JclResources_RsIntelCacheDescr0D 65032
#define JclResources_RsIntelCacheDescr0E 65033
#define JclResources_RsIntelCacheDescr21 65034
#define JclResources_RsIntelCacheDescr22 65035
#define JclResources_RsIntelCacheDescr23 65036
#define JclResources_RsIntelCacheDescr25 65037
#define JclResources_RsIntelCacheDescr29 65038
#define JclResources_RsIntelCacheDescr2C 65039
#define Vcl_Imaging_GIFConsts_sProgressLoading 65040
#define Vcl_Imaging_GIFConsts_sProgressSaving 65041
#define Vcl_Imaging_GIFConsts_sProgressConverting 65042
#define Vcl_Imaging_GIFConsts_sProgressRendering 65043
#define Vcl_Imaging_GIFConsts_sProgressCopying 65044
#define Vcl_Imaging_GIFConsts_sProgressOptimizing 65045
#define OverbyteIcsHttpContCod_ERR_GETCODING_OVERRIDE 65046
#define JclResources_RsEReplacementChar 65047
#define JclResources_RsUnableToOpenKeyRead 65048
#define JclResources_RsUnableToAccessValue 65049
#define JclResources_RsWrongDataType 65050
#define JclResources_RsInconsistentPath 65051
#define JclResources_RsIntelCacheDescr00 65052
#define JclResources_RsIntelCacheDescr01 65053
#define JclResources_RsIntelCacheDescr02 65054
#define JclResources_RsIntelCacheDescr03 65055
#define Vcl_Imaging_GIFConsts_sInvalidData 65056
#define Vcl_Imaging_GIFConsts_sBadSize 65057
#define Vcl_Imaging_GIFConsts_sScreenSizeExceeded 65058
#define Vcl_Imaging_GIFConsts_sNoColorTable 65059
#define Vcl_Imaging_GIFConsts_sBadPixelCoordinates 65060
#define Vcl_Imaging_GIFConsts_sInvalidPixelFormat 65061
#define Vcl_Imaging_GIFConsts_sBadDimension 65062
#define Vcl_Imaging_GIFConsts_sNoDIB 65063
#define Vcl_Imaging_GIFConsts_sInvalidStream 65064
#define Vcl_Imaging_GIFConsts_sInvalidColor 65065
#define Vcl_Imaging_GIFConsts_sInvalidBitSize 65066
#define Vcl_Imaging_GIFConsts_sEmptyColorMap 65067
#define Vcl_Imaging_GIFConsts_sEmptyImage 65068
#define Vcl_Imaging_GIFConsts_sMultipleGCE 65069
#define Vcl_Imaging_GIFConsts_sNoPalette 65070
#define Vcl_Imaging_GIFConsts_sGIFImageFile 65071
#define Vcl_Imaging_GIFConsts_sBadColorIndex 65072
#define Vcl_Imaging_GIFConsts_sBadColorIndexFixed 65073
#define Vcl_Imaging_GIFConsts_sGIFErrorSaveEmpty 65074
#define Vcl_Imaging_GIFConsts_sBadSignature 65075
#define Vcl_Imaging_GIFConsts_sScreenBadColorSize 65076
#define Vcl_Imaging_GIFConsts_sImageBadColorSize 65077
#define Vcl_Imaging_GIFConsts_sUnknownExtension 65078
#define Vcl_Imaging_GIFConsts_sBadExtensionLabel 65079
#define Vcl_Imaging_GIFConsts_sOutOfMemDIB 65080
#define Vcl_Imaging_GIFConsts_sDecodeTooFewBits 65081
#define Vcl_Imaging_GIFConsts_sDecodeCircular 65082
#define Vcl_Imaging_GIFConsts_sBadTrailer 65083
#define Vcl_Imaging_GIFConsts_sBadExtensionInstance 65084
#define Vcl_Imaging_GIFConsts_sBadBlockSize 65085
#define Vcl_Imaging_GIFConsts_sBadBlock 65086
#define Vcl_Imaging_GIFConsts_sUnsupportedClass 65087
#define OverbyteIcsCharsetUtils_sHebrewISOVisual 65088
#define OverbyteIcsCharsetUtils_sHebrewWindows 65089
#define OverbyteIcsCharsetUtils_sJapaneseJIS 65090
#define OverbyteIcsCharsetUtils_sKorean 65091
#define OverbyteIcsCharsetUtils_sKoreanEUC 65092
#define OverbyteIcsCharsetUtils_sLatin9 65093
#define OverbyteIcsCharsetUtils_sThaiWindows 65094
#define OverbyteIcsCharsetUtils_sTurkishISO 65095
#define OverbyteIcsCharsetUtils_sTurkishWindows 65096
#define OverbyteIcsCharsetUtils_sUnicodeUTF7 65097
#define OverbyteIcsCharsetUtils_sUnicodeUTF8 65098
#define OverbyteIcsCharsetUtils_sVietnameseWindows 65099
#define OverbyteIcsCharsetUtils_sWesternEuropeanISO 65100
#define OverbyteIcsCharsetUtils_sWesternEuropeanWindows 65101
#define Vcl_Imaging_GIFConsts_sOutOfData 65102
#define Vcl_Imaging_GIFConsts_sTooManyColors 65103
#define OverbyteIcsCharsetUtils_sBalticISO 65104
#define OverbyteIcsCharsetUtils_sBalticWindows 65105
#define OverbyteIcsCharsetUtils_sCentralEuropeanISO 65106
#define OverbyteIcsCharsetUtils_sCentralEuropeanWindows 65107
#define OverbyteIcsCharsetUtils_sChineseTraditionalBig5 65108
#define OverbyteIcsCharsetUtils_sChineseSimplifiedGB18030 65109
#define OverbyteIcsCharsetUtils_sChineseSimplifiedGB2312 65110
#define OverbyteIcsCharsetUtils_sChineseSimplifiedHZ 65111
#define OverbyteIcsCharsetUtils_sCyrillicISO 65112
#define OverbyteIcsCharsetUtils_sCyrillicKOI8R 65113
#define OverbyteIcsCharsetUtils_sCyrillicKOI8U 65114
#define OverbyteIcsCharsetUtils_sCyrillicWindows 65115
#define OverbyteIcsCharsetUtils_sEstonianISO 65116
#define OverbyteIcsCharsetUtils_sGreekISO 65117
#define OverbyteIcsCharsetUtils_sGreekWindows 65118
#define OverbyteIcsCharsetUtils_sHebrewISOLogical 65119
#define Vcl_ComStrs_sTabFailSet 65120
#define Vcl_ComStrs_sTabFailSetObject 65121
#define Vcl_ComStrs_sTabMustBeMultiLine 65122
#define Vcl_ComStrs_sInvalidLevel 65123
#define Vcl_ComStrs_sInvalidLevelEx 65124
#define Vcl_ComStrs_sInvalidIndex 65125
#define Vcl_ComStrs_sInsertError 65126
#define Vcl_ComStrs_sInvalidOwner 65127
#define Vcl_ComStrs_sRichEditInsertError 65128
#define Vcl_ComStrs_sRichEditLoadFail 65129
#define Vcl_ComStrs_sRichEditSaveFail 65130
#define Vcl_ComStrs_sUDAssociated 65131
#define Vcl_ComStrs_sPageIndexError 65132
#define Vcl_ComStrs_sInvalidComCtl32 65133
#define OverbyteIcsCharsetUtils_sArabicISO 65134
#define OverbyteIcsCharsetUtils_sArabicWindows 65135
#define Vcl_Consts_SStyleHookClassRegistered 65136
#define Vcl_Consts_SStyleHookClassNotRegistered 65137
#define Vcl_Consts_SStyleInvalidParameter 65138
#define Vcl_Consts_SStyleFeatureNotSupported 65139
#define Vcl_Consts_SStyleNotRegistered 65140
#define Vcl_Consts_SStyleUnregisterError 65141
#define Vcl_Consts_SStyleNotRegisteredNoName 65142
#define Vcl_Consts_sBeginInvokeNoHandle 65143
#define System_Win_ComConst_SOleError 65144
#define System_Win_ComConst_SNoMethod 65145
#define System_Win_ComConst_SVarNotObject 65146
#define System_Win_ComConst_STooManyParams 65147
#define Vcl_ComStrs_sTabFailClear 65148
#define Vcl_ComStrs_sTabFailDelete 65149
#define Vcl_ComStrs_sTabFailRetrieve 65150
#define Vcl_ComStrs_sTabFailGetObject 65151
#define Vcl_Consts_SListBoxMustBeVirtual 65152
#define Vcl_Consts_SNoGetItemEventHandler 65153
#define Vcl_Consts_STrayIconRemoveError 65154
#define Vcl_Consts_SPageControlNotSet 65155
#define Vcl_Consts_SWindowsVistaRequired 65156
#define Vcl_Consts_STaskDlgButtonCaption 65157
#define Vcl_Consts_STaskDlgRadioButtonCaption 65158
#define Vcl_Consts_SInvalidTaskDlgButtonCaption 65159
#define Vcl_Consts_SStyleLoadError 65160
#define Vcl_Consts_SStyleLoadErrors 65161
#define Vcl_Consts_SStyleRegisterError 65162
#define Vcl_Consts_SStyleClassRegisterError 65163
#define Vcl_Consts_SStyleNotFound 65164
#define Vcl_Consts_SStyleClassNotFound 65165
#define Vcl_Consts_SStyleInvalidHandle 65166
#define Vcl_Consts_SStyleFormatError 65167
#define Vcl_Consts_SDockZoneVersionConflict 65168
#define Vcl_Consts_SMultiSelectRequired 65169
#define Vcl_Consts_SPromptArrayTooShort 65170
#define Vcl_Consts_SPromptArrayEmpty 65171
#define Vcl_Consts_SUsername 65172
#define Vcl_Consts_SPassword 65173
#define Vcl_Consts_SDomain 65174
#define Vcl_Consts_SLogin 65175
#define Vcl_Consts_SKeyCaption 65176
#define Vcl_Consts_SValueCaption 65177
#define Vcl_Consts_SKeyConflict 65178
#define Vcl_Consts_SKeyNotFound 65179
#define Vcl_Consts_SNoColumnMoving 65180
#define Vcl_Consts_SNoEqualsInKey 65181
#define Vcl_Consts_SSeparator 65182
#define Vcl_Consts_SErrorSettingCount 65183
#define Vcl_Consts_SmkcAlt 65184
#define Vcl_Consts_SOutOfRange 65185
#define Vcl_Consts_SDefaultFilter 65186
#define Vcl_Consts_sAllFilter 65187
#define Vcl_Consts_SInsertLineError 65188
#define Vcl_Consts_SInvalidClipFmt 65189
#define Vcl_Consts_SIconToClipboard 65190
#define Vcl_Consts_SCannotOpenClipboard 65191
#define Vcl_Consts_SInvalidMemoSize 65192
#define Vcl_Consts_SInvalidPrinterOp 65193
#define Vcl_Consts_SNoDefaultPrinter 65194
#define Vcl_Consts_SDuplicateMenus 65195
#define Vcl_Consts_SDockedCtlNeedsName 65196
#define Vcl_Consts_SDockTreeRemoveError 65197
#define Vcl_Consts_SDockZoneNotFound 65198
#define Vcl_Consts_SDockZoneHasNoCtl 65199
#define Vcl_Consts_SmkcTab 65200
#define Vcl_Consts_SmkcEsc 65201
#define Vcl_Consts_SmkcEnter 65202
#define Vcl_Consts_SmkcSpace 65203
#define Vcl_Consts_SmkcPgUp 65204
#define Vcl_Consts_SmkcPgDn 65205
#define Vcl_Consts_SmkcEnd 65206
#define Vcl_Consts_SmkcHome 65207
#define Vcl_Consts_SmkcLeft 65208
#define Vcl_Consts_SmkcUp 65209
#define Vcl_Consts_SmkcRight 65210
#define Vcl_Consts_SmkcDown 65211
#define Vcl_Consts_SmkcIns 65212
#define Vcl_Consts_SmkcDel 65213
#define Vcl_Consts_SmkcShift 65214
#define Vcl_Consts_SmkcCtrl 65215
#define Vcl_Consts_SMsgDlgError 65216
#define Vcl_Consts_SMsgDlgInformation 65217
#define Vcl_Consts_SMsgDlgConfirm 65218
#define Vcl_Consts_SMsgDlgYes 65219
#define Vcl_Consts_SMsgDlgNo 65220
#define Vcl_Consts_SMsgDlgOK 65221
#define Vcl_Consts_SMsgDlgCancel 65222
#define Vcl_Consts_SMsgDlgHelp 65223
#define Vcl_Consts_SMsgDlgAbort 65224
#define Vcl_Consts_SMsgDlgRetry 65225
#define Vcl_Consts_SMsgDlgIgnore 65226
#define Vcl_Consts_SMsgDlgAll 65227
#define Vcl_Consts_SMsgDlgNoToAll 65228
#define Vcl_Consts_SMsgDlgYesToAll 65229
#define Vcl_Consts_SMsgDlgClose 65230
#define Vcl_Consts_SmkcBkSp 65231
#define Vcl_Consts_SAbortButton 65232
#define Vcl_Consts_SAllButton 65233
#define Vcl_Consts_SCannotDragForm 65234
#define Vcl_Consts_SVMetafiles 65235
#define Vcl_Consts_SVEnhMetafiles 65236
#define Vcl_Consts_SVIcons 65237
#define Vcl_Consts_SVBitmaps 65238
#define Vcl_Consts_SVTIFFImages 65239
#define Vcl_Consts_SGridTooLarge 65240
#define Vcl_Consts_STooManyDeleted 65241
#define Vcl_Consts_SIndexOutOfRange 65242
#define Vcl_Consts_SFixedColTooBig 65243
#define Vcl_Consts_SFixedRowTooBig 65244
#define Vcl_Consts_SMaskErr 65245
#define Vcl_Consts_SMaskEditErr 65246
#define Vcl_Consts_SMsgDlgWarning 65247
#define Vcl_Consts_SPrinting 65248
#define Vcl_Consts_SPrinterIndexError 65249
#define Vcl_Consts_SInvalidPrinter 65250
#define Vcl_Consts_SDeviceOnPort 65251
#define Vcl_Consts_SGroupIndexTooLow 65252
#define Vcl_Consts_SNoMDIForm 65253
#define Vcl_Consts_SImageCanvasNeedsBitmap 65254
#define Vcl_Consts_SControlParentSetToSelf 65255
#define Vcl_Consts_SOKButton 65256
#define Vcl_Consts_SCancelButton 65257
#define Vcl_Consts_SYesButton 65258
#define Vcl_Consts_SNoButton 65259
#define Vcl_Consts_SHelpButton 65260
#define Vcl_Consts_SCloseButton 65261
#define Vcl_Consts_SIgnoreButton 65262
#define Vcl_Consts_SRetryButton 65263
#define Vcl_Consts_SWindowDCError 65264
#define Vcl_Consts_SWindowClass 65265
#define Vcl_Consts_SCannotFocus 65266
#define Vcl_Consts_SParentRequired 65267
#define Vcl_Consts_SControlPath 65268
#define Vcl_Consts_SParentGivenNotAParent 65269
#define Vcl_Consts_SMDIChildNotVisible 65270
#define Vcl_Consts_SVisibleChanged 65271
#define Vcl_Consts_SCannotShowModal 65272
#define Vcl_Consts_SScrollBarRange 65273
#define Vcl_Consts_SPropertyOutOfRange 65274
#define Vcl_Consts_SMenuIndexError 65275
#define Vcl_Consts_SMenuReinserted 65276
#define Vcl_Consts_SMenuNotFound 65277
#define Vcl_Consts_SNoTimers 65278
#define Vcl_Consts_SNotPrinting 65279
#define Vcl_Consts_SScanLine 65280
#define Vcl_Consts_SChangeIconSize 65281
#define Vcl_Consts_SChangeWicSize 65282
#define Vcl_Consts_SUnknownExtension 65283
#define Vcl_Consts_SUnknownClipboardFormat 65284
#define Vcl_Consts_SUnknownStreamFormat 65285
#define Vcl_Consts_SOutOfResources 65286
#define Vcl_Consts_SNoCanvasHandle 65287
#define Vcl_Consts_SInvalidTextFormatFlag 65288
#define Vcl_Consts_SInvalidImageSize 65289
#define Vcl_Consts_SInvalidImageList 65290
#define Vcl_Consts_SReplaceImage 65291
#define Vcl_Consts_SInsertImage 65292
#define Vcl_Consts_SImageIndexError 65293
#define Vcl_Consts_SImageReadFail 65294
#define Vcl_Consts_SImageWriteFail 65295
#define System_RTLConsts_sObserverNotAvailable 65296
#define System_RTLConsts_SInvalidDateString 65297
#define System_RTLConsts_SInvalidTimeString 65298
#define System_RTLConsts_SInvalidOffsetString 65299
#define System_RTLConsts_SHashCanNotUpdateMD5 65300
#define System_RTLConsts_SHashCanNotUpdateSHA1 65301
#define System_RTLConsts_SHashCanNotUpdateSHA2 65302
#define System_RTLConsts_sMustWaitOnOneEvent 65303
#define System_RTLConsts_sBeginInvokeDestroying 65304
#define Vcl_Consts_SInvalidTabPosition 65305
#define Vcl_Consts_SInvalidTabStyle 65306
#define Vcl_Consts_SInvalidBitmap 65307
#define Vcl_Consts_SInvalidIcon 65308
#define Vcl_Consts_SInvalidMetafile 65309
#define Vcl_Consts_SInvalidPixelFormat 65310
#define Vcl_Consts_SInvalidImage 65311
#define System_RTLConsts_SWindowsServer2008R2 65312
#define System_RTLConsts_SWindows2000 65313
#define System_RTLConsts_SWindowsXP 65314
#define System_RTLConsts_SWindowsServer2003 65315
#define System_RTLConsts_SWindowsServer2003R2 65316
#define System_RTLConsts_SWindowsServer2012 65317
#define System_RTLConsts_SWindowsServer2012R2 65318
#define System_RTLConsts_SWindowsServer2016 65319
#define System_RTLConsts_SWindows8 65320
#define System_RTLConsts_SWindows8Point1 65321
#define System_RTLConsts_SWindows10 65322
#define System_RTLConsts_sObserverUnsupported 65323
#define System_RTLConsts_sObserverMultipleSingleCast 65324
#define System_RTLConsts_sObserverNoInterface 65325
#define System_RTLConsts_sObserverNoSinglecastFound 65326
#define System_RTLConsts_sObserverNoMulticastFound 65327
#define System_RTLConsts_SArgumentNil 65328
#define System_RTLConsts_SGenericItemNotFound 65329
#define System_RTLConsts_SGenericDuplicateItem 65330
#define System_RTLConsts_SInsufficientRtti 65331
#define System_RTLConsts_SParameterCountMismatch 65332
#define System_RTLConsts_SNonPublicType 65333
#define System_RTLConsts_SByRefArgMismatch 65334
#define System_RTLConsts_SServiceNotFound 65335
#define System_RTLConsts_SVersionStr 65336
#define System_RTLConsts_SSPVersionStr 65337
#define System_RTLConsts_SVersion32 65338
#define System_RTLConsts_SVersion64 65339
#define System_RTLConsts_SWindows 65340
#define System_RTLConsts_SWindowsVista 65341
#define System_RTLConsts_SWindowsServer2008 65342
#define System_RTLConsts_SWindows7 65343
#define System_RTLConsts_sInvalidTimeoutValue 65344
#define System_RTLConsts_sSpinCountOutOfRange 65345
#define System_RTLConsts_sTimespanTooLong 65346
#define System_RTLConsts_sInvalidTimespanDuration 65347
#define System_RTLConsts_sTimespanValueCannotBeNan 65348
#define System_RTLConsts_sCannotNegateTimespan 65349
#define System_RTLConsts_sInvalidTimespanFormat 65350
#define System_RTLConsts_sTimespanElementTooLong 65351
#define System_RTLConsts_SNoContext 65352
#define System_RTLConsts_SNoContextFound 65353
#define System_RTLConsts_SNoIndex 65354
#define System_RTLConsts_SNoSearch 65355
#define System_RTLConsts_SNoTableOfContents 65356
#define System_RTLConsts_SNoTopics 65357
#define System_RTLConsts_SNothingFound 65358
#define System_RTLConsts_SArgumentOutOfRange 65359
#define System_RTLConsts_SThreadExternalTerminate 65360
#define System_RTLConsts_SThreadExternalWait 65361
#define System_RTLConsts_SThreadStartError 65362
#define System_RTLConsts_SThreadExternalCheckTerminated 65363
#define System_RTLConsts_SThreadExternalSetReturnValue 65364
#define System_RTLConsts_SParamIsNil 65365
#define System_RTLConsts_SParamIsNegative 65366
#define System_RTLConsts_SInputBufferExceed 65367
#define System_RTLConsts_SInvalidCharsInPath 65368
#define System_RTLConsts_SDriveNotFound 65369
#define System_RTLConsts_SLocalTimeInvalid 65370
#define System_RTLConsts_hNoFilterViewer 65371
#define System_RTLConsts_sArgumentInvalid 65372
#define System_RTLConsts_sArgumentOutOfRange_Index 65373
#define System_RTLConsts_sInvalidStringAndObjectArrays 65374
#define System_RTLConsts_sNoConstruct 65375
#define System_RTLConsts_SMemoryStreamError 65376
#define System_RTLConsts_SNoComSupport 65377
#define System_RTLConsts_SPropertyException 65378
#define System_RTLConsts_SReadError 65379
#define System_RTLConsts_SReadOnlyProperty 65380
#define System_RTLConsts_SRegCreateFailed 65381
#define System_RTLConsts_SRegGetDataFailed 65382
#define System_RTLConsts_SRegSetDataFailed 65383
#define System_RTLConsts_SResNotFound 65384
#define System_RTLConsts_SSeekNotImplemented 65385
#define System_RTLConsts_SSortedListError 65386
#define System_RTLConsts_SUnknownGroup 65387
#define System_RTLConsts_SUnknownProperty 65388
#define System_RTLConsts_SWriteError 65389
#define System_RTLConsts_SThreadCreateError 65390
#define System_RTLConsts_SThreadError 65391
#define System_RTLConsts_SDuplicateName 65392
#define System_RTLConsts_SDuplicateString 65393
#define System_RTLConsts_SFCreateErrorEx 65394
#define System_RTLConsts_SFOpenErrorEx 65395
#define System_RTLConsts_SInvalidImage 65396
#define System_RTLConsts_SInvalidMask 65397
#define System_RTLConsts_SInvalidName 65398
#define System_RTLConsts_SInvalidProperty 65399
#define System_RTLConsts_SInvalidPropertyElement 65400
#define System_RTLConsts_SInvalidPropertyPath 65401
#define System_RTLConsts_SInvalidPropertyType 65402
#define System_RTLConsts_SInvalidPropertyValue 65403
#define System_RTLConsts_SInvalidRegType 65404
#define System_RTLConsts_SListCapacityError 65405
#define System_RTLConsts_SListCountError 65406
#define System_RTLConsts_SListIndexError 65407
#define System_SysConst_SCharIndexOutOfBounds 65408
#define System_SysConst_SByteIndexOutOfBounds 65409
#define System_SysConst_SInvalidCharCount 65410
#define System_SysConst_SInvalidDestinationIndex 65411
#define System_SysConst_SInvalidCodePage 65412
#define System_SysConst_SInvalidEncodingName 65413
#define System_SysConst_SNoMappingForUnicodeCharacter 65414
#define System_SysConst_SInvalidStringBaseIndex 65415
#define System_RTLConsts_SAncestorNotFound 65416
#define System_RTLConsts_SAssignError 65417
#define System_RTLConsts_SBitsIndexError 65418
#define System_RTLConsts_SCantWriteResourceStreamError 65419
#define System_RTLConsts_SCheckSynchronizeError 65420
#define System_RTLConsts_SClassNotFound 65421
#define System_RTLConsts_SDuplicateClass 65422
#define System_RTLConsts_SDuplicateItem 65423
#define System_SysConst_SShortDayNameSun 65424
#define System_SysConst_SShortDayNameMon 65425
#define System_SysConst_SShortDayNameTue 65426
#define System_SysConst_SShortDayNameWed 65427
#define System_SysConst_SShortDayNameThu 65428
#define System_SysConst_SShortDayNameFri 65429
#define System_SysConst_SShortDayNameSat 65430
#define System_SysConst_SLongDayNameSun 65431
#define System_SysConst_SLongDayNameMon 65432
#define System_SysConst_SLongDayNameTue 65433
#define System_SysConst_SLongDayNameWed 65434
#define System_SysConst_SLongDayNameThu 65435
#define System_SysConst_SLongDayNameFri 65436
#define System_SysConst_SLongDayNameSat 65437
#define System_SysConst_SInvalidSourceArray 65438
#define System_SysConst_SInvalidDestinationArray 65439
#define System_SysConst_SShortMonthNameSep 65440
#define System_SysConst_SShortMonthNameOct 65441
#define System_SysConst_SShortMonthNameNov 65442
#define System_SysConst_SShortMonthNameDec 65443
#define System_SysConst_SLongMonthNameJan 65444
#define System_SysConst_SLongMonthNameFeb 65445
#define System_SysConst_SLongMonthNameMar 65446
#define System_SysConst_SLongMonthNameApr 65447
#define System_SysConst_SLongMonthNameMay 65448
#define System_SysConst_SLongMonthNameJun 65449
#define System_SysConst_SLongMonthNameJul 65450
#define System_SysConst_SLongMonthNameAug 65451
#define System_SysConst_SLongMonthNameSep 65452
#define System_SysConst_SLongMonthNameOct 65453
#define System_SysConst_SLongMonthNameNov 65454
#define System_SysConst_SLongMonthNameDec 65455
#define System_SysConst_SNoMonitorSupportException 65456
#define System_SysConst_SNotImplemented 65457
#define System_SysConst_SObjectDisposed 65458
#define System_SysConst_SAssertError 65459
#define System_SysConst_SAbstractError 65460
#define System_SysConst_SModuleAccessViolation 65461
#define System_SysConst_SOSError 65462
#define System_SysConst_SUnkOSError 65463
#define System_SysConst_SShortMonthNameJan 65464
#define System_SysConst_SShortMonthNameFeb 65465
#define System_SysConst_SShortMonthNameMar 65466
#define System_SysConst_SShortMonthNameApr 65467
#define System_SysConst_SShortMonthNameMay 65468
#define System_SysConst_SShortMonthNameJun 65469
#define System_SysConst_SShortMonthNameJul 65470
#define System_SysConst_SShortMonthNameAug 65471
#define System_SysConst_SVarTypeOutOfRangeWithPrefix 65472
#define System_SysConst_SVarTypeAlreadyUsedWithPrefix 65473
#define System_SysConst_SVarTypeNotUsableWithPrefix 65474
#define System_SysConst_SVarTypeTooManyCustom 65475
#define System_SysConst_SVarTypeCouldNotConvert 65476
#define System_SysConst_SVarTypeConvertOverflow 65477
#define System_SysConst_SVarOverflow 65478
#define System_SysConst_SVarInvalid 65479
#define System_SysConst_SVarBadType 65480
#define System_SysConst_SVarNotImplemented 65481
#define System_SysConst_SVarUnexpected 65482
#define System_SysConst_SExternalException 65483
#define System_SysConst_SAssertionFailed 65484
#define System_SysConst_SIntfCastError 65485
#define System_SysConst_SSafecallException 65486
#define System_SysConst_SMonitorLockException 65487
#define System_SysConst_SExceptTitle 65488
#define System_SysConst_SInvalidFormat 65489
#define System_SysConst_SArgumentMissing 65490
#define System_SysConst_SDispatchError 65491
#define System_SysConst_SReadAccess 65492
#define System_SysConst_SWriteAccess 65493
#define System_SysConst_SExecuteAccess 65494
#define System_SysConst_SInvalidAccess 65495
#define System_SysConst_SFormatTooLong 65496
#define System_SysConst_SVarArrayCreate 65497
#define System_SysConst_SVarArrayBounds 65498
#define System_SysConst_SVarArrayLocked 65499
#define System_SysConst_SInvalidVarCast 65500
#define System_SysConst_SInvalidVarOp 65501
#define System_SysConst_SInvalidVarNullOp 65502
#define System_SysConst_SInvalidVarOpWithHResultWithPrefix 65503
#define System_SysConst_SInvalidInput 65504
#define System_SysConst_SDivByZero 65505
#define System_SysConst_SRangeError 65506
#define System_SysConst_SIntOverflow 65507
#define System_SysConst_SInvalidOp 65508
#define System_SysConst_SZeroDivide 65509
#define System_SysConst_SOverflow 65510
#define System_SysConst_SUnderflow 65511
#define System_SysConst_SInvalidPointer 65512
#define System_SysConst_SInvalidCast 65513
#define System_SysConst_SAccessViolationArg3 65514
#define System_SysConst_SAccessViolationNoArg 65515
#define System_SysConst_SStackOverflow 65516
#define System_SysConst_SControlC 65517
#define System_SysConst_SPrivilege 65518
#define System_SysConst_SException 65519
#define System_SysConst_SUnknown 65520
#define System_SysConst_SInvalidInteger 65521
#define System_SysConst_SInvalidFloat 65522
#define System_SysConst_SInvalidDateTime 65523
#define System_SysConst_SInvalidTimeStamp 65524
#define System_SysConst_SInvalidGUID 65525
#define System_SysConst_STimeEncodeError 65526
#define System_SysConst_SDateEncodeError 65527
#define System_SysConst_SOutOfMemory 65528
#define System_SysConst_SInOutError 65529
#define System_SysConst_SFileNotFound 65530
#define System_SysConst_SInvalidUnknownFilename 65531
#define System_SysConst_STooManyOpenFiles 65532
#define System_SysConst_SAccessDenied 65533
#define System_SysConst_SEndOfFile 65534
#define System_SysConst_SDiskFull 65535
STRINGTABLE
BEGIN
main_MSG_NUM_ADDR, L"In this moment there are %d different addresses"
main_MSG_NUM_ADDR_DL, L"In this moment there are %d different addresses downloading"
main_MSG_MAX_LINES, L"Max lines on screen."
main_MSG_APACHE_LOG_FMT, L"Apache log file format"
main_MSG_APACHE_LOG_FMT_LONG, L"Here you can specify how to format the log file complying Apache standard.\rLeave blank to get bare copy of screen on file.\r\rExample:\r %h %l %u %t \"%r\" %>s %b"
main_MSG_ICONS_ADDED, L"%d new icons added"
main_MSG_DDNS_DISABLED, L"Dynamic DNS updater disabled"
main_MSG_MD5_WARN, L"This option creates an .md5 file for every new calculated fingerprint.\rUse with care to get not your disk invaded by these files."
main_MSG_AUTO_MD5, L"Auto fingerprint"
main_MSG_AUTO_MD5_LONG, L"When you add files and no fingerprint is found, it is calculated.\rTo avoid long waitings, set a limit to file size (in KiloBytes).\rLeave empty to disable, and have no fingerprint created."
main_MSG_UPL_HOWTO, L"1. Add a folder (choose \"real folder\")\r\rYou should now see a RED folder in your virtual file sytem, inside HFS\r\r2. Right click on this folder\r3. Properties -> Permissions -> Upload\r4. Check on \"Anyone\"\r5. Ok\r\rNow anyone who has access to your HFS server can upload files to you."
main_MSG_EVENTS_HLP, L"For help on how to use this file please refer http://www.rejetto.com/wiki/?title=HFS:_Event_scripts"
main_MSG_EDIT_RES, L"Edit resource"
main_MSG_TPL_USE_MACROS, L"The current template is using macros.\rDo you want to cancel this action?"
main_REMOVE_SHELL, L"Remove from shell context menu"
main_S_OFF, L"Switch OFF"
main_S_ON, L"Switch ON"
main_LOG, L"Log"
main_MSG_RE_NOIP, L"You are invited to re-insert your No-IP configuration, otherwise the updater won't work as expected."
main_MSG_TRAY_DEF, L"%ip%\rUptime: %uptime%\rDownloads: %downloads%"
main_MSG_CLEAN_START, L"Clean start"
main_MSG_RESTORE_BAK, L"A file system backup has been created for a system shutdown.\rDo you want to restore this backup?"
main_MSG_EXT_ADDR_FAIL, L"Search for external address failed"
main_MSG_TO_EXPERT, L"Switch to expert mode."
main_MSG_DONT_LOG_HINT, L"Select the files/folder you don't want to be logged,\rthen right click and select \"Don't log\"."
main_MSG_DL_PERC, L"Downloading %d%%"
main_MSG_UNINSTALL_WARN, L"Delete HFS and all settings?"
main_MSG_SELF_3, L"You may be behind a router or firewall."
main_MSG_SELF_6, L"You are behind a router.\rEnsure it is configured to forward port %s to your computer."
main_MSG_SELF_7, L"You may be behind a firewall.\rEnsure nothing is blocking HFS."
main_MSG_RET_EXT, L"Retrieving external address..."
main_MSG_SELF_CANT_ON, L"Unable to switch the server on"
main_MSG_SELF_CANT_LIST, L"Self test cannot be performed because HFS was configured to accept connections only on 127.0.0.1"
main_MSG_SELF_CANT_S, L"Self test doesn't support HTTPS.\rIt's likely it won't work."
main_MSG_SELF_ING, L"Self testing..."
main_MSG_TEST_CANC, L"Test cancelled"
main_MSG_TEST_INET, L"Testing internet connection..."
main_MSG_SELF_UNAV, L"Sorry, the test is unavailable at the moment"
main_MSG_SELF_NO_INET, L"Your internet connection does not work"
main_MSG_SELF_NO_ANSWER, L"The test failed: server does not answer."
main_MSG_OPEN_BROW, L"Open directly in browser"
main_MSG_OPEN_BROW_LONG, L"\"Suggest\" the browser to open directly the specified files.\rOther files should pop up a save dialog."
main_MSG_HIDE_PORT, L"You should not use this option unless you really know its meaning.\rContinue?"
main_MSG_RESET_TOT, L"Do you want to reset total in/out?"
main_MSG_DISAB_FIND_EXT, L"This option makes pointless the option \"Find external address at startup\", which has now been disabled for your convenience."
main_MSG_ENT_URL, L"Enter URL"
main_MSG_ENT_URL_LONG, L"Enter URL for updating.\r%ip% will be translated to your external IP."
main_MSG_ENT_USR, L"Enter user"
main_MSG_ENT_PWD, L"Enter password"
main_MSG_ENT_HOST, L"Enter host"
main_MSG_ENT_HOST_LONG, L"Enter domain (full form!)"
main_MSG_HOST_FORM, L"Please, enter it in the FULL form, with dots"
main_MSG_MIN_SPACE, L"Min disk space"
main_MSG_MIN_SPACE_LONG, L"The upload will fail if your disk has less than the specified amount of free MegaBytes."
main_MSG_REN_PART, L"Rename partial uploads"
main_MSG_REN_PART_LONG, L"This string will be appended to the filename.\r\rIf you need more control, enter a string with %name% in it, and this symbol will be replaced by the original filename."
main_MSG_SELF_BEFORE, L"Here you can test if your server does work on the Internet.\rIf you are not interested in serving files over the Internet, this is NOT for you.\r\rWe'll now perform a test involving network activity.\rIn order to complete this test, you may need to allow HFS's activity in your firewall, by clicking Allow on the warning prompt.\r\rWARNING: for the duration of the test, all ban rules and limits on the number of connections won't apply."
main_MSG_SELF_OK, L"The test is successful. The server should be working fine."
main_MSG_SELF_OK_PORT, L"Port %s is not working, but another working port has been found and set: %s."
main_MSG_LOG_FILE, L"Log file"
main_MSG_LOG_FILE_LONG, L"This function does not save any previous information to the log file.\rInstead, it saves all information that appears in the log box in real-time (from when you click \"OK\", below).\rSpecify a filename for the log.\rIf you leave the filename blank, no log file is saved.\r\rHere are some symbols you can use in the filename to split the log:\r %d% -- day of the month (1..31)\r %m% -- month (1..12)\r %y% -- year (2000..)\r %dow% -- day of the week (0..6)\r %w% -- week of the year (1..53)\r %user% -- username surrounded by parenthesis"
main_MSG_SET_URL, L"Set URL"
main_MSG_SET_URL_LONG, L"Please insert an URL for the link\r\rDo not forget to specify http:// or whatever.\r%%ip%% will be translated to your address"
main_MSG_REALM, L"Login realm"
main_MSG_REALM_LONG, L"The realm string is shown on the user/pass dialog of the browser.\rHere you can customize the realm for the login button"
main_MSG_INACT_TIMEOUT, L"Connection inactivity timeout"
main_MSG_INACT_TIMEOUT_LONG, L"The connection is kicked after a timeout.\rSpecify in seconds.\rLeave blank to get no timeout."
main_MSG_CHANGES_LOST, L"All changes will be lost\rContinue?"
main_MSG_FLAG_NEW, L"Flag new files"
main_MSG_FLAG_NEW_LONG, L"Enter the number of MINUTES files stay flagged from their addition.\rLeave blank to disable."
main_MSG_DONT_LOG_MASK, L"Do not log address"
main_MSG_DONT_LOG_MASK_LONG, L"Any event from the following IP address mask will be not logged."
main_MSG_CUST_IP, L"Custom IP addresses"
main_MSG_CUST_IP_LONG, L"Specify your addresses, each per line"
main_MSG_NO_EXT_IP, L"Can't find external address\r( %s )"
main_MSG_TENTH_SEC, L"Tenths of second"
main_MSG_LOADING_VFS, L"Loading VFS"
main_MSG_VFS_OLD, L"This file is old and uses different settings.\rThe \"let browse\" folder option will be reset.\rRe-saving the file will update its format."
main_MSG_UNK_FK, L"This file has been created with a newer version.\rSome data was discarded because unknown.\rIf you save the file now, the discarded data will NOT be saved."
main_MSG_VIS_ONLY_ANON, L"This VFS file uses the \"Visible only to anonymous users\" feature.\rThis feature is not available anymore.\rYou can achieve similar results by restricting access to @anonymous,\rthen enabling \"List protected items only for allowed users\"."
main_MSG_AUTO_DISABLED, L"Because of the problems encountered in loading,\rautomatic saving has been disabled\runtil you save manually or load another one."
main_MSG_CORRUPTED, L"This file does not contain valid data."
main_MSG_MACROS_FOUND, L"!!!!!!!!! DANGER !!!!!!!!!\rThis file contains macros.\rDon't accept macros from people you don't trust.\r\rTrust this file?"
main_MSG_UPD_INFO, L"Last stable version: %s\r\rLast untested version: %s\r"
main_MSG_NEWER, L"There's a new version available online: %s"
main_MSG_SRC_UPD, L"Searching for updates..."
main_ARE_EXPERT, L"You are in Expert mode"
main_ARE_EASY, L"You are in Easy mode"
main_SW2EXPERT, L"Switch to Expert mode"
main_SW2EASY, L"Switch to Easy mode"
main_MSG_DL_TIMEOUT_LONG, L"Enter the number of MINUTES with no download after which the program automatically shuts down.\rLeave blank to get no timeout."
main_MSG_NEWER_INCOMP, L"This file has been created with a newer and incompatible version."
main_MSG_ZLIB, L"This file is corrupted (ZLIB)."
main_MSG_BAKAVAILABLE, L"This file is corrupted but a backup is available.\rContinue with backup?"
main_MSG_CANT_LOAD_SAVE, L"Cannot load or save while adding files"
main_MSG_OPEN_VFS, L"Open VFS file"
main_LIMIT, L"Limit"
main_TOP_SPEED, L"Top speed"
main_MSG_MAX_BW, L"Max bandwidth (KB/s)."
main_MSG_LIM0, L"Zero is an effective limit.\rTo disable instead, leave empty."
main_MSG_MAX_BW_1, L"Max bandwidth for single address (KB/s)."
main_MSG_GRAPH_RATE_MENU, L"Graph refresh rate: %d (tenths of second)"
main_MSG_MAX_CON_LONG, L"Max simultaneous connections to serve.\rMost people don't know this function well, and have problems. If you are unsure, please use the \"Max simultaneous downloads\"."
main_MSG_WARN_CONN, L"In this moment there are %d active connections"
main_MSG_WARN_ACT_DL, L"In this moment there are %d active downloads"
main_MSG_MAX_CON_SING_LONG, L"Max simultaneous connections to accept from a single IP address.\rMost people don't know this function well, and have problems. If you are unsure, please use the \"Max simultaneous downloads from a single IP address\"."
main_MSG_GRAPH_RATE, L"Graph refresh rate"
main_MSG_VFS_DONT_CONS_DL_MASK, L"Don't consider as download (mask): %s"
main_MSG_VFS_INHERITED, L" [inherited]"
main_MSG_VFS_EXTERNAL, L" [external]"
main_MSG_CON_HINT, L"Connection time: %s\rLast request time: %s\rAgent: %s"
main_MSG_CON_STATE_IDLE, L"idle"
main_MSG_CON_STATE_REQ, L"requesting"