-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.resx
1008 lines (997 loc) · 36.8 KB
/
Strings.resx
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
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="_2D_Lock" xml:space="preserve">
<value>2D Lock</value>
<comment>GPS Lock - Indicates Poor Signal Quality</comment>
</data>
<data name="_3D_Lock" xml:space="preserve">
<value>3D Lock</value>
<comment>GPS Lock - Indicated Good Signal Quality</comment>
</data>
<data name="_3D_Model" xml:space="preserve">
<value>3D Model</value>
<comment>3-Dimensional Model (ie EasyStar)</comment>
</data>
<data name="_3D_Models_From" xml:space="preserve">
<value>3D Models from OpenPilot Project</value>
<comment>Credits to authors of OpenPilot for their fantastic planes (ie EasyStar)</comment>
</data>
<data name="About" xml:space="preserve">
<value>About</value>
<comment>About and Splash Screen</comment>
</data>
<data name="Accel_Mult" xml:space="preserve">
<value>&1 Accel</value>
<comment>Short for Accelerometer (Keep it short)</comment>
</data>
<data name="Air_Speed" xml:space="preserve">
<value>Air Speed</value>
<comment>Speed of plane moving through air (not the same as ground speed)</comment>
</data>
<data name="AirGround_Speed" xml:space="preserve">
<value>Air/Ground Speed</value>
<comment>Instrument Name (Really Ground Speed Indicator)</comment>
</data>
<data name="Already_Exists" xml:space="preserve">
<value>&1 already exists.^Overwrite output file?</value>
<comment>Overwrite File</comment>
</data>
<data name="Altimeter" xml:space="preserve">
<value>Altimeter</value>
<comment>Altimeter Instrument Name</comment>
</data>
<data name="Altitude_Hold_Mode" xml:space="preserve">
<value>Altitude Hold Mode</value>
<comment>FY21AP Modes</comment>
</data>
<data name="Altitude_Offset" xml:space="preserve">
<value>Altitude Offset</value>
</data>
<data name="Amperage_Color" xml:space="preserve">
<value>Amperage Color</value>
<comment>Color selection for Battery meter - Amps meter</comment>
</data>
<data name="Amps" xml:space="preserve">
<value>Amps</value>
<comment>Short - 6 characters or less</comment>
</data>
<data name="Announce_Alarm_Default" xml:space="preserve">
<value>Danger! Danger! Signal lost for more than {alarm} seconds</value>
</data>
<data name="Announce_ModeChange" xml:space="preserve">
<value>Announce Mode Change</value>
</data>
<data name="Announce_ModeChange_Default" xml:space="preserve">
<value>Changed mode to {mode}</value>
</data>
<data name="Announce_Regular_Interval" xml:space="preserve">
<value>Announce Regular Interval</value>
</data>
<data name="Announce_Regular_Interval_Default" xml:space="preserve">
<value>en route to waypoint {wpn}, altitude is {alt} feet, ground speed is {gsp} miles per hour</value>
</data>
<data name="Announce_Warning_Default" xml:space="preserve">
<value>Warning, Signal lost for {warning} seconds</value>
</data>
<data name="Announce_Waypoints" xml:space="preserve">
<value>Announce Waypoints</value>
</data>
<data name="Announce_Waypoints_Default" xml:space="preserve">
<value>Arrived, Now heading to waypoint {wpn}</value>
</data>
<data name="AP_Mega_Binary" xml:space="preserve">
<value>AP Mega Binary</value>
<comment>APM Message Type</comment>
</data>
<data name="ArduIMU_Binary" xml:space="preserve">
<value>ArduIMU Binary</value>
<comment>ArduIMU Binary Message Type</comment>
</data>
<data name="ArduPilot_Message" xml:space="preserve">
<value>ArduPilot Message</value>
<comment>ArduPilot Message Type</comment>
</data>
<data name="Assisted_RC" xml:space="preserve">
<value>Assisted RC</value>
<comment>AttoPilot Modes</comment>
</data>
<data name="Attitude" xml:space="preserve">
<value>Attitude</value>
<comment>Attitude Indicator (also called artificial horizon)</comment>
</data>
<data name="Attitude_Data" xml:space="preserve">
<value>Attitude Data</value>
<comment>Data that is shown on the Artificial horizon)</comment>
</data>
<data name="Auto_Balance_Mode" xml:space="preserve">
<value>Auto Balance Mode</value>
<comment>FY21AP Modes</comment>
</data>
<data name="Auto_Scroll" xml:space="preserve">
<value>Auto Scroll</value>
<comment>Move the contents of the listbox automatically</comment>
</data>
<data name="Autonomous" xml:space="preserve">
<value>Autonomous</value>
<comment>Auto-Pilot Auto mode</comment>
</data>
<data name="Battery" xml:space="preserve">
<value>Battery</value>
<comment>Status Window (Maybe 10 characters max)</comment>
</data>
<data name="Battery_Throttle" xml:space="preserve">
<value>Battery && Throttle</value>
<comment>Name of Instrument on Settings page</comment>
</data>
<data name="Battery_Throttle_Settings" xml:space="preserve">
<value>Battery && Throttle Settings</value>
<comment>Settings Page</comment>
</data>
<data name="Baud_Rate" xml:space="preserve">
<value>Baud Rate</value>
<comment>Keep short (about 12 characters max, will line wrap)</comment>
</data>
<data name="Blue" xml:space="preserve">
<value>Blue</value>
<comment>Meter Color Selection</comment>
</data>
<data name="Building_Map_Files" xml:space="preserve">
<value>Building Map Files</value>
<comment>Splash screen startup message</comment>
</data>
<data name="Cancel" xml:space="preserve">
<value>Cancel</value>
</data>
<data name="Carriage_Return" xml:space="preserve">
<value>Carriage Return</value>
<comment>Don't worry about this one</comment>
</data>
<data name="Center_On_Plane" xml:space="preserve">
<value>Center On Plane</value>
<comment>Moves Google Earth map to put plane in center</comment>
</data>
<data name="Change_Model_Scale" xml:space="preserve">
<value>Change Model Scale</value>
<comment>Increase/Decrease Google Earth model size</comment>
</data>
<data name="Channel_Raw" xml:space="preserve">
<value>Channel Raw</value>
<comment>MAVline Message Type</comment>
</data>
<data name="Chase_Cam" xml:space="preserve">
<value>Chase Cam</value>
<comment>Changes Google Earth camera view to following behind plane</comment>
</data>
<data name="Checking_baud" xml:space="preserve">
<value>Checking &1 baud</value>
<comment>Status message for "Search" buttons on COM tab</comment>
</data>
<data name="Clear_Map" xml:space="preserve">
<value>Clear Map</value>
<comment>Clears all lines on Google Earth</comment>
</data>
<data name="COM_Port" xml:space="preserve">
<value>COM Port</value>
</data>
<data name="Command_Line" xml:space="preserve">
<value>Command Line</value>
<comment>This is where commands can be sent to the plane</comment>
</data>
<data name="Connect" xml:space="preserve">
<value>Connect</value>
</data>
<data name="Connected_to" xml:space="preserve">
<value>Connected to &1 at &2</value>
<comment>Connected message says: Connected to COM1 at 38400</comment>
</data>
<data name="Current_Culture" xml:space="preserve">
<value>Current Culture</value>
<comment>Culture file name (ie pl-PL for Polish)</comment>
</data>
<data name="Current_Waypoint" xml:space="preserve">
<value>Current Waypoint</value>
<comment>MAVline Message Type</comment>
</data>
<data name="Custom_Binary" xml:space="preserve">
<value>Custom Binary</value>
<comment>GPS Message Type</comment>
</data>
<data name="Cyan" xml:space="preserve">
<value>Cyan</value>
<comment>Meter Color Selection</comment>
</data>
<data name="Data_File" xml:space="preserve">
<value>Data File</value>
<comment>Saved flight data</comment>
</data>
<data name="Data_Points" xml:space="preserve">
<value>Data Points</value>
<comment>Number of GPS lat and long messages in Data File</comment>
</data>
<data name="Default_Language" xml:space="preserve">
<value>Default Language</value>
<comment>Allow Windows to Select Language File</comment>
</data>
<data name="Disconnect" xml:space="preserve">
<value>Disconnect</value>
</data>
<data name="Disconnect_from" xml:space="preserve">
<value>Disconnected from &1</value>
<comment>Disconnected from COM1</comment>
</data>
<data name="Distance" xml:space="preserve">
<value>Distance</value>
<comment>How far from plane to next waypoint</comment>
</data>
<data name="Distance_Units" xml:space="preserve">
<value>Distance Units</value>
<comment>Distance Units (ie Meters/Feet)</comment>
</data>
<data name="Down" xml:space="preserve">
<value>down</value>
<comment>For Vertical Speed</comment>
</data>
<data name="Draw_Full_Mission" xml:space="preserve">
<value>Draw Full Mission</value>
<comment>Draw entire mission on Google Earth</comment>
</data>
<data name="Error_Message" xml:space="preserve">
<value>Error</value>
</data>
<data name="Exit_Label" xml:space="preserve">
<value>Exit</value>
</data>
<data name="Expand" xml:space="preserve">
<value>Expand</value>
</data>
<data name="Extrude" xml:space="preserve">
<value>Extrude</value>
</data>
<data name="Features" xml:space="preserve">
<value>Features</value>
</data>
<data name="Feet" xml:space="preserve">
<value>Feet</value>
<comment>Feet/Meters</comment>
</data>
<data name="File" xml:space="preserve">
<value>File</value>
</data>
<data name="First_Person" xml:space="preserve">
<value>First Person</value>
<comment>Changes Google Earth camera view to inside cockpit</comment>
</data>
<data name="Flight_Path_Color" xml:space="preserve">
<value>Flight Path Color</value>
<comment>Color of line drawn behind plane in Google Earth</comment>
</data>
<data name="From_HomeAlt" xml:space="preserve">
<value>From Home Alt</value>
</data>
<data name="From_Sealevel" xml:space="preserve">
<value>From Sea Level</value>
</data>
<data name="Full" xml:space="preserve">
<value>Full</value>
<comment>Very SHORT (5 characters max) - Button name for Draw Full Mission</comment>
</data>
<data name="GE_Borders" xml:space="preserve">
<value>Borders</value>
<comment>Google Earth Feature</comment>
</data>
<data name="GE_Buildings" xml:space="preserve">
<value>3D Buildings</value>
<comment>Google Earth Feature</comment>
</data>
<data name="GE_Roads" xml:space="preserve">
<value>Roads</value>
<comment>Google Earth Feature</comment>
</data>
<data name="GE_Terrain" xml:space="preserve">
<value>Terrain</value>
<comment>Google Earth Feature</comment>
</data>
<data name="GE_Trees" xml:space="preserve">
<value>3D Trees</value>
<comment>Google Earth Feature</comment>
</data>
<data name="General" xml:space="preserve">
<value>General</value>
<comment>General Preferences - Non specific</comment>
</data>
<data name="Geonavigation_Data" xml:space="preserve">
<value>Geonavigation Data</value>
<comment>SiRF Message Type</comment>
</data>
<data name="Global_Position" xml:space="preserve">
<value>Global Position</value>
<comment>MAVline Message Type</comment>
</data>
<data name="Google_Earth" xml:space="preserve">
<value>Google Earth</value>
</data>
<data name="Google_Earth_Flight_Path" xml:space="preserve">
<value>Google Earth Flight Path</value>
<comment>Line drawn behind plane in Google Earth</comment>
</data>
<data name="GPS_Data" xml:space="preserve">
<value>GPS Data</value>
<comment>Data from GPS</comment>
</data>
<data name="GPS_Lock" xml:space="preserve">
<value>GPS Lock</value>
<comment>GPS has at least 5 satellites and is ready to fly</comment>
</data>
<data name="GPS_Message" xml:space="preserve">
<value>GPS Msg</value>
<comment>GPS message - ie GPGGA or GPRMC for NMEA</comment>
</data>
<data name="GPS_Raw" xml:space="preserve">
<value>GPS Raw</value>
<comment>MAVline Message Type</comment>
</data>
<data name="GPS_Status" xml:space="preserve">
<value>GPS Status</value>
<comment>MAVline Message Type</comment>
</data>
<data name="GPS_Time" xml:space="preserve">
<value>GPS Time</value>
<comment>Current time sent by GPS</comment>
</data>
<data name="GPS_Type" xml:space="preserve">
<value>GPS Type</value>
<comment>What device is sending messages - ie NMEA, uBlox, AttoPilot, etc</comment>
</data>
<data name="Green" xml:space="preserve">
<value>Green</value>
<comment>Meter Color Selection</comment>
</data>
<data name="Ground_Control_Station" xml:space="preserve">
<value>Ground Control Station</value>
<comment>About Form</comment>
</data>
<data name="Ground_Speed" xml:space="preserve">
<value>Ground Speed</value>
<comment>Speed of plane over ground</comment>
</data>
<data name="Gyro_Mult" xml:space="preserve">
<value>&1 Gyro</value>
<comment>X Gyro, y Gyro, Z Gyro</comment>
</data>
<data name="HappyKillmores_Email" xml:space="preserve">
<value>HappyKillmore's Email</value>
<comment>About Form</comment>
</data>
<data name="HDOP" xml:space="preserve">
<value>HDOP</value>
<comment>Don't translate this one - This is a GPS term</comment>
</data>
<data name="Heading" xml:space="preserve">
<value>Heading</value>
<comment>Course over ground 0 - 359 degrees</comment>
</data>
<data name="Heatbeat_Data" xml:space="preserve">
<value>Heatbeat Data</value>
<comment>KeepAlive message from Auto-Pilot - I'm still alive!</comment>
</data>
<data name="Help" xml:space="preserve">
<value>Help</value>
<comment>Help!</comment>
</data>
<data name="Hertz" xml:space="preserve">
<value>Hertz</value>
<comment>Data Speed (ie 2 Hertz = 2 times per second)</comment>
</data>
<data name="Highly_Assisted" xml:space="preserve">
<value>Highly Assisted</value>
<comment>AttoPilot Modes</comment>
</data>
<data name="In_Label" xml:space="preserve">
<value>In</value>
<comment>End of Servo selection Servo 1 In</comment>
</data>
<data name="Instrument_Selection" xml:space="preserve">
<value>Instrument Selection</value>
</data>
<data name="Instruments" xml:space="preserve">
<value>Instruments</value>
</data>
<data name="Interval" xml:space="preserve">
<value>Interval</value>
</data>
<data name="Invalid_File" xml:space="preserve">
<value>Invalid File</value>
</data>
<data name="Invalid_Mission_File_Format" xml:space="preserve">
<value>Invalid Mission File Format</value>
</data>
<data name="Knots" xml:space="preserve">
<value>Knots</value>
</data>
<data name="KPH" xml:space="preserve">
<value>km/h</value>
<comment>Kilometers Per Hour</comment>
</data>
<data name="Language" xml:space="preserve">
<value>Language</value>
</data>
<data name="Latitude" xml:space="preserve">
<value>Latitude</value>
</data>
<data name="Left" xml:space="preserve">
<value>L</value>
<comment>For Turn Coordinator (Only 1 Character!)</comment>
</data>
<data name="Line_Feed" xml:space="preserve">
<value>Line Feed</value>
<comment>Don't worry about this one</comment>
</data>
<data name="Line_Feed_Carriage_Return" xml:space="preserve">
<value>Line Feed+Carriage Return</value>
<comment>Don't worry about this one</comment>
</data>
<data name="Live_Camera" xml:space="preserve">
<value>Live Camera</value>
<comment>Video camera input</comment>
</data>
<data name="Loading_COM_Ports" xml:space="preserve">
<value>Loading COM Ports</value>
</data>
<data name="Loading_Settings" xml:space="preserve">
<value>Loading Settings</value>
</data>
<data name="Location_Data" xml:space="preserve">
<value>Location Data</value>
<comment>APM Message Type</comment>
</data>
<data name="Locked" xml:space="preserve">
<value>Locked</value>
<comment>GPS Lock</comment>
</data>
<data name="Loiter" xml:space="preserve">
<value>Loiter</value>
</data>
<data name="Longitude" xml:space="preserve">
<value>Longitude</value>
</data>
<data name="m_s" xml:space="preserve">
<value>m/s</value>
<comment>Meters Per Second</comment>
</data>
<data name="Mag_Mult" xml:space="preserve">
<value>&1 Mag</value>
<comment>X Magnetometer, Y Magnetometer, Z Magnetometer - Sensor data from IMU</comment>
</data>
<data name="mAh" xml:space="preserve">
<value>mAh</value>
<comment>Milliamp Hours</comment>
</data>
<data name="MAH_Color" xml:space="preserve">
<value>mAh Color</value>
<comment>Color selection on Battery/Throttle Meter for Milliamp Hours</comment>
</data>
<data name="Manual_Mode" xml:space="preserve">
<value>Manual Mode</value>
<comment>User is controlling plane with radio</comment>
</data>
<data name="Map_Update_Rate" xml:space="preserve">
<value>Map Update Rate</value>
<comment>Speed at which Google Earth is updated</comment>
</data>
<data name="Map_View" xml:space="preserve">
<value>Map View</value>
<comment>Google Earth is selected instead of Live Camera</comment>
</data>
<data name="Max_Amperage" xml:space="preserve">
<value>Max Amperage</value>
<comment>Maximum Amps </comment>
</data>
<data name="Max_Attitude" xml:space="preserve">
<value>Max Attitude</value>
<comment>Fastest the 3D model and Artificial Horizon will be updated with attitude data</comment>
</data>
<data name="Max_GPS" xml:space="preserve">
<value>Max GPS</value>
<comment>Fastest the lat, long, heading, etc will be updated with GPS data</comment>
</data>
<data name="Max_MAH" xml:space="preserve">
<value>Max mAh</value>
<comment>Max milliamp hours on battery meters</comment>
</data>
<data name="Max_Speed" xml:space="preserve">
<value>Max Speed</value>
<comment>Max speed shown on Speed Indicator (80, 120, 160, etc)</comment>
</data>
<data name="Max_Voltage" xml:space="preserve">
<value>Max Voltage</value>
<comment>Max voltage shown on battery meter</comment>
</data>
<data name="Max_Waypoint" xml:space="preserve">
<value>Max Waypoint</value>
<comment>Fastest thewaypoint, distance to waypoint, etc data will be updated</comment>
</data>
<data name="Meters" xml:space="preserve">
<value>Meters</value>
<comment>Meters/Feet</comment>
</data>
<data name="min" xml:space="preserve">
<value>min</value>
<comment>Short for minutes (non plural)</comment>
</data>
<data name="Min_MAH" xml:space="preserve">
<value>Min mAh</value>
<comment>Minimum mAh on battery meter</comment>
</data>
<data name="Min_Voltage" xml:space="preserve">
<value>Min Voltage</value>
<comment>Minimum voltage on battery meter</comment>
</data>
<data name="mins" xml:space="preserve">
<value>mins</value>
<comment>Short for minutes (plural)</comment>
</data>
<data name="Mission" xml:space="preserve">
<value>Mission</value>
<comment>Load mission waypoints</comment>
</data>
<data name="Mission_Path" xml:space="preserve">
<value>Mission Path</value>
<comment>Not flight path, but waypoint path</comment>
</data>
<data name="Mission_Path_Color" xml:space="preserve">
<value>Mission Path Color</value>
<comment>Color of lines connecting waypoints</comment>
</data>
<data name="Mode" xml:space="preserve">
<value>Mode</value>
</data>
<data name="Mode_Change" xml:space="preserve">
<value>Mode Change</value>
</data>
<data name="MPH" xml:space="preserve">
<value>MPH</value>
<comment>Miles Per Hour</comment>
</data>
<data name="No" xml:space="preserve">
<value>No</value>
</data>
<data name="No_line_ending" xml:space="preserve">
<value>No line ending</value>
<comment>Don't worry about this one</comment>
</data>
<data name="No_Tracking" xml:space="preserve">
<value>No Tracking</value>
<comment>Camera view for Google Earth - Do not follow plane</comment>
</data>
<data name="None" xml:space="preserve">
<value>None</value>
</data>
<data name="Normal" xml:space="preserve">
<value>Normal</value>
<comment>Settings Form</comment>
</data>
<data name="Not_Locked" xml:space="preserve">
<value>Not Locked</value>
<comment>GPS Lock</comment>
</data>
<data name="OK" xml:space="preserve">
<value>OK</value>
</data>
<data name="Open_Downloads" xml:space="preserve">
<value>Open Download List</value>
</data>
<data name="Open_Homepage" xml:space="preserve">
<value>Open Project Homepage</value>
</data>
<data name="Orange" xml:space="preserve">
<value>Orange</value>
<comment>Meter Color Selection</comment>
</data>
<data name="Original_Instruments" xml:space="preserve">
<value>Original Instrument Code by Guillaume CHOUTEAU</value>
<comment>Credits for original creator of instruments (ie Artificial Horizon)</comment>
</data>
<data name="Out_Label" xml:space="preserve">
<value>Out</value>
<comment>End of Servo selection Servo 1 Out</comment>
</data>
<data name="Overhead" xml:space="preserve">
<value>Overhead</value>
<comment>Google Earth View type where camera is looking straight down on top of plane</comment>
</data>
<data name="Overwrite_File" xml:space="preserve">
<value>Overwrite File</value>
</data>
<data name="Path_Opacity" xml:space="preserve">
<value>Path Opacity</value>
<comment>Sets transparency of flight and mission path</comment>
</data>
<data name="Path_Thickness" xml:space="preserve">
<value>Path Thickness</value>
<comment>How thick are the lines connecting waypoints and flight data points in Google Earth</comment>
</data>
<data name="Pause" xml:space="preserve">
<value>Pause</value>
</data>
<data name="Pitch" xml:space="preserve">
<value>Pitch</value>
</data>
<data name="Play" xml:space="preserve">
<value>Play</value>
</data>
<data name="Project_Homepage" xml:space="preserve">
<value>Project Homepage</value>
<comment>About Form</comment>
</data>
<data name="Properties" xml:space="preserve">
<value>Properties</value>
</data>
<data name="Protocol" xml:space="preserve">
<value>Protocol</value>
<comment>Protocol Label (ie NMEA, uBlox, SiRF)</comment>
</data>
<data name="Purple" xml:space="preserve">
<value>Purple</value>
<comment>Meter Color Selection</comment>
</data>
<data name="Raw_Data" xml:space="preserve">
<value>Raw Data</value>
</data>
<data name="Raw_IMU" xml:space="preserve">
<value>Raw IMU</value>
<comment>MAVline Message Type</comment>
</data>
<data name="RC_Channels_Scaled" xml:space="preserve">
<value>R/C Channels Scaled</value>
<comment>MAVlink message for servo outputs</comment>
</data>
<data name="Record" xml:space="preserve">
<value>Record</value>
</data>
<data name="Red" xml:space="preserve">
<value>Red</value>
<comment>Meter Color Selection</comment>
</data>
<data name="Reload_Com_Port_List" xml:space="preserve">
<value>Reload COM Port List</value>
</data>
<data name="Reload_Letter" xml:space="preserve">
<value>R</value>
<comment>Very small button (Only 1 Character!)</comment>
</data>
<data name="Reload_Mission" xml:space="preserve">
<value>Reload Mission</value>
</data>
<data name="Reload_Mission_Directory" xml:space="preserve">
<value>Reload Mission Directory</value>
</data>
<data name="Reload_Output_File_List" xml:space="preserve">
<value>Reload Output File List</value>
</data>
<data name="Reset_Run_Timer" xml:space="preserve">
<value>Reset Run Timer</value>
</data>
<data name="Resizing_Form" xml:space="preserve">
<value>Resizing Form</value>
</data>
<data name="Return_Home" xml:space="preserve">
<value>Return Home</value>
</data>
<data name="Reversed" xml:space="preserve">
<value>Reversed</value>
<comment>Settings Form</comment>
</data>
<data name="Rewind_To_Beginning" xml:space="preserve">
<value>Rewind to Beginning</value>
</data>
<data name="Right" xml:space="preserve">
<value>R</value>
<comment>For Turn Coordinator (Only 1 Character!)</comment>
</data>
<data name="Roll" xml:space="preserve">
<value>Roll</value>
</data>
<data name="Run_Time" xml:space="preserve">
<value>Run Time</value>
</data>
<data name="Satellites" xml:space="preserve">
<value>Satellites</value>
</data>
<data name="Save" xml:space="preserve">
<value>Save</value>
</data>
<data name="Search_Baud" xml:space="preserve">
<value>Search Baud</value>
</data>
<data name="Search_COM" xml:space="preserve">
<value>Search COM</value>
</data>
<data name="sec" xml:space="preserve">
<value>sec</value>
<comment>Short for seconds (non plural)</comment>
</data>
<data name="secs" xml:space="preserve">
<value>secs</value>
<comment>Short for seconds plural)</comment>
</data>
<data name="Select_Data_File_Directory" xml:space="preserve">
<value>Select Data File Directory</value>
</data>
<data name="Send" xml:space="preserve">
<value>Send</value>
</data>
<data name="Sensors" xml:space="preserve">
<value>Sensors</value>
</data>
<data name="Serial_Data" xml:space="preserve">
<value>Serial Data</value>
</data>
<data name="Serial_Settings" xml:space="preserve">
<value>Serial Settings</value>
</data>
<data name="Servo_Mult" xml:space="preserve">
<value>Servo &1</value>
<comment>Servo 1, Servo 2, etc</comment>
</data>
<data name="Servos" xml:space="preserve">
<value>Servos</value>
</data>
<data name="Set_Home" xml:space="preserve">
<value>Set Home</value>
</data>
<data name="Setting_Up_Comboboxes" xml:space="preserve">
<value>Setting up Comboboxes</value>
<comment>Splash screen status message - Loading data into dropdown controls</comment>
</data>
<data name="Setting_Up_Webbrowser" xml:space="preserve">
<value>Setting up Webbrowser</value>
<comment>Splash screen status message - Loading javascript into webbrowser control</comment>
</data>
<data name="Settings" xml:space="preserve">
<value>Settings</value>
</data>
<data name="Shrink" xml:space="preserve">
<value>Shrink</value>
</data>
<data name="Socket_Num" xml:space="preserve">
<value>Socket Num</value>
</data>
<data name="Speech" xml:space="preserve">
<value>Speech</value>
</data>
<data name="Speed" xml:space="preserve">
<value>Speed</value>
</data>
<data name="Speed_Units" xml:space="preserve">
<value>Speed Units</value>
<comment>MPH, km/h, m/s</comment>
</data>
<data name="Stabilized" xml:space="preserve">
<value>Stabilized</value>
</data>
<data name="Starting_GCS" xml:space="preserve">
<value>Starting &1</value>
<comment>Splash screen title Starting HappyKillmore's GCS</comment>
</data>
<data name="Status" xml:space="preserve">
<value>Status</value>
</data>
<data name="Step_Back" xml:space="preserve">
<value>Step Back</value>
</data>
<data name="Step_Forward" xml:space="preserve">
<value>Step Forward</value>
</data>
<data name="Stop_Recording" xml:space="preserve">
<value>Stop Recording</value>
</data>
<data name="Supported_Protocols" xml:space="preserve">
<value>Supported Protocols</value>
<comment>NMEA, uBlox, AttoPilot, UavDevBoard, etc - About Form</comment>
</data>
<data name="System_Status" xml:space="preserve">
<value>System Status</value>
<comment>MAVline Message Type</comment>
</data>
<data name="Target_Alt" xml:space="preserve">
<value>Target Alt</value>
<comment>Desired altitude at next waypoint</comment>
</data>
<data name="Telemetry_GPS" xml:space="preserve">
<value>Telemetry GPS</value>
<comment>FY21AP Message Type</comment>
</data>
<data name="Thro" xml:space="preserve">
<value>Thro</value>
<comment>Short for Throttle</comment>
</data>
<data name="Throttle" xml:space="preserve">
<value>Throttle</value>
</data>
<data name="Throttle_Channel" xml:space="preserve">
<value>Throttle Channel</value>
<comment>Which radio input is the throttle (1 or 3 typically)</comment>
</data>
<data name="Throttle_Color" xml:space="preserve">
<value>Throttle Color</value>
<comment>Color of throttle meter on battery instrument</comment>
</data>
<data name="Tracking" xml:space="preserve">
<value>Tracking</value>
<comment>Tracking Tab (Antenna Tracking)</comment>
</data>
<data name="Translated_Data" xml:space="preserve">
<value>Translated Data</value>
<comment>Data that is not the raw message from GPS/Auto-pilot</comment>
</data>
<data name="Turn_Coordinator" xml:space="preserve">
<value>Turn Coordinator</value>
<comment>http://en.wikipedia.org/wiki/Turn_coordinator</comment>
</data>
<data name="Type_F13" xml:space="preserve">
<value>Type F13</value>
<comment>UavDevBoard Message Type</comment>
</data>
<data name="uBlox_Binary" xml:space="preserve">
<value>uBlox Binary</value>
</data>
<data name="Up" xml:space="preserve">
<value>up</value>
<comment>For Vertical Speed</comment>
</data>
<data name="UTC" xml:space="preserve">
<value>UTC</value>
<comment>Coordinated Universal Time (Greenich Mean Time - No Timezone Offset) - SHORT!</comment>
</data>
<data name="Version" xml:space="preserve">
<value>Version</value>
<comment>About Form</comment>
</data>
<data name="Vertical_Speed" xml:space="preserve">
<value>Vertical Speed</value>
<comment>Speed of plane going up or down (not ground or air speed)</comment>
</data>
<data name="View_File" xml:space="preserve">
<value>View File</value>
</data>
<data name="Voice" xml:space="preserve">
<value>Voice</value>
</data>
<data name="Voltage_Color" xml:space="preserve">
<value>Voltage Color</value>
<comment>Color of voltage meter in battery instrument</comment>
</data>
<data name="Volts" xml:space="preserve">
<value>Volts</value>
</data>
<data name="Waypoint" xml:space="preserve">
<value>Waypoint</value>
<comment>MAVline Message Type</comment>
</data>
<data name="Waypoint_Data" xml:space="preserve">
<value>Waypoint Data</value>
</data>
<data name="Waypoint_Mode" xml:space="preserve">
<value>Waypoint Mode</value>
<comment>FY21AP Modes</comment>
</data>
<data name="Yaw" xml:space="preserve">
<value>Yaw</value>
</data>
<data name="Yellow" xml:space="preserve">
<value>Yellow</value>
<comment>Meter Color Selection</comment>