forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.Designer.cs
1302 lines (1158 loc) · 43.7 KB
/
Strings.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.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace MissionPlanner {
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", "4.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("MissionPlanner.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 Advanced Params.
/// </summary>
public static string AdvancedParams {
get {
return ResourceManager.GetString("AdvancedParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to upload .
/// </summary>
public static string AreYouSureYouWantToUpload {
get {
return ResourceManager.GetString("AreYouSureYouWantToUpload", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Auto WP.
/// </summary>
public static string AutoWP {
get {
return ResourceManager.GetString("AutoWP", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad Accel Health.
/// </summary>
public static string BadAccelHealth {
get {
return ResourceManager.GetString("BadAccelHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad AHRS.
/// </summary>
public static string BadAHRS {
get {
return ResourceManager.GetString("BadAHRS", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad Baro Health.
/// </summary>
public static string BadBaroHealth {
get {
return ResourceManager.GetString("BadBaroHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad Compass Health.
/// </summary>
public static string BadCompassHealth {
get {
return ResourceManager.GetString("BadCompassHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad Lat/Lng.
/// </summary>
public static string BadCoords {
get {
return ResourceManager.GetString("BadCoords", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad GPS Health.
/// </summary>
public static string BadGPSHealth {
get {
return ResourceManager.GetString("BadGPSHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad Gyro Health.
/// </summary>
public static string BadGyroHealth {
get {
return ResourceManager.GetString("BadGyroHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad LiDAR Health.
/// </summary>
public static string BadLiDARHealth {
get {
return ResourceManager.GetString("BadLiDARHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad OptFlow Health.
/// </summary>
public static string BadOptFlowHealth {
get {
return ResourceManager.GetString("BadOptFlowHealth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bad or No Terrain Data.
/// </summary>
public static string BadorNoTerrainData {
get {
return ResourceManager.GetString("BadorNoTerrainData", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Basic Tuning.
/// </summary>
public static string BasicTuning {
get {
return ResourceManager.GetString("BasicTuning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Beta.
/// </summary>
public static string Beta {
get {
return ResourceManager.GetString("Beta", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to These are beta firmware, use at your own risk!!!.
/// </summary>
public static string BetaWarning {
get {
return ResourceManager.GetString("BetaWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Can not connect to com port and detect board type.
/// </summary>
public static string CanNotConnectToComPortAnd {
get {
return ResourceManager.GetString("CanNotConnectToComPortAnd", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot graph this field.
/// </summary>
public static string CannotGraphField {
get {
return ResourceManager.GetString("CannotGraphField", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cant detect your Board version. Please check your cabling.
/// </summary>
public static string CantDetectBoardVersion {
get {
return ResourceManager.GetString("CantDetectBoardVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checking .
/// </summary>
public static string Checking {
get {
return ResourceManager.GetString("Checking", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check port settings or Port in use?.
/// </summary>
public static string CheckPortSettingsOr {
get {
return ResourceManager.GetString("CheckPortSettingsOr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Click when Done.
/// </summary>
public static string Click_when_Done {
get {
return ResourceManager.GetString("Click_when_Done", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Command failed to execute
///.
/// </summary>
public static string CommandFailed {
get {
return ResourceManager.GetString("CommandFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Communication Error - no connection.
/// </summary>
public static string CommunicationErrorNoConnection {
get {
return ResourceManager.GetString("CommunicationErrorNoConnection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Completed.
/// </summary>
public static string Completed {
get {
return ResourceManager.GetString("Completed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect.
/// </summary>
public static string Connect {
get {
return ResourceManager.GetString("Connect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CONNECT.
/// </summary>
public static string CONNECTc {
get {
return ResourceManager.GetString("CONNECTc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect Failed.
/// </summary>
public static string ConnectFailed {
get {
return ResourceManager.GetString("ConnectFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connecting Mavlink.
/// </summary>
public static string ConnectingMavlink {
get {
return ResourceManager.GetString("ConnectingMavlink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Continue.
/// </summary>
public static string Continue {
get {
return ResourceManager.GetString("Continue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description: .
/// </summary>
public static string Desc {
get {
return ResourceManager.GetString("Desc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Detected a.
/// </summary>
public static string DetectedA {
get {
return ResourceManager.GetString("DetectedA", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Detecting Board Version.
/// </summary>
public static string DetectingBoardVersion {
get {
return ResourceManager.GetString("DetectingBoardVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disconnect.
/// </summary>
public static string Disconnect {
get {
return ResourceManager.GetString("Disconnect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DISCONNECT.
/// </summary>
public static string DISCONNECTc {
get {
return ResourceManager.GetString("DISCONNECTc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Done.
/// </summary>
public static string Done {
get {
return ResourceManager.GetString("Done", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Downloaded from internet.
/// </summary>
public static string DownloadedFromInternet {
get {
return ResourceManager.GetString("DownloadedFromInternet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Downloading from Internet.
/// </summary>
public static string DownloadingFromInternet {
get {
return ResourceManager.GetString("DownloadingFromInternet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ensure your props are not on the Plane/Quad.
/// </summary>
public static string EnsurePropsNotOn {
get {
return ResourceManager.GetString("EnsurePropsNotOn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Epprom changed, all your setting will be lost during the update,
///Do you wish to continue?.
/// </summary>
public static string EppromChanged {
get {
return ResourceManager.GetString("EppromChanged", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Epprom format changed ({0) vs {1}).
/// </summary>
public static string EppromFormatChanged {
get {
return ResourceManager.GetString("EppromFormatChanged", 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 Error binding.
/// </summary>
public static string Error_binding {
get {
return ResourceManager.GetString("Error_binding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error closing log files.
/// </summary>
public static string ErrorClosingLogFile {
get {
return ResourceManager.GetString("ErrorClosingLogFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error communicating with the autopilot.
/// </summary>
public static string ErrorCommunicating {
get {
return ResourceManager.GetString("ErrorCommunicating", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error Connecting
///.
/// </summary>
public static string ErrorConnecting {
get {
return ResourceManager.GetString("ErrorConnecting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This feature is not enabled in your firmware..
/// </summary>
public static string ErrorFeatureNotEnabled {
get {
return ResourceManager.GetString("ErrorFeatureNotEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error loading firmware file.
/// </summary>
public static string ErrorFirmwareFile {
get {
return ResourceManager.GetString("ErrorFirmwareFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error receiving log list.
/// </summary>
public static string ErrorLogList {
get {
return ResourceManager.GetString("ErrorLogList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error: no responce from MAV.
/// </summary>
public static string ErrorNoResponce {
get {
return ResourceManager.GetString("ErrorNoResponce", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are not connected..
/// </summary>
public static string ErrorNotConnected {
get {
return ResourceManager.GetString("ErrorNotConnected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error receiving list
///.
/// </summary>
public static string ErrorReceivingParams {
get {
return ResourceManager.GetString("ErrorReceivingParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error: command rejected by MAV.
/// </summary>
public static string ErrorRejectedByMAV {
get {
return ResourceManager.GetString("ErrorRejectedByMAV", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error renaming file.
/// </summary>
public static string ErrorRenameFile {
get {
return ResourceManager.GetString("ErrorRenameFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error setting parameter .
/// </summary>
public static string ErrorSettingParameter {
get {
return ResourceManager.GetString("ErrorSettingParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set {0} Failed.
/// </summary>
public static string ErrorSetValueFailed {
get {
return ResourceManager.GetString("ErrorSetValueFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error uploading firmware.
/// </summary>
public static string ErrorUploadingFirmware {
get {
return ResourceManager.GetString("ErrorUploadingFirmware", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Extended Tuning.
/// </summary>
public static string ExtendedTuning {
get {
return ResourceManager.GetString("ExtendedTuning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to create log - wont log this session.
/// </summary>
public static string Failclog {
get {
return ResourceManager.GetString("Failclog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed download.
/// </summary>
public static string FailedDownload {
get {
return ResourceManager.GetString("FailedDownload", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed read HEX.
/// </summary>
public static string FailedReadHEX {
get {
return ResourceManager.GetString("FailedReadHEX", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to read firmware.hex :.
/// </summary>
public static string FailedToReadHex {
get {
return ResourceManager.GetString("FailedToReadHex", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed upload.
/// </summary>
public static string FailedUpload {
get {
return ResourceManager.GetString("FailedUpload", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to FailSafe.
/// </summary>
public static string FailSafe {
get {
return ResourceManager.GetString("FailSafe", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Flight Modes.
/// </summary>
public static string FlightModes {
get {
return ResourceManager.GetString("FlightModes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Full Parameter List.
/// </summary>
public static string FullParameterList {
get {
return ResourceManager.GetString("FullParameterList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Full Parameter Tree.
/// </summary>
public static string FullParameterTree {
get {
return ResourceManager.GetString("FullParameterTree", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to GeoFence.
/// </summary>
public static string GeoFence {
get {
return ResourceManager.GetString("GeoFence", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Geofence Breach.
/// </summary>
public static string GeofenceBreach {
get {
return ResourceManager.GetString("GeofenceBreach", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting .
/// </summary>
public static string Getting {
get {
return ResourceManager.GetString("Getting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting FW List.
/// </summary>
public static string GettingFWList {
get {
return ResourceManager.GetString("GettingFWList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting FW Version.
/// </summary>
public static string GettingFWVersion {
get {
return ResourceManager.GetString("GettingFWVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting Params.
/// </summary>
public static string GettingParams {
get {
return ResourceManager.GetString("GettingParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting Params....
/// </summary>
public static string GettingParamsD {
get {
return ResourceManager.GetString("GettingParamsD", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting updated parameters.
/// </summary>
public static string GettingUpdatedParams {
get {
return ResourceManager.GetString("GettingUpdatedParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Got param .
/// </summary>
public static string Gotparam {
get {
return ResourceManager.GetString("Gotparam", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid Alt.
/// </summary>
public static string InvalidAlt {
get {
return ResourceManager.GetString("InvalidAlt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid BaudRate.
/// </summary>
public static string InvalidBaudRate {
get {
return ResourceManager.GetString("InvalidBaudRate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid Board Type.
/// </summary>
public static string InvalidBoardType {
get {
return ResourceManager.GetString("InvalidBoardType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid Field.
/// </summary>
public static string InvalidField {
get {
return ResourceManager.GetString("InvalidField", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid FileName.
/// </summary>
public static string InvalidFileName {
get {
return ResourceManager.GetString("InvalidFileName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid number entered
///.
/// </summary>
public static string InvalidNumberEntered {
get {
return ResourceManager.GetString("InvalidNumberEntered", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid Pan Range.
/// </summary>
public static string InvalidPanRange {
get {
return ResourceManager.GetString("InvalidPanRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid PortName.
/// </summary>
public static string InvalidPortName {
get {
return ResourceManager.GetString("InvalidPortName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid Tilt Range.
/// </summary>
public static string InvalidTiltRange {
get {
return ResourceManager.GetString("InvalidTiltRange", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid Update Rate.
/// </summary>
public static string InvalidUpdateRate {
get {
return ResourceManager.GetString("InvalidUpdateRate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Link Stats.
/// </summary>
public static string LinkStats {
get {
return ResourceManager.GetString("LinkStats", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please click ok and move the autopilot around all axises in a circular motion.
/// </summary>
public static string MagCalibMsg {
get {
return ResourceManager.GetString("MagCalibMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mavlink Connecting....
/// </summary>
public static string MavlinkConnecting {
get {
return ResourceManager.GetString("MavlinkConnecting", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are missing data points. do you want to run the calibration anyway?.
/// </summary>
public static string MissingDataPoints {
get {
return ResourceManager.GetString("MissingDataPoints", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New Firmware.
/// </summary>
public static string NewFirmware {
get {
return ResourceManager.GetString("NewFirmware", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New firmware available
///.
/// </summary>
public static string NewFirmwareA {
get {
return ResourceManager.GetString("NewFirmwareA", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No FMT message for .
/// </summary>
public static string NoFMTMessage {
get {
return ResourceManager.GetString("NoFMTMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NO RC Receiver.
/// </summary>
public static string NORCReceiver {
get {
return ResourceManager.GetString("NORCReceiver", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OK.
/// </summary>
public static string OK {
get {
return ResourceManager.GetString("OK", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only 1 Heatbeat Received.
/// </summary>
public static string Only1Hb {
get {
return ResourceManager.GetString("Only1Hb", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only 1 Mavlink Heartbeat Packets was read from this port - Verify your hardware is setup correctly
///Mission Planner waits for 2 valid heartbeat packets before connecting.
/// </summary>
public static string Only1HbD {
get {
return ResourceManager.GetString("Only1HbD", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please connect first.
/// </summary>
public static string PleaseConnect {
get {
return ResourceManager.GetString("PleaseConnect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please connect and backup your config in the configuration tab..
/// </summary>
public static string PleaseConnectAndBackupConfig {
get {
return ResourceManager.GetString("PleaseConnectAndBackupConfig", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please load a valid file.
/// </summary>
public static string PleaseLoadValidFile {
get {
return ResourceManager.GetString("PleaseLoadValidFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please select a cell first.
/// </summary>
public static string PleaseSelectCell {
get {
return ResourceManager.GetString("PleaseSelectCell", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to
///Please upgrade.
/// </summary>
public static string Pleaseup {
get {
return ResourceManager.GetString("Pleaseup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sucessfully programmed.
/// </summary>
public static string ProgrammedOK {
get {
return ResourceManager.GetString("ProgrammedOK", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Put the transmitter in bind mode. Receiver is waiting..
/// </summary>