-
Notifications
You must be signed in to change notification settings - Fork 797
Expand file tree
/
Copy pathStrings.Designer.cs
More file actions
11569 lines (10289 loc) · 406 KB
/
Strings.Designer.cs
File metadata and controls
11569 lines (10289 loc) · 406 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
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 NETworkManager.Localization.Resources {
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 Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
/// <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("NETworkManager.Localization.Resources.Strings", typeof(Strings).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 Steel.
/// </summary>
public static string Accen_Steel {
get {
return ResourceManager.GetString("Accen_Steel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Accent.
/// </summary>
public static string Accent {
get {
return ResourceManager.GetString("Accent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Amber.
/// </summary>
public static string Accent_Amber {
get {
return ResourceManager.GetString("Accent_Amber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Black.
/// </summary>
public static string Accent_Black {
get {
return ResourceManager.GetString("Accent_Black", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Blue.
/// </summary>
public static string Accent_Blue {
get {
return ResourceManager.GetString("Accent_Blue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Brown.
/// </summary>
public static string Accent_Brown {
get {
return ResourceManager.GetString("Accent_Brown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cobalt.
/// </summary>
public static string Accent_Cobalt {
get {
return ResourceManager.GetString("Accent_Cobalt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Crimson.
/// </summary>
public static string Accent_Crimson {
get {
return ResourceManager.GetString("Accent_Crimson", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cyan.
/// </summary>
public static string Accent_Cyan {
get {
return ResourceManager.GetString("Accent_Cyan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Emerald.
/// </summary>
public static string Accent_Emerald {
get {
return ResourceManager.GetString("Accent_Emerald", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Green.
/// </summary>
public static string Accent_Green {
get {
return ResourceManager.GetString("Accent_Green", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indigo.
/// </summary>
public static string Accent_Indigo {
get {
return ResourceManager.GetString("Accent_Indigo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lime.
/// </summary>
public static string Accent_Lime {
get {
return ResourceManager.GetString("Accent_Lime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Magenta.
/// </summary>
public static string Accent_Magenta {
get {
return ResourceManager.GetString("Accent_Magenta", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mauve.
/// </summary>
public static string Accent_Mauve {
get {
return ResourceManager.GetString("Accent_Mauve", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Olive.
/// </summary>
public static string Accent_Olive {
get {
return ResourceManager.GetString("Accent_Olive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Orange.
/// </summary>
public static string Accent_Orange {
get {
return ResourceManager.GetString("Accent_Orange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Purple.
/// </summary>
public static string Accent_Purple {
get {
return ResourceManager.GetString("Accent_Purple", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Red.
/// </summary>
public static string Accent_Red {
get {
return ResourceManager.GetString("Accent_Red", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sienna.
/// </summary>
public static string Accent_Sienna {
get {
return ResourceManager.GetString("Accent_Sienna", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Steel.
/// </summary>
public static string Accent_Steel {
get {
return ResourceManager.GetString("Accent_Steel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Taupe.
/// </summary>
public static string Accent_Taupe {
get {
return ResourceManager.GetString("Accent_Taupe", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Teal.
/// </summary>
public static string Accent_Teal {
get {
return ResourceManager.GetString("Accent_Teal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pink.
/// </summary>
public static string Accent_Violet {
get {
return ResourceManager.GetString("Accent_Violet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yellow.
/// </summary>
public static string Accent_Yellow {
get {
return ResourceManager.GetString("Accent_Yellow", 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 Add a host to monitor.
/// </summary>
public static string AddAHostToMonitor {
get {
return ResourceManager.GetString("AddAHostToMonitor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform a DNS lookup....
/// </summary>
public static string AddATabToPerformADNSLookup {
get {
return ResourceManager.GetString("AddATabToPerformADNSLookup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform a network scan....
/// </summary>
public static string AddATabToPerformANetworkScan {
get {
return ResourceManager.GetString("AddATabToPerformANetworkScan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform an SNMP action....
/// </summary>
public static string AddATabToPerformAnSNMPAction {
get {
return ResourceManager.GetString("AddATabToPerformAnSNMPAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform a ping....
/// </summary>
public static string AddATabToPerformAPing {
get {
return ResourceManager.GetString("AddATabToPerformAPing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform a port scan....
/// </summary>
public static string AddATabToPerformAPortScan {
get {
return ResourceManager.GetString("AddATabToPerformAPortScan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform a SNTP lookup....
/// </summary>
public static string AddATabToPerformASNTPLookup {
get {
return ResourceManager.GetString("AddATabToPerformASNTPLookup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to perform a trace....
/// </summary>
public static string AddATabToPerformATrace {
get {
return ResourceManager.GetString("AddATabToPerformATrace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to query the IP geolocation....
/// </summary>
public static string AddATabToQueryTheIPGeolocation {
get {
return ResourceManager.GetString("AddATabToQueryTheIPGeolocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add a tab to query whois....
/// </summary>
public static string AddATabToQueryWhois {
get {
return ResourceManager.GetString("AddATabToQueryWhois", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add AWS profile.
/// </summary>
public static string AddAWSProfile {
get {
return ResourceManager.GetString("AddAWSProfile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add credentials.
/// </summary>
public static string AddCredentials {
get {
return ResourceManager.GetString("AddCredentials", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add custom command.
/// </summary>
public static string AddCustomCommand {
get {
return ResourceManager.GetString("AddCustomCommand", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add DNS server.
/// </summary>
public static string AddDNSServer {
get {
return ResourceManager.GetString("AddDNSServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add DNS suffix (primary) to hostname.
/// </summary>
public static string AddDNSSuffixToHostname {
get {
return ResourceManager.GetString("AddDNSSuffixToHostname", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add....
/// </summary>
public static string AddDots {
get {
return ResourceManager.GetString("AddDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add entry.
/// </summary>
public static string AddEntry {
get {
return ResourceManager.GetString("AddEntry", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add entry....
/// </summary>
public static string AddEntryDots {
get {
return ResourceManager.GetString("AddEntryDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add group.
/// </summary>
public static string AddGroup {
get {
return ResourceManager.GetString("AddGroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add group....
/// </summary>
public static string AddGroupDots {
get {
return ResourceManager.GetString("AddGroupDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add host.
/// </summary>
public static string AddHost {
get {
return ResourceManager.GetString("AddHost", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add IPv4 address.
/// </summary>
public static string AddIPv4Address {
get {
return ResourceManager.GetString("AddIPv4Address", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add IPv4 address....
/// </summary>
public static string AddIPv4AddressDots {
get {
return ResourceManager.GetString("AddIPv4AddressDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additional command line.
/// </summary>
public static string AdditionalCommandLine {
get {
return ResourceManager.GetString("AdditionalCommandLine", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additional config....
/// </summary>
public static string AdditionalConfigDots {
get {
return ResourceManager.GetString("AdditionalConfigDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additionals.
/// </summary>
public static string Additionals {
get {
return ResourceManager.GetString("Additionals", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add OID profile.
/// </summary>
public static string AddOIDProfile {
get {
return ResourceManager.GetString("AddOIDProfile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add port profile.
/// </summary>
public static string AddPortProfile {
get {
return ResourceManager.GetString("AddPortProfile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add profile.
/// </summary>
public static string AddProfile {
get {
return ResourceManager.GetString("AddProfile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add profile....
/// </summary>
public static string AddProfileDots {
get {
return ResourceManager.GetString("AddProfileDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add profile file.
/// </summary>
public static string AddProfileFile {
get {
return ResourceManager.GetString("AddProfileFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add server.
/// </summary>
public static string AddServer {
get {
return ResourceManager.GetString("AddServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add SNTP server.
/// </summary>
public static string AddSNTPServer {
get {
return ResourceManager.GetString("AddSNTPServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add tab.
/// </summary>
public static string AddTab {
get {
return ResourceManager.GetString("AddTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add tab....
/// </summary>
public static string AddTabDots {
get {
return ResourceManager.GetString("AddTabDots", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add tag.
/// </summary>
public static string AddTag {
get {
return ResourceManager.GetString("AddTag", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adjust screen.
/// </summary>
public static string AdjustScreen {
get {
return ResourceManager.GetString("AdjustScreen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Adjust screen automatically.
/// </summary>
public static string AdjustScreenAutomatically {
get {
return ResourceManager.GetString("AdjustScreenAutomatically", 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 All.
/// </summary>
public static string All {
get {
return ResourceManager.GetString("All", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All settings can be changed later in the settings!.
/// </summary>
public static string AllSettingsCanBeChangedLaterInTheSettings {
get {
return ResourceManager.GetString("AllSettingsCanBeChangedLaterInTheSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Always show icon in tray.
/// </summary>
public static string AlwaysShowIconInTray {
get {
return ResourceManager.GetString("AlwaysShowIconInTray", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Amber.
/// </summary>
public static string Amber {
get {
return ResourceManager.GetString("Amber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An AWS region named "{0}" does not exist!.
/// </summary>
public static string AnAWSRegionNamedXDoesNotExist {
get {
return ResourceManager.GetString("AnAWSRegionNamedXDoesNotExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred while exporting the data. See error message for details:.
/// </summary>
public static string AnErrorOccurredWhileExportingTheData {
get {
return ResourceManager.GetString("AnErrorOccurredWhileExportingTheData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Answers.
/// </summary>
public static string Answers {
get {
return ResourceManager.GetString("Answers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Any.
/// </summary>
public static string Any {
get {
return ResourceManager.GetString("Any", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Appearance.
/// </summary>
public static string Appearance {
get {
return ResourceManager.GetString("Appearance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ARP Table.
/// </summary>
public static string ApplicationName_ARPTable {
get {
return ResourceManager.GetString("ApplicationName_ARPTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AWS Session Manager.
/// </summary>
public static string ApplicationName_AWSSessionManager {
get {
return ResourceManager.GetString("ApplicationName_AWSSessionManager", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bit Calculator.
/// </summary>
public static string ApplicationName_BitCalculator {
get {
return ResourceManager.GetString("ApplicationName_BitCalculator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connections.
/// </summary>
public static string ApplicationName_Connections {
get {
return ResourceManager.GetString("ApplicationName_Connections", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dashboard.
/// </summary>
public static string ApplicationName_Dashboard {
get {
return ResourceManager.GetString("ApplicationName_Dashboard", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Discovery Protocol.
/// </summary>
public static string ApplicationName_DiscoveryProtocol {
get {
return ResourceManager.GetString("ApplicationName_DiscoveryProtocol", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DNS Lookup.
/// </summary>
public static string ApplicationName_DNSLookup {
get {
return ResourceManager.GetString("ApplicationName_DNSLookup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hosts File Editor.
/// </summary>
public static string ApplicationName_HostsFileEditor {
get {
return ResourceManager.GetString("ApplicationName_HostsFileEditor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HTTP Headers.
/// </summary>
public static string ApplicationName_HTTPHeaders {
get {
return ResourceManager.GetString("ApplicationName_HTTPHeaders", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IP Geolocation.
/// </summary>
public static string ApplicationName_IPGeolocation {
get {
return ResourceManager.GetString("ApplicationName_IPGeolocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IP Scanner.
/// </summary>
public static string ApplicationName_IPScanner {
get {
return ResourceManager.GetString("ApplicationName_IPScanner", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Listeners.
/// </summary>
public static string ApplicationName_Listeners {
get {
return ResourceManager.GetString("ApplicationName_Listeners", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lookup.
/// </summary>
public static string ApplicationName_Lookup {
get {
return ResourceManager.GetString("ApplicationName_Lookup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Network Interface.
/// </summary>
public static string ApplicationName_NetworkInterface {
get {
return ResourceManager.GetString("ApplicationName_NetworkInterface", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ping.
/// </summary>
public static string ApplicationName_Ping {
get {
return ResourceManager.GetString("ApplicationName_Ping", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ping Monitor.
/// </summary>
public static string ApplicationName_PingMonitor {
get {
return ResourceManager.GetString("ApplicationName_PingMonitor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Port Scanner.
/// </summary>
public static string ApplicationName_PortScanner {
get {
return ResourceManager.GetString("ApplicationName_PortScanner", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PowerShell.
/// </summary>
public static string ApplicationName_PowerShell {
get {
return ResourceManager.GetString("ApplicationName_PowerShell", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PuTTY.
/// </summary>
public static string ApplicationName_PuTTY {
get {
return ResourceManager.GetString("ApplicationName_PuTTY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remote Desktop.
/// </summary>
public static string ApplicationName_RemoteDesktop {
get {
return ResourceManager.GetString("ApplicationName_RemoteDesktop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SNMP.
/// </summary>
public static string ApplicationName_SNMP {
get {
return ResourceManager.GetString("ApplicationName_SNMP", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SNTP Lookup.
/// </summary>
public static string ApplicationName_SNTPLookup {
get {
return ResourceManager.GetString("ApplicationName_SNTPLookup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subnet Calculator.
/// </summary>
public static string ApplicationName_SubnetCalculator {
get {
return ResourceManager.GetString("ApplicationName_SubnetCalculator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to TigerVNC.
/// </summary>
public static string ApplicationName_TigerVNC {
get {
return ResourceManager.GetString("ApplicationName_TigerVNC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Traceroute.
/// </summary>
public static string ApplicationName_Traceroute {
get {
return ResourceManager.GetString("ApplicationName_Traceroute", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Wake on LAN.
/// </summary>
public static string ApplicationName_WakeOnLAN {
get {
return ResourceManager.GetString("ApplicationName_WakeOnLAN", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Web Console.
/// </summary>
public static string ApplicationName_WebConsole {
get {
return ResourceManager.GetString("ApplicationName_WebConsole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Whois.
/// </summary>
public static string ApplicationName_Whois {
get {
return ResourceManager.GetString("ApplicationName_Whois", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WiFi.
/// </summary>
public static string ApplicationName_WiFi {
get {
return ResourceManager.GetString("ApplicationName_WiFi", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Applications.