-
-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathIPBanResources.Designer.cs
2992 lines (2659 loc) · 109 KB
/
IPBanResources.Designer.cs
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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace DigitalRuby.IPBanCore {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class IPBanResources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal IPBanResources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DigitalRuby.IPBanCore.IPBanResources", typeof(IPBanResources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to About.
/// </summary>
public static string About {
get {
return ResourceManager.GetString("About", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Access Duration.
/// </summary>
public static string AccessDuration {
get {
return ResourceManager.GetString("AccessDuration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add.
/// </summary>
public static string Add {
get {
return ResourceManager.GetString("Add", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Administrator.
/// </summary>
public static string Administrator {
get {
return ResourceManager.GetString("Administrator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Common Failed User Name Ban.
/// </summary>
public static string AggregateBanUserNames {
get {
return ResourceManager.GetString("AggregateBanUserNames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Process Blank User Names.
/// </summary>
public static string AggregateBanUserNamesAllowBlank {
get {
return ResourceManager.GetString("AggregateBanUserNamesAllowBlank", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whether to include blank user names in aggregation for banning across your entire network..
/// </summary>
public static string AggregateBanUserNamesAllowBlankTooltip {
get {
return ResourceManager.GetString("AggregateBanUserNamesAllowBlankTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Count,hours to examine common user names and ban attackers that meet a count within hours timespan. Set to empty to disable this feature..
/// </summary>
public static string AggregateBanUserNamesTooltip {
get {
return ResourceManager.GetString("AggregateBanUserNamesTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Alias.
/// </summary>
public static string Alias {
get {
return ResourceManager.GetString("Alias", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allowed.
/// </summary>
public static string Allowed {
get {
return ResourceManager.GetString("Allowed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allowed Ports.
/// </summary>
public static string AllowedPorts {
get {
return ResourceManager.GetString("AllowedPorts", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allowed port/port-ranges (comma separated). Empty to not allow any ports. Example: 80, 443, 500-510. Only supported on WinDivert and WFP firewalls..
/// </summary>
public static string AllowedPortsTooltip {
get {
return ResourceManager.GetString("AllowedPortsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow Ports.
/// </summary>
public static string AllowPorts {
get {
return ResourceManager.GetString("AllowPorts", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comma separated ports or port ranges to always allow, regardless of country blocking - i.e. 80, 443..
/// </summary>
public static string AllowPortsTooltip {
get {
return ResourceManager.GetString("AllowPortsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Apply.
/// </summary>
public static string Apply {
get {
return ResourceManager.GetString("Apply", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ASN Blocklist.
/// </summary>
public static string AsnBlacklist {
get {
return ResourceManager.GetString("AsnBlacklist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ASN to block (autonymous system number).
/// </summary>
public static string AsnBlacklistTooltip {
get {
return ResourceManager.GetString("AsnBlacklistTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start typing and select ASN that appear from the dropdown, can use id or name.
/// </summary>
public static string AsnBlockHelpLabel {
get {
return ResourceManager.GetString("AsnBlockHelpLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} entries in the ASN block list.
/// </summary>
public static string AsnBlockRangeEntryCount {
get {
return ResourceManager.GetString("AsnBlockRangeEntryCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Auto Refresh.
/// </summary>
public static string AutoRefresh {
get {
return ResourceManager.GetString("AutoRefresh", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Auto Update.
/// </summary>
public static string AutoUpdate {
get {
return ResourceManager.GetString("AutoUpdate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Auto Whitelist Success Logins.
/// </summary>
public static string AutoWhitelistSuccessLogins {
get {
return ResourceManager.GetString("AutoWhitelistSuccessLogins", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Number of days to whitelist remote ip addresses that have a successful login.
/// </summary>
public static string AutoWhitelistSuccessLoginsTooltip {
get {
return ResourceManager.GetString("AutoWhitelistSuccessLoginsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Available.
/// </summary>
public static string Available {
get {
return ResourceManager.GetString("Available", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ban Count.
/// </summary>
public static string BanCount {
get {
return ResourceManager.GetString("BanCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Banned ip addresses.
/// </summary>
public static string BannedIPAddresses {
get {
return ResourceManager.GetString("BannedIPAddresses", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ban range threshold.
/// </summary>
public static string BanRangeThreshold {
get {
return ResourceManager.GetString("BanRangeThreshold", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Format: threshold,days,event_type. Threshold is number of failed logins or banned ips in a cidr mask before the entire cidr mask is banned for x days. For ipv4, /24 mask is used with 256 ips. For ipv6, /112 mask is used with 65536 ips. Days specifies duration to ban the range. Event type can be empty or b for banned ip adresses, or f for failed logins. Set to empty to disable this feature..
/// </summary>
public static string BanRangeThresholdTooltip {
get {
return ResourceManager.GetString("BanRangeThresholdTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ban Time.
/// </summary>
public static string BanTime {
get {
return ResourceManager.GetString("BanTime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The duration of time to ban an ip address. Format is DD:HH:MM:SS. Use 00:00:00:00 for max ban duration (90 days). Must be at least one minute..
/// </summary>
public static string BanTimeTooltip {
get {
return ResourceManager.GetString("BanTimeTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Base Url.
/// </summary>
public static string BaseUrl {
get {
return ResourceManager.GetString("BaseUrl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The base url of the server to connect clients to, should be this server.
/// </summary>
public static string BaseUrlTooltip {
get {
return ResourceManager.GetString("BaseUrlTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Blacklister.
/// </summary>
public static string Blacklister {
get {
return ResourceManager.GetString("Blacklister", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Blocked and Allowed Packets by Country last 24 hours.
/// </summary>
public static string BlockedPacketsByCountry {
get {
return ResourceManager.GetString("BlockedPacketsByCountry", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
public static string Cancel {
get {
return ResourceManager.GetString("Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Change Credentials.
/// </summary>
public static string ChangeCredentials {
get {
return ResourceManager.GetString("ChangeCredentials", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check Last Whitelist Access.
/// </summary>
public static string CheckLastWhitelistAccess {
get {
return ResourceManager.GetString("CheckLastWhitelistAccess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to City.
/// </summary>
public static string City {
get {
return ResourceManager.GetString("City", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear.
/// </summary>
public static string Clear {
get {
return ResourceManager.GetString("Clear", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Bans on Restart.
/// </summary>
public static string ClearBannedIPAddressesOnRestart {
get {
return ResourceManager.GetString("ClearBannedIPAddressesOnRestart", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to True to clear and unban all the ip addresses from the firewall upon restart, false otherwise.
/// </summary>
public static string ClearBannedIPAddressesOnRestartTooltip {
get {
return ResourceManager.GetString("ClearBannedIPAddressesOnRestartTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Failures on Login Success.
/// </summary>
public static string ClearFailedLoginsOnSuccessfulLogin {
get {
return ResourceManager.GetString("ClearFailedLoginsOnSuccessfulLogin", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When an ip address receives a successful login, whether to clear all the failed logins for that ip from memory.
/// </summary>
public static string ClearFailedLoginsOnSuccessfulLoginTooltip {
get {
return ResourceManager.GetString("ClearFailedLoginsOnSuccessfulLoginTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client.
/// </summary>
public static string Client {
get {
return ResourceManager.GetString("Client", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Client Configuration.
/// </summary>
public static string ClientConfiguration {
get {
return ResourceManager.GetString("ClientConfiguration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace global configuration values for this client.
/// </summary>
public static string ClientConfigurationOverrideTooltip {
get {
return ResourceManager.GetString("ClientConfigurationOverrideTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cloudflare api token to add firewall rules.
/// </summary>
public static string Cloudflare_ApiToken_Description {
get {
return ResourceManager.GetString("Cloudflare_ApiToken_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Max count of ips to put in Cloudflare firewall, 10000 max.
/// </summary>
public static string Cloudflare_MaxCount_Description {
get {
return ResourceManager.GetString("Cloudflare_MaxCount_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comma separated zone ids to add firewall rules to.
/// </summary>
public static string Cloudflare_ZoneIds_Description {
get {
return ResourceManager.GetString("Cloudflare_ZoneIds_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Concurrent Remote IP Ban.
/// </summary>
public static string ConcurrentRemoteIPBan {
get {
return ResourceManager.GetString("ConcurrentRemoteIPBan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Count,seconds for banning connected remote ips that meet a concurrent count for a specified number of seconds. Set to empty to disable this feature..
/// </summary>
public static string ConcurrentRemoteIPBanTooltip {
get {
return ResourceManager.GetString("ConcurrentRemoteIPBanTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Confirm Delete.
/// </summary>
public static string ConfirmDelete {
get {
return ResourceManager.GetString("ConfirmDelete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connected Clients.
/// </summary>
public static string ConnectedClients {
get {
return ResourceManager.GetString("ConnectedClients", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Country.
/// </summary>
public static string Country {
get {
return ResourceManager.GetString("Country", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Country Blocklist.
/// </summary>
public static string CountryBlacklist {
get {
return ResourceManager.GetString("CountryBlacklist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to First Failed Login.
/// </summary>
public static string CountryBlacklistFirstFailedLogin {
get {
return ResourceManager.GetString("CountryBlacklistFirstFailedLogin", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whether to wait until first failed login from a bad country before banning (checked) or to pro-actively add the entire country to the firewall if possible (unchecked). If checked, allowed ports is ignored. Accuracy is more precise when first failed login is checked..
/// </summary>
public static string CountryBlacklistFirstFailedLoginTooltip {
get {
return ResourceManager.GetString("CountryBlacklistFirstFailedLoginTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Country Blacklist Interval.
/// </summary>
public static string CountryBlacklistInterval {
get {
return ResourceManager.GetString("CountryBlacklistInterval", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 24 hour start (local time), day of month to send out country blacklist to clients, i.e. 3,28.
/// </summary>
public static string CountryBlacklistIntervalTooltip {
get {
return ResourceManager.GetString("CountryBlacklistIntervalTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invert Country Blocklist.
/// </summary>
public static string CountryBlacklistInvert {
get {
return ResourceManager.GetString("CountryBlacklistInvert", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whether to invert country block list (checked), so the countries specified are allow only and everything else is blocked. The default is to only block countries specified (unchecked)..
/// </summary>
public static string CountryBlacklistInvertTooltip {
get {
return ResourceManager.GetString("CountryBlacklistInvertTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Override Country Blacklist.
/// </summary>
public static string CountryBlacklistOverride {
get {
return ResourceManager.GetString("CountryBlacklistOverride", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Country Blacklist Precise.
/// </summary>
public static string CountryBlacklistPrecise {
get {
return ResourceManager.GetString("CountryBlacklistPrecise", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use precise country ip addresses (requires about 7x more RAM).
/// </summary>
public static string CountryBlacklistPreciseTooltip {
get {
return ResourceManager.GetString("CountryBlacklistPreciseTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select banned countries. The firewall will be updated with the first failed login from an ip address in the range of any blocked country, excluding any whitelisted ip addresses..
/// </summary>
public static string CountryBlacklistTooltip {
get {
return ResourceManager.GetString("CountryBlacklistTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start typing and pick countries from the dropdown that appears.
/// </summary>
public static string CountryBlockHelpLabel {
get {
return ResourceManager.GetString("CountryBlockHelpLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} ranges in the country block list.
/// </summary>
public static string CountryListEntryCount {
get {
return ResourceManager.GetString("CountryListEntryCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Created At.
/// </summary>
public static string CreatedAt {
get {
return ResourceManager.GetString("CreatedAt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create Whitelist Firewall Rule.
/// </summary>
public static string CreateWhitelistFirewallRule {
get {
return ResourceManager.GetString("CreateWhitelistFirewallRule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whether to create a whitelist firewall rule. This gives all whitelist ip access to all ports.
/// </summary>
public static string CreateWhitelistFirewallRuleTooltip {
get {
return ResourceManager.GetString("CreateWhitelistFirewallRuleTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Any changes made to the administrator account will propagate to clients automatically..
/// </summary>
public static string CredentialPropagation {
get {
return ResourceManager.GetString("CredentialPropagation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Critical.
/// </summary>
public static string Critical {
get {
return ResourceManager.GetString("Critical", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cut Off.
/// </summary>
public static string Cutoff {
get {
return ResourceManager.GetString("Cutoff", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cycle Time.
/// </summary>
public static string CycleTime {
get {
return ResourceManager.GetString("CycleTime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The time between cycles to do house-keeping such as un-banning ip addresses, reloading config, etc. Will be clamped between 5 and 60 seconds. Format is DD:HH:MM:SS..
/// </summary>
public static string CycleTimeTooltip {
get {
return ResourceManager.GetString("CycleTimeTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete.
/// </summary>
public static string Delete {
get {
return ResourceManager.GetString("Delete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Details.
/// </summary>
public static string Details {
get {
return ResourceManager.GetString("Details", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Diagnostics.
/// </summary>
public static string Diagnostics {
get {
return ResourceManager.GetString("Diagnostics", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Direction.
/// </summary>
public static string Direction {
get {
return ResourceManager.GetString("Direction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable Notification Flags.
/// </summary>
public static string DisableNotificationFlags {
get {
return ResourceManager.GetString("DisableNotificationFlags", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Docs.
/// </summary>
public static string Docs {
get {
return ResourceManager.GetString("Docs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duration.
/// </summary>
public static string Duration {
get {
return ResourceManager.GetString("Duration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duration (DD:HH:MM:SS).
/// </summary>
public static string Duration_Tooltip {
get {
return ResourceManager.GetString("Duration_Tooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Edit.
/// </summary>
public static string Edit {
get {
return ResourceManager.GetString("Edit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Edit Machine.
/// </summary>
public static string EditMachine {
get {
return ResourceManager.GetString("EditMachine", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enabled.
/// </summary>
public static string Enabled {
get {
return ResourceManager.GetString("Enabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable recent and naughty list.
/// </summary>
public static string EnableLists {
get {
return ResourceManager.GetString("EnableLists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whether to enable the recent and naughty list, global lists aggregated from all over the world from IPBan submissions.
/// </summary>
public static string EnableListsTooltip {
get {
return ResourceManager.GetString("EnableListsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable SSL.
/// </summary>
public static string EnableSSL {
get {
return ResourceManager.GetString("EnableSSL", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whether to enable SSL (secure socket layer) immediately on connection. Leave false to auto-detect..
/// </summary>
public static string EnableSSLTooltip {
get {
return ResourceManager.GetString("EnableSSLTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter license keys, one per line.
/// </summary>
public static string EnterLicenseKeys {
get {
return ResourceManager.GetString("EnterLicenseKeys", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error.
/// </summary>
public static string Error {
get {
return ResourceManager.GetString("Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expressions.
/// </summary>
public static string EventViewerExpressions {
get {
return ResourceManager.GetString("EventViewerExpressions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event viewer expressions to find. Format is //XPath[newline]Regex. Regex can span multiple lines. Start a new XPath to search for by putting //XPath on a new line..
/// </summary>
public static string EventViewerExpressionsTooltip {
get {
return ResourceManager.GetString("EventViewerExpressionsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event Viewer Failed Logins.
/// </summary>
public static string EventViewerFailedLogins {
get {
return ResourceManager.GetString("EventViewerFailedLogins", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Keywords.
/// </summary>
public static string EventViewerKeywords {
get {
return ResourceManager.GetString("EventViewerKeywords", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event viewer keywords, in hex.
/// </summary>
public static string EventViewerKeywordsTooltip {
get {
return ResourceManager.GetString("EventViewerKeywordsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path.
/// </summary>
public static string EventViewerPath {
get {
return ResourceManager.GetString("EventViewerPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The event viewer path, i.e. Application or Security, etc..
/// </summary>
public static string EventViewerPathTooltip {
get {
return ResourceManager.GetString("EventViewerPathTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event Viewer Successful Logins.
/// </summary>
public static string EventViewerSuccessfulLogins {
get {
return ResourceManager.GetString("EventViewerSuccessfulLogins", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event Viewer (Windows).
/// </summary>
public static string EventViewerWindows {
get {
return ResourceManager.GetString("EventViewerWindows", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expire Time.
/// </summary>
public static string ExpireTime {
get {
return ResourceManager.GetString("ExpireTime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The duration after the last failed login attempt that the ip is forgotten(count reset back to 0). Set to 00:00:00:00 to use max duration (90 days). Format is DD:HH:MM:SS..
/// </summary>
public static string ExpireTimeTooltip {
get {
return ResourceManager.GetString("ExpireTimeTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Export.
/// </summary>
public static string Export {
get {
return ResourceManager.GetString("Export", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed login attempts.