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: 63574e25d3523046c51f6b561bfa18122fbfb735 (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
{
    "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"
    },

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

    "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"
    },
    "tabTransponder": {
        "message": "Race Transponder"
    },
    "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": "Serial port <span style=\"color: #37a8db\">successfully</span> opened with ID: $1"
    },
    "serialPortOpenFail": {
        "message": "<span style=\"color: red\">Failed</span> to open serial port"
    },
    "serialPortClosedOk": {
        "message": "Serial port <span style=\"color: #37a8db\">successfully</span> closed"
    },
    "serialPortClosedFail": {
        "message": "<span style=\"color: red\">Failed</span> to close serial port"
    },

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

    "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/p/MATEKF405WING\" target=\"_blank\">Matek F405-WING</a>, <a href=\"https://inavflight.com/shop/p/MATEKF722SE\" target=\"_blank\">Matek F722-SE</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": "Sponsors"
    },
    "communityRCGroupsSupport": {
        "message": "RC Groups Support"
    },
    "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>"
    },

    "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"
    },
    "featureTRANSPONDER": {
        "message": "Race Transponder"
    },
    "featureTRANSPONDERTip": {
        "message": "Configure via the Race Transponder tab after enabling."
    },
    "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"
    },
    "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"
    },
    "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"
    },
    "configurationBatteryVoltage": {
        "message": "Battery Voltage"
    },
    "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"
    },
    "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"
    },
    "configurationCurrent": {
        "message": "Current Sensor"
    },
    "configurationCurrentScale": {
        "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"
    },
    "configurationBatteryCapacity": {
        "message": "Battery Capacity"
    },
    "configurationBatteryCapacityValue": {
        "message": "Capacity"
    },
    "configurationBatteryCapacityWarning": {
        "message": "Warning Capacity (remaining %)"
    },
    "configurationBatteryCapacityCritical": {
        "message": "Critical Capacity (remaining %)"
    },
    "configurationBatteryCapacityUnit": {
        "message": "Battery Capacity Unit"
    },
    "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": "GPS"
    },
    "configurationGPSProtocol": {
        "message": "Protocol"
    },
    "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"
    },
    "configurationPersonalization": {
        "message": "Personalization"
    },
    "configurationCraftName": {
        "message": "Craft Name"
    },
    "configurationCraftNameHelp": {
        "message": "Craft name. Can be displayed by OSD and by compatible RC systems."
    },
    "configurationEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>"
    },
    "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"
    },
    "pidTuningName": {
        "message": "Name"
    },
    "pidTuningProportional": {
        "message": "Proportional"
    },
    "pidTuningIntegral": {
        "message": "Integral"
    },
    "pidTuningDerivative": {
        "message": "Derivative"
    },
    "pidTuningFeedForward": {
        "message": "FeedForward"
    },
    "dtermSetpointWeight": {
        "message": "Dterm setpoint weight"
    },
    "dtermSetpointWeightHelp": {
        "message": "The lower the value, the more damped all the maneuvers are. 0 mean Dterm is computed from gyro, 1 from error and 2 from setpoint. For gentler feel lower the value. For sharper response, raise it"
    },
    "pidTuningRollPitchRate": {
        "message": "ROLL &amp; PITCH rate"
    },
    "pidTuningRollRate": {
        "message": "ROLL rate"
    },
    "pidTuningPitchRate": {
        "message": "PITCH rate"
    },
    "pidTuningYawRate": {
        "message": "YAW rate"
    },
    "pidTuningMaxRollAngle": {
        "message": "Max. ROLL angle"
    },
    "pidTuningMaxRollAngleHelp": {
        "message": "Maximum ROLL angle in ANGLE mode. This also constrains the maximum bank in navigation modes."
    },
    "pidTuningMaxPitchAngle": {
        "message": "Max. PITCH angle"
    },
    "pidTuningMaxPitchAngleHelp": {
        "message": "Maximum PITCH angle in ANGLE mode. This also constrains the maximum climb and dive in navigation modes."
    },
    "pidTuningManualRollRate": {
        "message": "Manual ROLL rate"
    },
    "pidTuningManualPitchRate": {
        "message": "Manual PITCH rate"
    },
    "pidTuningManualYawRate": {
        "message": "Manual YAW rate"
    },
    "magHoldYawRate": {
        "message": "MagHold rate"
    },
    "pidTuningMagHoldYawRateHelp": {
        "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"
    },
    "pidTuningTPA": {
        "message": "Thrust PID Attenuation (TPA)"
    },
    "pidTuningTPABreakPoint": {
        "message": "TPA Breakpoint"
    },
    "pidTuningButtonSave": {
        "message": "Save"
    },
    "pidTuningButtonRefresh": {
        "message": "Refresh"
    },
    "pidTuningProfileHead": {
        "message": "Profile"
    },
    "pidTuningLoadedProfile": {
        "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>"
    },

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

    "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."
    },
    "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"
    },
    "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 Adjustment"
    },
    "adjustmentsFunction9": {
        "message": "Yaw P Adjustment"
    },
    "adjustmentsFunction10": {
        "message": "Yaw I Adjustment"
    },
    "adjustmentsFunction11": {
        "message": "Yaw D Adjustment"
    },
    "adjustmentsFunction12": {
        "message": "Rate Profile Selection"
    },
    "adjustmentsFunction13": {
        "message": "Pitch Rate"
    },
    "adjustmentsFunction14": {
        "message": "Roll Rate"
    },
    "adjustmentsFunction15": {
        "message": "Pitch P Adjustment"
    },
    "adjustmentsFunction16": {
        "message": "Pitch I Adjustment"
    },
    "adjustmentsFunction17": {
        "message": "Pitch D Adjustment"
    },
    "adjustmentsFunction18": {
        "message": "Roll P Adjustment"
    },
    "adjustmentsFunction19": {
        "message": "Roll I Adjustment"
    },
    "adjustmentsFunction20": {
        "message": "Roll D Adjustment"
    },
    "adjustmentsFunction21": {
        "message": "RC Yaw Expo Adjustment"
    },
    "adjustmentsFunction22": {
        "message": "Manual RC Expo Adjustment"
    },
    "adjustmentsFunction23": {
        "message": "Manual RC Yaw Expo Adjustment"
    },
    "adjustmentsFunction24": {
        "message": "Manual Pitch & Roll Rate Adjustment"
    },
    "adjustmentsFunction25": {
        "message": "Manual Roll Rate Adjustment"
    },
    "adjustmentsFunction26": {
        "message": "Manual Pitch Rate Adjustment"
    },
    "adjustmentsFunction27": {
        "message": "Manual Yaw Rate Adjustment"
    },
    "adjustmentsFunction28": {
        "message": "Navigation FW Cruise Throttle Adjustment"
    },
    "adjustmentsFunction29": {
        "message": "Navigation FW Pitch To Throttle Adjustment"
    },
    "adjustmentsFunction30": {
        "message": "Board Roll Alignment Adjustment"
    },
    "adjustmentsFunction31": {
        "message": "Board Pitch Alignment Adjustment"
    },
    "adjustmentsFunction32": {
        "message": "Level P Adjustment"
    },
    "adjustmentsFunction33": {
        "message": "Level I Adjustment"
    },
    "adjustmentsFunction34": {
        "message": "Level D Adjustment"
    },
    "adjustmentsFunction35": {
        "message": "Pos XY P Adjustment"
    },
    "adjustmentsFunction36": {
        "message": "Pos XY I Adjustment"
    },
    "adjustmentsFunction37": {
        "message": "Pos XY D Adjustment"
    },
    "adjustmentsFunction38": {
        "message": "Pos Z P Adjustment"
    },
    "adjustmentsFunction39": {
        "message": "Pos Z I Adjustment"
    },
    "adjustmentsFunction40": {
        "message": "Pos Z D Adjustment"
    },
    "adjustmentsFunction41": {
        "message": "Heading P Adjustment"
    },
    "adjustmentsFunction42": {
        "message": "Vel XY P Adjustment"
    },
    "adjustmentsFunction43": {
        "message": "Vel XY I Adjustment"
    },
    "adjustmentsFunction44": {
        "message": "Vel XY D Adjustment"
    },
    "adjustmentsFunction45": {
        "message": "Vel Z P Adjustment"
    },
    "adjustmentsFunction46": {
        "message": "Vel Z I Adjustment"
    },
    "adjustmentsFunction47": {
        "message": "Vel Z D Adjustment"
    },
    "adjustmentsFunction48": {
        "message": "FW min thr down pitch angle Adjustment"
    },
    "adjustmentsFunction49": {
        "message": "VTX power level Adjustment"
    },
    "adjustmentsSave": {
        "message": "Save"
    },
    "adjustmentsEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>"
    },

    "transponderNotSupported": {
        "message": "Your flight controller's firmware does not support transponder functionality."
    },
    "transponderHelp": {
        "message": "Configure your transponder code here.  Note: Only valid codes will be recognised by race timing systems.  Valid transponder codes can be obtained from <a href=\"http://seriouslypro.com/transponder-codes\" target=\"_blank\">Seriously Pro</a>."
    },
    "transponderInformation": {
        "message": "Transponders systems allow race organizers to time your laps.  The transponder is fitted to your aircraft and when your aircraft passes the timing gate the track-side receiver registers your code and records your laptime.  When fitting an IR based transponder your should ensure that it points outward from your aircraft towards the track-side receivers and that the light beam is not obstructed by your airframe, battery-straps, cables, propellers, etc."
    },
    "transponderConfiguration": {
        "message": "Configuration"
    },
    "transponderData": {
        "message": "Data"
    },
    "transponderDataHelp": {
        "message": "Hexadecimal digits only, 0-9, A-F"
    },
    "transponderButtonSave": {
        "message": "Save"
    },
    "transponderDataInvalid": {
        "message": "Transponder data is <span style=\"color: red\">invalid</span>"
    },
    "transponderEepromSaved": {
        "message": "EEPROM <span style=\"color: #37a8db\">saved</span>"
    },
    "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>"
    },
    "gpsHead": {
        "message": "GPS"
    },
    "gpsStatHead": {
        "message": "GPS 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"
    },
    "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"
    },
    "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"
    },
    "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 (SPRacingF3Mini, Sparky, ColibriRace, 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>"
    },

    "controlAxisRoll": {
        "message": "Roll"
    },
    "controlAxisPitch": {
        "message": "Pitch"
    },
    "controlAxisYaw": {
        "message": "Yaw"
    },
    "controlAxisThrottle": {
        "message": "Throttle"
    },
    "radioChannelShort": {
        "message": "CH "
    },
    "pidTuningBasic": {
        "message": "Basic/Acro"
    },
    "pidTuningLevel": {
        "message": "Angle/Horizon"
    },
    "pidTuningAltitude": {
        "message": "Barometer & Sonar/Altitude"
    },
    "pidTuningMag": {
        "message": "Magnometer/Heading"
    },
    "pidTuningGps": {
        "message": "GPS Navigation"
    },
    "pidTuningLevelP": {
        "message": "Strength"
    },
    "pidTuningLevelI": {
        "message": "LPF cutoff (Hz)"
    },
    "pidTuningLevelD": {
        "message": "Transition (Horizon)"
    },
    "pidTuningLevelHelp": {
        "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."
    },
    "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 [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 [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"
    },
    "accLpfCutoffFrequencyHelp": {
        "message": "Software-based filter to remove mechanical vibrations from the accelerometer measurements. Value is cutoff frequency (Hz). For larger frames with bigger props set to lower value."
    },
    "dtermLpfCutoffFrequency": {
        "message": "D-term LPF cutoff frequency"
    },
    "dtermLpfCutoffFrequencyHelp": {
        "message": "Lowpass cutoff filter for Dterm for all PID controllers"
    },
    "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"
    },
    "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"
    },
    "tabPresets": {
        "message": "Presets"
    },
    "presetsPreset": {
        "message": "Preset"
    },
    "presetsDescription": {
        "message": "Description"
    },
    "presetsButtonApply": {
        "message": "Apply"
    },
    "presetApplyTitle" : {
        "message": "Confirm"
    },
    "presetsButtonSaveAndReboot": {
        "message": "Save and reboot"
    },
    "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"
    },
    "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"
    },
    "posholdMaxSpeed": {
        "message": "Max. navigation speed [cm/s]"
    },
    "posholdMaxManualSpeed": {
        "message": "Max. CRUISE speed [cm/s]"
    },
    "posholdMaxClimbRate": {
        "message": "Max. navigation climb rate [cm/s]"
    },
    "posholdMaxManualClimbRate": {
        "message": "Max. ALTHOLD climb rate [cm/s]"
    },
    "posholdMaxBankAngle": {
        "message": "Multirotor max. banking angle [degrees]"
    },
    "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"
    },
    "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": "This value should be changed very carefully. In most cases there is not need to change that. 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_gos_p_help": {
        "message": "When this value is set to <strong>0</strong>, GPS is not used for altitude computation"
    },
    "wirelessModeSwitch": {
        "message": "Wireless mode"
    },
    "rthConfiguration": {
        "message": "RTH and Landing Settings"
    },
    "minRthDistance": {
        "message": "Min. RTH distance [cm]"
    },
    "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"
    },
    "rthClimbIgnoreEmergency": {
        "message": "Climb regardless of position sensors health"
    },
    "rthTailFirst": {
        "message": "Tail first"
    },
    "rthAllowLanding": {
        "message": "Land after RTH"
    },
    "rthAltControlMode": {
        "message": "RTH altitude mode"
    },
    "rthAbortThreshold": {
        "message": "RTH abort threshold [cm]"
    },
    "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 [cm]"
    },
    "rthAltitudeHelp": {
        "message": "Used in Extra, Fixed and 'At Least' RTH altitude modes"
    },
    "landDescentRate": {
        "message": "Landing vertical speed [cm/s]"
    },
    "landSlowdownMinAlt": {
        "message": "Min. vertical landing speed at altitude [cm]"
    },
    "landSlowdownMaxAlt": {
        "message": "Vertical landing speed slowdown at altitude [cm]"
    },
    "emergencyDescentRate": {
        "message": "Emergency landing speed [cm/s]"
    },
    "cruiseThrottle": {
        "message": "Cruise throttle"
    },
    "minThrottle": {
        "message": "Min. throttle"
    },
    "maxThrottle": {
        "message": "Max. throttle"
    },
    "maxBankAngle": {
        "message": "Max. bank angle [degrees]"
    },
    "maxBankAngleHelp": {
        "message": "Maximum banking angle in navigation modes. Constrained by maximum ROLL angle in PID tuning tab."
    },
    "maxClimbAngle": {
        "message": "Max. climb angle [degrees]"
    },
    "maxClimbAngleHelp": {
        "message": "Maximum climb angle in navigation modes. Constrained by maximum PITCH angle in PID tuning tab."
    },
    "maxDiveAngle": {
        "message": "Max. dive angle [degrees]"
    },
    "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."
    },
    "loiterRadius": {
        "message": "Loiter radius [cm]"
    },
    "fixedWingNavigationConfiguration": {
      "message": "Fixed Wing Navigation Settings"
    },
    "osdLayoutDefault": {
        "message": "Default Layout"
    },
    "osdLayoutAlternative": {
        "message": "Alternative Layout #$1"
    },
    "osdUnitImperial": {
        "message": "Imperial"
    },
    "osdUnitMetric": {
        "message": "Metric"
    },
    "osdUnitUK": {
        "message": "UK"
    },
    "osdUnitUKTip": {
        "message": "Use metric units except for the speed, which is displayed in miles per hour."
    },
    "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 (meters)"
    },
    "osd_dist_alarm": {
        "message": "Distance (meters)"
    },
    "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 (meters)"
    },
    "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": "SNR Alarm Level"
    },
    "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"
    },
    "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_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": "GPS Speed"
    },
    "osdElement_GPS_SPEED_HELP": {
        "message": "Shows 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_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_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": "RF Mode and LQ%"
    },
    "osdElement_CRSF_LQ_HELP": {
        "message": "RF Profile Modes (2=150Hz, 1=50Hz, 0=4Hz update rates) and Link Quality % [0..100%]"
    },
    "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_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"
    },
    "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"
    },
    "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"
    },
    "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?"
    },
    "servoMixer": {
        "message": "Servo mixer"
    },
    "servoMixerDelete": {
        "message": "Delete"
    },
    "servoMixerAdd": {
        "message": "Add new mixer rule"
    },
    "platformType": {
        "message": "Platform type"
    },
    "platformConfiguration": {
        "message": "Platform configuration"
    },
    "platformHasFlaps": {
        "message": "Has flaps"
    },
    "mixerPreset": {
        "message": "Mixer preset"
    },
    "mixerLoadPresetRules": {
        "message": "Load 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!"
    },
    "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!"
    },
    "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 [cm/s]"
    },
    "brakingSpeedThresholdTip": {
        "message": "Braking will be enabled only if actual speed if higher than threshold"
    },
    "brakingDisengageSpeed": {
        "message": "Braking disengage speed [cm/s]"
    },
    "brakingDisengageSpeedTip": {
        "message": "Braking will end when speed goes below this value"
    },
    "brakingTimeout": {
        "message": "Max. braking duration [ms]"
    },
    "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 [ms]"
    },
    "brakingBoostTimeoutTip": {
        "message": "Safety measure. This is the longest period of time braking boost can be active."
    },
    "brakingBoostSpeedThreshold": {
        "message": "Boost min. speed threshold [cm/s]"
    },
    "brakingBoostSpeedThresholdTip": {
        "message": "Braking boost will be enabled only if actual speed if higher than threshold"
    },
    "brakingBoostDisengageSpeed": {
        "message": "Braking boost disengage speed [cm/s]"
    },
    "brakingBoostDisengageSpeedTip": {
        "message": "Braking boost will end when speed goes below this value"
    },
    "brakingBankAngle": {
        "message": "Max. bank angle [degrees]"
    },
    "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."
    },
    "itermRelaxType": {
        "message": "Iterm Relax Type"
    },
    "itermRelaxTypeHelp": {
        "message": "GYRO mode is more clinical and complete in suppressing iTerm, SETPOINT mode is a bit smoother with slightly softer landings after flips."
    },
    "itermRelaxCutoff": {
        "message": "Iterm Relax Cutoff Frequency"
    },
    "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."
    },
    "gyro_lpf_type": {
        "message": "Gyro LPF type"
    },
    "gyro_lpf_type_help": {
        "message": "BIQUAD offers better noise attenuation for a price of higher delay. PT1 has lower attenuation but offers lower delay."
    },
    "gyro_stage2_lowpass_type": {
        "message": "Gyro Stage 2 LPF type"
    },
    "gyro_stage2_lowpass_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"
    },
    "mainFilters": {
        "message": "Gyro filters"
    },
    "rpmFilters": {
        "message": "Gyro RPM filters"
    },
    "dtermFilters": {
        "message": "D-term filters"
    },
    "rpm_gyro_filter_enabled": {
        "message": "Gyro RPM filter (requires ESC telemetry)"
    },
    "rpm_gyro_min_hz": {
        "message": "Gyro RPM filter min. frequency"
    },
    "acc_lpf_type": {
        "message": "Accelerometer LPF type"
    },
    "acc_lpf_type_help": {
        "message": "BIQUAD offers better noise attenuation for a price of higher delay. PT1 has lower attenuation but offers lower delay."
    },
    "dTermMechanics": {
        "message": "D-term mechanics"
    },
    "d_boost_factor": {
        "message": "D-Boost Factor"
    },
    "d_boost_factor_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."
    },
    "d_boost_max_at_acceleration": {
        "message": "Top D-Boost at acceleration [dps^2]"
    },
    "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"
    },
    "d_boost_gyro_delta_lpf_hz": {
        "message": "D-Boost gyro LPF"
    },
    "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"
    },
    "iTermMechanics": {
        "message": "I-term mechanics"
    },
    "mc_airmode_type": {
        "message": "Airmode handling type"
    },
    "mc_airmode_type_help": {
        "message": "Defines the Airmode state handling type for Multirotors. <br />Default STICK_CENTER is the classical approach in which Airmode is always active if enabled, but when the throttle is low and ROLL/PITCH/YAW sticks are centered, Iterms is not allowed to grow (ANTI_WINDUP). <br />STICK_CENTER_ONCE works like STICK_CENTER, but only until the
 first time THROTTLE is not low and ROLL/PITCH/YAW sticks are moved. After that, ANTI_WINDUP is deactivated until next arm. Useful for airplanes. <br />THROTTLE_THRESHOLD is the Airmode behavior known from Betaflight. In this mode, Airmode is active as soon THROTTLE position is above <i>mc_airmode_threshold</i> and stays active until disarm. ANTI_WINDUP is never triggered. For small Multirotors (up to 7-inch propellers) it is suggested to switch to THROTTLE_THRESHOLD since it keeps full stabilization no matter what pilot does with the sticks. Fixed Wings always use STICK_CENTER mode."
    },
    "mc_airmode_threshold": {
        "message": "Airmode Throttle threshold"
    },
    "mc_airmode_threshold_help": {
        "message": "Defines airmode THROTTLE activation threshold when mc_airmode_type THROTTLE_THRESHOLD is used"
    },
    "gps_map_center": {
        "message": "Center"
    },
    "antigravityGain": {
        "message": "Antigravity Gain"
    },
    "antigravityAccelerator": {
        "message": "Antigravity Accelerator"
    },
    "antigravityCutoff": {
        "message": "Antigravity Cutoff Frequency"
    },
    "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 ot 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 save 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"
    }
}