forked from iNavFlight/inav-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.json
executable file
·5601 lines (5564 loc) · 193 KB
/
messages.json
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
{
"translation_version": {
"message": "0"
},
"options_title": {
"message": "Application Options"
},
"options_receive_app_notifications": {
"message": "Receive desktop <strong>notification</strong> when application updates"
},
"options_improve_configurator": {
"message": "Send anonymous usage data to the developer team"
},
"options_showProfileParameters": {
"message": "Highlight parameters that change when switching battery or control profiles"
},
"options_unit_type": {
"message": "Set how the units render on the configurator only"
},
"options_render": {
"message": "Configurator rendering options"
},
"connect": {
"message": "Connect"
},
"connecting": {
"message": "Connecting"
},
"disconnect": {
"message": "Disconnect"
},
"autoConnect": {
"message": "Auto-Connect"
},
"autoConnectEnabled": {
"message": "Auto-Connect: Enabled - Configurator automatically tries to connect when new port is detected"
},
"autoConnectDisabled": {
"message": "Auto-Connect: Disabled - User needs to select the correct serial port and click \"Connect\" button on its own"
},
"deviceRebooting": {
"message": "Device - <span style=\"color: red\">Rebooting</span>"
},
"deviceReady": {
"message": "Device - <span style=\"color: #37a8db\">Ready</span>"
},
"savingDefaults": {
"message": "Device - <span style=\"color: red\">Saving default settings</span>"
},
"fcNotConnected": {
"message": "Not connected"
},
"backupFileIncompatible": {
"message": "Backup file provided was generated for previous version of the configurator and is incompatible with this version of configurator. Sorry"
},
"backupFileUnmigratable": {
"message": "Backup file provided was generated by a previous version of the configurator and is not migratable. Sorry."
},
"configMigrationFrom": {
"message": "Migrating configuration file generated by configurator: $1"
},
"configMigratedTo": {
"message": "Migrated configuration to configurator: $1"
},
"configMigrationSuccessful": {
"message": "Configuration migration complete, migrations applied: $1"
},
"documentation": {
"message": "Documentation"
},
"tabFirmwareFlasher": {
"message": "Firmware Flasher"
},
"tabLanding": {
"message": "Welcome"
},
"tabHelp": {
"message": "Documentation & Support"
},
"tabSetup": {
"message": "Setup"
},
"tabCalibration": {
"message": "Calibration"
},
"tabConfiguration": {
"message": "Configuration"
},
"tabPorts": {
"message": "Ports"
},
"tabPidTuning": {
"message": "PID tuning"
},
"tabReceiver": {
"message": "Receiver"
},
"tabMisc": {
"message": "Miscellaneous"
},
"tabModeSelection": {
"message": "Mode Selection"
},
"tabServos": {
"message": "Servos"
},
"tabFailsafe": {
"message": "Failsafe"
},
"tabEzTune": {
"message": "Ez Tune"
},
"tabGPS": {
"message": "GPS"
},
"tabOutputs": {
"message": "Outputs"
},
"tabLedStrip": {
"message": "LED Strip"
},
"tabRawSensorData": {
"message": "Sensors"
},
"tabCLI": {
"message": "CLI"
},
"tabLogging": {
"message": "Tethered Logging"
},
"tabOnboardLogging": {
"message": "Blackbox"
},
"tabAdjustments": {
"message": "Adjustments"
},
"tabAuxiliary": {
"message": "Modes"
},
"tabSitl": {
"message" : "SITL"
},
"sitlDemoMode": {
"message": "Demo Mode"
},
"sitlResetDemoModeData": {
"message": "Reset Demo Mode"
},
"sitlOSNotSupported": {
"message": "SITL is not supported on this operating system."
},
"sitlOptions": {
"message": "SITL Options"
},
"sitlEnableSim": {
"message": "Enable simulator"
},
"sitlSimulator": {
"message": "Simulator"
},
"sitlUseImu": {
"message": "Use IMU"
},
"sitlSimIP": {
"message" : "Simulator IP"
},
"sitlPort": {
"message" : "Simulator Port"
},
"sitlChannelMap": {
"message": "Channel Mapping"
},
"sitlSimInput": {
"message": "Simulator Input"
},
"sitlInavOutput": {
"message": "INAV Output"
},
"sitlLog": {
"message": "Log"
},
"sitlStart": {
"message": "Start"
},
"sitlStop": {
"message": "Stop"
},
"sitlStopped": {
"message": "SITL stopped\n"
},
"sitlProfiles": {
"message": "SITL Profiles"
},
"sitlNew": {
"message": "New"
},
"sitlSave": {
"message": "Save"
},
"sitlDelete": {
"message": "Delete"
},
"sitlNewProfile": {
"message": "New SITL Profile"
},
"sitlEnterName": {
"message": "(Profile name)"
},
"sitlProfileExists": {
"message": "A profile with this name already exists."
},
"sitlStdProfileCantDeleted": {
"message": "SITL standard profile can't be deleted."
},
"sitlStdProfileCantOverwritten": {
"message": "SITL standard profile can't be overwritten. Please create a new one."
},
"sitlSerialToTCP": {
"message": "Serial to TCP (UART)"
},
"sitlSerialProtocoll": {
"message": "Preset for RX Protocoll"
},
"sitlSerialStopbits": {
"message": "Stopbits"
},
"sitlSerialPort": {
"message": "Serial port"
},
"sitlSerialTCPPort": {
"message": "TCP port"
},
"sitlSerialParity": {
"message": "Parity"
},
"sitlSerialTcpEnable": {
"message": "Enable"
},
"sitlHelp": {
"message": "SITL (Software in the loop) allows to run INAV completely in software on the PC without using a flight controller and simulate complete FPV flights. For this, INAV is compiled with a normal PC compiler. The sensors are replaced by data provided by a simulator.<br/>Currently supported are:<br/><ul><li><a href=\"https://www.realflight.com\" target=\"_blank\">RealFlight</a><br/></li><li><a href=\"https://www.x-plane.com\" target=\"_blank\">X-Plane</a></li></ul>"
},
"sitlProfilesHelp": {
"message": "Profiles are saved locally. The profiles contain not only all data of this tab, but also the configuration file (\"EEPROM\") of INAV itself. <br><span style=\"color: red\">Note:</span><br>Standard profiles can't be overwriten. To save your changes, create a new profile. "
},
"sitlEnableSimulatorHelp": {
"message": "If this option is deactivated, only UARTS (MSP/Configurator) can be used. Useful to configure INAV without having to start the simulator."
},
"sitlUseImuHelp": {
"message": "Use IMU sensor data from the simulator instead of using attitude data from the simulator directly (Experimental, not recommended)."
},
"sitlIpHelp": {
"message": "IP address of the computer on which the simulator is running. If the simulator is running on the same computer, leave it at \"127.0.0.1"
},
"sitlPortHelp": {
"message": "Port number of the interface of the simulator. Note: The RealFlight port is fixed and cannot be changed."
},
"sitlSer2TcpHelp": {
"message": "Devices with a UART interface can be used with SITL via a serial to USB interface. Especially intended for serial receivers to use the full number of channels. "
},
"auxiliaryAcroEnabled": {
"message": "ACRO"
},
"serialPortOpened": {
"message": "MSP connection <span style=\"color: #37a8db\">successfully</span> opened with ID: $1"
},
"serialPortOpenFail": {
"message": "<span style=\"color: red\">Failed</span> to open MSP connection"
},
"serialPortClosedOk": {
"message": "MSP connection <span style=\"color: #37a8db\">successfully</span> closed"
},
"serialPortClosedFail": {
"message": "<span style=\"color: red\">Failed</span> to close MSP connection"
},
"serialPortUnrecoverable": {
"message": "Unrecoverable <span style=\"color: red\">failure</span> of serial connection, disconnecting...'"
},
"connectionConnected": {
"message": "Connected to: $1"
},
"connectionBleType": {
"message": "BLE device type: $1"
},
"connectionBleNotSupported": {
"message": "<span style=\"color: red\">Connection error:</span> Firmware doesn't support BLE connections. Abort."
},
"connectionBleInterrupted": {
"message": "The connection was unexpectedly interrupted."
},
"connectionBleError": {
"message": "Error while opening BLE device: $1"
},
"connectionBleCliEnter": {
"message": "Connection over BLE active, output might be slower than usual."
},
"connectionUdpTimeout": {
"message": "UDP connection timed out."
},
"usbDeviceOpened": {
"message": "USB device <span style=\"color: #37a8db\">successfully</span> opened with ID: $1"
},
"usbDeviceOpenFail": {
"message": "<span style=\"color: red\">Failed</span> to open USB device!"
},
"usbDeviceClosed": {
"message": "USB device <span style=\"color: #37a8db\">successfully</span> closed"
},
"usbDeviceCloseFail": {
"message": "<span style=\"color: red\">Failed</span> to close USB device"
},
"usbDeviceUdevNotice": {
"message": "Are <strong>udev rules</strong> installed correctly? See docs for instructions"
},
"stm32UsbDfuNotFound": {
"message": "USB DFU not found"
},
"stm32RebootingToBootloader": {
"message": "Initiating reboot to bootloader ..."
},
"stm32RebootingToBootloaderFailed": {
"message": "Rebooting device to bootloader: FAILED"
},
"stm32TimedOut": {
"message": "STM32 - timed out, programming: FAILED"
},
"stm32WrongResponse": {
"message": "STM32 Communication failed, wrong response, expected: $1 (0x$2) received: $3 (0x$4)"
},
"stm32ContactingBootloader": {
"message": "Contacting bootloader ..."
},
"stm32ContactingBootloaderFailed": {
"message": "Communication with bootloader failed"
},
"stm32ResponseBootloaderFailed": {
"message": "No response from the bootloader, programming: FAILED"
},
"stm32GlobalEraseExtended": {
"message": "Executing global chip erase (via extended erase) ..."
},
"stm32LocalEraseExtended": {
"message": "Executing local erase (via extended erase) ..."
},
"stm32GlobalErase": {
"message": "Executing global chip erase ..."
},
"stm32LocalErase": {
"message": "Executing local erase ..."
},
"stm32InvalidHex": {
"message": "Invalid hex"
},
"stm32Erase": {
"message": "Erasing ..."
},
"stm32Flashing": {
"message": "Flashing ..."
},
"stm32Verifying": {
"message": "Verifying ..."
},
"stm32ProgrammingSuccessful": {
"message": "Programming: SUCCESSFUL"
},
"stm32ProgrammingFailed": {
"message": "Programming: FAILED"
},
"stm32AddressLoadFailed": {
"message": "Address load for option bytes sector failed. Very likely due to read protection."
},
"stm32AddressLoadSuccess": {
"message": "Address load for option bytes sector succeeded."
},
"stm32AddressLoadUnknown": {
"message": "Address load for option bytes sector failed with unknown error. Aborting."
},
"stm32NotReadProtected": {
"message": "Read protection not active"
},
"stm32ReadProtected": {
"message": "Board seems read protected. Unprotecting. Do not disconnect/unplug!"
},
"stm32UnprotectSuccessful": {
"message": "Unprotect successful."
},
"stm32UnprotectUnplug": {
"message": "ACTION REQUIRED: Unplug and re-connect flight controller in DFU mode to try flashing again!"
},
"stm32UnprotectFailed": {
"message": "Failed to unprotect board"
},
"stm32UnprotectInitFailed": {
"message": "Failed to initiate unprotect routine"
},
"noConfigurationReceived": {
"message": "No configuration received within <span style=\"color: red\">10 seconds</span>, communication <span style=\"color: red\">failed</span>"
},
"firmwareVersionNotSupported": {
"message": "This firmware version is <span style=\"color: red\">not supported</span>. This version of Configurator supports firmware from $1 to $2 (excluded)"
},
"firmwareVariantNotSupported": {
"message": "This firmware variant is <span style=\"color: red\">not supported</span>. Please upgrade to INAV firmware. Use CLI for backup before flashing. CLI backup/restore procedure is in the documention."
},
"tabSwitchConnectionRequired": {
"message": "You need to <strong>connect</strong> before you can view any of the tabs."
},
"tabSwitchWaitForOperation": {
"message": "You <span style=\"color: red\">can't</span> do this right now, please wait for current operation to finish ..."
},
"tabSwitchUpgradeRequired": {
"message": "You need to <strong>upgrade</strong> your firmware before you can use the $1 tab."
},
"firmwareVersion": {
"message": "Firmware Version: <strong>$1</strong>"
},
"apiVersionReceived": {
"message": "MultiWii API version <span style=\"color: #37a8db\">received</span> - <strong>$1</strong>"
},
"uniqueDeviceIdReceived": {
"message": "Unique device ID <span style=\"color: #37a8db\">received</span> - <strong>0x$1</strong>"
},
"boardInfoReceived": {
"message": "Board: <strong>$1</strong>, version: <strong>$2</strong>"
},
"buildInfoReceived": {
"message": "Running firmware released on: <strong>$1</strong>"
},
"fcInfoReceived": {
"message": "Flight controller info, identifier: <strong>$1</strong>, version: <strong>$2</strong>"
},
"notifications_app_just_updated_to_version": {
"message": "Application just updated to version: $1"
},
"notifications_click_here_to_start_app": {
"message": "Click here to start the application"
},
"statusbar_port_utilization": {
"message": "Port utilization:"
},
"statusbar_usage_download": {
"message": "D: $1%"
},
"statusbar_usage_upload": {
"message": "U: $1%"
},
"statusbar_packet_error": {
"message": "Packet error:"
},
"statusbar_i2c_error": {
"message": "I2C error:"
},
"statusbar_cycle_time": {
"message": "Cycle Time:"
},
"statusbar_cpu_load": {
"message": "CPU Load: $1%"
},
"statusbar_arming_flags": {
"message": "Arming Flags:"
},
"dfu_connect_message": {
"message": "Please use the Firmware Flasher to access DFU devices"
},
"dfu_erased_kilobytes": {
"message": "Erased $1 kB of flash <span style=\"color: #37a8db\">successfully</span>"
},
"dfu_device_flash_info": {
"message": "Detected device with total flash size $1 kiB"
},
"dfu_error_image_size": {
"message": "<span style=\"color: red; font-weight: bold\">Error</span>: Supplied image is larger then flash available on the chip! Image: $1 kiB, limit = $2 kiB"
},
"eeprom_saved_ok": {
"message": "EEPROM <span style=\"color: #37a8db\">saved</span>"
},
"defaultWelcomeIntro": {
"message": "Welcome to <strong>INAV - Configurator</strong>, a utility designed to simplify updating, configuring and tuning of your flight controller."
},
"defaultWelcomeHead": {
"message": "Firmware & drivers"
},
"defaultWelcomeHead2": {
"message": "INAV Friends"
},
"defaultWelcomeText2": {
"message": "INAV is supported by a great community of users, developers and companies. Here is a short list: <a href=\"http://www.mateksys.com/\" target=\"_blank\">Mateksys</a>, <a href=\"https://www.speedybee.com/\" target=\"_blank\">SpeedyBee</a>, <a href=\"https://geprc.com/\" target=\"_blank\">GEPRC</a>. "
},
"defaultWelcomeText": {
"message": "The firmware source code can be downloaded from <a href=\"https://github.com/iNavFlight\" title=\"github.com\" target=\"_blank\">here</a><br />The newest binary firmware image is available <a href=\"https://github.com/iNavFlight/inav/releases\" title=\"github.com\" target=\"_blank\">here</a>.<br /><br />Latest <strong>STM USB VCP Drivers</strong> can be downloaded from <a href=\"http://www.st.com/web/en/catalog/tools/PF257938\" title=\"http://www.st.com\" target=\"_blank\">here</a><br />Latest <strong>Zadig</strong> for Windows DFU flashing can be downloaded from <a href=\"http://zadig.akeo.ie/\" title=\"http://zadig.akeo.ie\" target=\"_blank\">here</a><br />"
},
"defaultContributingHead": {
"message": "Contributing"
},
"defaultContributingText": {
"message": "If you would like to help make INAV even better you can help in many ways, including:<br /><ul><li>Answering other users questions on the forums and IRC.</li><li>Contributing code to the firmware and configurator - new features, fixes, improvements</li><li>Testing <a href=\"https://github.com/iNavFlight/inav/pulls\" target=\"_blank\">new features/fixes</a> and providing feedback.</li><li>Helping out with <a href=\"https://github.com/iNavFlight/inav/issues\" target=\"_blank\">issues and commenting on feature requests</a>.</li></ul>"
},
"defaultChangelogHead": {
"message": "Configurator - Changelog"
},
"defaultButtonFirmwareFlasher": {
"message": "Firmware Flasher"
},
"defaultDonateHead": {
"message": "Open Source / Donation Notice"
},
"defaultDonateText": {
"message": "This utility is fully <strong>open source</strong> and is available free of charge to all <strong>INAV</strong> users.<br />If you found the INAV or INAV Configurator useful, please consider <strong>supporting</strong> its development by donating."
},
"defaultSponsorsHead": {
"message": "INAV is supported by"
},
"communityRCGroupsSupport": {
"message": "RC Groups Support"
},
"communityDiscordServer": {
"message": "Discord Server"
},
"communitySlackSupport": {
"message": "Slack Support Live Chat"
},
"communityTelegramSupport": {
"message": "Telegram Channel"
},
"communityFacebookSupport": {
"message": "Facebook Group"
},
"initialSetupBackupAndRestoreApiVersion": {
"message": "<span style=\"color: red\">Backup and restore functionality disabled.</span> You have firmware with API version <span style=\"color: red\">$1</span>, backup and restore requires <span style=\"color: #37a8db\">$2</span>. Please backup your settings via the CLI, see INAV documentation for procedure."
},
"initialSetupButtonCalibrateAccel": {
"message": "Calibrate Accelerometer"
},
"initialSetupCalibrateAccelText": {
"message": "6-point calibration of accelerometer. Go to wiki for iNav and follow Sensor Calibration for more infomation"
},
"initialSetupButtonCalibrateMag": {
"message": "Calibrate Magnetometer"
},
"initialSetupCalibrateMagText": {
"message": "Move multirotor at least <strong>360</strong> degrees on all axis of rotation, you have 30 seconds to perform this task"
},
"initialSetupButtonReset": {
"message": "Reset Settings"
},
"initialSetupResetText": {
"message": "Restore settings to <strong>default</strong>"
},
"initialSetupButtonBackup": {
"message": "Backup"
},
"initialSetupButtonRestore": {
"message": "Restore"
},
"initialSetupBackupRestoreText": {
"message": "<strong>Backup</strong> your configuration in case of an accident, <strong>CLI</strong> settings are <span style=\"color: red\">not</span> included - See 'dump' cli command"
},
"initialSetupBackupSuccess": {
"message": "Backup saved <span style=\"color: #37a8db\">successfully</span>"
},
"initialSetupRestoreSuccess": {
"message": "Configuration restored <span style=\"color: #37a8db\">successfully</span>"
},
"initialSetupButtonResetZaxis": {
"message": "Reset Z axis, offset: 0 deg"
},
"initialSetupButtonResetZaxisValue": {
"message": "Reset Z axis, offset: $1 deg"
},
"initialSetupMixerHead": {
"message": "Mixer Type"
},
"initialSetupThrottleHead": {
"message": "Throttle Settings"
},
"initialSetupMinimum": {
"message": "Minimum:"
},
"initialSetupMaximum": {
"message": "Maximum:"
},
"initialSetupFailsafe": {
"message": "Failsafe:"
},
"initialSetupMinCommand": {
"message": "MinCommand:"
},
"initialSetupBatteryHead": {
"message": "Battery"
},
"initialSetupMinCellV": {
"message": "Min Cell Voltage:"
},
"initialSetupMaxCellV": {
"message": "Max Cell Voltage:"
},
"initialSetupVoltageScale": {
"message": "Voltage Scale:"
},
"initialSetupAccelTrimsHead": {
"message": "Accelerometer trims"
},
"initialSetupPitch": {
"message": "Pitch:"
},
"initialSetupRoll": {
"message": "Roll:"
},
"initialSetupMagHead": {
"message": "Magnetometer"
},
"initialSetupDeclination": {
"message": "Declination:"
},
"initialSetupInfoHead": {
"message": "Info"
},
"initialSetupBatteryVoltage": {
"message": "Battery voltage:"
},
"initialSetupBatteryDetectedCells": {
"message": "Battery detected cell count:"
},
"initialSetupBatteryDetectedCellsValue": {
"message": "$1"
},
"initialSetupBatteryPercentage": {
"message": "Battery left:"
},
"initialSetupBatteryPercentageValue": {
"message": "$1 %"
},
"initialSetupBatteryRemainingCapacity": {
"message": "Battery remaining capacity"
},
"initialSetupBatteryRemainingCapacityValue": {
"message": "$1 $2"
},
"initialSetupBatteryFull": {
"message": "Battery full when plugged in"
},
"initialSetupBatteryFullValue": {
"message": "$1"
},
"initialSetupBatteryThresholds": {
"message": "Battery use cap thresholds"
},
"initialSetupBatteryThresholdsValue": {
"message": "$1"
},
"initialSetup_Wh_drawn": {
"message": "Capacity drawn:"
},
"initialSetup_Wh_drawnValue": {
"message": "$1 Wh"
},
"initialSetupBatteryVoltageValue": {
"message": "$1 V"
},
"initialSetupDrawn": {
"message": "Capacity drawn:"
},
"initialSetupCurrentDraw": {
"message": "Current draw:"
},
"initialSetupPowerDraw": {
"message": "Power draw:"
},
"initialSetupPowerDrawValue": {
"message": "$1 W"
},
"initialSetupBatteryMahValue": {
"message": "$1 mAh"
},
"initialSetupCurrentDrawValue": {
"message": "$1 A"
},
"initialSetupRSSI": {
"message": "RSSI:"
},
"initialSetupRSSIValue": {
"message": "$1 %"
},
"initialSetupGPSHead": {
"message": "GPS"
},
"initialSetupInstrumentsHead": {
"message": "Instruments"
},
"initialSetupButtonSave": {
"message": "Save"
},
"initialSetupModel": {
"message": "Model: $1"
},
"initialSetupAttitude": {
"message": "$1 deg"
},
"initialSetupAccelCalibStarted": {
"message": "Accelerometer calibration started"
},
"initialSetupAccelCalibEnded": {
"message": "Accelerometer calibration <span style=\"color: #37a8db\">finished</span>"
},
"initialSetupMagCalibStarted": {
"message": "Magnetometer calibration started"
},
"initialSetupMagCalibEnded": {
"message": "Magnetometer calibration <span style=\"color: #37a8db\">finished</span>"
},
"initialSetupOpflowCalibStarted": {
"message": "Optic flow calibration started"
},
"initialSetupOpflowCalibEnded": {
"message": "Optic flow calibration <span style=\"color: #37a8db\">finished</span>"
},
"initialSetupSettingsRestored": {
"message": "Settings restored to <strong>default</strong>"
},
"initialSetupEepromSaved": {
"message": "EEPROM <span style=\"color: #37a8db\">saved</span>: Setup"
},
"RX_PPM": {
"message": "PPM RX input"
},
"RX_SERIAL": {
"message": "Serial-based receiver (SPEKSAT, SBUS, SUMD)"
},
"RX_PWM": {
"message": "PWM RX input (one wire per channel)"
},
"RX_MSP": {
"message": "MSP RX input (control via MSP port)"
},
"RX_SPI": {
"message": "RX SPI based receiver (NRF24L01, RFM22)"
},
"RX_NONE": {
"message": "No receiver"
},
"featureVBAT": {
"message": "Battery voltage monitoring"
},
"featureTX_PROF_SEL": {
"message": "Profile selection with TX stick command"
},
"featureINFLIGHT_ACC_CAL": {
"message": "In-flight level calibration"
},
"featureMOTOR_STOP": {
"message": "Stop motors on low throttle"
},
"featureSERVO_TILT": {
"message": "Servo gimbal"
},
"featureBAT_PROFILE_AUTOSWITCH": {
"message": "Automatic battery profile selection"
},
"featureBAT_PROFILE_AUTOSWITCHTip": {
"message": "Automatically select battery profile based on battery voltage when the battery is plugged in"
},
"featureTHR_VBAT_COMP": {
"message": "Throttle voltage compensation"
},
"featureTHR_VBAT_COMPTip": {
"message": "Automatically compensate for the voltage drop when the battery is discharging to keep the thrust constant relative to throttle"
},
"featureSOFTSERIAL": {
"message": "Enable CPU based serial ports"
},
"featureSOFTSERIALTip": {
"message": "Configure ports on the Ports tab after enabling."
},
"featureGPS": {
"message": "GPS for navigation and telemetry"
},
"featureGPSTip": {
"message": "Configure port scenario first"
},
"featureFAILSAFE": {
"message": "Apply failsafe settings on RX signal loss"
},
"featureSONAR": {
"message": "Sonar"
},
"featureTELEMETRY": {
"message": "Telemetry output"
},
"featureCURRENT_METER": {
"message": "Battery current monitoring"
},
"featureREVERSIBLE_MOTORS": {
"message": "Reversible motors mode (for use with reversible ESCs)"
},
"featureRSSI_ADC": {
"message": "Analog RSSI input"
},
"featureLED_STRIP": {
"message": "Multi-color RGB LED strip support"
},
"featureDASHBOARD": {
"message": "OLED Screen Display"
},
"featureONESHOT125": {
"message": "ONESHOT ESC support"
},
"featureONESHOT125Tip": {
"message": "Disconnect flight battery and remove props before enabling."
},
"featurePWM_OUTPUT_ENABLE": {
"message": "Enable motor and servo output"
},
"featurePWM_OUTPUT_ENABLETip": {
"message": "Enabling this option is required for INAV to send signals to ESC. It is a safety precaution that prevents servos from being damaged right after flashing flight controller."
},
"featureBLACKBOX": {
"message": "Blackbox flight data recorder"
},
"featureBLACKBOXTip": {
"message": "Configure via the BlackBox tab after enabling."
},
"onboardLoggingBlackbox": {
"message": "Blackbox logging device"
},
"onboardLoggingBlackboxRate": {
"message": "Portion of flight loop iterations to log (logging rate)"
},
"featureCHANNEL_FORWARDING": {
"message": "Forward aux channels to servo outputs"
},
"featureSOFTSPI": {
"message": "CPU based SPI"
},
"featurePWM_SERVO_DRIVER": {
"message": "External PWM servo driver"
},
"featurePWM_SERVO_DRIVERTip": {
"message": "Use external PCA9685 PMW driver to connect up to 16 servos to flight controller. PCA9685 has to be connected to enable this feature."
},
"featureRSSI_ADCTip": {
"message": "RSSI is a measurement of signal strength and is very handy so you know when your aircraft is going out of range or if it is suffering RF interference."
},
"featureOSD": {
"message": "OSD"
},
"featureAIRMODE": {
"message": "Permanently enable AIRMODE"
},
"featureFW_LAUNCH": {
"message": "Permanently enable Launch Mode for Fixed Wing"
},
"featureFW_AUTOTRIM": {
"message": "Continuously trim servos on Fixed Wing"
},
"featureFW_AUTOTRIMTip": {
"message": "When flying in a stabilized mode, continuously adjust the servo midpoints so that the airplane keeps flying straight when switching to manual mode. Requires GPS."
},
"featureDYNAMIC_FILTERS": {
"message": "Dynamic Gyro Filters"
},
"featureDYNAMIC_FILTERSTip": {
"message": "Use automatic FFT gyro analysis to setup notch filters to attenuate gyro noise. Should be enabled all the time!"
},
"configurationFeatureEnabled": {
"message": "Enabled"
},
"configurationFeatureName": {
"message": "Feature"
},
"configurationFeatureDescription": {
"message": "Description"
},
"configurationMixer": {
"message": "Mixer"
},
"configurationFeatures": {
"message": "Other Features"
},
"configurationReceiver": {
"message": "Receiver Mode"
},
"configurationRSSI": {
"message": "RSSI (Signal Strength)"
},
"configurationEscFeatures": {
"message": "ESC/Motor Features"
},
"serialrx_inverted": {
"message": "Serial Port Inverted (comparing to protocol default)"
},
"serialrx_halfduplex": {
"message": "Serial receiver half-duplex"
},
"configurationFeaturesHelp": {
"message": "<strong>Note:</strong> Not all combinations of features are valid. When the flight controller firmware detects invalid feature combinations conflicting features will be disabled.<br /><strong>Note:</strong> Configure serial ports <span style=\"color: red\">before</span> enabling the features that will use the ports."
},
"configurationSerialRXHelp": {
"message": "<strong>Note:</strong> Remember to configure a Serial Port (via Ports tab) for the serial receiver"
},
"configurationSensorAlignmentMag": {
"message": "MAG Alignment"
},
"configurationSensorAlignmentMagRoll": {
"message": "Roll"
},
"configurationSensorAlignmentMagPitch": {
"message": "Pitch"
},
"configurationSensorAlignmentMagYaw": {
"message": "Yaw"
},
"configurationAccelTrims": {
"message": "Accelerometer Trim"
},
"configurationAccelTrimRoll": {
"message": "Accelerometer Roll Trim"
},
"configurationAccelTrimPitch": {
"message": "Accelerometer Pitch Trim"
},
"configurationMagDeclination": {
"message": "Magnetometer Declination [deg]"
},
"configurationAutoDisarmDelay": {
"message": "Seconds until disarm due to low THR"
},
"configurationAutoDisarmDelayHelp": {
"message": "Only used for stick arming (i.e. not using a switch)"
},
"configurationThrottleMinimum": {
"message": "Minimum Throttle"
},
"configurationThrottleMid": {
"message": "Middle Throttle [RC inputs center value]"
},
"configurationThrottleMaximum": {
"message": "Maximum Throttle"
},
"configurationThrottleMinimumCommand": {
"message": "Minimum Command"
},
"configurationVoltageCurrentSensor": {
"message": "Voltage and Current Sensors"
},
"configurationBatteryCurrent": {
"message": "Battery Current"
},
"configurationVoltageSource": {
"message": "Voltage source to use for alarms and telemetry"
},
"configurationVoltageSourceHelp": {
"message": "Raw voltage is the voltage read directly from the battery. Sag compensated voltage is the calculated voltage the battery should be at without load (simulates ideal battery and should remove false alarms provoked by high loads)"
},
"configurationBatteryCells": {
"message": "Number of cells (0 = auto)"
},
"configurationBatteryCellsHelp": {
"message": "Set this to the number of cells of your battery to disable automatic cell count detection or to make the automatic switching of battery profiles possible. 7S, 9S and 11S batteries cannot be autodetected."
},
"configurationBatteryCellDetectVoltage": {
"message": "Maximum cell voltage for cell count detection"
},
"configurationBatteryCellDetectVoltageHelp": {
"message": "Maximum cell voltage used for cell count autodetection. Should be higher than maximum cell voltage to take into account possible drift in measured voltage and keep cell count detection accurate."
},
"configurationBatteryMinimum": {
"message": "Minimum Cell Voltage"
},
"configurationBatteryMaximum": {
"message": "Maximum Cell Voltage"
},
"configurationBatteryWarning": {
"message": "Warning Cell Voltage"
},
"configurationBatteryScale": {
"message": "Voltage Scale"
},
"configurationBatteryVoltage": {
"message": "Battery Voltage"
},
"configurationCurrentScale": {
"message": "Current Meter Scale"
},
"configurationCurrentScaleHelp": {
"message": "Scale the output voltage to milliamps [1/10th mV/A]"
},
"configurationCurrentOffset": {
"message": "Offset in millivolt steps"