Welcome to mirror list, hosted at ThFree Co, Russian Federation.

messages.json « en « _locales - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54bb520e7b9b3c993c36da9e81f8af4c47e24b32 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
{
    "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"
    },
    "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"
    },

    "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%"
    },

    "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."
    },

    "defaultWelcomeText": {
        "message": "The application supports all hardware that can run INAV (<a href=\"https://inavflight.com/shop/s/bg/1890404\" target=\"_blank\">Matek F765-WSE</a>, <a href=\"https://inavflight.com/shop/s/bg/1755036\" target=\"_blank\">Matek H743-SLIM</a> and many other). The full list of recommended hardware is available <a href=\"https://github.com/iNavFlight/inav/wiki/Welcome-to-INAV,-useful-links-and-products\" target=\"_blank\">here</a>.<br /><br />The firmware source code can be downloaded from <a href=\"https://github.com/iNavFlight\" title=\"www.github.com\" target=\"_blank\">here</a><br />The newest binary firmware image is available <a href=\"https://github.com/iNavFlight/inav/releases\" title=\"www.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."
    },
    "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"
    },
    "configurationBoardAlignment": {
        "message": "Board and Sensor Alignment"
    },
    "configurationBoardAlignmentRoll": {
        "message": "Roll Degrees"
    },
    "configurationBoardAlignmentPitch": {
        "message": "Pitch Degrees"
    },
    "configurationBoardAlignmentYaw": {
        "message": "Yaw Degrees"
    },
    "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"
    },
    "configurationBatteryMultiwiiCurrent": {
        "message": "Enable support for legacy Multiwii MSP current output"
    },
    "configurationBatterySettings": {
        "message": "Battery Settings"
    },
    "configurationBatterySettingsHelp": {
        "message": "These settings apply to the currently selected battery profile "
    },
    "configurationBatteryCapacityValue": {
        "message": "Capacity"
    },
    "configurationBatteryCapacityWarning": {
        "message": "Warning Capacity (remaining %)"
    },
    "configurationBatteryCapacityCritical": {
        "message": "Critical Capacity (remaining %)"
    },
    "configurationBatteryCapacityUnit": {
        "message": "Battery Capacity Unit"
    },
    "configurationLaunch": {
        "message": "Fixed Wing Auto Launch Settings"
    },
    "configurationLaunchVelocity": {
        "message": "Threshold Velocity"
    },
    "configurationLaunchVelocityHelp": {
        "message": "Forward velocity threshold for swing-launch detection. Default: 300 [100-10000]"
    },
    "configurationLaunchAccel": {
        "message": "Threshold Acceleration"
    },
    "configurationLaunchAccelHelp": {
        "message": "Forward acceleration threshold for bungee launch or throw launch, 1G = 981 cm/s/s. Default: 1863 [1000-20000]"
    },
    "configurationLaunchMaxAngle": {
        "message": "Max Throw Angle"
    },
    "configurationLaunchMaxAngleHelp": {
        "message": "Max throw angle (pitch/roll combined) to consider launch successful. Set to 180 to disable completely. Default: 45 [5-180]"
    },
    "configurationLaunchDetectTime": {
        "message": "Detect Time"
    },
    "configurationLaunchDetectTimeHelp": {
        "message": "Time for which thresholds have to breached to consider launch happened. Default: 40 [10-1000]"
    },
    "configurationLaunchThr": {
        "message": "Launch Throttle"
    },
    "configurationLaunchThrHelp": {
        "message": "Launch throttle - throttle to be set during launch sequence. Default: 1700 [1000-2000]"
    },
    "configurationLaunchIdleThr": {
        "message": "Idle Throttle"
    },
    "configurationLaunchIdleThrHelp": {
        "message": "Idle throttle - throttle to be set before launch sequence is initiated. If set below minimum throttle it will force motor stop or at idle throttle (depending if the MOTOR_STOP is enabled). If set above minimum throttle it will force throttle to this value (if MOTOR_STOP is enabled it will be handled according to throttle stick position). Default: 1000 [1000-2000]"
    },
    "configurationLaunchIdleDelay": {
        "message": "Idle Throttle Delay"
    },
    "configurationLaunchIdleDelayHelp": {
        "message": "Set a time delay between raising the throttle for the launch, and the motor starting at idle throttle. Default: 0 [0-60000]"
    },
    "configurationLaunchMotorDelay": {
        "message": "Motor Delay"
    },
    "configurationLaunchMotorDelayHelp": {
        "message": "Delay between detected launch and launch sequence start and throttling up. Default: 500 [0-5000]"
    },
    "configurationLaunchSpinupTime": {
        "message": "Motor Spinup Time"
    },
    "configurationLaunchSpinupTimeHelp": {
        "message": "Time to bring power from minimum throttle to nav_fw_launch_thr, to avoid big stress on ESC and large torque from propeller. Default: 100 [0-1000]"
    },
    "configurationLaunchMinTime": {
        "message": "Minimum Launch Time"
    },
    "configurationLaunchMinTimeHelp": {
        "message": "Allow launch mode to execute at least this time [ms] and ignore stick movements. Default: 0 [0-60000]"
    },
    "configurationLaunchTimeout": {
        "message": "Launch Timeout"
    },
    "configurationLaunchTimeoutHelp": {
        "message": "Maximum time for launch sequence to be executed. After this time LAUNCH mode will be turned off and regular flight mode will take over. Default: 5000 [0-60000]"
    },
    "configurationLaunchEndTime": {
        "message": "End Transition Time"
    },
    "configurationLaunchEndTimeHelp": {
        "message": "Smooth transition time at the end of the launch (ms). This is added to the Launch Timeout. Default: 2000 [0-5000]"
    },
    "configurationLaunchMaxAltitude": {
        "message": "Maximum Altitude"
    },
    "configurationLaunchMaxAltitudeHelp": {
        "message": "Altitude at which LAUNCH mode will be turned off and regular flight mode will take over. Default: 0 [0-60000]"
    },
    "configurationLaunchClimbAngle": {
        "message": "Climb Angle"
    },
    "configurationLaunchClimbAngleHelp": {
        "message": "Climb angle (attitude of model, not climb slope) for launch sequence (degrees), is also restrained by global max_angle_inclination_pit. Default: 18 [5-45]"
    },
    "configuration3d": {
        "message": "Reversible motors"
    },
    "configuration3dDeadbandLow": {
        "message": "Reversible Motors Deadband Low"
    },
    "configuration3dDeadbandHigh": {
        "message": "Reversible Motors Deadband High"
    },
    "configuration3dNeutral": {
        "message": "Reversible Motors Neutral"
    },
    "configuration3dDeadbandThrottle": {
        "message": "Reversible Motors Deadband Throttle"
    },
    "configurationSystem": {
        "message": "System configuration"
    },
    "configurationLoopTime": {
        "message": "Flight Controller Loop Time"
    },
    "configurationCalculatedCyclesSec": {
        "message": "Cycles/Sec (Hz)"
    },
    "configurationGPS": {
        "message": "Configuration"
    },
    "configurationGPSProtocol": {
        "message": "Protocol"
    },
     "configurationGPSUseGalileo": {
        "message": "Gps use Galileo Satellites"
    },
    "tzOffset": {
        "message": "Timezone Offset [Mins]"
    },
    "tzOffsetHelp": {
        "message": "Time zone offset from UTC, in minutes. This is applied to the GPS time for logging and time-stamping of Blackbox logs. (Default = 0)"
    },
    "tzAutomaticDST": {
        "message": "Automatic Daylight Savings Time"
    },
    "tzAutomaticDSTHelp": {
        "message": "Automatically add Daylight Saving Time to the GPS time when needed or simply ignore it. Includes presets for EU and the USA - if you live outside these areas it is suggested to manage DST manually via tz_offset. (Default = Off)"
    },
    "configurationGPSBaudrate": {
        "message": "Baudrate"
    },
    "configurationGPSubxSbas": {
        "message": "Ground Assistance Type"
    },
    "configurationGPSHelp": {
        "message": "<strong>Note:</strong> Remember to configure a Serial Port (via Ports tab) when using GPS feature."
    },
    "receiverType": {
        "message": "Receiver type"
    },
    "configurationSerialRX": {
        "message": "Serial Receiver Provider"
    },
    "configurationSPIProtocol": {
        "message": "RX SPI protocol"
    },
    "configurationEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>: Configuration"
    },
    "configurationButtonSave": {
        "message": "Save and Reboot"
    },
    "configurationVTX": {
        "message": "VTX"
    },
    "configurationVTXBand": {
        "message": "Band"
    },
    "configurationNoBand": {
        "message": "None"
    },
    "configurationVTXNoBandHelp": {
        "message": "VTX frequency has been set manually. Selecting a band will overwrite the configured frequency."
    },
    "configurationVTXChannel": {
        "message": "Channel"
    },
    "configurationVTXPower": {
        "message": "Power Level"
    },
    "configurationVTXPowerHelp": {
        "message": "VTX power level. The exact power in mw (or dBm) will depend on the specific hardware. Check your VTX manual."
    },
    "configurationVTXLowerPowerDisarm": {
        "message": "Use low power while the craft is disarmed"
    },
    "configurationVTXLowerPowerDisarmHelp": {
        "message": "Enabling this option will make the VTX use its lowest power while the craft is disarmed. Use 'Until first arm' to make it use the lowest power only until you arm for the first time."
    },
    "configurationVTXLowPowerDisarmValue_0": {
        "message": "Disabled"
    },
    "configurationVTXLowPowerDisarmValue_1": {
        "message": "Always"
    },
    "configurationVTXLowPowerDisarmValue_2": {
        "message": "Until first arm"
    },
    "portsHelp": {
        "message": "<strong>Note:</strong> not all combinations are valid.  When the flight controller firmware detects this the serial port configuration will be reset."
    },
    "portsMSPHelp": {
        "message": "<strong>Note:</strong> Do <span style=\"color: red\">NOT</span> disable MSP on the first serial port unless you know what you are doing.  You may have to reflash and erase your configuration if you do."
    },
    "portsFirmwareUpgradeRequired": {
        "message": "Firmware upgrade <span style=\"color: red\">required</span>."
    },
    "portsButtonSave": {
        "message": "Save and Reboot"
    },
    "portsTelemetryDisabled": {
        "message": "Disabled"
    },
    "portsFunction_MSP": {
        "message": "MSP"
    },
    "portsFunction_GPS": {
        "message": "GPS"
    },
    "portsFunction_RANGEFINDER": {
        "message": "Rangefinder"
    },
    "portsFunction_OPFLOW": {
        "message": "Optic flow"
    },
    "portsFunction_ESC": {
        "message": "ESC output/telemetry"
    },
    "portsFunction_TELEMETRY_FRSKY": {
        "message": "FrSky"
    },
    "portsFunction_TELEMETRY_HOTT": {
        "message": "HoTT"
    },
    "portsFunction_TELEMETRY_LTM": {
        "message": "LTM"
    },
    "portsFunction_TELEMETRY_MAVLINK": {
        "message": "MAVLink"
    },
    "portsFunction_TELEMETRY_IBUS": {
        "message": "IBUS"
    },
    "portsFunction_GSM_SMS": {
        "message": "GSM SMS"
    },
    "portsFunction_TELEMETRY_MSP": {
        "message": "MSP"
    },
    "portsFunction_TELEMETRY_SMARTPORT": {
        "message": "SmartPort"
    },
    "portsFunction_SMARTPORT_MASTER": {
        "message": "SmartPort Master"
    },
    "portsFunction_RX_SERIAL": {
        "message": "Serial RX"
    },
    "portsFunction_BLACKBOX": {
        "message": "Blackbox"
    },
    "portsFunction_RUNCAM_DEVICE_CONTROL": {
        "message": "RunCam Device"
    },
    "portsFunction_TBS_SMARTAUDIO": {
        "message": "TBS SmartAudio"
    },
    "portsFunction_IRC_TRAMP": {
        "message": "IRC Tramp"
    },
    "portsFunction_VTX_FFPV": {
        "message": "FuriousFPV Vtx"
    },
    "portsFunction_FRSKY_OSD": {
        "message": "FrSky OSD"
    },
    "portsFunction_DJI_FPV": {
        "message": "DJI FPV VTX"
    },
    "portsFunction_MSP_DISPLAYPORT": {
        "message": "MSP Displayport"
    },
    "portsFunction_IMU2": {
        "message": "Secondary IMU"
    },
    "pidTuning_ShowAllPIDs": {
        "message": "Show all PIDs"
    },
    "pidTuning_SelectNewDefaults": {
        "message": "Select New Defaults"
    },
    "pidTuning_ResetPIDController": {
        "message": "Reset PID Controller"
    },
    "pidTuning_PIDgains": {
        "message" :"PID gains"
    },
    "pidTuning_Name": {
        "message": "Name"
    },
    "pidTuning_Proportional": {
        "message": "Proportional"
    },
    "pidTuning_Integral": {
        "message": "Integral"
    },
    "pidTuning_Derivative": {
        "message": "Derivative"
    },
    "pidTuning_FeedForward": {
        "message": "FeedForward"
    },
    "pidTuning_ControlDerivative": {
        "message": "Control Derivative"
    },
    "pidTuning_Basic": {
        "message": "Basic/Acro"
    },
    "pidTuning_Level": {
        "message": "Angle/Horizon"
    },
    "pidTuning_Altitude": {
        "message": "Barometer & Sonar/Altitude"
    },
    "pidTuning_Mag": {
        "message": "Magnometer/Heading"
    },
    "pidTuning_GPS": {
        "message": "GPS Navigation"
    },
    "pidTuning_LevelP": {
        "message": "Strength"
    },
    "pidTuning_LevelI": {
        "message": "LPF cutoff (Hz)"
    },
    "pidTuning_LevelD": {
        "message": "Transition (Horizon)"
    },
    "pidTuning_LevelHelp": {
        "message": "The values below change the behaviour of the ANGLE and HORIZON flight modes. Different PID controllers handle the LEVEL values differently. Please check the documentation."
    },
    "pidTuning_RatesAndExpo": {
        "message": "Rates & Expo"
    },
    "pidTuning_RollPitchRate": {
        "message": "ROLL &amp; PITCH rate"
    },
    "pidTuning_RollRate": {
        "message": "ROLL rate"
    },
    "pidTuning_PitchRate": {
        "message": "PITCH rate"
    },
    "pidTuning_YawRate": {
        "message": "YAW rate"
    },
    "pidTuning_RollAndPitchExpo": {
        "message": "Roll & Pitch Expo"
    },
    "pidTuning_YawExpo" : {
        "message": "Yaw Expo"
    },
    "pidTuning_MaxRollAngle": {
        "message": "Max. ROLL angle"
    },
    "pidTuning_MaxRollAngleHelp": {
        "message": "Maximum ROLL angle in ANGLE mode. This also constrains the maximum bank in navigation modes."
    },
    "pidTuning_MaxPitchAngle": {
        "message": "Max. PITCH angle"
    },
    "pidTuning_MaxPitchAngleHelp": {
        "message": "Maximum PITCH angle in ANGLE mode. This also constrains the maximum climb and dive in navigation modes."
    },
    "pidTuning_ManualRollRate": {
        "message": "Manual ROLL rate"
    },
    "pidTuning_ManualPitchRate": {
        "message": "Manual PITCH rate"
    },
    "pidTuning_ManualYawRate": {
        "message": "Manual YAW rate"
    },
    "pidTuning_magHoldYawRate": {
        "message": "Heading Hold rate limit"
    },
    "pidTuning_MagHoldYawRateHelp": {
        "message": "Maximum YAW rotation rate that MagHold controller can request from UAV. Used only when MagHold mode is enabled, during RTH and WAYPOINT navigation. Values below 30dps gives nice \"cinematic\" turns"
    },
    "pidTuning_Filters": {
        "message": "Filters"
    },
    "pidTuning_mainFilters": {
        "message": "Gyro filters"
    },
    "pidTuning_gyro_main_lpf_hz": {
        "message": "Main gyro filter cutoff frequency"
    },
    "pidTuning_gyro_main_lpf_hz_help": {
        "message": "Higher values offer lower delay but more noise. Lower values offer less noise, but more dalay on the gyro processing"
    },
    "pidTuning_MatrixFilterMinFrequency": {
        "message": "Matrix Filter Min Frequency"
    },
    "pidTuning_MatrixFilterMinFrequencyHelp": {
        "message": "Minimum frequency for the Matrix Filter. Value should depends on propeller size. 150Hz work fine with 5&quot; and smaller. For 7&quot; and above lower even below 100Hz."
    },
    "pidTuning_MatrixFilterQFactor": {
        "message": "Matrix Filter Q Factor"
    },
    "pidTuning_MatrixFilterQFactorHelp": {
        "message": "The higher value, the higher selectivity of the Matrix Filter. Values between 150 and 300 are recommended."
    },
    "pidTuning_UnicornFilterQFactor": {
        "message": "Unicorn Filter Q Factor"
    },
    "pidTuning_dtermFilters": {
        "message": "D-term filters"
    },
    "pidTuning_dtermLpfCutoffFrequency": {
        "message": "D-term LPF cutoff frequency"
    },
    "pidTuning_dtermLpfCutoffFrequencyHelp": {
        "message": "Lowpass cutoff filter for Dterm for all PID controllers"
    },
    "pidTuning_rpmFilters": {
        "message": "Gyro RPM filters"
    },
    "pidTuning_rpm_gyro_filter_enabled": {
        "message": "Gyro RPM filter (requires ESC telemetry)"
    },
    "pidTuning_rpm_gyro_min_hz": {
        "message": "Gyro RPM filter min. frequency"
    },
    "pidTuning_Mechanics": {
        "message": "Mechanics"
    },
    "pidTuning_ITermMechanics": {
        "message": "I-term mechanics"
    },
    "pidTuning_itermRelaxCutoff": {
        "message": "Iterm Relax Cutoff Frequency"
    },
    "pidTuning_itermRelaxCutoffHelp": {
        "message": "Lower values open a longer time window for Iterm Relax to work on and stronger Iterm suppression. Higher values shortens the time windows and reduces suppression."
    },
    "pidTuning_antigravityGain": {
        "message": "Antigravity Gain"
    },
    "pidTuning_antigravityAccelerator": {
        "message": "Antigravity Accelerator"
    },
    "pidTuning_antigravityCutoff": {
        "message": "Antigravity Cutoff Frequency"
    },
    "pidTuning_itermBankAngleFreeze": {
        "message": "Yaw Iterm freeze bank angle"
    },
    "pidTuning_itermBankAngleFreezeHelp": {
        "message": "Freeze yaw Iterm when plane is banked more than this many degrees. This helps to stop the rudder from counteracting turn. 0 disables this feature. Applies only to fixed wing aircraft."
    },
    "pidTuning_dTermMechanics": {
        "message": "D-term mechanics"
    },
    "pidTuning_d_boost_min": {
        "message": "D-Boost Min. Scale"
    },
    "pidTuning_d_boost_min_help": {
        "message": "Defines the max allowed Dterm attenuation during stick acceleration phase. Value 1.0 mean Dterm is not attenuate. 0.5 mean it's allowed to shrink by half. Lower values result in faster response during fast stick movement."
    },
    "pidTuning_d_boost_max": {
        "message": "D-Boost Max. Scale"
    },
    "pidTuning_d_boost_max_help": {
        "message": "Defines the maximum Dterm boost when maximum angular acceleration is reached. 1.0 means D-Boost is disabled, 2.0 means Dterm is allowed to grow by 100%. Values between 1.5 and 1.7 are usually the sweet spot."
    },
    "pidTuning_d_boost_max_at_acceleration": {
        "message": "Top D-Boost at acceleration [dps^2]"
    },
    "pidTuning_d_boost_max_at_acceleration_help": {
        "message": "D-Boost is fully active when angular acceleration (either detected by gyro or rate target) reached given acceleration. Between 0 and this value, D-Boost factor is scaled lineary"
    },
    "pidTuning_d_boost_gyro_delta_lpf_hz": {
        "message": "D-Boost gyro LPF"
    },
    "pidTuning_d_boost_gyro_delta_lpf_hz_help": {
        "message": "Should be set to the frequency of propeller wash oscillations. 5-inch quads work best at around 80Hz, 7-inch quads at around 50Hz"
    },
    "pidTuning_tpaMechanics": {
        "message": "Thrust PID attenuation"
    },
    "pidTuning_TPA": {
        "message": "Thrust PID Attenuation (TPA)"
    },
    "pidTuning_TPABreakPoint": {
        "message": "TPA Breakpoint"
    },
    "pidTuning_FW_TPATimeConstant": {
        "message": "Fixed Wing TPA Time Constant"
    },
    "pidTuning_FW_TPATimeConstantHelp": {
        "message": "TPA smoothing and delay time constant to reflect non-instant speed/throttle response of the plane."
    },
    "pidTuning_fwLevelTrimMechanics": {
        "message": "Fixed Wing Level Trim"
    },
    "pidTuning_fw_level_pitch_trim": {
        "message": "Level Trim [deg]"
    },
    "pidTuning_fw_level_pitch_trim_help": {
        "message": "Pitch trim for self-leveling flight modes. In degrees. +5 means airplane nose should be raised 5 deg from level"
    },
    "pidTuning_ButtonSave": {
        "message": "Save"
    },
    "pidTuning_ButtonRefresh": {
        "message": "Refresh"
    },
    "pidTuning_ProfileHead": {
        "message": "Profile"
    },
    "pidTuning_LoadedProfile": {
        "message": "Loaded Profile: <strong style=\"color: #37a8db\">$1</strong>"
    },
    "loadedBatteryProfile": {
        "message": "Loaded Battery Profile: <strong style=\"color: #37a8db\">$1</strong>"
    },
    "pidTuningDataRefreshed": {
        "message": "PID data <strong>refreshed</strong>"
    },
    "pidTuningEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>: PID Tuning"
    },

    "receiverHelp": {
        "message": "Please read receiver chapter of the documentation.  Configure serial port (if required), receiver mode (serial/ppm/pwm), provider (for serial receivers), bind receiver, set channel map, configure channel endpoints/range on TX so that all channels go from ~1000 to ~2000.  Set midpoint (default 1500), trim channels to 1500, configure stick deadband, verify behaviour when TX is off or out of range. Make sure that the channel values all increase when you push the sticks up and to the right. If not, reverse the channel in the TX. Do not apply any other mixing in the TX.<br /><span style=\"color: red\">IMPORTANT:</span> Before flying read failsafe chapter of documentation and configure failsafe."
    },
    "receiverThrottleMid": {
        "message": "Throttle MID"
    },
    "receiverThrottleExpo": {
        "message": "Throttle EXPO"
    },
    "receiverRcRate": {
        "message": "RC Rate"
    },
    "receiverDeadband": {
        "message": "RC Deadband"
    },
    "receiverHelpDeadband": {
        "message": "These are values (in us) by how much RC input can be different before it's considered valid. For transmitters with jitter on outputs, this value can be increased if rc inputs twitch while idle."
    },
    "receiverHelpYawDeadband": {
        "message": "These are values (in us) by how much RC input can be different before it's considered valid. For transmitters with jitter on outputs, this value can be increased if rc inputs twitch while idle. <strong>This setting is for Yaw only.</strong>"
    },
    "receiverYawDeadband": {
        "message": "Yaw Deadband"
    },
    "receiverRcExpo": {
        "message": "RC Expo"
    },
    "receiverRcYawExpo": {
        "message": "RC Yaw Expo"
    },
    "receiverManualRcExpo": {
        "message": "Manual RC Expo"
    },
    "receiverManualRcYawExpo": {
        "message": "Manual RC Yaw Expo"
    },
    "receiverChannelMap": {
        "message": "Channel Map"
    },
    "receiverChannelMapTitle": {
        "message": "You can define your own channel map by clicking inside the box"
    },
    "receiverRssiChannel": {
        "message": "RSSI Channel"
    },
    "receiverRefreshRateTitle": {
        "message": "Graph refresh rate"
    },
    "receiverButtonSave": {
        "message": "Save"
    },
    "receiverButtonRefresh": {
        "message": "Refresh"
    },
    "receiverButtonSticks": {
        "message": "Control sticks"
    },
    "receiverDataRefreshed": {
        "message": "RC Tuning data <strong>refreshed</strong>"
    },
    "receiverEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>: Receiver"
    },

    "auxiliaryHelp": {
        "message": "Use ranges to define the switches on your transmitter and corresponding mode assignments.  A receiver channel that gives a reading between a range min/max will activate the mode.  Remember to save your settings using the Save button."
    },
	    "auxiliaryToggleUnused": {
        "message": "Hide unused modes"
    },
    "auxiliaryMin": {
        "message": "Min"
    },
    "auxiliaryMax": {
        "message": "Max"
    },
    "auxiliaryAddRange": {
        "message": "Add Range"
    },
    "auxiliaryButtonSave": {
        "message": "Save"
    },
    "auxiliaryEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>"
    },

    "adjustmentsHelp": {
        "message": "Configure adjustment switches.  See the 'in-flight adjustments' section of the manual for details.  The changes that adjustment functions make are not saved automatically.  There are 4 slots.  Each switch used to concurrently make adjustments requires exclusive use of a slot."
    },
    "adjustmentsExamples": {
        "message": "Examples"
    },
    "adjustmentsExample1": {
        "message": "Use Slot 1 and a 3POS switch on CH5 to select between Pitch/Roll P, I and D and another 3POS switch on CH6 to increase or decrease the value when held up or down."
    },
    "adjustmentsExample2": {
        "message": "Use Slot 2 and a 3POS switch on CH8 to select enable Rate Profile Selection via the same 3POS switch on the same channel."
    },
    "adjustmentsColumnEnable": {
        "message": "If enabled"
    },
    "adjustmentsColumnUsingSlot": {
        "message": "using slot"
    },
    "adjustmentsColumnWhenChannel": {
        "message": "when channel"
    },
    "adjustmentsColumnIsInRange": {
        "message": "is in range"
    },
    "adjustmentsColumnThenApplyFunction": {
        "message": "then apply"
    },
    "adjustmentsColumnViaChannel": {
        "message": "via channel"
    },
    "adjustmentsSlot0": {
        "message": "Slot 1"
    },
    "adjustmentsSlot1": {
        "message": "Slot 2"
    },
    "adjustmentsSlot2": {
        "message": "Slot 3"
    },
    "adjustmentsSlot3": {
        "message": "Slot 4"
    },
    "adjustmentsMin": {
        "message": "Min"
    },
    "adjustmentsMax": {
        "message": "Max"
    },
    "adjustmentsGroupRates": {
        "message": "Rates & Expo"
    },
    "adjustmentsGroupPIDTuning": {
        "message": "PID Tuning"
    },
    "adjustmentsGroupNavigationFlight" : {
        "message": "Navigation and Flight"
    },
    "adjustmentsGroupMisc": {
        "message": "Misc"
    },
    "adjustmentsFunction0": {
        "message": "No changes"
    },
    "adjustmentsFunction1": {
        "message": "RC Rate Adjustment"
    },
    "adjustmentsFunction2": {
        "message": "RC Expo Adjustment"
    },
    "adjustmentsFunction3": {
        "message": "Throttle Expo Adjustment"
    },
    "adjustmentsFunction4": {
        "message": "Pitch & Roll Rate Adjustment"
    },
    "adjustmentsFunction5": {
        "message": "Yaw Rate Adjustment"
    },
    "adjustmentsFunction6": {
        "message": "Pitch & Roll P Adjustment"
    },
    "adjustmentsFunction7": {
        "message": "Pitch & Roll I Adjustment"
    },
    "adjustmentsFunction8": {
        "message": "Pitch & Roll D"
    },
    "adjustmentsFunction9": {
        "message": "Pitch & Roll CD/FF Adjustment"
    },
    "adjustmentsFunction10": {
        "message": "Pitch P Adjustment"
    },
    "adjustmentsFunction11": {
        "message": "Pitch I Adjustment"
    },
    "adjustmentsFunction12": {
        "message": "Pitch D Adjustment"
    },
    "adjustmentsFunction13": {
        "message": "Pitch CD/FF Adjustment"
    },
    "adjustmentsFunction14": {
        "message": "Roll P Adjustment"
    },
    "adjustmentsFunction15": {
        "message": "Roll I Adjustment"
    },
    "adjustmentsFunction16": {
        "message": "Roll D Adjustment"
    },
    "adjustmentsFunction17": {
        "message": "Roll CD/FF Adjustment"
    },
    "adjustmentsFunction18": {
        "message": "Yaw P Adjustment"
    },
    "adjustmentsFunction19": {
        "message": "Yaw I Adjustment"
    },
    "adjustmentsFunction20": {
        "message": "Yaw D Adjustment"
    },
    "adjustmentsFunction21": {
        "message": "Yaw CD/FF Adjustment"
    },
    "adjustmentsFunction22": {
        "message": "Rate Profile Selection"
    },
    "adjustmentsFunction23": {
        "message": "Pitch Rate"
    },
    "adjustmentsFunction24": {
        "message": "Roll Rate"
    },
    "adjustmentsFunction25": {
        "message": "RC Yaw Expo Adjustment"
    },
    "adjustmentsFunction26": {
        "message": "Manual RC Expo Adjustment"
    },
    "adjustmentsFunction27": {
        "message": "Manual RC Yaw Expo Adjustment"
    },
    "adjustmentsFunction28": {
        "message": "Manual Pitch & Roll Rate Adjustment"
    },
    "adjustmentsFunction29": {
        "message": "Manual Roll Rate Adjustment"
    },
    "adjustmentsFunction30": {
        "message": "Manual Pitch Rate Adjustment"
    },
    "adjustmentsFunction31": {
        "message": "Manual Yaw Rate Adjustment"
    },
    "adjustmentsFunction32": {
        "message": "Navigation FW Cruise Throttle Adjustment"
    },
    "adjustmentsFunction33": {
        "message": "Navigation FW Pitch To Throttle Adjustment"
    },
    "adjustmentsFunction34": {
        "message": "Board Roll Alignment Adjustment"
    },
    "adjustmentsFunction35": {
        "message": "Board Pitch Alignment Adjustment"
    },
    "adjustmentsFunction36": {
        "message": "Level P Adjustment"
    },
    "adjustmentsFunction37": {
        "message": "Level I Adjustment"
    },
    "adjustmentsFunction38": {
        "message": "Level D Adjustment"
    },
    "adjustmentsFunction39": {
        "message": "Pos XY P Adjustment"
    },
    "adjustmentsFunction40": {
        "message": "Pos XY I Adjustment"
    },
    "adjustmentsFunction41": {
        "message": "Pos XY D Adjustment"
    },
    "adjustmentsFunction42": {
        "message": "Pos Z P Adjustment"
    },
    "adjustmentsFunction43": {
        "message": "Pos Z I Adjustment"
    },
    "adjustmentsFunction44": {
        "message": "Pos Z D Adjustment"
    },
    "adjustmentsFunction45": {
        "message": "Heading P Adjustment"
    },
    "adjustmentsFunction46": {
        "message": "Vel XY P Adjustment"
    },
    "adjustmentsFunction47": {
        "message": "Vel XY I Adjustment"
    },
    "adjustmentsFunction48": {
        "message": "Vel XY D Adjustment"
    },
    "adjustmentsFunction49": {
        "message": "Vel Z P Adjustment"
    },
    "adjustmentsFunction50": {
        "message": "Vel Z I Adjustment"
    },
    "adjustmentsFunction51": {
        "message": "Vel Z D Adjustment"
    },
    "adjustmentsFunction52": {
        "message": "FW min thr down pitch angle Adjustment"
    },
    "adjustmentsFunction53": {
        "message": "VTX power level Adjustment"
    },
    "adjustmentsFunction54": {
        "message": "Thrust PID Attenuation (TPA) Adjustment"
    },
    "adjustmentsFunction55": {
        "message": "TPA Breakpoint Adjustment"
    },
    "adjustmentsFunction56": {
        "message": "Control Smoothness Adjustment"
    },
    "adjustmentsFunction57": {
        "message": "Fixed Wing TPA Time Constant"
    },
    "adjustmentsFunction58": {
        "message": "Fixed Wing Level Trim"
    },
    "adjustmentsFunction59": {
        "message": "Multi Mission Index Adjustment"
    },
    "adjustmentsSave": {
        "message": "Save"
    },
    "adjustmentsEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>: Adjustments"
    },
    "programmingEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>: Programming"
    },
    "servosChangeDirection": {
        "message": "Change Direction in TX To Match"
    },
    "servosName": {
        "message": "Name"
    },
    "servosMid": {
        "message": "MID"
    },
    "servosMin": {
        "message": "MIN"
    },
    "servosMax": {
        "message": "MAX"
    },
    "servosReverse": {
        "message": "Reverse"
    },
    "servoOutput": {
        "message": "Output"
    },
    "servosRate": {
        "message": "Rate (%)"
    },
    "servosLiveMode": {
        "message": "Enable Live mode"
    },
    "servosButtonSave": {
        "message": "Save"
    },
    "servosNormal": {
        "message": "Normal"
    },
    "servoEmptyTableInfo": {
        "message": "No servos configured. Add them using the Mixer tab."
    },
    "servosEepromSave": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>"
    },
    "mixerSaved": {
        "message": "Mixer <span style=\"color: #37a8db\">saved</span>"
    },
    "mixerWizard": {
        "message": "Mixer wizard"
    },
    "mixerWizardInfo": {
        "message":"<ol><li>Remove propellers</li><li>Connect LiPo and use Outputs Tab to test all motors</li><li>Note the position of each motor (motor #1 - Left Top and so on)</li><li>Fill the table below</li></ol>"
    },
    "gpsHead": {
        "message": "Position"
    },
    "gpsStatHead": {
        "message": "Statistics"
    },
    "gpsMapHead": {
        "message": "Current GPS location"
    },
    "gpsMapMessage1": {
        "message": "Please check your internet connection"
    },
    "gpsMapMessage2": {
        "message": "Waiting for GPS 3D fix…"
    },
    "gpsFix": {
        "message": "Fix type:"
    },
    "gpsFix2D": {
        "message": "<span class=\"fix2d\">2D</span>"
    },
    "gpsFix3D": {
        "message": "<span class=\"fix3d\">3D</span>"
    },
    "gpsFixNone": {
        "message": "<span class=\"fixnone\">None</span>"
    },
    "gpsAltitude": {
        "message": "Altitude:"
    },
    "gpsLat": {
        "message": "Latitude:"
    },
    "gpsLon": {
        "message": "Longitude:"
    },
    "gpsSpeed": {
        "message": "Speed:"
    },
    "gpsSats": {
        "message": "Sats:"
    },
    "gpsDistToHome": {
        "message": "Dist to Home:"
    },
    "gpsHDOP": {
        "message": "HDOP:"
    },
    "gpsTotalMessages": {
        "message": "Total messages:"
    },
    "gpsMessageRate": {
        "message": "Update time:"
    },
    "gpsErrors": {
        "message": "Errors:"
    },
    "gpsTimeouts": {
        "message": "Timeouts:"
    },
    "gpsEPH": {
        "message": "EPH:"
    },
    "gpsEPV": {
        "message": "EPV:"
    },
    "gpsSignalStr": {
        "message": "Signal Strength"
    },
    "magnetometerHead": {
        "message": "Magnetometer Alignment"
    },
    "magnetometerHelp": {
        "message": "Adjust the magnetometer position until you get the same on the quad.<br/><strong>Note:</strong> If you have changed your flight controller alignment, make your adjustment relative to the FC position and not to the UAV position "
    },
    "magnetometerOrientationPreset": {
        "message": "Orientation presets"
    },
    "magnetometerInfo": {
        "message": "Select a preset or create a custom configuration moving the sliders"
    },
    "magnetometerElementToShow": {
        "message": "Element to show"
    },
    "configurationMagnetometerHelp": {
        "message": "<strong>Note:</strong> Remember to configure a Serial Port (via Ports tab) when using the Magnetometer feature."
    },
    "magnetometerStatHead": {
        "message": "Mag Statistics"
    },
    "tabMAGNETOMETER": {
        "message": "Magnetometer"
    },
    "motors": {
        "message": "Motors"
    },
    "servos": {
        "message": "Servos"
    },
    "motorsMaster": {
        "message": "Master"
    },
    "motorsNotice": {
        "message": "<strong>Motor Test Mode Notice:</strong><br />Moving the sliders will cause the motors to <strong>spin up</strong>.<br />In order to prevent injury <strong style=\"color: red\">remove ALL propellers</strong> before using this feature.<br />"
    },
    "motorsEnableControl": {
        "message": "I understand the risks, propellers are removed - Enable motor control."
    },

    "sensorsInfo": {
        "message": "Keep in mind that using fast update periods and rendering multiple graphs at the same time is resource heavy and will burn your battery quicker if you use a laptop.<br />We recommend to only render graphs for sensors you are interested in while using reasonable update periods."
    },
    "sensorsRefresh": {
        "message": "Refresh:"
    },
    "sensorsScale": {
        "message": "Scale:"
    },

    "cliInfo": {
        "message": "<strong>Note</strong>: Leaving CLI tab or pressing Disconnect will <strong>automatically</strong> send \"<strong>exit</strong>\" to the board.  With the latest firmware this will make the controller <span style=\"color: red\">restart</span> and unsaved changes will be <span style=\"color: red\">lost</span>."
    },
    "cliInputPlaceholder": {
        "message": "Write your command here"
    },
    "cliEnter": {
        "message": "CLI mode detected"
    },
    "cliReboot": {
        "message": "CLI reboot detected"
    },
    "cliSaveToFileBtn": {
        "message": "Save to File"
    },
    "cliSaveToFileFailed": {
        "message": "Failed to save CLI output to file"
    },
    "cliSaveToFileAborted": {
        "message": "Saving CLI output to file was aborted"
    },
    "cliSaveToFileCompleted": {
        "message": "CLI output successfully saved to file"
    },
    "cliClearOutputHistoryBtn": {
        "message": "Clear output history"
    },
    "cliCopyToClipboardBtn": {
        "message": "Copy to clipboard"
    },
    "cliExitBtn": {
        "message": "EXIT"
    },
    "cliSaveSettingsBtn": {
        "message": "SAVE SETTINGS"
    },
    "cliMscBtn": {
        "message": "MSC"
    },
    "cliCopySuccessful": {
        "message": "Copied!"
    },
    "cliLoadFromFileBtn": {
        "message": "Load from file"
    },
    "cliConfirmSnippetDialogTitle": {
        "message": "Review loaded commands"
    },
    "cliConfirmSnippetNote": {
        "message": "<strong>Note</strong>: You can review and edit commands before execution."
    },
    "cliConfirmSnippetBtn": {
        "message": "Execute"
    },

    "loggingNote": {
        "message": "Data will be logged in this tab <span style=\"color: red\">only</span>, leaving the tab will <span style=\"color: red\">cancel</span> logging and application will return to its normal <strong>\"configurator\"</strong> state.<br /> You are free to select the global update period, data will be written into the log file every <strong>1</strong> second for performance reasons."
    },
    "loggingSamplesSaved": {
        "message": "Samples Saved:"
    },
    "loggingLogSize": {
        "message": "Log Size:"
    },
    "loggingButtonLogFile": {
        "message": "Select Log File"
    },
    "loggingStart": {
        "message": "Start Logging"
    },
    "loggingStop": {
        "message": "Stop Logging"
    },
    "loggingBack": {
        "message": "Leave Logging / Disconnect"
    },
    "loggingErrorNotConnected": {
        "message": "You need to <strong>connect</strong> first"
    },
    "loggingErrorLogFile": {
        "message": "Please select log file"
    },
    "loggingErrorOneProperty": {
        "message": "Please select at least one property to log"
    },
    "loggingAutomaticallyRetained": {
        "message": "Automatically loaded previous log file: <strong>$1</strong>"
    },
    "blackboxNotSupported": {
        "message": "Your flight controller's firmware does not support Blackbox logging or Blackbox feature is not enabled"
    },
    "blackboxConfiguration": {
        "message": "Blackbox configuration"
    },
    "blackboxButtonSave": {
        "message": "Save and reboot"
    },

    "serialLoggingSupportedNote": {
        "message": "You can log to an external logging device (such as an OpenLog or compatible clone) by using a serial port. Configure the port on the Ports tab."
    },
    "sdcardNote": {
        "message": "Flight logs can be recorded to your flight controller's onboard SD card slot."
    },

    "dataflashNote": {
        "message": "Flight logs can be recorded to your flight controller's onboard dataflash chip."
    },
    "dataflashNotPresentNote": {
        "message": "Your flight controller does not have a compatible dataflash chip available."
    },
    "dataflashFirmwareUpgradeRequired": {
        "message": "Dataflash requires firmware &gt;= 1.8.0."
    },
    "dataflashButtonSaveFile": {
        "message": "Save flash to file..."
    },
    "dataflashButtonErase": {
        "message": "Erase flash"
    },
    "dataflashConfirmEraseTitle": {
        "message": "Confirm dataflash erase"
    },
    "dataflashConfirmEraseNote": {
        "message": "This will erase any Blackbox logs or other data contained in the dataflash which will take about 20 seconds, are you sure?"
    },
    "dataflashSavingTitle": {
        "message": "Saving dataflash to file"
    },
    "dataflashSavingNote": {
        "message": "Saving could take several minutes, please wait."
    },
    "dataflashSavingNoteAfter": {
        "message": "Save completed! Press \"Ok\" to continue."
    },
    "dataflashButtonSaveCancel": {
        "message": "Cancel"
    },
    "dataflashButtonSaveDismiss": {
        "message": "Ok"
    },
    "dataflashButtonEraseConfirm": {
        "message": "Yes, erase dataflash"
    },
    "dataflashButtonEraseCancel": {
        "message": "Cancel"
    },
    "dataflashFileWriteFailed": {
        "message": "Failed to write to the file you selected, are the permissions on that folder okay?"
    },

    "firmwareFlasherReleaseSummaryHead": {
        "message": "Release info"
    },
    "firmwareFlasherReleaseName": {
        "message": "Name/Version:"
    },
    "firmwareFlasherReleaseVersionUrl": {
        "message": "Visit release page."
    },
    "firmwareFlasherReleaseNotes": {
        "message": "Release notes:"
    },
    "firmwareFlasherReleaseDate": {
        "message": "Date:"
    },
    "firmwareFlasherReleaseStatus": {
        "message": "State:"
    },
    "firmwareFlasherReleaseTarget": {
        "message": "Target:"
    },
    "firmwareFlasherReleaseFile": {
        "message": "Binary:"
    },
    "firmwareFlasherReleaseStatusReleaseCandidate": {
        "message": "<span style=\"color: red\">IMPORTANT: This firmware release is currently marked as a release candidate.  Please report any issues immediately.</span>"
    },
    "firmwareFlasherReleaseFileUrl": {
        "message": "Download manually."
    },
    "firmwareFlasherTargetWarning": {
        "message": "<span style=\"color: red\">IMPORTANT</span>: Ensure you flash a file appropriate for your target.  Flashing a binary for the wrong target can cause <span style=\"color: red\">bad</span> things to happen."
    },

    "firmwareFlasherPath": {
        "message": "Path:"
    },
    "firmwareFlasherSize": {
        "message": "Size:"
    },
    "firmwareFlasherStatus": {
        "message": "Status:"
    },
    "firmwareFlasherProgress": {
        "message": "Progress:"
    },
    "firmwareFlasherLoadFirmwareFile": {
        "message": "Please load firmware file"
    },
    "firmwareFlasherNoReboot": {
        "message": "No reboot sequence"
    },
    "firmwareFlasherOnlineSelectBoardDescription": {

        "message": "Select your board to see available online firmware releases - Select the correct firmware appropriate for your board."
    },
    "firmwareFlasherOnlineSelectFirmwareVersionDescription": {
        "message": "Select firmware version for your board."
    },
    "firmwareFlasherNoRebootDescription": {
        "message": "Enable if you powered your FC while the bootloader pins are jumpered or have your FC's BOOT button pressed."
    },
    "firmwareFlasherFlashOnConnect": {
        "message": "Flash on connect"
    },
    "firmwareFlasherFlashOnConnectDescription": {
        "message": "Attempt to flash the board automatically (triggered by newly detected serial port)."
    },
    "firmwareFlasherFullChipErase": {
        "message": "Full chip erase"
    },
    "firmwareFlasherFullChipEraseDescription": {
        "message": "Wipes all configuration data currently stored on the board."
    },
    "firmwareFlasherFlashDevelopmentFirmware": {
        "message": "Use Development Firmware"
    },
    "firmwareFlasherFlashDevelopmentFirmwareDescription": {
        "message": "Flash most recent (untested) development firmware."
    },
    "firmwareFlasherManualBaud": {
        "message": "Manual baud rate"
    },
    "firmwareFlasherManualBaudDescription": {
        "message": "Manual selection of baud rate for boards that don't support the default speed or for flashing via bluetooth.<br /><span style=\"color: red\">Note:</span> Not used when flashing via USB DFU"
    },
    "firmwareFlasherShowDevelopmentReleases":{
        "message": "Show unstable releases"
    },
    "firmwareFlasherShowDevelopmentReleasesDescription":{
        "message": "Show Release-Candidates and Development Releases."
    },
    "firmwareFlasherOptionLabelSelectFirmware": {
        "message": "Choose a Firmware / Board"
    },
    "firmwareFlasherOptionLabelSelectBoard": {
        "message": "Choose a Board"
    },
    "firmwareFlasherOptionLabelSelectFirmwareVersion": {
        "message": "Choose a Firmware version"
    },
    "firmwareFlasherOptionLabelSelectFirmwareVersionFor": {
        "message": "Choose a Firmware version for"
    },
    "firmwareFlasherButtonAutoSelect": {
        "message": "Auto-select Target"
    },
    "firmwareFlasherButtonLoadLocal": {
        "message": "Load Firmware [Local]"
    },
    "firmwareFlasherButtonLoadOnline": {
        "message": "Load Firmware [Online]"
    },
    "firmwareFlasherButtonLoading": {
        "message": "Loading..."
    },
    "firmwareFlasherFlashFirmware": {
        "message": "Flash Firmware"
    },
    "firmwareFlasherGithubInfoHead": {
        "message": "Github Firmware Info"
    },
    "firmwareFlasherCommiter": {
        "message": "Committer:"
    },
    "firmwareFlasherDate": {
        "message": "Date:"
    },
    "firmwareFlasherHash": {
        "message": "Hash:"
    },
    "firmwareFlasherUrl": {
        "message": "Go to GitHub to review this commit..."
    },
    "firmwareFlasherMessage": {
        "message": "Message:"
    },
    "firmwareFlasherWarningHead": {
        "message": "Warning"
    },
    "firmwareFlasherWarningText": {
        "message": "Please do <span style=\"color: red\">not</span> try to flash <strong>non-iNAV</strong> hardware with this firmware flasher.<br />Do <span style=\"color: red\">not</span> <strong>disconnect</strong> the board or <strong>turn off</strong> your computer while flashing.<br /><br /><strong>Note: </strong>STM32 bootloader is stored in ROM, it cannot be bricked.<br /><!--strong>Note: </strong><span style=\"color: red\">Auto-Connect</span> is always disabled while you are inside firmware flasher.<br / --><strong>Note: </strong>Make sure you have a backup; some upgrades/downgrades will wipe your configuration.<br /><strong>Note:</strong> If you have problems flashing try disconnecting all cables from your FC first, try rebooting, upgrade chrome, upgrade drivers.<br /><strong>Note:</strong> When flashing boards that have directly connected USB sockets (Matek H743-SLIM, Holybro Kakute etc) ensure you have read the USB Flashing section of the INAV manual and have the correct software and drivers installed"
    },
    "firmwareFlasherRecoveryHead": {
        "message": "<strong>Recovery / Lost communication<strong>"
    },
    "firmwareFlasherRecoveryText": {
        "message": "If you have lost communication with your board follow these steps to restore communication: <ul><li>Power off</li><li>Enable 'No reboot sequence', enable 'Full chip erase'.</li><li>Jumper the BOOT pins or hold BOOT button.</li><li>Power on (activity LED will NOT flash if done correctly).</li><li>Install all STM32 drivers and Zadig if required (see <a href=\"https://github.com/iNavFlight/inav/blob/master/docs/USB%20Flashing.md\"target=\"_blank\">USB Flashing</a> section of INAV manual).</li><li>Close configurator, Close all running chrome instances, Close all Chrome apps, Restart Configurator.</li><li>Release BOOT button if your FC has one.</li><li>Flash with correct firmware (using manual baud rate if specified in your FC's manual).</li><li>Power off.</li><li>Remove BOOT jumper.</li><li>Power on (activity LED should flash).</li><li>Connect normally.</li></ul>"
    },
    "firmwareFlasherButtonLeave": {
        "message": "Leave Firmware Flasher"
    },
    "firmwareFlasherFirmwareNotLoaded": {
        "message": "Firmware not loaded"
    },
    "firmwareFlasherHexCorrupted": {
        "message": "HEX file appears to be corrupted"
    },
    "firmwareFlasherRemoteFirmwareLoaded": {
        "message": "<span style=\"color: #37a8db\">Remote Firmware loaded, ready for flashing</span>"
    },
    "firmwareFlasherFailedToLoadOnlineFirmware": {
        "message": "Failed to load remote firmware"
    },

    "ledStripHelp": {
        "message": "The flight controller can control colors and effects of individual LEDs on a strip.<br />Configure LEDs on the grid, configure wiring order then attach LEDs on your aircraft according to grid positions. LEDs without wire ordering number will not be saved.<br />Double-click on a color to edit the HSV values."
    },
    "ledStripButtonSave": {
        "message": "Save"
    },
    "ledStripEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>: LED"
    },

    "controlAxisRoll": {
        "message": "Roll [A]"
    },
    "controlAxisPitch": {
        "message": "Pitch [E]"
    },
    "controlAxisYaw": {
        "message": "Yaw [R]"
    },
    "controlAxisThrottle": {
        "message": "Throttle [T]"
    },
    "radioChannelShort": {
        "message": "CH "
    },
    "configHelp2": {
        "message": "Arbitrary board rotation in degrees, to allow mounting it sideways / upside down / rotated etc. When running external sensors, use the sensor alignments (Gyro, Acc, Mag) to define sensor position independent from board orientation. "
    },
    "failsafeFeaturesHelpOld": {
        "message": "Failsafe configuration has changed considerably. Use latest INAV"
    },
    "failsafePaneTitleOld": {
        "message": "Receiver failsafe"
    },
    "failsafeFeatureItemOld": {
        "message": "Failsafe settings on RX signal loss"
    },
    "failsafeThrottleItemOld": {
        "message": "Failsafe Throttle"
    },
    "failsafeFeaturesHelpNew": {
        "message": "Failsafe has two stages. <strong>Stage 1</strong> is entered when a flightchannel has an invalid pulse duration, the receiver reports failsafe mode or there is no signal from the receiver at all, the channel fallback settings are applied to <span style=\"color: red\">all channels</span> and a short amount of time is provided to allow for recovery. <strong>Stage 2</strong> is entered when the error condition takes longer than the configured guard time while the craft is <span style=\"color: red\">armed</span>, all channels will remain at the applied channel fallback setting unless overruled by the chosen procedure. <br /><strong>Note:</strong> Prior to entering stage 1, channel fallback settings are also applied to individual radio channels that have invalid pulses."
    },
    "failsafePulsrangeTitle": {
        "message": "Valid Pulse Range Settings"
    },
    "failsafePulsrangeHelp": {
        "message": "Pulses shorter than minimum or longer than maximum are invalid and will trigger application of individual channel fallback settings for radio channels or entering stage 1 for flightchannels"
    },
    "failsafeRxMinUsecItem": {
        "message": "Minimum duration"
    },
    "failsafeRxMaxUsecItem": {
        "message": "Maximum duration"
    },
    "failsafeChannelFallbackSettingsTitle": {
        "message": "Channel Fallback Settings"
    },
    "failsafeChannelFallbackSettingsHelp": {
        "message": "These settings are applied to invalid individual radio channels or to all channels when entering stage 1. <strong>Note:</strong> values are saved in steps of 25usec, so small changes disappear"
    },
    "failsafeChannelFallbackSettingsAuto": {
        "message": "<strong>Auto</strong> means Roll, Pitch and Yaw to center and Throttle low. <strong>Hold</strong> means maintain the last good value received"
    },
    "failsafeChannelFallbackSettingsHold": {
        "message": "<strong>Hold</strong> means maintain the last good value received. <strong>Set</strong> means the value given here will be used"
    },
    "failsafeStageTwoSettingsTitle": {
        "message": "Settings"
    },
    "failsafeFeatureItem": {
        "message": "Enabled"
    },
    "failsafeFeatureHelp": {
        "message": "<strong>Note:</strong> When Stage 2 is DISABLED, the fallback setting <strong>Auto</strong> is used instead of the user settings for all flightchannels (Roll, Pitch, Yaw and Throttle)."
    },
    "failsafeDelayItem": {
        "message": "Guard time for activation after signal lost [For deciseconds (ds): 1 = 0.1 sec.]"
    },
    "failsafeDelayHelp": {
        "message": "Time for stage 1 to wait for recovery"
    },
    "failsafeThrottleItem": {
        "message": "Throttle value used while landing"
    },
    "failsafeOffDelayItem": {
        "message": "Delay for turning off the Motors during Failsafe [For deciseconds (ds):1 = 0.1 sec.]"
    },
    "failsafeOffDelayHelp": {
        "message": "Time to stay in landing mode untill the motors are turned off and the craft is disarmed"
    },
    "failsafeSubTitle1": {
        "message": "Procedure"
    },
    "failsafeProcedureItemSelect1": {
        "message": "Land"
    },
    "failsafeProcedureItemSelect2": {
        "message": "Drop"
    },
    "failsafeProcedureItemSelect3": {
        "message": "RTH"
    },
    "failsafeProcedureItemSelect4": {
        "message": "Do nothing"
    },
    "failsafeKillSwitchItem": {
        "message": "Failsafe Kill Switch (instantly disarm aircraft on failsafe)"
    },
    "failsafeKillSwitchHelp": {
        "message": "Set this option to make the failsafe switch, configured in the modes tab, act as a direct kill switch, bypassing the selected failsafe procedure. <strong>Note:</strong> Arming is blocked with the failsafe kill switch in the ON position"
    },
    "failsafeUseMinimumDistanceItem": {
        "message": "Use alternate Minimum Distance Failsafe Procedure when close to Home"
    },
    "failsafeUseMinimumDistanceHelp": {
        "message": "Set this option if you need an alternate failsafe behavior when the craft is close to Home. For example the author of the feature has a plane that failsafes when the wings detach on landing, when the RTH failsafe behavior normally desired in flight is no longer wanted or needed."
    },
    "failsafeMinDistanceItem": {
        "message": "Failsafe Minimum Distance in centimeters"
    },
    "failsafeMinDistanceHelp": {
        "message": "The craft will use the alternate failsafe behavior when it is between 0 and this minimum distance in centimeters away from Home. For example if set to 2000 centimeters (20 meters), and the craft is at 13 meters, the Failsafe Minimum Distance Procedure will be followed. When the craft is at 25 meters, the normal failsafe procedure will be followed. If set to 0, the normal failsafe procedure will be used at all times. "
    },
    "failsafeMinDistanceProcedureItem": {
        "message": "Failsafe Minimum Distance Procedure"
    },
    "failsafeMinDistanceProcedureHelp": {
        "message": "This is the failsafe procedure that will be followed when the craft is closer than the Failsafe Minimum Distance from Home."
    },
    "mainHelpArmed": {
        "message": "Motor Arming"
    },
    "mainHelpFailsafe": {
        "message": "Failsafe Mode"
    },
    "mainHelpLink": {
        "message": "Serial Link Status"
    },
    "warning": {
        "message": "Warning"
    },
    "escProtocol": {
        "message": "ESC protocol"
    },
    "escRefreshRate": {
        "message" : "ESC refresh rate"
    },
    "escProtocolHelp": {
        "message" : "ESC has to support chosen protocol. Change only if you know that ESC supports it!"
    },
    "escRefreshRatelHelp": {
        "message" : "ESC has to support refresh rate. Change only if you know that ESC supports it!"
    },
    "servoRefreshRate": {
        "message" : "Servo refresh rate"
    },
    "servoRefreshRatelHelp": {
        "message" : "Servo has to support refresh rate. Change only if you know that servo supports it. Too high refresh rate might damage servos!"
    },
    "logPwmOutputDisabled": {
        "message" : "PWM output is disabled. Motors and servos will not work. Use <u>Outputs</u> tab to enable!"
    },
    "configurationGyroSyncTitle": {
        "message" : "Synchronize looptime with gyroscope"
    },
    "configurationGyroLpfTitle": {
        "message" : "Gyroscope LPF cutoff frequency"
    },
    "configurationGyroSyncDenominator": {
        "message" : "Gyroscope denominator"
    },
    "yawJumpPreventionLimit": {
        "message": "Yaw jump prevention"
    },
    "yawJumpPreventionLimitHelp": {
        "message": "Prevent yaw jumps during yaw stops and rapid YAW input. To disable set to 500. Adjust this if your aircraft 'skids out'. Higher values increases YAW authority but can cause roll/pitch instability in case of underpowered UAVs. Lower values makes yaw adjustments more gentle but can cause UAV unable to keep heading"
    },
    "yawPLimit": {
        "message": "Yaw P limit"
    },
    "yawPLimitHelp": {
        "message": "Limiter for yaw P term. Increasing it improves yaw authority but can cause instability on ROLL and PITCH."
    },
    "tabFiltering": {
        "message": "Filtering"
    },
    "gyroLpfCutoffFrequency": {
        "message": "Gyro LPF cutoff frequency"
    },
    "gyroLpfCutoffFrequencyHelp": {
        "message": "Software-based filter to remove mechanical vibrations from the gyro signal. Value is cutoff frequency (Hz). For larger frames with bigger props set to lower value. Too high value can cause motor and ESC overheating."
    },
    "accLpfCutoffFrequency": {
        "message": "Accelerometer LPF cutoff frequency"
    },
    "yawLpfCutoffFrequency": {
        "message": "Yaw LPF cutoff frequency"
    },
    "yawLpfCutoffFrequencyHelp": {
        "message": "Yaw P-term LPF cutoff frequency"
    },
    "rollPitchItermIgnoreRate": {
        "message": "Roll/Pitch I-term ignore rate"
    },
    "rollPitchItermIgnoreRateHelp": {
        "message": "PID I-Term is ignored above this rotation rate. This prevents I-term from accumulation during maneuvers"
    },
    "yawItermIgnoreRate": {
        "message": "Yaw I-term ignore rate"
    },
    "yawItermIgnoreRateHelp": {
        "message": "PID I-Term is ignored above this rotation rate. This prevents I-term from accumulation during maneuvers"
    },
    "axisAccelerationLimitRollPitch": {
        "message": "Roll/Pitch acceleration limit"
    },
    "axisAccelerationLimitRollPitchHelp": {
        "message": "This is maximum angular acceleration rate pilot is allowed to require from UAV. UAV should be able to satisfy this accelaration rate. As a rule of thumb, the bigger the UAV, to lower acceleration it can handle"
    },
    "axisAccelerationLimitYaw": {
        "message": "Yaw acceleration limit"
    },
    "axisAccelerationLimitYawHelp": {
        "message": "This is maximum angular acceleration rate pilot is allowed to require from UAV. UAV should be able to satisfy this accelaration rate. As a rule of thumb, the bigger the UAV, to lower acceleration it can handle"
    },
    "pidTuningTPAHelp": {
        "message": "Throttle PID Attenuation factor. PID gains will be reduced lineary starting from 0 at TPA Breakpoint (Throttle) to TPA factor at max throttle"
    },
    "pidTuningTPABreakPointHelp": {
        "message": "Throttle PID Attenuation begins when Throttle position exceeds this value. "
    },
    "configurationAsyncMode": {
        "message": "Asynchronous mode"
    },
    "configurationGyroFrequencyTitle": {
        "message": "Gyroscope task frequency"
    },
    "configurationAccelerometerFrequencyTitle": {
        "message": "Accelerometer task frequency"
    },
    "configurationAttitudeFrequencyTitle": {
        "message": "Attitude task frequency"
    },
    "configurationGyroLpfHelp": {
        "message": "Hardware based cutoff frequency for gyroscope. In general, bigger value is better but makes UAV more sensitive to vibrations"
    },
    "configurationAsyncModeHelp": {
        "message": "See Firmware \"Looptime\" documentation for details"
    },
    "configurationGyroFrequencyHelp": {
        "message": "In general, higher value is better but makes UAV more sensitive to vibrations. Should be kept above 'Flight Controller Loop Time' frequency. Maximal practical value is hardware dependant. If set too high, board might not run properly. Observe CPU usage."
    },
    "configurationAccelerometerFrequencyHelp": {
        "message": "For Acro purposes, this value can be lowered from default"
    },
    "configurationAttitudeFrequencyHelp": {
        "message": "For Acro purposes, this value can be lowered from default"
    },
    "configurationLoopTimeHelp": {
        "message": "In general, higher value is better. With asynchronous gyroscope, should be kept below gyro update frequency. Maximal practical value is hardware dependant. If set too high, board might not run properly. Observe CPU usage."
    },
    "tabOSD": {
        "message": "OSD"
    },
    "configurationSensors": {
        "message": "Sensors & buses"
    },
    "sensorAccelerometer": {
        "message": "Accelerometer"
    },
    "sensorMagnetometer": {
        "message": "Magnetometer"
    },
    "sensorBarometer": {
        "message": "Barometer"
    },
    "sensorPitot": {
        "message": "Pitot tube"
    },
    "sensorRangefinder": {
        "message": "Rangefinder"
    },
    "sensorOpflow": {
        "message": "Optical flow"
    },
    "manualEnablingTemplate": {
        "message": "To enable via CLI use <strong>feature {name}</strong> command"
    },
    "armingFailureReasonTitle": {
        "message": "Pre-arming checks"
    },
    "BLOCKED_UAV_NOT_LEVEL": {
        "message": "UAV is levelled"
    },
    "BLOCKED_SENSORS_CALIBRATING": {
        "message": "Run-time calibration"
    },
    "BLOCKED_SYSTEM_OVERLOADED": {
        "message": "CPU load"
    },
    "BLOCKED_NAVIGATION_SAFETY": {
        "message": "Navigation is safe"
    },
    "BLOCKED_COMPASS_NOT_CALIBRATED": {
        "message": "Compass calibrated"
    },
    "BLOCKED_ACCELEROMETER_NOT_CALIBRATED": {
        "message": "Accelerometer calibrated"
    },
    "BLOCKED_HARDWARE_FAILURE": {
        "message": "Hardware health"
    },
    "BLOCKED_INVALID_SETTING": {
        "message": "Settings validated"
    },
    "armingCheckPass": {
        "message": "<div class=\"checkspass\"></div>"
    },
    "armingCheckFail": {
        "message": "<div class=\"checksfail\"></div>"
    },
    "calibrationHead1": {
        "message": "Accelerometer Calibration"
    },
    "calibrationHead2": {
        "message": "Accelerometer Values"
    },
    "calibrationHead3": {
        "message": "Level Calibration"
    },
    "calibrationHead4": {
        "message": "Compass Calibration"
    },
    "calibrationHead5": {
        "message": "Optic Flow Calibration"
    },
    "OpflowCalText": {
        "message": "After pressing the button you have 30 seconds to hold the copter in the air and tilt it to sides without moving it horizontally. Note that optic flow sensor needs to observe the surface at all times."
    },
    "OpflowCalBtn": {
        "message": "Calibrate Optic Flow sensor"
    },
    "accZero": {
        "message": "Acc Zero"
    },
    "accGain": {
        "message": "Acc Gain"
    },
    "NoteCalibration": {
        "message": "Note: If the flightcontroller is mounted in another angle or upside down, do the calibration steps with the flightcontroller pointing as shown in the pictures, not the quad (otherwise calibration won´t work)."
    },
    "AccBtn": {
        "message": "Calibrate Accelerometer"
    },
    "MagCalText": {
        "message": "After pressing the button you have 30 seconds to hold the copter in the air and rotate it so that each side (front, back, left, right, top and bottom) points down towards the earth."
    },
    "MagBtn": {
        "message": "Calibrate Compass"
    },
    "LevCalText": {
        "message": "Please put some Text here…"
    },
    "LevBtn": {
        "message": "Level calibration"
    },
    "tabMixer": {
        "message": "Mixer"
    },
    "presetsApplyHeader": {
        "message": "Warning"
    },
    "presetApplyDescription": {
        "message": "<p style='color: darkred;'>Make sure that <strong>mixer</strong> was configured before applying any Presets!</p><p>Preset overwrites selected configuration values including mixer, filtering, PIDs and other. Settings like: flight modes, radio settings, failsafe and OSD are not changed. Applied values should <strong>NOT</strong> treated as final values, but entry points for final tuning. <br> Always check new configuration before flying!</p>"
    },
    "OK": {
        "message": "OK"
    },
    "accCalibrationStartTitle": {
        "message": "Accelerometer Calibration"
    },
    "accCalibrationStartBody": {
        "message": "Place flight controller in a position showed in image, then press <strong>Calibrate</strong> button again. Repeat for each of 6 position. Keep it stable during calibration."
    },
    "accCalibrationStopTitle": {
        "message": "Calibration finished"
    },
    "accCalibrationStopBody": {
        "message": "Accelerometer calibration finished, check if values have been saved."
    },
    "accCalibrationProcessing": {
        "message": "Processing..."
    },
    "tabProgramming": {
        "message": "Programming"
    },
    "tabAdvancedTuning": {
        "message": "Advanced Tuning"
    },
    "advancedTuningSave": {
        "message": "Save and Reboot"
    },
    "tabAdvancedTuningTitle": {
        "message": "Advanced Tuning"
    },
    "tabAdvancedTuningGenericTitle": {
        "message": "Generic settings"
    },
    "presetApplyHead": {
        "message": "Applies following settings:"
    },
    "gyroNotchHz1": {
        "message": "First gyro notch filter freq."
    },
    "gyroNotchCutoff1": {
        "message": "First gyro notch filter cutoff freq."
    },
    "gyroNotchHz2": {
        "message": "Second gyro notch filter freq."
    },
    "gyroNotchCutoff2": {
        "message": "Second gyro notch filter cutoff freq."
    },
    "gyroNotchHz1Help": {
        "message": "Should be tuned to propeller harmonic frequency. Usually equals <i>[motor_frequency] * [propeller_blades_number]</i><br><br>Has to be above cutoff frequency<br><br><i>0</i> disables the filter"
    },
    "gyroNotchHz2Help": {
        "message": "Should be tuned to motor frequency.<br><br>Has to be above cutoff frequency and below first gyro notch filter frequency.<br><br><i>0</i> disables the filter"
    },
    "gyroNotchCutoff1Help": {
        "message": "Defines band of notch filter. <br><br>Has to be kept below notch filter frequency."
    },
    "gyroNotchCutoff2Help": {
        "message": "Defines band of notch filter. <br><br>Has to be kept below notch filter frequency."
    },
    "dtermNotchHz": {
        "message": "Dterm notch filter freq."
    },
    "dtermNotchCutoff": {
        "message": "Dterm notch filter cutoff freq."
    },
    "dtermNotchHzHelp": {
        "message": "Should be placed between first and second gyro notch filter frequency<br><br>Has to be above cutoff frequency<br><br><i>0</i> disables the filter"
    },
    "dtermNotchCutoffHelp": {
        "message": "Defines band of filter. <br><br>Has to be kept below notch filter frequency."
    },
    "multiRotorNavigationConfiguration": {
        "message": "Multirotor Navigation Settings"
    },
    "userControlMode": {
        "message": "User Control Mode"
    },
    "posholdDefaultSpeed": {
        "message": "Default navigation speed"
    },
    "posholdDefaultSpeedHelp": {
        "message": "Default speed during RTH, also used for WP navigation if no speed set for WP leg. Limited to Max. navigation speed"
    },
    "posholdMaxSpeed": {
        "message": "Max. navigation speed"
    },
    "posholdMaxManualSpeed": {
        "message": "Max. CRUISE speed"
    },
    "posholdMaxManualSpeedHelp": {
        "message": "Maximum horizonal velocity allowed for pilot manual control during POSHOLD/CRUISE mode"
    },
    "posholdMaxClimbRate": {
        "message": "Max. navigation climb rate [cm/s]"
    },
    "posholdMaxManualClimbRate": {
        "message": "Max. ALTHOLD climb rate [cm/s]"
    },
    "posholdMaxBankAngle": {
        "message": "Multirotor max. banking angle"
    },
    "posholdMaxBankAngleHelp": {
        "message": "Maximum banking angle in navigation modes. Constrained by maximum ROLL angle in PID tuning tab."
    },
    "posholdHoverThrottle": {
        "message": "Hover throttle"
    },
    "posholdHoverMidThrottle": {
        "message": "Use mid. throttle for ALTHOLD"
    },
    "mcWpSlowdown": {
        "message": "Slow down when approaching waypoint"
    },
    "mcWpSlowdownHelp": {
        "message": "When enabled, NAV engine will slow down when switching to the next waypoint. This prioritizes turning over forward movement. When disabled, NAV engine will continue to the next waypoint and turn as it goes."
    },
    "positionEstimatorConfiguration": {
        "message": "Position Estimator"
    },
    "w_z_baro_p": {
        "message": "Vertical position barometer weight"
    },
    "w_z_gps_p": {
        "message": "Vertical position GPS weight"
    },
    "w_z_gps_v": {
        "message": "Vertical speed GPS weight"
    },
    "w_xy_gps_p": {
        "message": "Horizontal position GPS weight"
    },
    "w_xy_gps_v": {
        "message": "Horizontal speed GPS weight"
    },
    "positionEstimatorConfigurationDisclaimer": {
        "message": "These values should be changed very carefully. In most cases there is no need to change them. For advanced users only!"
    },
    "gps_min_sats": {
        "message": "Min. GPS satellites for a valid fix"
    },
    "w_z_baro_p_help": {
        "message": "When this value is set to <strong>0</strong>, barometer is not used for altitude computation"
    },
    "w_z_gps_p_help": {
        "message": "This setting is only used when no barometer is installed and <strong>inav_use_gps_no_baro</strong> is configured."
    },
    "wirelessModeSwitch": {
        "message": "Wireless mode"
    },
    "rthConfiguration": {
        "message": "RTH settings"
    },
    "autoLandingSettings": {
        "message": "Automatic landing settings"
    },
    "minRthDistance": {
        "message": "Min. RTH distance"
    },
    "minRthDistanceHelp": {
        "message": "If UAV is within this distance from the home point, it will land instead of RTH then land"
    },
    "rthClimbFirst": {
        "message": "Climb before RTH"
    },
    "rthClimbFirstHelp": {
        "message": "If set to ON or ON_FW_SPIRAL, aircraft will climb to nav_rth_altitude first before turning to head home. If set to OFF, aircraft will turn and head home immediately climbing on the way. For a fixed wing, ON will use a linear climb, ON_FW_SPIRAL will use a loiter turning climb with climb rate set by nav_auto_climb_rate and turn rate set by nav_fw_loiter_radius (ON_FW_SPIRAL is a fixed wing setting and behaves the same as ON for a multirotor)."
    },
    "rthClimbIgnoreEmergency": {
        "message": "Climb regardless of position sensors health"
    },
    "rthAltControlOverride": {
        "message": "Override RTH altitude and climb setting with roll/pitch stick"
    },
    "rthAltControlOverrideHELP": {
        "message": "When enabled, the climb on RTH can be canceled by holding full pitch down for >1 second so aircraft will fly home at the current altitude. On fixed wing aircraft, the 'Climb before RTH' setting can be overriden by holding full roll left or right for >1 second so that the plane will turn towards home immediately."
    },
    "rthTailFirst": {
        "message": "Tail first"
    },
    "rthAllowLanding": {
        "message": "Land after RTH"
    },
    "rthAltControlMode": {
        "message": "RTH altitude mode"
    },
    "rthAbortThreshold": {
        "message": "RTH abort threshold"
    },
    "rthAbortThresholdHelp": {
        "message": "RTH sanity checking feature will notice if the distance to home is increasing during RTH and if it exceeds the threshold defined by this parameter, instead of continuing RTH the UAV will enter emergency landing. Default is 500m which is safe enough for both multirotors and airplanes."
    },
    "rthAltitude": {
        "message": "RTH altitude"
    },
    "rthAltitudeHelp": {
        "message": "Used in Extra, Fixed and 'At Least' RTH altitude modes"
    },
    "rthHomeAltitudeLabel": {
        "message": "RTH Home altitude"
    },
    "rthHomeAltitudeHelp": {
        "message": "Used when not landing at the home point. Upon arriving at home, the plane will loiter and change altitude to the RTH Home Altitude. Default is 0, which is feature disabled."
    },
    "landMaxAltVspd": {
        "message": "The craft will start to descend at this speed, once it reaches the <strong>Home</strong> location."
    },
    "landMaxAltVspdHelp": {
        "message": "After RTH if autolanding is enabled the aircraft will start to descend at this speed until reaching <strong>Slow down altitude</strong>"
    },
    "landSlowdownMaxAlt": {
        "message": "When the craft has descended to <i>this</i> altitude. It will begin to slow down for landing."
    },
    "landSlowdownMaxAltHelp": {
        "message": "When the aircraft reaches this altitude it will start to slow down linearly between the <strong>Initial landing speed</strong> and <strong>Final landing speed</strong> to reach it at <strong>Final approach altitude</strong>"
    },
    "landSlowdownMinAlt": {
        "message": "When the craft has descended to <i>this</i> altitude, it will have slowed to the touch down speed."
    },
    "landMinAltVspd": {
        "message": "This is the touch down speed."
    },
    "landMinAltVspdHelp": {
        "message": "The aircraft vertical speed target will be this value when the aircraft reaches the <strong>Final approach altitude</strong> after having slowed down linearly from the <strong>Slow down altitude</strong> at <strong>Initial landing speed</strong>"
    },
    "emergencyDescentRate": {
        "message": "Emergency landing speed"
    },
    "cruiseThrottle": {
        "message": "Cruise throttle"
    },
    "cruiseYawRateLabel": {
        "message": "Cruise Yaw Rate"
    },
    "cruiseYawRateHelp": {
        "message": "This is the turning rate in Cruise and 3D Cruise."
    },
    "cruiseManualThrottleLabel": {
        "message": "Allow manual throttle increase"
    },
    "cruiseManualThrottleHelp": {
        "message": "Turning this on, will allow you to override automatic throttle control in all navigation modes. You cannot go below the automatic throttle value, except with motor stop on zero throttle."
    },
    "minThrottle": {
        "message": "Min. throttle"
    },
    "maxThrottle": {
        "message": "Max. throttle"
    },
    "maxBankAngle": {
        "message": "Max. navigation bank angle"
    },
    "maxBankAngleHelp": {
        "message": "Maximum banking angle in navigation modes. Constrained by maximum ROLL angle in PID tuning tab."
    },
    "maxClimbAngle": {
        "message": "Max. navigation climb angle"
    },
    "maxClimbAngleHelp": {
        "message": "Maximum climb angle in navigation modes. Constrained by maximum PITCH angle in PID tuning tab."
    },
    "navManualClimbRate": {
        "message": "Max. Alt-hold climb rate"
    },
    "navManualClimbRateHelp": {
        "message": "Maximum climb/descent rate firmware is allowed when processing pilot input for ALTHOLD control mode [cm/s]"
    },
    "navAutoClimbRate": {
        "message": "Max. navigation climb rate"
    },
    "navAutoClimbRateHelp": {
        "message": "Maximum climb/descent rate that UAV is allowed to reach during navigation modes. [cm/s]"
    },
    "maxDiveAngle": {
        "message": "Max. navigation dive angle"
    },
    "maxDiveAngleHelp": {
        "message": "Maximum dive angle in navigation modes. Constrained by maximum PITCH angle in PID tuning tab."
    },
    "pitchToThrottle": {
        "message": "Pitch to throttle ratio"
    },
    "pitchToThrottleHelp": {
        "message": "In navigation modes, each degree of climb will add this many units to the cruise throttle. Conversely, each degree of diving will substract from it."
    },
    "pitchToThrottleSmoothing": {
        "message": "Throttle smoothing"
    },
    "pitchToThrottleSmoothingHelp": {
        "message": "How smoothly the autopilot adjusts the throttle level in response to pitch angle changes [0-9]."
    },
    "pitchToThrottleThreshold": {
        "message": "Instantaneous throttle adjustment threshold"
    },
    "pitchToThrottleThresholdHelp": {
        "message": "The autopilot will instantly adjust the throttle level without smoothing according to pitch to throttle if the pitch angle is more this many centidegrees from the filtered value."
    },
    "loiterRadius": {
        "message": "Loiter radius"
    },
    "loiterDirectionLabel": {
        "message": "Loiter direction"
    },
    "loiterDirectionHelp": {
        "message": "This setting allows you to choose the loiter direction. Selecting YAW allows you to change the loiter direction with the yaw stick."
    },
     "controlSmoothness": {
        "message": "Control Smoothness"
    },
     "controlSmoothnessHelp": {
        "message": "How smoothly the autopilot controls the airplane to correct the navigation error [0-9]."
    },
    "powerConfiguration": {
        "message": "Battery Estimation Settings"
    },
    "idlePower": {
        "message": "Idle power"
    },
    "idlePowerHelp": {
        "message": "Power draw at zero throttle used for remaining flight time/distance estimation in 0.01W unit"
    },
    "cruisePower": {
        "message": "Cruise power"
    },
    "cruisePowerHelp": {
        "message": "Power draw at cruise throttle used for remaining flight time/distance estimation in 0.01W unit"
    },
    "cruiseSpeed": {
        "message": "Cruise speed"
    },
    "cruiseSpeedHelp": {
        "message": "Speed for the plane/wing at cruise throttle used for remaining flight time/distance estimation in cm/s"
    },
    "rthEnergyMargin": {
        "message": "RTH energy margin"
    },
    "rthEnergyMarginHelp": {
        "message": "Energy margin wanted after getting home (percent of battery energy capacity). Use for the remaining flight time/distance calculation."
    },
    "generalNavigationSettings": {
        "message": "General Navigation Settings"
    },
    "waypointConfiguration": {
        "message": "Waypoint Navigation Settings"
    },
    "waypointRadius": {
        "message": "Waypoint radius"
    },
    "waypointRadiusHelp": {
        "message": "This sets the distance away from a waypoint that triggers the waypoint as reached."
    },
    "waypointSafeDistance": {
        "message": "Waypoint safe distance"
    },
    "waypointSafeDistanceHelp": {
        "message": "The maximum distance between the home point and the first waypoint."
    },
    "fixedWingNavigationConfiguration": {
      "message": "Fixed Wing Navigation Settings"
    },
    "osd_unsupported_msg1": {
        "message" : "Your flight controller isn't responding to OSD commands. This probably means that it does not have an integrated OSD."
    },
    "osd_unsupported_msg2": {
        "message" : "Note that some flight controllers have an onboard <a href=\"https://www.youtube.com/watch?v=ikKH_6SQ-Tk\" target=\"_blank\">MinimOSD</a> that can be flashed and configured with <a href=\"https://github.com/ShikOfTheRa/scarab-osd/releases/latest\" target=\"_blank\">scarab-osd</a>, however the MinimOSD cannot be configured through this interface."
    },
    "osd_elements": {
        "message" : "Elements"
    },
    "osd_preview_title": {
        "message" : "Preview <span>(drag to change position)</span>"
    },
    "osd_preview_title_drag":{
        "message": ""
    },
    "osd_video_format": {
        "message" : "Video Format"
    },
    "osd_craft_name": {
        "message" : "Craft Name"
    },
    "osd_units": {
        "message" : "Units"
    },
    "osd_main_voltage_decimals": {
        "message" : "Voltage Decimals"
    },
    "osd_mah_used_precision": {
        "message" : "mAh Used Precision"
    },
    "osd_coordinate_digits": {
        "message" : "Coordinate Digits"
    },
    "osd_plus_code_digits": {
        "message" : "Plus Code Digits"
    },
    "osd_plus_code_short": {
        "message" : "Plus Code Remove Leading Digits"
    },
    "osd_esc_rpm_precision": {
      "message": "ESC RPM precision"
    },
    "osd_esc_rpm_precision_help": {
        "message": "The number of digits shown in the RPM display. If the RPM is higher than the number of digits, it will be shown in thousand RPM with as many decimal places as allowed."
      },
    "osd_crosshairs_style": {
        "message" : "Crosshairs Style"
    },
    "osd_horizon_offset": {
        "message" : "AHI & HUD offset"
    },
    "osd_horizon_offset_help" : {
        "message" : "Move the HUD and AHI up or down on the OSD to get it level with the actual horizon. The AHI can appear high or low depending on the camera angle in flight. <span style='color:red;'>NOTE: </span> This does not work with the Pixel OSD. For that use the `osd_ahi_vertical_offset` command in the CLI."
    },
    "osd_left_sidebar_scroll": {
        "message" : "Left Sidebar Scroll"
    },
    "osd_right_sidebar_scroll": {
        "message" : "Right Sidebar Scroll"
    },
    "osd_crsf_lq_format": {
        "message" : "Crossfire LQ Format"
    },
    "osd_sidebar_scroll_arrows": {
        "message" : "Sidebar Scroll Arrows"
    },
    "osd_home_position_arm_screen": {
        "message" : "Home Position on Arming Screen"
    },
    "osd_alarms": {
        "message" : "Alarms"
    },
    "osdLayoutDefault": {
        "message": "Default Layout"
    },
    "osdLayoutAlternative": {
        "message": "Alternative Layout #$1"
    },
    "osdUnitImperial": {
        "message": "Imperial"
    },
    "osdUnitMetric": {
        "message": "Metric"
    },
    "osdUnitMetricMPH": {
        "message": "Metric + MPH"
    },
    "osdUnitMetricMPHTip": {
        "message": "Use metric units except for the speed, which is displayed in miles per hour."
    },
    "osdUnitUK": {
        "message": "UK"
    },
    "osdUnitUKTip": {
        "message": "Use imperial units except for the temperature, which is displayed in Celsius."
    },
    "osdUnitGA": {
        "message": "General Aviation"
    },
    "osdUnitGATip": {
        "message": "Use GA standard units (non-SI): Nautical Miles, Feet, Knots, Celcius."
    },
    "osd_rssi_alarm": {
        "message": "RSSI (%)"
    },
    "osdAlarmBATT_CAP": {
        "message": "Used Battery"
    },
    "osdAlarmBATT_CAP_HELP": {
        "message": "The battery capacity used indicator (mah drawn) will flash when the total consumed mah are greater than this value. Requires a current sensor. Zero disables this alarm."
    },
    "osd_time_alarm": {
        "message": "Fly Time (minutes)"
    },
    "osd_alt_alarm": {
        "message": "Altitude"
    },
    "osd_dist_alarm": {
        "message": "Distance"
    },
    "osdAlarmDIST_HELP": {
        "message": "The distance to home indicator will flash when the distance is greater than this value. Zero disables this alarm."
    },
    "osd_neg_alt_alarm": {
        "message": "Negative Altitude"
    },
    "osdAlarmMAX_NEG_ALTITUDE_HELP": {
        "message": "The altitude indicator will flash when altitude is negative and its absolute value is greater than this alarm. Useful when taking off from elevated places. Zero disables this alarm."
    },
    "osd_gforce_alarm": {
        "message": "g force"
    },
    "osdAlarmGFORCE_HELP": {
        "message": "The g force element will start blinking when greater than this value"
    },
    "osd_gforce_axis_alarm_min": {
        "message": "g force axis min"
    },
    "osdAlarmGFORCE_AXIS_MIN_HELP": {
        "message": "The axes g force elements will start blinking when lower than this value"
    },
    "osd_gforce_axis_alarm_max": {
        "message": "g force axis max"
    },
    "osdAlarmGFORCE_AXIS_MAX_HELP": {
        "message": "The axes g force elements will start blinking when greater than this value"
    },
    "osd_current_alarm": {
        "message": "Current (A)"
    },
    "osdAlarmCURRENT_HELP": {
        "message": "The current draw element will start blinking when the consumption is greater than this value. Zero disables this alarm."
    },
    "osd_imu_temp_alarm_min": {
        "message": "Minimum IMU temperature"
    },
    "osd_imu_temp_alarm_max": {
        "message": "Maximum IMU temperature"
    },
    "osd_baro_temp_alarm_min": {
        "message": "Minimum baro temperature"
    },
    "osd_baro_temp_alarm_max": {
        "message": "Maximum baro temperature"
    },
    "osd_esc_temp_alarm_min": {
        "message": "Minimum ESC temperature"
    },
    "osd_esc_temp_alarm_max": {
        "message": "Maximum ESC temperature"
    },
    "osd_snr_alarm": {
        "message": "CRSF SNR Alarm Level"
    },
    "osdalarmSNR_HELP": {
        "message": "SNR is only shown below this value. 0dB (1:1 ratio), indicates that received signal equals noise floor."
    },
    "osd_link_quality_alarm": {
        "message": "CRSF Link Quality Alarm"
    },
    "osdalarmLQ_HELP": {
        "message": "For Crossfire use 70%. For Tracer use 50%."
    },
    "osd_rssi_dbm_alarm": {
        "message": "CRSF RSSI dBm Alarm"
    },
    "osd_rssi_dbm_alarm_HELP": {
        "message": "RSSI indicator blinks below this value. Range: [-130,0]. Zero disables this alarm."
    },
    "osdGroupGeneral": {
        "message": "General"
    },
    "osdGroupAltitude": {
        "message": "Altitude"
    },
    "osdGroupTimers": {
        "message": "Timers"
    },
    "osdGroupGForce": {
        "message": "G force"
    },
    "osdGroupTemperature": {
        "message": "Temperature"
    },
    "osdGroupAttitude": {
        "message": "Attitude"
    },
    "osdGroupCurrentMeter": {
        "message": "Current Meter"
    },
    "osdGroupGPS": {
        "message": "GPS"
    },
    "osdGroupPowerLimits": {
        "message": "Power limits"
    },
    "osdGroupPIDs": {
        "message": "RC Adjustable Values"
    },
    "osdGroupPIDOutputs": {
        "message": "PID controllers outputs"
    },
    "osdGroupVTX": {
        "message": "VTX"
    },
    "osdGroupCRSF": {
        "message": "CRSF RX Statistics"
    },
    "osdGroupMapsAndRadars": {
        "message": "Maps and Radars"
    },
    "osdGroupMapsAndRadars_HELP": {
        "message": "Maps and radars allow laying out additional elements on top of them as long as they don't overlap any of the map parts visible in the preview."
    },
    "osdElement_ONTIME_FLYTIME": {
        "message": "On Time / Fly Time"
    },
    "osdElement_RSSI_VALUE": {
        "message": "RSSI (Signal Strength)"
    },
    "osdElement_RSSI_VALUE_HELP": {
        "message": "Shows the quality of the signal received from the RC radio (the higher the better)."
    },
    "osdElement_MAIN_BATT_VOLTAGE": {
        "message": "Battery Voltage"
    },
    "osdElement_SAG_COMP_MAIN_BATT_VOLTAGE": {
        "message": "Sag Compensated Battery Voltage"
    },
    "osdElement_SAG_COMP_MAIN_BATT_VOLTAGE_HELP": {
        "message": "Calculated voltage the battery should be at without load (simulates ideal battery)"
    },
    "osdElement_MESSAGES": {
        "message": "System Messages"
    },
    "osdElement_MESSAGES_HELP": {
        "message": "Shows different system messages like warnings, hardware failures and extended details of the current flight mode (e.g. AUTOTUNE and AUTOTRIM modes and RTH stages)."
    },
    "osdElement_MAIN_BATT_CELL_VOLTAGE": {
        "message": "Battery Cell Voltage"
    },
    "osdElement_SAG_COMP_MAIN_BATT_CELL_VOLTAGE": {
        "message": "Sag Compensated Battery Cell Voltage"
    },
    "osdElement_SAG_COMP_MAIN_BATT_CELL_VOLTAGE_HELP": {
        "message": "Calculated average cell voltage the battery should be at without load (simulates ideal battery)"
    },
    "osdElement_MAIN_BATT_REMAINING_PERCENTAGE": {
        "message": "Battery Remaining Percentage"
    },
    "osdElement_MAIN_BATT_REMAINING_CAPACITY": {
        "message": "Battery Remaining Capacity"
    },
    "osdElement_REMAINING_FLIGHT_TIME_HELP": {
        "message": "Estimated remaining flight time before the aircraft needs to go back home based on remaining battery energy, average power and distance to home (Fixed wing only, please read the documentation)"
    },
    "osdElement_REMAINING_FLIGHT_DISTANCE_HELP": {
        "message": "Estimated remaining flight travel distance before the aircraft needs to go back home based on remaining battery energy, average power and distance to home (Fixed wing only, please read the documentation)"
    },
    "osdElement_MAIN_BATT_CELL_VOLTAGE_HELP": {
        "message": "Shows the average cell voltage from the main battery"
    },
    "osdElement_MAH_DRAWN": {
        "message": "mAh drawn"
    },
    "osdElement_EFFICIENCY_MAH": {
        "message": "Efficiency mAh/Km"
    },
    "osdElement_EFFICIENCY_WH": {
        "message": "Efficiency Wh/Km"
    },
    "osdElement_PLIMIT_REMAINING_BURST_TIME": {
        "message": "Remaining burst time"
    },
    "osdElement_PLIMIT_ACTIVE_CURRENT_LIMIT": {
        "message": "Active current limit"
    },
    "osdElement_PLIMIT_ACTIVE_POWER_LIMIT": {
        "message": "Active power limit"
    },
    "osdElement_THROTTLE_POSITION_AUTO_THR": {
        "message": "Throttle Position / Auto Throttle"
    },
    "osdElement_THROTTLE_POSITION_AUTO_THR_HELP": {
        "message": "Shows the throttle stick position in flight modes where it controls the throttle output. On navigation modes, it shows the actual throttle value applied to the motors."
    },
    "osdElement_GPS_SPEED": {
        "message": "Ground Speed"
    },
    "osdElement_GPS_SPEED_HELP": {
        "message": "Shows GPS ground speed."
    },
    "osdElement_GPS_MAX_SPEED": {
        "message": "GPS Maximum Speed"
    },
    "osdElement_GPS_MAX_SPEED_HELP": {
        "message": "Shows highest GPS ground speed."
    },
    "osdElement_MSL_ALTITUDE": {
        "message": "MSL Altitude"
    },
    "osdElement_MSL_ALTITUDE_HELP": {
        "message": "Altitude above Mean Sea Level"
    },
    "osdElement_3D_SPEED": {
        "message": "3D Speed"
    },
    "osdElement_3D_SPEED_HELP": {
        "message": "Shows 3D speed considering both horizontal and vertical speed."
    },
    "osdElement_3D_MAX_SPEED": {
        "message": "3D Maximum Speed"
    },
    "osdElement_3D_MAX_SPEED_HELP": {
        "message": "Shows highest 3D speed considering both horizontal and vertical speed."
    },
    "osdElement_AIR_MAX_SPEED": {
        "message": "Maximum Air Speed"
    },
    "osdElement_AIR_MAX_SPEED_HELP": {
        "message": "Shows highest air speed."
    },
    "osdElement_GPS_SATS": {
        "message": "GPS Satellites"
    },
    "osdElement_GPS_SATS_HELP": {
        "message": "Shows the number of GPS satellites located by the GPS receiver."
    },
    "osdElement_GPS_HDOP": {
        "message": "GPS HDOP"
    },
    "osdElement_GPS_HDOP_HELP": {
        "message": "Shows the Horizontal Dilution Of Precision from the GPS. The lower, the more accurate the GPS fix is."
    },
    "osdElement_PLUS_CODE": {
        "message": "Plus Code (latitude + longitude)"
    },
    "osdElement_PLUS_CODE_HELP": {
        "message": "Plus codes encode both latitude and longitude on a single value that can be entered directly in Google Maps. It provides the same level of precision than latitude and longitude while using less screen space."
    },
    "osdElement_AZIMUTH": {
        "message": "Azimuth"
    },
    "osdElement_AZIMUTH_HELP": {
        "message": "Azimuth is the direction of the aircraft in relation to the home point. It's useful to keep the aircraft on the correct course or to keep the aircraft in front of a fixed directional antenna."
    },
    "osdElement_TRIP_DIST": {
        "message": "Trip distance"
    },
    "osdElement_VARIO_HELP": {
        "message": "Shows vertical speed using up or down arrows. Each arrow represents 10cm (~4 inches) per second."
    },
    "osdElement_VARIO_NUM": {
        "message": "Numeric vario"
    },
    "osdElement_VARIO_NUM_HELP": {
        "message": "Shows vertical speed using a number"
    },
    "osdElement_G_FORCE": {
        "message": "g force"
    },
    "osdElement_G_FORCE_HELP": {
        "message": "Shows the g force taking into account all axes"
    },
    "osdElement_G_FORCE_X": {
        "message": "Longitudinal g force in body frame (X)"
    },
    "osdElement_G_FORCE_X_HELP": {
        "message": "Shows the g force in the X axis (longitudinal)"
    },
    "osdElement_G_FORCE_Y": {
        "message": "Lateral g force in body frame (Y)"
    },
    "osdElement_G_FORCE_Y_HELP": {
        "message": "Shows the g force in the Y axis (lateral)"
    },
    "osdElement_G_FORCE_Z": {
        "message": "Vertical g force in body frame (Z)"
    },
    "osdElement_G_FORCE_Z_HELP": {
        "message": "Shows the g force in the Z axis (vertical)"
    },
    "osdElement_ROLL_PIDS": {
        "message": "Roll PIDs"
    },
    "osdElement_PITCH_PIDS": {
        "message": "Pitch PIDs"
    },
    "osdElement_YAW_PIDS": {
        "message": "Yaw PIDs"
    },
    "osdElement_ONTIME_FLYTIME_HELP": {
        "message": "Shows \"On Time\" while unarmed and \"Fly Time\" while armed."
    },
    "osdElement_RTC_TIME": {
        "message": "Time of the Day"
    },
    "osdElement_RTC_TIME_HELP": {
        "message": "Shows the current time, as retrieved from the GPS or set via the radio."
    },
    "osdElement_RC_SOURCE": {
        "message": "RC source"
    },
    "osdElement_RC_SOURCE_HELP": {
        "message": "Shows the current RC source, STD or MSP (useful when using MSP override)"
    },
    "osdElement_VTX_POWER": {
        "message": "Video TX power level"
    },
    "osdElement_VTX_POWER_HELP": {
        "message": "Shows the current VTX power level. Blinks when the corresponding RC adjustment is selected"
    },
    "osdElement_ESC_RPM": {
        "message": "Motor RPM from ESC telemetry"
    },
    "osdElement_GLIDESLOPE": {
        "message": "Glideslope"
    },
    "osdElement_GLIDESLOPE_HELP": {
        "message": "Amount of horizontal distance traveled per unit of lost altitude"
    },
    "osdElement_PAN_SERVO_CENTRED": {
        "message": "Pan Servo Centred"
    },
    "osdElement_PAN_SERVO_CENTRED_HELP": {
        "message": "Displays if the pan servo is centred (0) or offset (arrows). Check the <b>osd_pan_servo_</b> settings for configuring the pan servo."
    },
    "osdElement_VTX_CHANNEL": {
        "message": "Video TX Band and Channel"
    },
    "osdElement_VTX_CHANNEL_HELP": {
        "message": "Shows the current band and channel of the VTX. Requires either a VTX with SmartAudio or Tramp or either a VTX integrated in the flight controller."
    },
    "osdElement_CRSF_RSSI_DBM": {
        "message": "RX RSSI in dBm"
    },
    "osdElement_CRSF_LQ": {
        "message": "RX Link Quality %"
    },
    "osdElement_CRSF_LQ_HELP": {
        "message": "Use Crossfire LQ Format setting to select format type."
    },
    "osdElement_CRSF_SNR_DB": {
        "message": "RX Uplink SNR in dB"
    },
    "osdElement_CRSF_SNR_DB_HELP": {
        "message": "Shown only when SNR goes below alarm level. At 0dB, received signal level equals noise floor level."
    },
    "osdElement_CRSF_TX_POWER": {
        "message": "TX power in mW"
    },
    "osdElement_MAP_NORTH": {
        "message": "Map (Up is north)"
    },
    "osdElement_MAP_TAKEOFF": {
        "message": "Map (Up is the takeoff direction)"
    },
    "osdElement_RADAR": {
        "message": "Radar"
    },
    "osdElement_MAP_SCALE": {
        "message": "Map Scale"
    },
    "osdElement_MAP_SCALE_HELP": {
        "message": "Scale of the currently shown map/radar."
    },
    "osdElement_MAP_REFERENCE": {
        "message": "Map Reference"
    },
    "osdElement_MAP_REFERENCE_HELP": {
        "message": "Reference (direction that points up) of the current map. N for North and T for takeoff direction."
    },
    "osdElement_WIND_SPEED_HORIZONTAL": {
        "message": "Horizontal wind speed"
    },
    "osdElement_WIND_SPEED_HORIZONTAL_HELP": {
        "message": "Shows estimated horizontal wind speed and direction."
    },
    "osdElement_WIND_SPEED_VERTICAL": {
        "message": "Vertical wind speed"
    },
    "osdElement_WIND_SPEED_VERTICAL_HELP": {
        "message": "Shows estimated vertical wind speed and direction (up or down)."
    },
    "osdElement_ACTIVE_PROFILE": {
        "message": "Show the active profile"
    },
    "osdElement_LEVEL_PIDS": {
        "message": "Level PIDs"
    },
    "osdElement_POS_XY_PIDS": {
        "message": "Position XY PIDs"
    },
    "osdElement_POS_Z_PIDS": {
        "message": "Position Z PIDs"
    },
    "osdElement_VEL_XY_PIDS": {
        "message": "Velocity XY PIDs"
    },
    "osdElement_VEL_Z_PIDS": {
        "message": "Velocity Z PIDs"
    },
    "osdElement_FW_ALT_PID_OUTPUTS": {
        "message": "FW Altitude PID controller outputs"
    },
    "osdElement_FW_POS_PID_OUTPUTS": {
        "message": "FW Position PID controller outputs"
    },
    "osdElement_MC_VEL_X_PID_OUTPUTS": {
        "message": "MC Velocity X PID controller outputs"
    },
    "osdElement_MC_VEL_Y_PID_OUTPUTS": {
        "message": "MC Velocity Y PID controller outputs"
    },
    "osdElement_MC_VEL_Z_PID_OUTPUTS": {
        "message": "MC Velocity Z PID controller outputs"
    },
    "osdElement_MC_POS_XYZ_P_OUTPUTS": {
        "message": "MC Position XYZ P controllers outputs"
    },
    "osdElement_IMU_TEMPERATURE": {
        "message": "IMU Temperature"
    },
    "osdElement_IMU_TEMPERATURE_HELP": {
        "message": "Temperature of the IMU"
    },
    "osdElement_BARO_TEMPERATURE": {
        "message": "Baro Temperature"
    },
    "osdElement_BARO_TEMPERATURE_HELP": {
        "message": "Temperature of the barometer"
    },
    "osdElement_ESC_TEMPERATURE": {
        "message": "ESC Temperature"
    },
    "osdElement_ESC_TEMPERATURE_HELP": {
        "message": "Temperature of the ESC read from DSHOT telemetry"
    },
    "osdGroupSwitchIndicators": {
        "message": "Switch Indicators"
    },
    "osdElement_SWITCH_INDICATOR_0": {
        "message": "Switch Indicator 1"
    },
    "osdElement_SWITCH_INDICATOR_1": {
        "message": "Switch Indicator 2"
    },
    "osdElement_SWITCH_INDICATOR_2": {
        "message": "Switch Indicator 3"
    },
    "osdElement_SWITCH_INDICATOR_3": {
        "message": "Switch Indicator 4"
    },
    "osdGroupGVars": {
        "message": "Global Variables"
    },
    "osdElement_GVAR_0": {
        "message": "Global Variable 0"
    },
    "osdElement_GVAR_1": {
        "message": "Global Variable 1"
    },
    "osdElement_GVAR_2": {
        "message": "Global Variable 2"
    },
    "osdElement_GVAR_3": {
        "message": "Global Variable 3"
    },
    "osdElement_SENSOR1_TEMPERATURE": {
        "message": "Temperature sensor 1"
    },
    "osdElement_SENSOR2_TEMPERATURE": {
        "message": "Temperature sensor 2"
    },
    "osdElement_SENSOR3_TEMPERATURE": {
        "message": "Temperature sensor 3"
    },
    "osdElement_SENSOR4_TEMPERATURE": {
        "message": "Temperature sensor 4"
    },
    "osdElement_SENSOR5_TEMPERATURE": {
        "message": "Temperature sensor 5"
    },
    "osdElement_SENSOR6_TEMPERATURE": {
        "message": "Temperature sensor 6"
    },
    "osdElement_SENSOR7_TEMPERATURE": {
        "message": "Temperature sensor 7"
    },
    "osdElement_SENSOR8_TEMPERATURE": {
        "message": "Temperature sensor 8"
    },
    "osdSettingMainVoltageDecimals": {
        "message": "Main voltage decimals"
    },
    "osdElement_OSD_RANGEFINDER": {
        "message": "Rangefinder distance"
    },
    "osdSettingPLUS_CODE_DIGITS_HELP": {
        "message": "Precision at the equator: 10=13.9x13.9m; 11=2.8x3.5m; 12=56x87cm; 13=11x22cm."
    },
    "osdSettingPLUS_CODE_SHORT_HELP": {
        "message": "Removing 2, 4 and 6 leading digits requires a reference location within, respectively, ~800km, ~40km and ~2km to recover the original coordinates."
    },
    "osdSettingCRSF_LQ_FORMAT_HELP": {
        "message": "TYPE1 shows LQ% as used by TBS hardware. TYPE2 shows RF Profile Modes (2=150Hz, 1=50Hz, 0=4Hz update rates) and LQ % [0..100%]. Tracer shows RFMode 1 (1=250Hz) and LQ % [0..100%]."
    },
    "osd_dji_HD_FPV": {
        "message" : "DJI HD FPV"
    },
       "osd_dji_hide_unsupported": {
        "message": "Hide unsupported elements"
    },
    "osd_dji_ESC_temp": {
        "message" : "Source of <i>ESC Temperature</i>"
    },
    "osd_dji_RSSI_source": {
        "message" : "Source of <i>RSSI</i>"
    },
    "osd_dji_GPS_source": {
        "message" : "Source of <i>GPS Speed</i>"
    },
    "osd_dji_speed_source": {
        "message" : "Source of <i>3D Speed</i>"
    },
    "osd_dji_use_craft_name_elements": {
        "message" : "Use craft name for messages and additional elements.</span><br/>Elements in <span class=\"blue\">blue</span> appear in Craft Name."
    },
    "osd_dji_adjustments": {
        "message" : "Show adjustments in Craft Name"
    },
    "osd_dji_cn_alternating_duration": {
        "message" : "Craft Name alternating duration (in 1/10 sec)"
    },
    "osd_switch_indicator_settings": {
        "message" : "Switch Indicator Settings"
    },
    "osd_switch_indicators_align_left": {
        "message" : "Align switch names to left of switches"
    },
    "osdSwitchInd0": {
        "message" : "Switch 1"
    },
    "osdSwitchInd1": {
        "message" : "Switch 2"
    },
    "osdSwitchInd2": {
        "message" : "Switch 3"
    },
    "osdSwitchInd3": {
        "message" : "Switch 4"
    },
    "osd_pan_servo_settings": {
        "message": "Pan Servo OSD Settings"
    },
    "osd_pan_servo_settings_HELP": {
        "message": "This section enables and configures the pan servo offset feature. It is used to keep OSD elements, like the home arrow and POIs, pointing to or in the correct direction. Even when you have panned the camera around."
    },
    "osdPanServoIndex": {
        "message": "Pan Servo Output"
    },
    "osdPanServoIndex_HELP": {
        "message": "Set the is to the output number of the pan servo; as shown in the mixer outputs table. For example output S6."
    },
    "osdPanServoPwm2centideg": {
        "message": "Total degrees of movement of the pan servo"
    },
    "osdPanServoPwm2centideg_HELP": {
        "message": "Degrees of pan servo rotation. A servo with 180 degrees of rotation from 1000 to 2000 us PWM typically needs 180 for this setting. Make the value negative to inverse the direction."
    },
    "osdPanServoIndicatorShowDegrees": {
        "message": "Show degrees of offset next to pan indicator"
    },
    "osdPanServoOffcentreWarning": {
        "message": "Off-centre warning"
    },
    "osdPanServoOffcentreWarning_HELP": {
        "message": "Degrees either side of the pan servo centre; where it is assumed camera is wanted to be facing forwards, but isn't at 0. If in this range and not 0 for longer than 10 seconds, the pan servo offset OSD element will blink. 0 means the warning is disabled."
    },
    "osd_font_default": {
        "message" : "Default"
    },
    "osd_font_vision": {
        "message" : "Vision"
    },
    "osd_font_impact": {
        "message" : "Impact"
    },
    "osd_font_impact_mini": {
        "message" : "Impact mini"
    },
    "osd_font_clarity": {
        "message" : "Clarity"
    },
    "osd_font_clarity_medium": {
        "message" : "Clarity medium"
    },
    "osd_font_bold": {
        "message" : "Bold"
    },
    "osd_font_large": {
        "message" : "Large"
    },
    "osd_font_load_file": {
        "message" : "Open Font File"
    },
    "osd_font_upload": {
        "message" : "Upload Font"
    },
    "osd_font_manager": {
        "message" : "Font Manager"
    },
    "uploadingCharacters": {
        "message": "Uploading..."
    },
    "uploadedCharacters": {
        "message": "Uploaded $1 characters"
    },
    "portColumnSensors": {
        "message": "Sensors"
    },
    "appUpdateNotificationHeader": {
        "message": "New Configurator version available."
    },
    "appUpdateNotificationDescription": {
        "message": "Please visit the <a href=\"https://github.com/iNavFlight/inav-configurator/releases\" target=\"_blank\">website</a> to read the release notes and download."
    },
    "closeUpdateBtn": {
        "message": "Close"
    },
    "downloadUpdatesBtn": {
        "message": "Download new app"
    },
    "tabMissionControl": {
        "message": "Mission Control"
    },
    "loadMissionButton": {
        "message": "Load mission from FC"
    },
    "saveMissionButton": {
        "message": "Save mission to FC"
    },
    "loadEepromMissionButton": {
        "message": "Load Eeprom mission"
    },
    "saveEepromMissionButton": {
        "message": "Save Eeprom mission"
    },
    "loadFileMissionButton": {
        "message": "Load file"
    },
    "saveFileMissionButton": {
        "message": "Save file"
    },
    "missionSettingsSave": {
        "message": "Save"
    },
    "missionSettingsCancel": {
        "message": "Cancel"
    },
    "editPointHead": {
        "message": "Edit point"
    },
    "editPointButtonSave": {
        "message": "Save"
    },
    "editPointButtonRemove": {
        "message": "Remove"
    },
    "removeAllPointButtonSave": {
        "message": "Remove all points"
    },
    "missionTotalInformationHead": {
        "message": "Total information"
    },
    "missionRTHsettingsTitle": {
        "message": "RTH settings"
    },
    "missionDefaultSettingsHead": {
        "message": "Default settings"
    },
    "missionDefaultElevationHead": {
        "message": "Elevation Profile"
    },
    "missionHomeHead": {
        "message": "Take Off Home"
    },
    "missionSafehomeHead": {
        "message": "Safe Home manager"
    },
    "missionMultiMissionHead": {
        "message": "Multi Missions"
    },
    "missionTemplateHead": {
        "message": "Mission template"
    },
    "missionActionMenuHead": {
        "message": "Action Menu"
    },
    "useOnlyStandalone": {
        "message": "Use stand-alone application.<br> Please visit the <a href=\"https://github.com/iNavFlight/inav-configurator/releases\" target=\"_blank\">website</a> to read the release notes and download."
    },
    "eeprom_load_ok": {
        "message": "EEPROM <span style=\"color: #37a8db\">loaded</span>"
    },
    "confirm_delete_all_points": {
        "message": "Do you really want to delete all points?"
    },
    "confirm_delete_point_with_options": {
        "message": "Do you really want to delete this Waypoint with non-Geo JUMP/SET_HEAD/RTH options? \nIf yes, Non-Geo options attached will be removed also!"
    },
    "confirm_multimission_file_load": {
        "message": "This is a multi mission file. Loading will over write current multi mission.\nContinue?"
    },
    "confirm_overwrite_multimission_file_load_option": {
        "message": "This will over write current multi mission.\nContinue?"
    },
    "multimission_active_index_saved_eeprom": {
        "message": "Mission active index saved"
    },
    "no_waypoints_to_load": {
        "message": "No waypoints to load !"
    },
    "no_waypoints_to_save": {
        "message": "No waypoints to save !"
    },
    "servoMixer": {
        "message": "Servo mixer"
    },
    "servoMixerDelete": {
        "message": "Delete"
    },
    "servoMixerAdd": {
        "message": "Add new mixer rule"
    },
    "platformType": {
        "message": "Platform type"
    },
    "platformConfiguration": {
        "message": "Platform configuration"
    },
    "mixerPreset": {
        "message": "Mixer preset"
    },
    "mixerNotLoaded": {
        "message": "Mixer not loaded.<br />Click <b>Load and apply</b> or <b>Load mixer</b> to use the selected mixer.<br />Or click <b>Refresh mixer</b> to use your current mixer."
    },
    "mixerLoadPresetRules": {
        "message": "Load mixer"
    },
    "mixerRefreshCurrentRules": {
        "message": "Refresh mixer"
    },
    "mixerLoadAndApplyPresetRules": {
        "message": "Load and apply"
    },
    "mixerApplyModalTitle" : {
        "message": "Confirm"
    },
    "mixerButtonSaveAndReboot": {
        "message": "Save and reboot"
    },
    "mixerApplyDescription": {
        "message": "This action overrides all current mixer settings and replaces them with default values. There is no 'Undo' option!"
    },
    "mixerWizardModalTitle" : {
        "message": "Quadcopter Mixer Wizard"
    },
    "mixerWizardModalApply" : {
        "message": "Apply"
    },
    "motorWizard0": {
        "message": "Rear-Right"
    },
    "motorWizard1": {
        "message": "Front-Right"
    },
    "motorWizard2": {
        "message": "Rear-Left"
    },
    "motorWizard3": {
        "message": "Front-Left"
    },
    "mixerWizardMotorPosition": {
        "message": "Motor position"
    },
    "mixerWizardMotorIndex": {
        "message": "Motor index"
    },
    "settings": {
        "message": "Settings"
    },
    "motorMixer": {
        "message": "Motor Mixer"
    },
    "servo": {
        "message": "Servo"
    },
    "input": {
        "message": "Input"
    },
    "fixedValue": {
        "message": "Fixed Value (µs)"
    },
    "weight": {
        "message": "Weight (%)"
    },
    "speed": {
        "message": "Speed (10µs/s)"
    },
    "mixerPresetTitle": {
        "message": "Mixer preset"
    },
    "fcFirmwareUpdateRequired": {
        "message": "Flight controller firmware has to be updated to latest version to use this function"
    },
    "mixerNotConfigured": {
        "message": "Mixer not configured. Use <u>Mixer</u> tab to set it up!"
    },
    "confirm_reset_settings": {
        "message": "Do you really want to reset all settings?\nATTENTION: All settings are lost! You have to setup the whole aircraft after this operation!"
    },
    "confirm_select_defaults": {
        "message": "This will allow to select new default values for all settings. Existing PID tune and other settings might be lost!\nDo you want to continue?"
    },
    "confirm_reset_pid": {
        "message": "This will reset all PID settings to firmware default values and save.\nDo you want to continue?"
    },
    "mappingTableOutput": {
        "message": "Output"
    },
    "mappingTableFunction": {
        "message": "Function"
    },
    "mappingTableTitle": {
        "message": "Output Mapping"
    },
    "NONE": {
        "message": "None"
    },
    "DEFAULT": {
        "message": "Default"
    },
    "AIRCRAFT": {
        "message": "Aircraft"
    },
    "ALTITUDE": {
        "message": "Altitude"
    },
    "GROUND_SPEED": {
        "message": "Ground speed"
    },
    "HOME_DISTANCE": {
        "message": "Distance to home"
    },
    "brakingSpeedThreshold": {
        "message": "Min. speed threshold"
    },
    "brakingSpeedThresholdTip": {
        "message": "Braking will be enabled only if actual speed if higher than threshold"
    },
    "brakingDisengageSpeed": {
        "message": "Braking disengage speed"
    },
    "brakingDisengageSpeedTip": {
        "message": "Braking will end when speed goes below this value"
    },
    "brakingTimeout": {
        "message": "Max. braking duration"
    },
    "brakingTimeoutTip": {
        "message": "Safety measure. This is the longest period of time braking can be active."
    },
    "brakingBoostFactor": {
        "message": "Boost factor"
    },
    "brakingBoostFactorTip": {
        "message": "Defines how strong the braking boost will be. 100% means the navigation engine is allowed to double the banking speed and acceleration"
    },
    "brakingBoostTimeout": {
        "message": "Max. braking boost duration"
    },
    "brakingBoostTimeoutTip": {
        "message": "Safety measure. This is the longest period of time braking boost can be active."
    },
    "brakingBoostSpeedThreshold": {
        "message": "Boost min. speed threshold"
    },
    "brakingBoostSpeedThresholdTip": {
        "message": "Braking boost will be enabled only if actual speed if higher than threshold"
    },
    "brakingBoostDisengageSpeed": {
        "message": "Braking boost disengage speed"
    },
    "brakingBoostDisengageSpeedTip": {
        "message": "Braking boost will end when speed goes below this value"
    },
    "brakingBankAngle": {
        "message": "Max. bank angle"
    },
    "brakingBankAngleTip": {
        "message": "Max bank angle allowed during braking phase"
    },
    "multirotorBrakingConfiguration": {
        "message": "Multirotor braking mode configuration"
    },
    "mapProvider": {
        "message": "Map Provider"
    },
    "mapApiKey": {
        "message": "Map API key"
    },
    "proxyURL": {
        "message": "MapProxy URL"
    },
    "proxyLayer": {
        "message": "MapProxy Layer"
    },
    "accNotchHz": {
        "message": "Acc. notch filter freq."
    },
    "accNotchHzHelp": {
        "message": "Allow to set a single notch filter for accelerometer readout. Should be configured in the same way as gyro notch if accelerometer records a noise spike above acc. LPF filter"
    },
    "accNotchCutoff": {
        "message": "Acc. notch filter cutoff freq."
    },
    "accNotchCutoffHelp": {
        "message": "Should be kept below acc. notch filter frequency"
    },
    "gyroStage2LpfCutoffFrequency": {
        "message": "Gyro Stage 2 LPF cutoff frequency"
    },
    "gyroStage2LpfCutoffFrequencyHelp": {
        "message": "Second stage gyro low pass filter that is an equivalent of Betaflight not-Kalman stage2 filter. It has to be setup above first stage gyro LPF. For 5 and 6-inch miniquads, this usually means above 150Hz. 7-inch quads above 125Hz."
    },
    "escProtocolNotAdvised": {
        "message": "This ESC protocol is not advised, use it at your own risk"
    },
    "escProtocolExperimental": {
        "message": "Experimental ESC protocol, use at your own risk"
    },
    "looptimeNotAdvised": {
        "message": "PID loop might be not stable if GPS is in use"
    },
    "gyroLpfSuggestedMessage": {
        "message": "This is suggested setting for all multirotors with propeller size below 8 inches. Always check motor temperature after the first flight"
    },
    "gyroLpfNotAdvisedMessage": {
        "message": "It is suggested to choose an higher cutoff frequency"
    },
    "gyroLpfNotFlyableMessage": {
        "message": "This setting will probably make the UAV unflyable"
    },
    "gyroLpfWhyNotHigherMessage": {
        "message": "If motors are not overheating, try to set 256Hz instead"
    },
    "gyroLpfWhyNotSlightlyHigherMessage": {
        "message": "If there are no vibration problems and motors are not overheating, try to set 188Hz instead"
    },
    "tabLogicConditions": {
        "message": "Logic conditions"
    },
    "logicId": {
        "message": "#"
    },
    "logicEnabled": {
        "message": "Enabled"
    },
    "logicOperation": {
        "message": "Operation"
    },
    "logicOperandA": {
        "message": "Operand A"
    },
    "logicOperandB": {
        "message": "Operand B"
    },
    "logicFlags": {
        "message": "Flags"
    },
    "logicStatus": {
        "message": "Status"
    },
    "logicSave": {
        "message": "Save"
    },
    "logicClose": {
        "message": "Close"
    },
    "logicActivator": {
        "message": "Active"
    },
    "save": {
        "message": "Save"
    },
    "active": {
        "message": "Active"
    },
    "itermRelax": {
        "message": "Iterm Relax"
    },
    "itermRelaxHelp": {
        "message": "Defines Iterm relaxation algorithm activation. PR mean it's active on Roll and Pitch axis. PRY is active also on Yaw."
    },
    "gyro_main_lpf_type": {
        "message": "Gyro LPF type"
    },
    "gyro_main_lpf_type_help": {
        "message": "BIQUAD offers better noise attenuation for a price of higher delay. PT1 has lower attenuation but offers lower delay."
    },
    "dterm_lpf_type": {
        "message": "D-term LPF type"
    },
    "dterm_lpf_type_help": {
        "message": "BIQUAD offers better noise attenuation for a price of higher delay. PT1 has lower attenuation but offers lower delay."
    },
    "dterm_lpf2_type": {
        "message": "D-term Stage 2 LPF type"
    },
    "dterm_lpf2_type_help": {
        "message": "BIQUAD offers better noise attenuation for a price of higher delay. PT1 has lower attenuation but offers lower delay."
    },
    "dterm_lpf2_hz": {
        "message": "D-term Stage 2 LPF cutoff frequency"
    },
    "dterm_lpf2_hz_help": {
        "message": "Lowpass cutoff filter for D-term on ROLL and PITCH axises. 0 mean filter is disabled"
    },
    "tabFilteringAdvanced": {
        "message": "Other filters"
    },
    "gps_map_center": {
        "message": "Center"
    },
    "ouptputsConfiguration": {
        "message": "Configuration"
    },
    "vtxDisclaimer": {
        "message": "Use only bands, channels and power levels that are legal in a place you fly! Always refer to VTX user manual and local regulations!"
    },
    "defaultsDialogTitle": {
        "message": "Default values"
    },
    "defaultsDialogInfo": {
        "message": "INAV Configurator would like to know which kind of UAV you are configuring. Based on this information it will modify some default values to unlock the best flying performance. "
    },
    "defaultsDialogInfo2": {
        "message": "Avoid blindly restoring all PID and filter configuration from the previous version of INAV. The best result can be obtained by retuning from defaults!"
    },
    "throttleIdle": {
        "message": "Motors IDLE power [%]"
    },
    "throttleIdleDigitalInfo": {
        "message": "For digital protocols, IDLE can be lowered even down to 5-7% without motors stopping in the air. If a drone wobbles after pulling throttle low, try increasing IDLE to tune this behavior out."
    },
    "throttleIdleAnalogInfo": {
        "message": "For analog protocols, IDLE can be lowered below 10% if motors are working smooth without stuttering. If a drone wobbles after pulling throttle low, try increasing IDLE to tune this behavior out."
    },
    "motor_poles": {
        "message": "Number of motor poles (number of magnets)"
    },
    "motorStopWarning": {
        "message": "Should be enabled on Airplanes, Rovers and Boats. Should not be enabled on Multirotors! On Multirotors, when Airmode is active, motors will not stop."
    },
    "reversibleEscWarning": {
        "message": "When Reversible Motors are used, set Motors IDLE power to 0%"
    },
    "dynamic_gyro_notch_enabled_help": {
        "message": "Matrix Gyro Filter is the new generation of dynamic gyro notches available in INAV. It is recommended to enable it on all Multirotor builds on F4 and F7 flight controllers."
    },
    "globalFunctions": {
        "message": "Global functions"
    },
    "functionId": {
        "message": "#"
    },
    "functionEnabled": {
        "message": "Enabled"
    },
    "functionLogicId": {
        "message": "Activation Logic Condition"
    },
    "functionAction": {
        "message": "Action"
    },
    "functionOperand": {
        "message": "Operand"
    },
    "functionFlags": {
        "message": "Flags"
    },
    "configurationI2cSpeed": {
        "message": "I2C Speed"
    },
    "configurationI2cSpeedHelp": {
        "message": "I2C speed should be kept at the highest level that allows for all connected devices to work. Default 400kHz is a safe value and it is suggested to switch to 800kHz in case of Multirotors."
    },
    "i2cSpeedSuggested800khz": {
        "message": "Please switch to 800kHz if connected hardware allows for it"
    },
    "i2cSpeedTooLow": {
        "message": "This I2C speed is too low!"
    },
    "configurationVoltageMeterType": {
        "message": "Voltage Meter Type"
    },
    "configurationCurrentMeterType": {
        "message": "Current Meter Type"
    },
    "MissionPlannerJumpSettingsCheck": {
        "message": "JUMP settings incorrect : Check it again! \nBeing forced to WP 1!"
    },
    "MissionPlannerJump2SettingsCheck": {
        "message": "JUMP settings incorrect : Repeat should not exceed 10! \nCheck it again! Being forced to number of repeat equal 0!"
    },
    "MissionPlannerJump3SettingsCheck": {
        "message": "JUMP settings incorrect : not able to Jump to a POI! \nBeing forced to WP 1!"
    },
    "MissionPlannerHeadSettingsCheck": {
        "message": "Heading value is incorrect : Check it again! Being forced by default to -1 thence!"
    },
    "MissionPlannerRTHSettingsCheck": {
        "message": "RTH option is incorrect : Should be 0 or 1. Check it again! \nBeing forced by default to 0, i.e no LAND after RTH!"
    },
    "MissionPlannerJumpTargetRemoval": {
        "message": "You can't remove a Waypoint which is defined as a JUMP target! \nYou first need to remove the target on the waypoint triggering the JUMP."
    },
    "MissionPlannerAltitudeChangeReset": {
        "message": "Altitude below ground level. Change ignored"
    },
    "SafehomeSelected": {
        "message": ""
    },
    "SafehomeId": {
        "message": "#"
    },
    "SafehomeEnabled": {
        "message": "Enabled"
    },
    "SafehomeLon": {
        "message": "Lon"
    },
    "SafehomeLat": {
        "message": "Lat"
    },
    "SafehomeAlt": {
        "message": "Elev"
    },
    "WaypointOptionSelected": {
        "message": "+"
    },
    "WaypointOptionId": {
        "message": "#"
    },
    "WaypointOptionAction": {
        "message": "Type"
    },
    "WaypointOptionP1": {
        "message": "P1"
    },
    "WaypointOptionP2": {
        "message": "P2"
    },
    "rollPitchAdjustmentsMoved": {
        "message": "Roll & Pitch board orientation is available only in the CLI. Do not use it to trim the airplane for the level flight! Use Fixed Wing Level Trim on the PID tuning tab under Mechanics instead (<strong>fw_level_pitch_trim</strong>)."
    },
    "pidId": {
        "message": "#"
    },
    "pidEnabled": {
        "message": "Enabled"
    },
    "pidSetpoint": {
        "message": "Setpoint"
    },
    "pidMeasurement": {
        "message": "Measurement"
    },
    "pidP": {
        "message": "P-gain"
    },
    "pidI": {
        "message": "I-gain"
    },
    "pidD": {
        "message": "D-gain"
    },
    "pidFF": {
        "message": "FF-gain"
    },
    "pidOutput": {
        "message": "Output"
    },
    "reset": {
        "message": "Reset"
    },
    "illegalStateRestartRequired": {
        "message": "Illegal state. Restart required."
    },
    "motor_direction_inverted": {
        "message": "Reversed motor direction / Props In configuration"
    },
    "motor_direction_inverted_hint": {
        "message": "Enable if the motor direction is reversed and the props are mounted in the opposite direction."
    },
    "blackboxFields": {
        "message": "Blackbox fields"
    },
    "BLACKBOX_FEATURE_NAV_ACC": {
        "message": "Navigation accelerometer"
    },
    "BLACKBOX_FEATURE_NAV_POS": {
        "message": "Navigation position estimation"
    },
    "BLACKBOX_FEATURE_NAV_PID": {
        "message": "Navigation PID"
    },
    "BLACKBOX_FEATURE_MAG": {
        "message": "Magnetometer"
    },
    "BLACKBOX_FEATURE_ACC": {
        "message": "Accelerometer"
    },
    "BLACKBOX_FEATURE_ATTITUDE": {
        "message": "Attitude"
    },
    "BLACKBOX_FEATURE_RC_DATA": {
        "message": "RC data"
    },
    "BLACKBOX_FEATURE_RC_COMMAND": {
        "message": "RC command"
    },
    "BLACKBOX_FEATURE_MOTORS": {
        "message": "Motors output"
    },
    "BLACKBOX_FEATURE_GYRO_RAW": {
        "message": "Gyro RAW (no filtering)"
    },
    "BLACKBOX_FEATURE_GYRO_PEAKS_ROLL": {
        "message": "Gyro Noise peak freq. Roll"
    },
    "BLACKBOX_FEATURE_GYRO_PEAKS_PITCH": {
        "message": "Gyro Noise peak freq. Pitch"
    },
    "BLACKBOX_FEATURE_GYRO_PEAKS_YAW": {
        "message": "Gyro Noise peak freq. Yaw"
    },
    "axisRoll": {
        "message": "Roll"
    },
    "axisPitch": {
        "message": "Pitch"
    },
    "axisYaw": {
        "message": "Yaw"
    },
    "showAdvancedPIDs": {
        "message": "Show advanced PID controllers"
    },
    "rc_filter_lpf_hz": {
        "message": "Manual LPF Hz"
    },
    "rc_filter_smoothing_factor": {
        "message": "Auto Smoothing Factor"
    },
    "rc_filter_auto": {
        "message": "Use automatic RC smoothing"
    },
    "rcSmoothing": {
        "message": "RC Smoothing"
    },
    "throttle_scale": {
        "message": "Throttle scale"
    },
    "throttle_scale_help": {
        "message": "Allow to limit effective power fed to the motors. Throttle Scale 1 mean there is no power limiting. Throttle Scale 0.5 means throttle position will be cut in half before passed to the motors."
    },
    "nmeaWarning": {
        "message": "NMEA protocol is deprecated and might be removed in the future. Please use UBLOX or UBLOX7 protocol instead."
    }
}