wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
    <string name="application_name_generic">京申科技</string>
    <string name="title_activity_controlcenter_generic">京申科技</string>
    <string name="about_activity_title_generic">About Gadgetbridge</string>
    <string name="about_description_generic">Cloudless copylefted libre replacement for closed source Android gadget apps from vendors.</string>
    <string name="gadgetbridge_running_generic">京申科技正在运行</string>
 
    <string name="application_name_banglejs_main">Bangle.js Gadgetbridge</string>
    <string name="title_activity_controlcenter_banglejs_main">Bangle.js Gadgetbridge</string>
    <string name="about_activity_title_banglejs_main">About Bangle.js Gadgetbridge</string>
    <string name="about_description_banglejs_main">Android companion app for Bangle.js built on top of the Gadgetbridge project, with added Internet Access.\n\nDue to Google Play Store policies, we are not allowed a donation link in the app itself, but if you like this app please consider donating via the Gadgetbridge homepage below.</string>
    <string name="gadgetbridge_running_banglejs_main">Bangle.js running</string>
 
    <string name="application_name_banglejs_nightly">Bangle.js Gadgetbridge (Nightly)</string>
    <string name="title_activity_controlcenter_banglejs_nightly">Bangle.js Gadgetbridge (Nightly)</string>
    <string name="about_activity_title_banglejs_nightly">About Bangle.js Gadgetbridge (Nightly)</string>
    <string name="about_description_banglejs_nightly">Android companion app for Bangle.js built on top of the Gadgetbridge project, with added Internet Access.\n\nDue to Google Play Store policies, we are not allowed a donation link in the app itself, but if you like this app please consider donating via the Gadgetbridge homepage below.</string>
    <string name="gadgetbridge_running_banglejs_nightly">Nightly Bangle.js running</string>
 
    <string name="application_name_main_nightly">Gadgetbridge (Nightly)</string>
    <string name="title_activity_controlcenter_main_nightly">Gadgetbridge Nightly</string>
    <string name="about_activity_title_main_nightly">About Gadgetbridge Nightly</string>
    <string name="about_description_main_nightly">Cloudless copylefted libre replacement for closed source Android gadget apps from vendors. Nightly releases of Gadgetbridge. It cannot be installed if you already have either the Gadgetbridge or the Pebble app installed, due to a conflict in the Pebble provider.</string>
    <string name="gadgetbridge_running_main_nightly">Nightly GB running</string>
 
    <string name="application_name_main_nopebble">Gadgetbridge (Nightly, No Pebble provider)</string>
    <string name="title_activity_controlcenter_main_nopebble">Gadgetbridge Nightly No Pebble </string>
    <string name="about_activity_title_main_nopebble">About Gadgetbridge Nightly No Pebble</string>
    <string name="about_description_main_nopebble">Cloudless copylefted libre replacement for closed source Android gadget apps from vendors. Nightly releases of Gadgetbridge. This version has the Pebble provider renamed to prevent conflicts, so some Pebble related integrations will not work, but it can be installed alongside existing Gadgetbridge installation.</string>
    <string name="gadgetbridge_running_main_nopebble">Nightly NoPebble GB running</string>
 
    <string name="action_settings">Settings</string>
    <string name="womp_workbench">Workbench</string>
    <string name="womp_scan">Scan</string>
    <string name="bottom_nav_band">Health Band</string>
    <string name="bottom_nav_workbench">Workbench</string>
    <string name="bottom_nav_health">Health</string>
    <string name="womp_press_again_to_exit">Press back again to exit</string>
    <string name="action_debug">Debug</string>
    <string name="action_quit">Quit</string>
    <string name="action_donate">Donate</string>
    <string name="action_changelog">Changelog</string>
    <string name="controlcenter_fetch_activity_data">Synchronize</string>
    <string name="controlcenter_find_device">Find lost device</string>
    <string name="search">Search</string>
    <string name="find_lost_device_message">Search for %1$s?</string>
    <string name="controlcenter_take_screenshot">Take Screenshot</string>
    <string name="controlcenter_power_off">Power Off</string>
    <string name="controlcenter_power_off_confirm_title">Power Off</string>
    <string name="controlcenter_power_off_confirm_description">Are you sure you want to power off the device?</string>
    <string name="controlcenter_change_led_color">Change LED Color</string>
    <string name="controlcenter_change_fm_frequency">Change FM Frequency</string>
    <string name="controlcenter_connect">Connect…</string>
    <string name="controlcenter_disconnect">Disconnect</string>
    <string name="controlcenter_delete_device">Delete Device</string>
    <string name="controlcenter_delete_device_name">Delete %1$s</string>
    <string name="controlcenter_delete_device_dialogmessage">This will delete the device and all associated data!</string>
    <string name="controlcenter_set_alias">Set Alias</string>
    <string name="controlcenter_navigation_drawer_open">Open navigation drawer</string>
    <string name="controlcenter_navigation_drawer_close">Close navigation drawer</string>
    <string name="controlcenter_snackbar_need_longpress">Long press the card to disconnect</string>
    <string name="controlcenter_snackbar_disconnecting">Disconnecting</string>
    <string name="controlcenter_snackbar_connecting">Connecting…</string>
    <string name="controlcenter_snackbar_requested_screenshot">Taking a screenshot of the device</string>
    <string name="controlcenter_calibrate_device">Calibrate Device</string>
    <string name="controlcenter_get_heartrate_measurement">Get heart rate measurement</string>
 
    <string name="accuracy">Accuracy</string>
    <string name="balanced">Balanced</string>
    <string name="power_saving">Power Saving</string>
    <string name="custom">Custom</string>
    <string name="single_band">Single Band</string>
    <string name="dual_band">Dual Band</string>
    <string name="low_power_gps">Low Power GPS</string>
    <string name="gps">GPS</string>
    <string name="gps_bds">GPS + BDS</string>
    <string name="gps_glonass">GPS + GLONASS</string>
    <string name="gps_galileo">GPS + GALILEO</string>
    <string name="all_satellites">All Satellites</string>
    <string name="speed_first">Speed first</string>
    <string name="accuracy_first">Accuracy First</string>
 
    <string name="device_card_activity_card_title">Activity info on device card</string>
    <string name="device_card_activity_card_title_summary">Choose what activity details are displayed on device card</string>
    <string name="prefs_activity_in_device_card_title">Show Activity info on device card</string>
    <string name="prefs_activity_in_device_card_title_summary">Show current steps, distance or sleep on device card</string>
    <string name="prefs_activity_in_device_card_sleep_title">Sleep</string>
    <string name="prefs_activity_in_device_card_sleep_title_summary">Show sleep duration</string>
    <string name="prefs_activity_in_device_card_distance_title_summary">Distance is calculated from steps and step length (adjustable in Settings - About you)</string>
    <string name="prefs_activity_in_device_card_steps_title_summary">Show total steps</string>
    <!-- Strings related to battery Info Activity -->
    <string name="battery_detail_activity_title">Battery info</string>
    <string name="battery_level">Battery level</string>
    <string name="calendar_day">Day</string>
    <string name="calendar_week">Week</string>
    <string name="calendar_two_weeks">Two weeks</string>
    <string name="calendar_month">Month</string>
    <string name="calendar_three_months">3 months</string>
    <string name="calendar_six_months">6 months</string>
    <string name="calendar_year">Year</string>
    <!-- Strings related to Debug Activity -->
    <string name="title_activity_debug">Debug</string>
    <string name="debugactivity_really_factoryreset_title">Really factory reset?</string>
    <string name="debugactivity_really_factoryreset">Doing a factory reset will delete all data from the connected device (if supported). Xiaomi/Huami devices also change Bluetooth MAC address, so they appear as a new devices to Gadgetbridge.</string>
    <string name="debugactivity_confirm_remove_device_preferences_title">Remove device preferences?</string>
    <string name="debugactivity_confirm_remove_device_preferences">This will reset the device preferences for all connected devices. Are you sure?</string>
    <!-- Strings related to AppManager -->
    <string name="title_activity_appmanager">App Manager</string>
    <string name="appmanager_cached_watchapps_watchfaces">Apps in cache</string>
    <string name="appmanager_installed_watchapps">Installed apps</string>
    <string name="appmanager_installed_watchfaces">Installed watchfaces</string>
    <string name="appmanager_watchface_activate">Activate</string>
    <string name="appmanager_app_start">Start</string>
    <string name="appmanager_app_download">Download to cache</string>
    <string name="appmananger_app_delete">Delete</string>
    <string name="appmananger_app_delete_cache">Delete and remove from cache</string>
    <string name="appmananger_app_reinstall">Reinstall</string>
    <string name="appmanager_app_share">Share</string>
    <string name="appmanager_app_openinstore">Search in Pebble appstore</string>
    <string name="appmanager_health_activate">Activate</string>
    <string name="appmanager_health_deactivate">Deactivate</string>
    <string name="appmanager_hrm_activate">Activate HRM</string>
    <string name="appmanager_hrm_deactivate">Deactivate HRM</string>
    <string name="appmanager_weather_activate">Activate System Weather app</string>
    <string name="appmanager_weather_deactivate">Deactivate System Weather app</string>
    <string name="appmanager_weather_install_provider">Install the Weather Notification app</string>
    <string name="app_configure">Configure</string>
    <string name="app_move_to_top">Move to top</string>
    <string name="appmanager_item_outdated">(outdated)</string>
    <string name="appmanager_download_started">App download started</string>
    <string name="appmanager_downloaded_to_cache">Downloaded %s to cache</string>
    <string name="appmanager_download_app_error">Error downloading app</string>
    <!-- Strings related to AppBlacklist -->
    <string name="title_activity_notification_management">Notification settings</string>
    <string name="blacklist_all_for_notifications">Blacklist all for notifications</string>
    <string name="whitelist_all_for_notifications">Whitelist all for notifications</string>
    <string name="check_all_applications">Check all applications</string>
    <string name="uncheck_all_applications">Uncheck all applications</string>
    <!-- Strings related to CalBlacklist -->
    <string name="title_activity_calblacklist">Blacklisted Calendars</string>
    <!-- Strings related to FwAppInstaller -->
    <string name="title_activity_fw_app_insaller">FW/App installer</string>
    <string name="fw_upgrade_notice">You are about to install the %s.</string>
    <string name="fw_upgrade_notice_amazfitbip">You are about to install the %s firmware on your Amazfit Bip.\n\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitbip_lite">You are about to install the %s firmware on your Amazfit Bip Lite.\n\nPlease make sure to install the .fw file, and after that the .res file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitbip3">You are about to install the %s firmware on your Amazfit Bip 3.\n\nPlease make sure to install the .fw file, and after that the .res file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitbip3pro">You are about to install the %s firmware on your Amazfit Bip 3 Pro.\n\nPlease make sure to install the .fw file, and after that the .res file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitcor">You are about to install the %s firmware on your Amazfit Cor.\n\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitcor2">You are about to install the %s firmware on your Amazfit Cor 2.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!
\n
\nCOMPLETELY UNTESTED, PROBABLY YOU NEED TO FLASH A BEATS_W FIRMWARE IF YOUR DEVICE NAME IS \"Amazfit Band 2\"</string>
    <string name="fw_upgrade_notice_amazfitgtr">You are about to install the %s firmware on your Amazfit GTR.\n\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitgts">You are about to install the %s firmware on your Amazfit GTS.\n\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_trex">You are about to install the %s firmware on your Amazfit T-Rex.\n\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitvergel">You are about to install the %s firmware on your Amazfit Verge Lite.\n\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.\n\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_miband3">You are about to install the %s firmware on your Mi Band 3.\n\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_miband4">You are about to install the %s firmware on your Mi Band 4.\n\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_miband5">You are about to install the %s firmware on your Mi Band 5.\n\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_miband6">You are about to install the %s firmware on your Mi Band 6.\n\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_miband7">You are about to install the %s firmware on your Xiaomi Smart Band 7.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_gts3">You are about to install the %s firmware on your Amazfit GTS 3.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_gts4">You are about to install the %s firmware on your Amazfit GTS 4.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_gts4_mini">You are about to install the %s firmware on your Amazfit GTS 4 Mini.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_gtr3">You are about to install the %s firmware on your Amazfit GTR 3.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_gtr3_pro">You are about to install the %s firmware on your Amazfit GTR 3 Pro.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_gtr4">You are about to install the %s firmware on your Amazfit GTR 4.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_trex2">You are about to install the %s firmware on your Amazfit T-Rex 2.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_band7">You are about to install the %s firmware on your Amazfit Band 7.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfit_cheetah_pro">You are about to install the %s firmware on your Amazfit Cheetah Pro.\n\nYour band will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_zepp_os">You are about to install the %s firmware on your %s.\n\nYour watch will reboot after installing the .zip file.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitx">You are about to install the %s firmware on your Amazfit X.\n\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.\n\nNote: You do not have to install .res if it is exactly the same as the one previously installed.\n\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitneo">You are about to install the %s firmware on your Amazfit Neo.
\n
\nYour band will reboot after installing the .fw file.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_multi_upgrade_notice">You are about to install the %1$s and %2$s firmware, instead of the ones currently on your Mi Band.</string>
    <string name="miband_firmware_known">This firmware has been tested and is known to be compatible with Gadgetbridge.</string>
    <string name="miband_firmware_unknown_warning">"This firmware is untested and may not be compatible with Gadgetbridge.\n\nYou are DISCOURAGED from flashing it!"</string>
    <string name="miband_firmware_suggest_whitelist">If you still want to proceed and things continue to work properly afterwards, please tell the Gadgetbridge developers to whitelist the %s firmware version.</string>
    <!-- Strings related to the FwAppInstaller opener activity -->
    <string name="open_fw_installer_info_text">The Firmware/Watchface/App/File Installer allows you to upload/install supported files (firmware, watchfaces, applications, GPS, resources, fonts...) to the device. See some more information in the wiki: https://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Firmware-Update</string>
    <string name="open_fw_installer_warning_title">Warning</string>
    <string name="open_fw_installer_warning_text">This feature has the potential to brick your device. That said, this has never happened to any of the developers through flashing, but remember that you are doing this at your own risk.</string>
    <string name="open_fw_installer_getting_files_title">Getting the firmware/app file</string>
    <string name="open_fw_installer_getting_files_text">Since we may not distribute the firmware files, you will have to get the files yourself. This means that you will need to search for the files in apk files, online, in forums, on Amazfitwatchfaces (for Miband/Amazfit devices) and so on.</string>
    <string name="open_fw_installer_pick_file">Select file</string>
    <string name="open_fw_installer_info_text_title">File Installer</string>
    <string name="open_fw_installer_select_file">Select a file you want to upload to device: %s</string>
    <string name="open_fw_installer_connect_minimum_one_device">Please connect AT LEAST ONE device you want to send the file to.</string>
    <string name="open_fw_installer_connect_maximum_one_device">Please connect ONLY ONE device you want to send the file to.</string>
    <string name="open_fw_installer_ensure_device_connected">Make sure that the device %s is connected</string>
    <!-- Strings related to MusicManager -->
    <string name="title_activity_musicmanager">Music Manager</string>
    <!-- Strings related to Settings -->
    <string name="title_activity_settings">Settings</string>
    <string name="proprietary_app_warning">This feature requires the installation of a proprietary app</string>
    <string name="pref_header_general">General settings</string>
    <string name="pref_header_other">Other</string>
    <string name="pref_header_system">System</string>
    <string name="pref_header_audio">Audio</string>
    <string name="pref_header_calendar">Calendar</string>
    <string name="pref_header_connection">Connection</string>
    <string name="pref_header_display">Display</string>
    <string name="pref_header_generic">Generic</string>
    <string name="pref_header_health">Health</string>
    <string name="pref_header_sound_vibration">Sound &amp; Vibration</string>
    <string name="pref_header_offline_voice">Offline Voice</string>
    <string name="pref_header_sound">Sound</string>
    <string name="pref_header_time">Time</string>
    <string name="pref_header_workout">Workout</string>
    <string name="pref_header_equalizer">Equalizer</string>
    <string name="pref_title_general_autoconnectonbluetooth">Connect to Gadgetbridge device(s) when Bluetooth is turned on</string>
    <string name="pref_title_general_reconnectonlytoconnected">Reconnect only to connected devices</string>
    <string name="pref_summary_general_reconnectonlytoconnected">Reconnect only to connected devices, instead of reconnecting to all devices</string>
    <string name="pref_title_general_autostartonboot">Start automatically</string>
    <string name="pref_title_general_autoreconnect">Reconnect automatically</string>
    <string name="pref_title_mb_intents">Broadcast Media Button Intents Directly</string>
    <string name="pref_summary_mb_intents">Enable if device media control is not working for certain applications</string>
    <string name="pref_title_audio_player">Preferred Audioplayer</string>
    <string name="pref_title_nagivation_apps">Navigation apps</string>
    <string name="pref_header_external_integrations">External Integrations</string>
    <string name="pref_header_automations">Automations</string>
    <string name="pref_description_general">Startup, language, region, location</string>
    <string name="pref_description_about_you">Date of birth, gender, height, weight, goals</string>
    <string name="pref_description_notifications">App notifications, whitelist/blacklist</string>
    <string name="pref_description_user_interface">Theme, main screen</string>
    <string name="pref_description_dashboard">Widgets, devices to include</string>
    <string name="pref_description_automations">Auto export, auto fetch</string>
    <string name="pref_description_developer_options">Logs, Intent API</string>
    <string name="pref_description_deprecated_functionalities">Settings that will be removed in a future version</string>
    <string name="pref_default">Default</string>
    <string name="pref_header_datetime">Date and Time</string>
    <string name="pref_title_datetime_syctimeonconnect">Sync time</string>
    <string name="pref_summary_datetime_syctimeonconnect">Sync time to Gadgetbridge device(s) when connecting, when time or time zone changes on Android device, and periodically</string>
    <string name="pref_header_main_screen">Main screen</string>
    <string name="pref_title_theme">Theme</string>
    <string name="pref_theme_light">Light</string>
    <string name="pref_theme_dark">Dark</string>
    <string name="pref_theme_system">System</string>
    <string name="pref_theme_dynamic">Dynamic colors</string>
    <string name="pref_theme_black_background">Use black background in Dark Theme</string>
    <string name="pref_title_language">Language</string>
    <string name="pref_title_minimize_priority">Hide the Gadgetbridge notification</string>
    <string name="pref_summary_minimize_priority_off">The icon in the status bar and the notification in the lockscreen are shown</string>
    <string name="pref_summary_minimize_priority_on">The icon in the status bar and the notification in the lockscreen are hidden</string>
    <string name="pref_header_notifications">Notifications</string>
    <string name="pref_title_user_interface">User interface</string>
    <string name="pref_title_notifications_repetitions">Repetitions</string>
    <string name="pref_title_notifications_call">Phone Calls</string>
    <string name="pref_title_notification_delay_calls">Call notification delay</string>
    <string name="pref_summary_notification_delay_calls">Delay before sending incoming call notifications to the device, in seconds.</string>
    <string name="pref_title_notification_wake_on_open">Auto wake and unlock</string>
    <string name="pref_summary_notification_wake_on_open">Wake and unlock the Android device when the gadget sends a OPEN response back. Needs to be in a trusted state.</string>
    <string name="pref_summary_receive_calls_watch">Perform and receive calls directly on the watch</string>
    <string name="bluetooth_calls">Bluetooth calls</string>
    <string name="bluetooth_calls_pairing">Bluetooth calls pairing</string>
    <string name="bluetooth_calls_settings">Bluetooth calls settings</string>
    <string name="pref_display_caller_title">Show contact information</string>
    <string name="pref_display_caller_summary">Display phone number or name for incoming calls</string>
    <string name="pref_pair_bluetooth_calls_title">Pair for bluetooth calls</string>
    <string name="pref_pair_bluetooth_calls_summary">Click here to start the pairing process</string>
    <string name="pref_pair_bluetooth_calls_help_title">How to receive bluetooth calls</string>
    <string name="pref_pair_bluetooth_calls_help_summary">In order to receive bluetooth calls, you need to pair your phone with a second instance of the watch.</string>
    <string name="pref_pair_bluetooth_calls_help_1">1. Tap the button below to start the pairing process.</string>
    <string name="pref_pair_bluetooth_calls_help_2">2. Go to your phone\'s bluetooth settings, and pair with the new device that will show up (similar name to your current watch, but with a suffix, eg. \"Amazfit GTR 4 - AFC8\".</string>
    <string name="pref_pair_bluetooth_calls_help_3">3. Enable the "Bluetooth calls" setting below.</string>
    <string name="pref_pair_bluetooth_calls_help_warning">WARNING: If you enable bluetooth calls without pairing with the second instance, call notifications might not work as expected.</string>
    <string name="pref_title_support_voip_calls">Enable VoIP app calls</string>
    <string name="pref_title_ping_tone">Ping tone</string>
    <string name="pref_title_notifications_sms">SMS</string>
    <string name="pref_title_notifications_timeout">Minimum time between notifications</string>
    <string name="pref_title_notifications_pebblemsg">Pebble Messages</string>
    <string name="pref_summary_notifications_pebblemsg">Support for apps that send notifications to the Pebble via PebbleKit.</string>
    <string name="pref_title_notifications_generic">Generic notification support</string>
    <string name="pref_title_notifications_generic_settings">Android notification settings</string>
    <string name="pref_title_whenscreenon">…also when screen is on</string>
    <string name="pref_title_notifications_ignore_low_priority">Ignore low priority notifications</string>
    <string name="pref_summary_notifications_ignore_low_priority">Do not send low and minimum priority notifications to the watch</string>
    <string name="pref_title_notifications_ignore_work_profile">Ignore work profile notifications</string>
    <string name="pref_summary_notifications_ignore_work_profile">Do not send notifications from apps in the work profile to the watch</string>
    <string name="pref_title_notification_prefer_long_text">Prefer long notification text</string>
    <string name="pref_summary_notification_prefer_long_text">If available, send the long notification text to the device</string>
    <string name="pref_title_notification_cache_while_disconnected">Cache while out of range</string>
    <string name="pref_summary_notification_cache_while_disconnected">Send missed notifications when a device reconnects after being out of range</string>
    <string name="pref_title_notification_filter">Do Not Disturb</string>
    <string name="pref_summary_notification_filter">Block all notifications when Do Not Disturb is enabled on the phone</string>
    <string name="pref_title_notification_times_enabled">Notification times</string>
    <string name="pref_summary_notification_times_enabled">Only send notifications between specific times</string>
    <string name="pref_title_notification_media_ignores_application_list">Media notifications ignore app list</string>
    <string name="pref_summary_notification_media_ignores_application_list">Process media notifications before the app list. If this preference is unchecked, media applications need to be allowed in the application list for media controls to work on the device.</string>
    <string name="pref_header_notification_application_settings">Per application settings</string>
    <string name="pref_title_notification_use_as">Use the Applications list to…</string>
    <string name="pref_title_notification_use_as_deny">Deny notifications from selected apps</string>
    <string name="pref_title_notification_use_as_allow">Allow notifications from selected apps</string>
    <string name="pref_title_transliteration">Transliteration</string>
    <string name="pref_summary_transliteration">Enable this if your device has no support for your language\'s font</string>
    <string name="pref_title_banglejs_text_bitmap">Text as Bitmaps</string>
    <string name="pref_summary_banglejs_text_bitmap">If a word cannot be rendered with the watch\'s font, render it to a bitmap in Gadgetbridge and display the bitmap on the watch</string>
    <string name="pref_title_banglejs_txt_bitmap_size">Text Bitmaps Size</string>
    <string name="pref_summary_banglejs_txt_bitmap_size">Size to use for bitmap text rendering</string>
    <string name="pref_title_banglejs_phone_gps_enbale">Use phone gps data</string>
    <string name="pref_summary_banglejs_phone_gps_enbale">Use the gps data of the phone to overwrite the gps data of the bangle device</string>
    <string name="pref_title_banglejs_phone_gps_network_only">Only use network to determine location</string>
    <string name="pref_summary_banglejs_phone_gps_network_only">Use only the network provider to determine the location. This reduces the power consumption at the cost of accuracy. A reconnection is needed.</string>
    <string name="pref_title_banglejs_phone_gps_update_interval">GPS data update interval</string>
    <string name="pref_summary_banglejs_phone_gps_update_interval">The interval for how often the gps position is being updated, in ms</string>
    <string name="pref_title_banglejs_webview_url">App loader URL</string>
    <string name="pref_summary_banglejs_webview_url">If you want a custom app loader put your https://…/android.html URL here. Otherwise leave blank for https://banglejs.com/apps</string>
    <string name="pref_title_rtl">Right-To-Left</string>
    <string name="pref_summary_rtl">Enable this if your device can not show right-to-left languages</string>
    <string name="pref_rtl_max_line_length">Right-To-Left Max Line Length</string>
    <string name="pref_rtl_max_line_length_summary">Lengthens or shortens the lines Right-To-Left text is separated into</string>
    <string name="always">Always</string>
    <string name="when_screen_off">When screen is off</string>
    <string name="never">Never</string>
    <string name="pref_header_privacy">Privacy</string>
    <string name="pref_title_call_privacy_mode">Call privacy mode</string>
    <string name="pref_call_privacy_mode_off">Display name and number</string>
    <string name="pref_call_privacy_mode_name">Hide name but display number</string>
    <string name="pref_call_privacy_mode_number">Hide number but display name</string>
    <string name="pref_call_privacy_mode_complete">Hide name and number</string>
    <string name="pref_title_message_privacy_mode">Message privacy mode</string>
    <string name="pref_message_privacy_mode_off">Display all content</string>
    <string name="pref_message_privacy_mode_complete">Hide all content</string>
    <string name="pref_message_privacy_mode_bodyonly">Hide only body</string>
    <string name="pref_title_weather">Weather</string>
    <string name="pref_title_weather_location">Weather location (for LineageOS weather provider)</string>
    <string name="pref_title_weather_summary">Used for the LineageOS weather provider, other Android versions need to use an app like \"Weather notification\". Find more information in the Gadgetbridge wiki.</string>
    <string name="pref_applications_settings">Applications list</string>
    <string name="pref_blacklist_calendars">Blacklist Calendars</string>
    <string name="pref_blacklist_calendars_summary">Blacklisted calendars will not be synced to the device</string>
    <string name="pref_header_cannned_messages">Canned messages</string>
    <string name="pref_title_canned_replies">Replies</string>
    <string name="pref_canned_message">Message</string>
    <string name="pref_summary_canned_replies">Reply from the watch using preset messages</string>
    <string name="pref_title_canned_reply_suffix">Common suffix</string>
    <string name="pref_title_canned_messages_dismisscall">Call Dismissal</string>
    <string name="pref_title_canned_messages_set">Update on device</string>
    <string name="pref_header_development">Developer options</string>
    <string name="pref_header_intent_api">Intent API</string>
    <string name="pref_header_authentication">Authentication</string>
    <string name="pref_title_development_miaddr">Mi Band address</string>
    <string name="pref_title_pebble_settings">Pebble settings</string>
    <string name="pref_header_activitytrackers">Activity trackers</string>
    <string name="pref_title_pebble_activitytracker">Preferred activity tracker</string>
    <string name="pref_title_pebble_sync_health">Sync Pebble Health</string>
    <string name="pref_title_pebble_sync_misfit">Sync Misfit</string>
    <string name="pref_title_pebble_sync_morpheuz">Sync Morpheuz</string>
    <string name="pref_title_enable_outgoing_call">Support outgoing calls</string>
    <string name="pref_summary_enable_outgoing_call">Disabling this will also stop the Pebble 2/LE to vibrate on outgoing calls</string>
    <string name="pref_title_enable_pebblekit">Allow 3rd party Android App access</string>
    <string name="pref_summary_enable_pebblekit">Enable experimental support for Android apps using PebbleKit</string>
    <string name="pref_header_pebble_timeline">Pebble timeline</string>
    <string name="pref_title_sunrise_sunset">Sunrise and sunset</string>
    <string name="pref_summary_sunrise_sunset">Send sunrise and sunset times based on the location to the Pebble timeline</string>
    <string name="pref_title_enable_calendar_sync">Sync calendar</string>
    <string name="pref_summary_enable_calendar_sync">Send calendar events to the timeline</string>
    <string name="pref_time_sync">Automatic time sync</string>
    <string name="pref_title_custom_deviceicon">Show device specific notification icon</string>
    <string name="pref_summary_custom_deviceicon">Show a device specific Android notification icon instead the Gadgetbridge icon when connected</string>
    <string name="pref_title_preview_message_in_title">Show a preview of the message in the title</string>
    <string name="pref_summary_preview_message_in_title">Shows a preview of the message in the title of a notification as allowed by the device</string>
    <string name="pref_title_casio_alert_calendar">Alert for calendar notifications</string>
    <string name="pref_summary_casio_alert_calendar">Alert (vibrate/beep) for calendar notifications</string>
    <string name="pref_title_casio_alert_call">Alert for incoming calls</string>
    <string name="pref_summary_casio_alert_call">Alert (vibrate/beep) for incoming calls</string>
    <string name="pref_title_casio_alert_email">Alert for email notifications</string>
    <string name="pref_summary_casio_alert_email">Alert (vibrate/beep) for email notifications</string>
    <string name="pref_title_casio_alert_sms">Alert for SMS notifications</string>
    <string name="pref_summary_casio_alert_sms">Alert (vibrate/beep) for SMS (text message) notifications</string>
    <string name="pref_title_casio_alert_other">Alert for "other" notifications</string>
    <string name="pref_summary_casio_alert_other">Alert (vibrate/beep) for notifications in the "other" category</string>
    <string name="pref_title_autoremove_notifications">Autoremove dismissed notifications</string>
    <string name="pref_summary_autoremove_notifications">Notifications are automatically removed from the device when dismissed from the phone</string>
    <string name="pref_title_screen_on_on_notifications">Screen On on Notifications</string>
    <string name="pref_summary_screen_on_on_notifications">Turn on the band\'s screen when a notification arrives</string>
    <string name="pref_title_send_app_notifications">Send notifications</string>
    <string name="pref_summary_send_app_notifications">Send app notifications to the device</string>
    <string name="pref_title_pebble_privacy_mode">Privacy mode</string>
    <string name="pref_pebble_privacy_mode_off">Normal notifications</string>
    <string name="pref_pebble_privacy_mode_content">Shift the notification text off-screen</string>
    <string name="pref_pebble_privacy_mode_complete">Show only the notification icon</string>
    <string name="pref_header_location">Location</string>
    <string name="pref_header_navigation">Navigation</string>
    <string name="pref_title_location_aquire">Acquire location</string>
    <string name="pref_title_location_latitude">Latitude</string>
    <string name="pref_title_location_longitude">Longitude</string>
    <string name="pref_title_location_keep_uptodate">Keep location updated</string>
    <string name="pref_summary_location_keep_uptodate">Try to get the current location at runtime, use the stored location as fallback</string>
    <string name="toast_enable_networklocationprovider">Please enable network location</string>
    <string name="toast_aqurired_networklocation">location acquired</string>
    <string name="pref_title_pebble_forceprotocol">Force notification protocol</string>
    <string name="pref_summary_pebble_forceprotocol">This option forces using the latest notification protocol depending on the firmware version. KNOW WHAT YOU ARE DOING!</string>
    <string name="pref_title_pebble_forceuntested">Enable untested features</string>
    <string name="pref_summary_pebble_forceuntested">Enable untested features. KNOW WHAT YOU ARE DOING!</string>
    <string name="pref_title_pebble_forcele">Always prefer BLE</string>
    <string name="pref_summary_pebble_forcele">Use experimental Pebble LE support for all Pebbles, instead of BT classic. This requires pairing to non LE first, and then Pebble LE</string>
    <string name="pref_title_pebble_mtu_limit">Pebble 2/LE GATT MTU limit</string>
    <string name="pref_summary_pebble_mtu_limit">If your Pebble 2/Pebble LE does not work as expected, try this setting to limit the MTU (valid range 20–512)</string>
    <string name="pref_title_pebble_enable_applogs">Enable watch app logging</string>
    <string name="pref_title_pebble_gatt_clientonly">GATT client only</string>
    <string name="pref_summary_pebble_gatt_clientonly">This is for Pebble 2 only and experimental, try this if you have connectivity problems</string>
    <string name="pref_summary_pebble_enable_applogs">Will cause logs from watch apps to be logged by Gadgetbridge (requires reconnect)</string>
    <string name="pref_title_pebble_always_ack_pebblekit">Prematurely ACK PebbleKit</string>
    <string name="pref_summary_pebble_always_ack_pebblekit">Will cause messages that are sent to external 3rd party apps to be acknowledged always and immediately</string>
    <string name="pref_title_pebble_enable_bgjs">Enable background JS</string>
    <string name="pref_summary_pebble_enable_bgjs">When enabled, allows watchfaces to show weather, battery info etc.</string>
    <string name="pref_title_pebble_reconnect_attempts">Reconnection attempts</string>
    <string name="pref_summary_expose_hr">Allows other apps to access HR data in realtime while Gadgetbridge is connected</string>
    <string name="pref_title_expose_hr">3rd party realtime HR access</string>
    <string name="pref_title_connected_advertisement">Visible while connected</string>
    <string name="pref_summary_connected_advertisement">Makes the device discoverable via Bluetooth even when connected</string>
    <string name="pref_title_use_custom_font">Use custom font</string>
    <string name="pref_summary_use_custom_font">Enable this if your device has a custom font firmware for emoji support</string>
    <string name="pref_title_allow_high_mtu">Allow high MTU</string>
    <string name="pref_summary_allow_high_mtu">Increases transfer speed, but might not work on some Android devices.</string>
    <string name="pref_title_calendar_lookahead">Number of days ahead</string>
    <string name="pref_summary_calendar_lookahead">Sync up to %1s days of calendar events</string>
    <string name="pref_title_overwrite_settings_on_connection">Overwrite settings on connection</string>
    <string name="pref_summary_overwrite_settings_on_connection">When connecting to the band, overwrite all the settings on it.</string>
    <string name="pref_title_device_internet_access">Allow Internet Access</string>
    <string name="pref_summary_device_internet_access">Allow apps on this device to access the internet</string>
    <string name="pref_title_device_intents">Allow Intents</string>
    <string name="pref_summary_device_intents">Allow Bangle.js watch apps to send Android Intents, and allow other apps on Android (like Tasker) to send data to Bangle.js with the com.banglejs.uart.tx Intent. Needs permission to display over other apps to work in the background.</string>
    <string name="pref_summary_sync_calendar">Enables calendar alerts, even when disconnected</string>
    <string name="pref_title_sync_caldendar">Sync calendar events</string>
    <string name="pref_summary_sync_birthdays">Sync contact birthdays alongside calendar events</string>
    <string name="pref_title_sync_birthdays">Sync birthdays</string>
    <string name="pref_summary_relax_firmware_checks">Relax firmware checks</string>
    <string name="pref_title_relax_firmware_checks">Enable this if you want to flash a firmware not intended for your device (at your own risk)</string>
    <string name="pref_title_vibration_strength">Vibration strength</string>
    <string name="pref_display_add_device_fab">Connect new device button</string>
    <string name="pref_display_add_device_fab_on">Always visible</string>
    <string name="pref_display_add_device_fab_off">Visible only if no device is added</string>
    <string name="pref_title_huami_force_new_protocol">New Auth Protocol</string>
    <string name="pref_summary_huami_force_new_protocol">Enable if your device no longer connects after a firmware upgrade</string>
    <!-- HPlus Preferences -->
    <string name="pref_title_unit_system">Units</string>
    <string name="pref_title_timeformat">Time format</string>
    <string name="pref_title_screentime">Screen on duration</string>
    <string name="pref_title_goal_secondary">Secondary goal</string>
    <string name="prefs_title_all_day_heart_rate">All day heart rate measurement</string>
    <string name="preferences_hplus_settings">HPlus/Makibes settings</string>
    <!-- WatchXPlus Preferences -->
    <string name="title_activity_LenovoWatch_calibration">Watch X Plus calibration</string>
    <!-- Device Settings - Notifications and Calls - Used in devicesettings_watchxplus.xml -->
    <string name="pref_header_notifications_and_calls">Notifications and Calls</string>
    <string name="pref_title_notifications_and_calls_repeat_on_call">Repeat call notification</string>
    <string name="prefs_notifications_and_calls_continious_ring">Notification during phone ring</string>
    <string name="pref_notifications_and_calls_enable_misscall">Notify for missed call</string>
    <string name="pref_summary_notifications_and_calls_enable_misscall">Repeats on every minute</string>
    <string name="pref_title_notifications_and_calls_repeat_on_misscall">Repeat for X minutes</string>
    <string name="pref_header_notifications_and_calls_callhandling">Call Handling</string>
    <string name="prefs_notifications_and_calls_reject">Button ignore/reject call</string>
    <string name="pref_summary_notifications_and_calls_title_reject">Off - ignore, On - reject</string>
    <string name="prefs_notifications_and_calls_shake_reject">Shake wrist ignore/reject call</string>
    <string name="pref_summary_notifications_and_calls_title_shake_reject">Duplicates watch button action</string>
    <!-- Device Settings - Device Settings - Used in devicesettings_watchxplus.xml -->
    <string name="pref_header_device_spec_settings">Device settings</string>
    <string name="pref_title_device_spec_settings_force_time">Force synchronize time</string>
    <string name="pref_summary_device_spec_settings_title_force_time">Force auto synchronize time on reconnect. Analog hands may show incorrect time!</string>
    <string name="pref_title_device_spec_settings_show_raw_graph">Show RAW data on activity graph</string>
    <!-- Device Settings - Calibration - Used in devicesettings_watchxplus.xml -->
    <string name="pref_header_sensors_calibration">Sensor Calibration</string>
    <string name="pref_title_sensors_altitude">Altitude calibration</string>
    <string name="pref_sensors_bp_calibration">Blood Pressure calibration</string>
    <string name="pref_sensors_bp_calibration_low">Blood Pressure DIASTOLIC (low)</string>
    <string name="pref_sensors_bp_calibration_high">Blood Pressure SYSTOLIC (high)</string>
    <string name="prefs_sensors_button_bp_calibration">Calibration</string>
    <string name="prefs_sensors_button_bp_calibration_sum">Press here to begin calibration</string>
    <!-- Device Settings - Power Mode -->
    <string name="power_mode_title">Watch power mode</string>
    <string name="power_mode_normal">Normal</string>
    <string name="power_mode_saving">Power saving</string>
    <string name="power_mode_watch">Only watch</string>
    <!-- Femometer Preferences -->
    <string name="femometer_measurement_mode_title">Measurement mode</string>
    <string name="femometer_measurement_mode_quick">Quick Mode (30s)</string>
    <string name="femometer_measurement_mode_normal">Normal Mode (60s-90s)</string>
    <string name="femometer_measurement_mode_precise">Precise Mode (3min)</string>
    <!-- Makibes HR3 Preferences -->
    <string name="preferences_makibes_hr3_settings">Makibes HR3 settings</string>
    <!-- ID115 Preferences -->
    <string name="prefs_screen_orientation">Screen orientation</string>
    <!-- ZeTime Preferences -->
    <string name="zetime_title_settings">ZeTime settings</string>
    <string name="zetime_title_heartrate">Heart rate settings</string>
    <string name="zetime_title_screentime">Screen on duration in seconds</string>
    <string name="zetime_title_heart_rate_alarm">Heart rate alarm</string>
    <string name="zetime_title_heart_rate_alarm_summary">The watch will warn you when your heart rate exceeds the limits.</string>
    <string name="zetime_heart_rate_alarm_enable">Enable the heart rate alarm</string>
    <string name="activity_prefs_alarm_max_heart_rate">Max heart rate</string>
    <string name="activity_prefs_alarm_min_heart_rate">Min heart rate</string>
    <string name="zetime_analog_mode">Analog mode</string>
    <string name="zetime_analog_mode_hands">Only hands</string>
    <string name="zetime_analog_mode_handsandsteps">Hands and steps</string>
    <string name="zetime_activity_tracking">Activity tracking</string>
    <string name="zetime_activity_tracking_summary">Switching the activity tracking on, will count your steps and so on.</string>
    <string name="zetime_handmove_display">Hand movement</string>
    <string name="zetime_handmove_display_summary">Rotate your wrist to activate or deactivate the display.</string>
    <string name="zetime_calories_type">Calories type</string>
    <string name="zetime_calories_type_active">Only active burnt calories</string>
    <string name="zetime_calories_type_all">Active and inactive burnt calories</string>
    <string name="zetime_date_format">Date format</string>
    <string name="zetime_date_format_1">YY/MM/DD</string>
    <string name="zetime_date_format_2">DD/MM/YY</string>
    <string name="zetime_date_format_3">MM/DD/YY</string>
    <string name="zetime_prefs_inactivity_repetitions">Repetitions</string>
    <string name="zetime_prefs_inactivity_mo">Monday</string>
    <string name="zetime_prefs_inactivity_tu">Tuesday</string>
    <string name="zetime_prefs_inactivity_we">Wednesday</string>
    <string name="zetime_prefs_inactivity_th">Thursday</string>
    <string name="zetime_prefs_inactivity_fr">Friday</string>
    <string name="zetime_prefs_inactivity_sa">Saturday</string>
    <string name="zetime_prefs_inactivity_su">Sunday</string>
    <string name="zetime_title_alarm_signaling">Set type of signaling for the alarm</string>
    <string name="zetime_signaling_none">Silent</string>
    <string name="zetime_signaling_vibrate">Continuous vibration</string>
    <string name="zetime_signaling_beep">Continuous beeping</string>
    <string name="zetime_signaling_vibrate_beep">Continuous vibration and beeping</string>
    <string name="zetime_signaling_vibrate_once">Vibrate once</string>
    <string name="zetime_signaling_vibrate_twice">Vibrate twice</string>
    <string name="zetime_signaling_beep_once">Beep once</string>
    <string name="zetime_signaling_beep_twice">Beep twice</string>
    <string name="zetime_signaling_vibrate_beep_once">Vibrate and beep once</string>
    <!-- pixoo specific settings -->
    <string name="clap_hands_to_wakeup_device">Clap hands to turn up screen</string>
    <string name="clap_hands_to_wakeup_device_summary">Clapping again will turn off the screen</string>
    <string name="pixoo_power_saving_summary">The screen will turn off after the microphone has detected silence for a while</string>
    <!-- Device specific settings -->
    <string name="title_activity_device_specific_settings">Device specific settings</string>
    <string name="pref_title_authkey">Auth Key</string>
    <string name="pref_summary_authkey">Change the auth key to a common key on all your Android devices from which you would like to connect from. The previous default key for all devices is 0123456789@ABCDE</string>
    <string name="pref_explanation_authkey">Some devices require a special pairing key for the very first initialization of the device. Tap here for more details in the wiki.</string>
    <string name="pref_explanation_authkey_new_protocol">If you get \"Update the app to latest version\" message on the band, make sure to check the \"New Auth Protocol\" above. Tap here for more details in the wiki.</string>
    <string name="prefs_hr_alarm_activity">Heart rate alarm during sports activity</string>
    <string name="prefs_hr_alarm_low">Low limit</string>
    <string name="prefs_hr_alarm_high">High limit</string>
    <string name="pref_gps_header">GPS</string>
    <string name="pref_gps_mode_preset">GPS Mode</string>
    <string name="pref_gps_band">GPS Band</string>
    <string name="pref_gps_combination">GPS Combination</string>
    <string name="pref_gps_satellite_search">Satellite Search</string>
    <string name="pref_crown_vibration">Crown Vibration</string>
    <string name="pref_alert_tone">Alert Tone</string>
    <string name="pref_touch_tone">Touch Tone</string>
    <string name="pref_touch_tone_summary">Plays a tone when the earbud is touched</string>
    <string name="pref_wearing_tone">Wearing Tone</string>
    <string name="pref_wearing_tone_summary">Plays a tone when the earbud is inserted</string>
    <string name="pref_cover_to_mute">Cover to Mute</string>
    <string name="pref_vibrate_for_alert">Vibrate for Alert</string>
    <string name="pref_text_to_speech">Text to Speech</string>
    <string name="offline_voice_respond_turn_wrist">Respond when turning the wrist</string>
    <string name="offline_voice_respond_screen_on">Respond when screen on</string>
    <string name="offline_voice_response_during_screen_lighting">Respond during screen lighting</string>
    <string name="pref_agps_header">AGPS</string>
    <string name="pref_agps_expiry_reminder_enabled">AGPS Expiry Reminder</string>
    <string name="pref_agps_expiry_reminder_time">AGPS Expiry Reminder Time</string>
    <string name="pref_agps_update_time">AGPS Update Time</string>
    <string name="pref_agps_expire_time">AGPS Expire Time</string>
    <string name="pref_agps_status">AGPS Status</string>
    <string name="agps_status_missing">Missing</string>
    <string name="agps_status_pending">Pending</string>
    <string name="agps_status_current">Current</string>
    <string name="agps_status_error">Error</string>
    <string name="pref_camera_remote_title">Camera Remote</string>
    <string name="pref_camera_remote_summary">Allows the watch to trigger the phone\'s camera</string>
    <string name="pref_morning_updates_title">Morning Updates</string>
    <string name="pref_morning_updates_summary">Display updates every morning</string>
    <string name="pref_morning_updates_categories_title">Morning Updates Categories</string>
    <string name="pref_morning_updates_categories_summary">List of categories to display every morning</string>
    <string name="pref_workout_start_on_phone_title">Fitness app tracking</string>
    <string name="pref_workout_start_on_phone_summary">Start/stop fitness app tracking on phone when a GPS workout is started on the band</string>
    <string name="pref_workout_send_gps_title">Send GPS during workout</string>
    <string name="pref_workout_send_gps_summary">Send the current GPS location to the band during a workout</string>
    <string name="pref_workout_keep_screen_on_title">Keep screen on during a workout</string>
    <string name="pref_workout_keep_screen_on_summary">The screen will stay on during a workout, and brightness will be adjusted to continuously display real-time workout data</string>
    <string name="pref_workout_detection_title">Workout Detection</string>
    <string name="pref_workout_detection_summary">Detect workout automatically</string>
    <string name="pref_workout_detection_categories_title">Workout Categories</string>
    <string name="pref_workout_detection_categories_summary">Workouts categories to detect automatically</string>
    <string name="pref_workout_detection_alert_title">Alert</string>
    <string name="pref_workout_detection_alert_summary">Notify when a workout is detected</string>
    <string name="pref_workout_detection_sensitivity">Sensitivity</string>
    <string name="pref_workout_detection_enabled">Detection enabled</string>
    <string name="pref_workout_detection_enabled_summary">Enable automatic detection of this workout</string>
    <string name="pref_workout_detection_ask_first">Ask me first</string>
    <string name="pref_workout_detection_ask_first_summary">Require on-watch confirmation when detecting this workout</string>
    <string name="pref_workout_detection_time">Active minutes before detection</string>
    <string name="pref_workout_detection_time_summary">The amount of minutes the workout must be ongoing before detecting it</string>
    <string name="pref_sleep_mode_title">Sleep Mode</string>
    <string name="pref_sleep_mode_sleep_screen_title">Sleep Screen</string>
    <string name="pref_sleep_mode_sleep_screen_summary">Show the Sleep Screen when waking the screen during sleep mode, to reduce distractions</string>
    <string name="pref_sleep_mode_smart_enable_title">Smart Enable</string>
    <string name="pref_sleep_mode_smart_enable_summary">Enable the sleep mode automatically when wearing the band during sleep</string>
    <!-- Auto export preferences -->
    <string name="pref_header_auto_export">Auto export</string>
    <string name="pref_title_auto_export_enabled">Auto export enabled</string>
    <string name="pref_title_auto_export_location">Export location</string>
    <string name="pref_title_auto_export_interval">Export interval</string>
    <string name="pref_summary_auto_export_interval">Export every %d hour</string>
    <!-- Auto fetch activity preferences -->
    <string name="pref_header_auto_fetch">Auto fetch</string>
    <string name="pref_auto_fetch">Auto fetch activity data</string>
    <string name="pref_auto_fetch_summary">Fetch happens upon screen unlock. Only works if a lock mechanism is set!</string>
    <string name="pref_auto_fetch_limit_fetches">Minimum time between fetches</string>
    <string name="pref_auto_fetch_limit_fetches_summary">Fetches every %d minutes</string>
    <!-- developer/debug preferences-->
    <string name="pref_disable_new_ble_scanning">Disable new BLE scanning</string>
    <string name="pref_summary_disable_new_ble_scanning">Check this option if your device cannot be found during discovery</string>
    <string name="not_connected">Not connected</string>
    <string name="connecting">Connecting</string>
    <string name="connected">Connected</string>
    <string name="unknown_state">Unknown state</string>
    <string name="_unknown_">(unknown)</string>
    <string name="unknown">Unknown</string>
    <string name="test">Test</string>
    <string name="test_notification">Test notification</string>
    <string name="this_is_a_test_notification_from_gadgetbridge">This is a test notification from Gadgetbridge</string>
    <string name="find_my_phone_notification">Find my phone</string>
    <string name="find_my_phone_companion_warning">Companion pairing is required for find phone. Click here for more information.</string>
    <string name="bluetooth_is_not_supported_">Bluetooth is not supported.</string>
    <string name="bluetooth_is_disabled_">Bluetooth is disabled.</string>
    <string name="tap_connected_device_for_app_mananger">Tap connected device for App manager</string>
    <string name="tap_connected_device_for_activity">Tap connected device for activity</string>
    <string name="tap_connected_device_for_vibration">Tap connected device for vibration</string>
    <string name="tap_a_device_to_connect">Tap a device to connect</string>
    <string name="cannot_connect_bt_address_invalid_">Cannot connect. Bluetooth address invalid?</string>
    <string name="installing_binary_d_d">Installing binary %1$d/%2$d</string>
    <string name="installation_failed_">Installation failed</string>
    <string name="installation_successful">Installed</string>
    <string name="firmware_install_warning">YOU ARE TRYING TO INSTALL A FIRMWARE, PROCEED AT YOUR OWN RISK.\n\n\n This firmware is for HW Revision: %s</string>
    <string name="app_install_info">You are about to install the following app:\n\n%1$s\nVersion %2$s by %3$s\n</string>
    <string name="watchface_install_info">You are about to install the following watchface:\n\n%1$s\nVersion %2$s by %3$s\n</string>
    <string name="music_upload_info">You are about to upload the following music file:\n\n%1$s\nSong title: %2$s\nAlbum: %3$s\n</string>
    <string name="n_a">N/A</string>
    <string name="initialized">initialized</string>
    <string name="appversion_by_creator">%1$s by %2$s</string>
    <string name="title_activity_discovery">Device discovery</string>
    <string name="discovery_stop_scanning">Stop scanning</string>
    <string name="discovery_start_scanning">Start discovery</string>
    <string name="discovery_bluetooth_scan">Bluetooth scan:</string>
    <string name="discovery_bluetooth_le_scan">Bluetooth LE scan:</string>
    <string name="action_discover">Connect new device</string>
    <string name="device_with_rssi">%1$s (%2$s)</string>
    <string name="title_activity_android_pairing">Pair device</string>
    <string name="android_pairing_hint">Use the Android Bluetooth pairing dialog to pair the device.</string>
    <string name="title_activity_mi_band_pairing">Pair your Mi Band</string>
    <string name="pairing">Pairing with %s…</string>
    <string name="choose_device">Choose a device</string>
    <string name="no_supported_devices_found">No supported devices found</string>
    <string name="pairing_creating_bond_with">"Creating bond with %1$s (%2$s)"</string>
    <string name="pairing_unable_to_pair_with">"Unable to pair with %1$s (%2$s)"</string>
    <string name="pairing_in_progress">Bonding in progress: %1$s (%2$s)</string>
    <string name="pairing_already_bonded">"Already bonded with %1$s (%2$s), connecting…"</string>
    <string name="message_cannot_pair_no_mac">No MAC address passed, cannot pair.</string>
    <string name="preferences_category_device_specific_settings">Device specific settings</string>
    <string name="preferences_miband_1_2_settings" tools:ignore="TypographyFractions">Mi Band 1/2 settings</string>
    <string name="preferences_miband_1_2_warning">Warning: These preferences only apply to the Mi Bands 1 and 2.</string>
    <string name="male">Male</string>
    <string name="female">Female</string>
    <string name="other">Other</string>
    <string name="left">Left</string>
    <string name="right">Right</string>
    <string name="horizontal">Horizontal</string>
    <string name="vertical">Vertical</string>
    <string name="buttons_on_left">Buttons on left</string>
    <string name="buttons_on_right">Buttons on right</string>
    <string name="wearmode_band">Band (wristband)</string>
    <string name="wearmode_pebble">Pebble (shoe buckle)</string>
    <string name="wearmode_necklace">Necklace (neck strap)</string>
    <string name="miband_pairing_using_dummy_userdata">No valid user data given, using dummy user data for now.</string>
    <string name="miband_pairing_tap_hint">When your Mi Band vibrates and blinks, tap it a few times in a row.</string>
    <string name="appinstaller_install">Install</string>
    <string name="discovery_connected_devices_hint">Make your device discoverable. Currently connected devices will likely not be discovered. Activate location (e.g. GPS) on Android 6+. Disable Privacy Guard for Gadgetbridge, because it may crash and reboot your phone. If no device is found after a few minutes, try again after rebooting your mobile device.</string>
    <string name="discovery_need_to_enter_authkey">This device needs a secret auth key, long press on the device to enter it. Read the wiki.</string>
    <string name="discovery_entered_invalid_authkey">The secret auth key you entered is invalid! Long press on the device to edit.</string>
    <string name="discovery_note">Note:</string>
    <string name="candidate_item_device_image">Device image</string>
    <string name="miband_prefs_alias">Name/Alias</string>
    <string name="pref_header_vibration_count">Vibration count</string>
    <string name="watch9_pairing_tap_hint">When your watch vibrates, shake the device or press its button.</string>
    <string name="title_activity_sleepmonitor">Sleep monitor</string>
    <string name="pref_write_logfiles">Write log files</string>
    <string name="pref_cache_weather">Cache weather information</string>
    <string name="pref_cache_weather_summary">Weather information will be cached across application restarts.</string>
    <string name="pref_write_logfiles_not_available">File logging initialization failed, writing log files is currently not available. Restart the application to attempt to initialize the log files again.</string>
    <string name="initializing">Initializing</string>
    <string name="busy_task_fetch_activity_data">Fetching activity data</string>
    <string name="busy_task_fetch_sports_summaries">Fetching sports summaries</string>
    <string name="busy_task_fetch_sports_details">Fetching sports details</string>
    <string name="busy_task_fetch_sports_details_interrupted">Fetching sports details was interrupted</string>
    <string name="busy_task_fetch_debug_logs">Fetching debug logs</string>
    <string name="busy_task_fetch_stress_data">Fetching stress data</string>
    <string name="busy_task_fetch_pai_data">Fetching PAI data</string>
    <string name="busy_task_fetch_spo2_data">Fetching SpO2 data</string>
    <string name="busy_task_fetch_hrv_data">Fetching HRV data</string>
    <string name="busy_task_fetch_hr_data">Fetching heart rate data</string>
    <string name="busy_task_fetch_sleep_data">Fetching sleep data</string>
    <string name="busy_task_fetch_sleep_respiratory_rate_data">Fetching sleep respiratory rate data</string>
    <string name="busy_task_fetch_temperature">Fetching temperature data</string>
    <string name="busy_task_fetch_statistics">Fetching statistics</string>
    <string name="sleep_activity_date_range">From %1$s to %2$s</string>
    <string name="prefs_wearside">Wearing left or right?</string>
    <string name="prefs_weardirection">Wearing direction</string>
    <string name="prefs_wearmode">Wearing mode</string>
    <string name="pref_screen_vibration_profile">Vibration profile</string>
    <string name="vibration_profile_default">Default</string>
    <string name="vibration_profile_staccato">Staccato</string>
    <string name="vibration_profile_short">Short</string>
    <string name="vibration_profile_medium">Medium</string>
    <string name="vibration_profile_long">Long</string>
    <string name="vibration_profile_waterdrop">Waterdrop</string>
    <string name="vibration_profile_ring">Ring</string>
    <string name="vibration_profile_alarm_clock">Alarm clock</string>
    <string name="miband_prefs_vibration">Vibration</string>
    <string name="vibration_try">Try</string>
    <string name="pref_screen_notification_profile_sms">SMS notification</string>
    <string name="pref_header_vibration_settings">Vibration settings</string>
    <string name="pref_screen_notification_profile_generic">Generic notification</string>
    <string name="pref_screen_notification_profile_email">E-mail notification</string>
    <string name="pref_screen_notification_profile_incoming_call">Incoming call notification</string>
    <string name="pref_screen_notification_profile_missed_call">Missed call notification</string>
    <string name="pref_screen_notification_profile_generic_chat">Chat</string>
    <string name="pref_screen_notification_profile_generic_navigation">Navigation</string>
    <string name="pref_screen_notification_profile_generic_social">Social network</string>
    <string name="pref_screen_notification_profile_calendar">Calendar notification</string>
    <string name="pref_screen_notification_profile_inactivity">Inactivity notification</string>
    <string name="pref_screen_notification_profile_low_power">Low power warning</string>
    <string name="pref_screen_notification_profile_anti_loss">Anti-loss warning</string>
    <string name="pref_screen_notification_profile_schedule">Schedule</string>
    <string name="pref_screen_notification_profile_todo_list">To-Do List</string>
    <string name="prefs_title_heartrate_measurement_interval">Whole day HR measurement</string>
    <string name="pref_screen_notification_profile_event_reminder">Event reminder</string>
    <string name="pref_screen_notification_profile_find_device">Find device</string>
    <string name="pref_screen_notification_idle_alerts">Idle Alerts</string>
    <string name="pref_screen_vibration_patterns_title">Vibration Patterns</string>
    <string name="pref_screen_vibration_patterns_summary">Configure the vibration patterns for different notifications</string>
    <string name="interval_one_minute">once a minute</string>
    <string name="interval_five_minutes">every 5 minutes</string>
    <string name="interval_ten_minutes">every 10 minutes</string>
    <string name="interval_fifteen_minutes">every 15 minutes</string>
    <string name="interval_thirty_minutes">every 30 minutes</string>
    <string name="interval_forty_five_minutes">every 45 minutes</string>
    <string name="heartrate_bpm_40">40 bpm</string>
    <string name="heartrate_bpm_45">45 bpm</string>
    <string name="heartrate_bpm_50">50 bpm</string>
    <string name="heartrate_bpm_100">100 bpm</string>
    <string name="heartrate_bpm_105">105 bpm</string>
    <string name="heartrate_bpm_110">110 bpm</string>
    <string name="heartrate_bpm_115">115 bpm</string>
    <string name="heartrate_bpm_120">120 bpm</string>
    <string name="heartrate_bpm_125">125 bpm</string>
    <string name="heartrate_bpm_130">130 bpm</string>
    <string name="heartrate_bpm_135">135 bpm</string>
    <string name="heartrate_bpm_140">140 bpm</string>
    <string name="heartrate_bpm_145">145 bpm</string>
    <string name="heartrate_bpm_150">150 bpm</string>
    <string name="heartrate_bpm_155">155 bpm</string>
    <string name="heartrate_bpm_165">165 bpm</string>
    <string name="heartrate_bpm_175">175 bpm</string>
    <string name="heartrate_bpm_185">185 bpm</string>
    <string name="heartrate_bpm_195">195 bpm</string>
    <string name="heartrate_bpm_205">205 bpm</string>
    <string name="spo2_perc_80">80%</string>
    <string name="spo2_perc_85">85%</string>
    <string name="spo2_perc_90">90%</string>
    <string name="spo2_off">Off</string>
    <string name="interval_one_hour">once an hour</string>
    <string name="stats_title">Speed zones</string>
    <string name="stats_x_axis_label">Total minutes</string>
    <string name="stats_y_axis_label">Steps per minute</string>
    <string name="control_center_find_lost_device">Find lost device</string>
    <string name="control_center_cancel_to_stop_vibration">Cancel to stop vibration.</string>
    <string name="title_activity_charts">Activity and Sleep</string>
    <string name="title_activity_set_alarm">Configure alarms</string>
    <string name="title_activity_set_reminders">Configure reminders</string>
    <string name="title_activity_set_contacts">Configure contacts</string>
    <string name="pref_world_clocks_title">World Clocks</string>
    <string name="pref_world_clocks_summary">Configure clocks for other timezones</string>
    <string name="pref_contacts_title">Contacts</string>
    <string name="pref_contacts_summary">Configure contacts on the watch</string>
    <string name="controlcenter_start_configure_alarms">Configure alarms</string>
    <string name="controlcenter_start_configure_reminders">Configure reminders</string>
    <string name="reminder_repeat">Repeat</string>
    <string name="reminder_date">Date</string>
    <string name="reminder_time">Time</string>
    <string name="reminder_message">Message</string>
    <string name="reminder_time_once">%1$s, once</string>
    <string name="reminder_time_every_day">%1$s, every day</string>
    <string name="reminder_time_every_week">%1$s, every week</string>
    <string name="reminder_time_every_month">%1$s, every month</string>
    <string name="reminder_time_every_year">%1$s, every year</string>
    <string name="reminder_once">Once</string>
    <string name="reminder_every_day">Every day</string>
    <string name="reminder_every_week">Every week</string>
    <string name="reminder_every_month">Every month</string>
    <string name="reminder_every_year">Every year</string>
    <string name="reminder_delete_confirm_title">Delete reminder</string>
    <string name="reminder_delete_confirm_description">Are you sure you want to delete the reminder?</string>
    <string name="reminder_no_free_slots_title">No free slots</string>
    <string name="reminder_no_free_slots_description">The device has no free slots for reminders (total slots: %1$s)</string>
    <string name="contact_delete_confirm_title">Delete contact</string>
    <string name="contact_delete_confirm_description">Are you sure you want to delete \'%1$s\'?</string>
    <string name="contact_no_free_slots_description">The device has no free slots for contacts (total slots: %1$s)</string>
    <string name="world_clock_delete_confirm_title">Delete \'%1$s\'</string>
    <string name="world_clock_delete_confirm_description">Are you sure you want to delete the world clock?</string>
    <string name="world_clock_no_free_slots_title">No free slots</string>
    <string name="world_clock_no_free_slots_description">The device has no free slots for world clocks (total slots: %1$s)</string>
    <string name="function_enabled">Enabled</string>
    <string name="world_clock_timezone">Time Zone</string>
    <string name="world_clock_label">Label</string>
    <string name="world_clock_code">Code</string>
    <string name="title_activity_alarm_details">Alarm details</string>
    <string name="title_activity_reminder_details">Reminder details</string>
    <string name="title_activity_contact_details">Contact details</string>
    <string name="title_activity_world_clock_details">World Clock details</string>
    <string name="alarm_sun_short">Sun</string>
    <string name="alarm_mon_short">Mon</string>
    <string name="alarm_tue_short">Tue</string>
    <string name="alarm_wed_short">Wed</string>
    <string name="alarm_thu_short">Thu</string>
    <string name="alarm_fri_short">Fri</string>
    <string name="alarm_sat_short">Sat</string>
    <string name="alarm_smart_wakeup">Smart wakeup</string>
    <string name="alarm_smart_wakeup_interval">Smart wakeup interval:</string>
    <string name="alarm_smart_wakeup_interval_default">5 minutes</string>
    <string name="alarm_snooze">Snooze</string>
    <string name="user_feedback_miband_set_alarms_failed">There was an error setting the alarms, please try again.</string>
    <string name="user_feedback_miband_set_alarms_ok">Alarms sent to device.</string>
    <string name="user_feedback_set_settings_ok">Settings sent to device.</string>
    <string name="chart_no_data_synchronize">No data. Synchronize device?</string>
    <string name="chart_no_active_data">No activities detected.</string>
    <string name="chart_get_active_and_synchronize">Do some activity and synchronize device.</string>
    <string name="user_feedback_miband_activity_data_transfer">About to transfer %1$s of data starting from %2$s</string>
    <string name="miband_prefs_fitness_goal">Daily step target</string>
    <string name="prefs_heartrate_alert_experimental_title">Heart rate alert (experimental)</string>
    <string name="prefs_heartrate_alert_experimental_description">Vibrate the band when the heart rate is over a threshold, without any obvious physical activity in the last 10 minutes. This feature is experimental, and was not extensively tested.</string>
    <string name="prefs_heartrate_alert_threshold">Heart rate alert threshold</string>
    <string name="prefs_heartrate_alert_high_threshold">High heart rate alert threshold</string>
    <string name="prefs_heartrate_alert_active_high_threshold">High activity heart rate alert threshold</string>
    <string name="prefs_heartrate_alert_low_threshold">Low heart rate alert threshold</string>
    <string name="prefs_stress_monitoring_title">Stress monitoring</string>
    <string name="prefs_stress_monitoring_description">Monitor stress level while resting</string>
    <string name="prefs_relaxation_reminder_title">Relaxation reminder</string>
    <string name="prefs_relaxation_reminder_description">Vibrate the band to notify you if the stress value is higher than 80</string>
    <string name="prefs_spo2_monitoring_title">Blood Oxygen Monitoring</string>
    <string name="prefs_spo2_monitoring_description">Automatically monitor the blood oxygen levels throughout the day</string>
    <string name="prefs_spo2_alert_threshold">SPO2 alert threshold</string>
    <string name="prefs_activity_monitoring_title">Activity monitoring</string>
    <string name="prefs_activity_monitoring_description">Automatically increase the heart rate detection frequency when the band detects physical exercise, to increase heart rate capture accuracy.</string>
    <string name="dbaccess_error_executing">Error executing \'%1$s\'</string>
    <string name="controlcenter_start_activitymonitor">Your activity</string>
    <string name="cannot_connect">Cannot connect: %1$s</string>
    <string name="installer_activity_unable_to_find_handler">Unable to find a handler to install this file.</string>
    <string name="pbw_install_handler_unable_to_install">Unable to install the given file: %1$s</string>
    <string name="pbw_install_handler_hw_revision_mismatch">Unable to install the given firmware: It doesn\'t match your Pebble\'s hardware revision.</string>
    <string name="installer_activity_wait_while_determining_status">Please wait while determining the installation status…</string>
    <string name="notif_battery_low_title">Gadget battery Low!</string>
    <string name="notif_battery_full_title">Gadget battery Full!</string>
    <string name="notif_battery_low_percent">%1$s battery left: %2$s%%</string>
    <string name="notif_battery_low_bigtext_last_charge_time">Last charge: %s \n</string>
    <string name="notif_battery_low_bigtext_number_of_charges">Number of charges: %s</string>
    <string name="notif_battery_low">%1$s battery low</string>
    <string name="notif_battery_full">%1$s battery full</string>
    <string name="notif_battery_low_extended">%1$s battery low: %2$s</string>
    <string name="notif_export_failed_title">Export database failed! Please check your settings.</string>
    <string name="prefs_charts_tabs">Charts tabs</string>
    <string name="prefs_charts_tabs_summary">Visible chart tabs</string>
    <string name="sleepchart_your_sleep">Sleep</string>
    <string name="hrv_status">HRV Status</string>
    <string name="hrv">HRV</string>
    <string name="weeksleepchart_sleep_a_week">Sleep per week</string>
    <string name="weeksleepchart_today_sleep_description">Sleep today, target: %1$s</string>
    <string name="weekstepschart_steps_a_week">Steps per week</string>
    <string name="pai_chart_per_week">PAI per week</string>
    <string name="pai_chart_per_month">PAI per month</string>
    <string name="pai_plus_num">+%d</string>
    <string name="num_min">%d min</string>
    <string name="activity_sleepchart_activity_and_sleep">Activity</string>
    <string name="charts_activity_list">Activity list</string>
    <string name="activity_list_summary_active_steps">Active steps</string>
    <string name="activity_list_summary_distance">Distance</string>
    <string name="activity_list_summary_active_time">Active time</string>
    <string name="activity_list_summary_intensity">Movement\nIntensity</string>
    <string name="activity_list_summary_activities">Activities</string>
    <string name="dialog_hide">Hide</string>
    <string name="show_ongoing_activity">Show ongoing activity popup</string>
    <string name="lack_of_sleep">Lack of sleep: %1$s</string>
    <string name="overslept">Overslept: %1$s</string>
    <string name="prefs_sounds">Sounds</string>
    <string name="prefs_sounds_summary">Configure when the device will beep</string>
    <!-- Firmware updating -->
    <string name="devicestatus_connecting">Device is connecting</string>
    <string name="devicestatus_connected">Device is connected</string>
    <string name="devicestatus_upload_starting">Upload is starting</string>
    <string name="devicestatus_upload_started">Upload has started</string>
    <string name="devicestatus_disconnecting">Device is disconnecting!</string>
    <string name="devicestatus_disconnected">Device has disconnected!</string>
    <string name="devicestatus_upload_completed">Upload has completed</string>
    <string name="devicestatus_upload_validating">Upload is being validated</string>
    <string name="devicestatus_upload_aborted">Upload has been aborted!</string>
    <string name="devicestatus_upload_failed">Upload has failed</string>
    <string name="firmware_update_progress">Upload is in progress\n%1d%% at %.2fkbps (average %.2fkbps)\nPart %1d of %1d</string>
    <string name="updating_firmware">Flashing firmware…</string>
    <string name="fwapp_install_device_not_supported">File cannot be installed, device not supported.</string>
    <string name="fwapp_install_device_not_ready">File cannot be installed, device not ready.</string>
    <string name="installhandler_firmware_name">%1$s: %2$s %3$s</string>
    <string name="miband_fwinstaller_compatible_version">Compatible version</string>
    <string name="miband_fwinstaller_untested_version">Untested version!</string>
    <string name="fwappinstaller_connection_state">Connection to device: %1$s</string>
    <string name="pbw_installhandler_pebble_firmware">Pebble Firmware %1$s</string>
    <string name="pbwinstallhandler_correct_hw_revision">Correct hardware revision</string>
    <string name="pbwinstallhandler_incorrect_hw_revision">Hardware revision mismatch!</string>
    <string name="pbwinstallhandler_app_item">%1$s (%2$s)</string>
    <string name="updatefirmwareoperation_updateproblem_do_not_reboot">Problem with the firmware transfer. DO NOT REBOOT your Mi Band!</string>
    <string name="updatefirmwareoperation_metadata_updateproblem">Problem with the firmware metadata transfer</string>
    <string name="updatefirmwareoperation_updateproblem_free_space">The device does not have enough free space</string>
    <string name="updatefirmwareoperation_updateproblem_low_battery">The device battery is too low</string>
    <string name="updatefirmwareoperation_update_complete">Firmware installation complete</string>
    <string name="updatefirmwareoperation_update_complete_rebooting">Firmware installation complete, rebooting device…</string>
    <string name="updatefirmwareoperation_write_failed">Firmware flashing failed</string>
    <string name="gpx_route_upload_failed">Gpx route upload failed</string>
    <string name="gpx_route_upload_complete">Gpx route upload complete</string>
    <string name="gpx_route_upload_in_progress">Uploading gpx route</string>
    <string name="updatefirmwareoperation_failed_low_mtu">Current MTU of %1$d is too low, please enable high MTU in the device settings and disconnect/re-connect the device.</string>
    <string name="chart_steps">Steps</string>
    <string name="calories">Calories</string>
    <string name="respiratoryrate">Respiratory Rate</string>
    <string name="active_calories">Active calories</string>
    <string name="distance">Distance</string>
    <string name="clock">Clock</string>
    <string name="heart_rate">Heart rate</string>
    <string name="hr_resting">Resting</string>
    <string name="hr_maximum">Maximum</string>
    <string name="hr_minimum">Minimum</string>
    <string name="hr_average">Average</string>
    <string name="active_calories_short">Active</string>
    <string name="active_calories_goal">Active goal</string>
    <string name="total_calories_burnt">Total burnt</string>
    <string name="blood_pressure">Blood pressure</string>
    <string name="getting_heart_rate">Measuring</string>
    <string name="heart_rate_result">Measurement results</string>
    <string name="movement_intensity">Movement intensity</string>
    <string name="battery">Battery</string>
    <string name="no_limit">No limit</string>
    <string name="seconds_5">5 seconds</string>
    <string name="seconds_6">6 seconds</string>
    <string name="seconds_7">7 seconds</string>
    <string name="seconds_8">8 seconds</string>
    <string name="seconds_9">9 seconds</string>
    <string name="seconds_10">10 seconds</string>
    <string name="seconds_11">11 seconds</string>
    <string name="seconds_12">12 seconds</string>
    <string name="seconds_13">13 seconds</string>
    <string name="seconds_14">14 seconds</string>
    <string name="seconds_15">15 seconds</string>
    <string name="seconds_20">20 seconds</string>
    <string name="seconds_25">25 seconds</string>
    <string name="seconds_30">30 seconds</string>
    <string name="minutes_1">1 minute</string>
    <string name="minutes_2">2 minutes</string>
    <string name="minutes_3">3 minutes</string>
    <string name="minutes_4">4 minutes</string>
    <string name="minutes_5">5 minutes</string>
    <string name="minutes_6">6 minutes</string>
    <string name="minutes_7">7 minutes</string>
    <string name="minutes_8">8 minutes</string>
    <string name="minutes_9">9 minutes</string>
    <string name="minutes_10">10 minutes</string>
    <string name="minutes_15">15 minutes</string>
    <string name="minutes_20">20 minutes</string>
    <string name="minutes_30">30 minutes</string>
    <string name="minutes_45">45 minutes</string>
    <string name="minutes_60">60 minutes</string>
    <string name="minutes_75">75 minutes</string>
    <string name="minutes_90">90 minutes</string>
    <string name="minutes_120">120 minutes</string>
    <string name="minutes_150">150 minutes</string>
    <string name="minutes_180">180 minutes</string>
    <string name="minutes_210">210 minutes</string>
    <string name="minutes_240">240 minutes</string>
    <string name="minutes_255">255 minutes</string>
    <string name="liveactivity_live_activity">Live activity</string>
    <string name="weeksteps_today_steps_description">Steps today, target: %1$s</string>
    <string name="lack_of_step">Lack of steps: %1$d</string>
    <string name="overstep">Overstep: %1$d</string>
    <string name="average">Average: %1$s</string>
    <string name="stress_average">Average</string>
    <string name="pref_huami_truncate_fetch_operation_timestamps_title">Truncate fetch operation timestamps</string>
    <string name="pref_huami_truncate_fetch_operation_timestamps_summary">Truncate the fetch operation timestamps to minutes. Disable this setting to keep the timestamps in seconds, if you face issues while fetching very short workouts.</string>
    <string name="pref_title_dont_ack_transfer">Do not ACK activity data transfer</string>
    <string name="pref_summary_dont_ack_transfers">If not ACKed to the band, activity data is not cleared. Useful if GB is used together with other apps.</string>
    <string name="pref_summary_keep_data_on_device">Will keep activity data on the device even after synchronization. Useful if GB is used together with other apps. This may cause the watch to run out of space and/or stop syncing properly.</string>
    <string name="pref_enable_unsupported_settings_title">Enable unsupported settings</string>
    <string name="pref_enable_unsupported_settings_summary">This will enable access to all available settings, even if unsupported by the device. This can cause instability and crashes on the device.</string>
    <string name="pref_title_low_latency_fw_update">Use low-latency mode for firmware flashing</string>
    <string name="pref_summary_low_latency_fw_update">This might help on devices where firmware flashing fails.</string>
    <string name="pref_title_third_party_app_device_settings">Allow 3rd party apps to change settings</string>
    <string name="pref_summary_third_party_app_device_settings">Allow other installed 3rd party apps to set device settings through intents.</string>
    <string name="live_activity_steps_history">Steps history</string>
    <string name="live_activity_current_steps_per_minute">Current steps/min</string>
    <string name="live_activity_total_steps">Total steps</string>
    <string name="live_activity_steps_per_minute_history">Steps per minute history</string>
    <string name="live_activity_start_your_activity">Start your activity</string>
    <string name="live_activity_max_heart_rate">Current / Max heart rate: %1$d / %2$d</string>
    <string name="abstract_chart_fragment_kind_activity">Activity</string>
    <string name="abstract_chart_fragment_kind_light_sleep">Light sleep</string>
    <string name="abstract_chart_fragment_kind_deep_sleep">Deep sleep</string>
    <string name="abstract_chart_fragment_kind_rem_sleep">REM sleep</string>
    <string name="abstract_chart_fragment_kind_awake_sleep">Awake</string>
    <string name="abstract_chart_fragment_kind_not_worn">Not worn</string>
    <string name="sleep_colored_stats_deep">Deep</string>
    <string name="sleep_colored_stats_light">Light</string>
    <string name="sleep_colored_stats_rem">REM</string>
    <string name="sleep_colored_stats_deep_avg">Deep AVG</string>
    <string name="sleep_colored_stats_light_avg">Light AVG</string>
    <string name="sleep_colored_stats_rem_avg">REM AVG</string>
    <string name="sleep_colored_stats_awake_avg">Awake AVG</string>
    <string name="sleep_avg">Sleep AVG</string>
    <string name="lowest">Lowest</string>
    <string name="highest">Highest</string>
    <string name="sleep_score">Sleep score</string>
    <string name="sleep_score_value">Score: %1d</string>
    <string name="stats_empty_value">-</string>
    <string name="time_empty_value" translatable="false">--:--</string>
    <string name="date_placeholders__date__time">%1s, %1s</string>
    <string name="date_placeholders__start_time__end_time">%1s - %2s</string>
    <string name="stats_lowest_hr">Lowest HR</string>
    <string name="stats_highest_hr">Highest HR</string>
    <string name="transition">Transition</string>
    <string name="you_slept">%1$s - %2$s</string>
    <string name="you_did_not_sleep">You did not sleep</string>
    <string name="charts_min_max_heartrate_popup">Lowest heart rate: %1$d \nHighest heart rate: %2$d \nMovement intensity: %3$s</string>
    <string name="device_not_connected">Not connected.</string>
    <string name="user_feedback_all_alarms_disabled">All alarms disabled</string>
    <string name="pref_title_keep_data_on_device">Keep activity data on device</string>
    <string name="miband_fwinstaller_incompatible_version">Incompatible firmware</string>
    <string name="fwinstaller_firmware_not_compatible_to_device">This firmware is not compatible with the device</string>
    <string name="miband_prefs_reserve_alarm_calendar">Alarms to reserve for upcoming events</string>
    <string name="miband_prefs_reserve_reminder_calendar">Reminders to reserve for upcoming events</string>
    <string name="prefs_reserve_reminder_calendar_summary">Number of calendar events that will be synchronized</string>
    <string name="miband_prefs_hr_sleep_detection">Use heart rate sensor to improve sleep detection</string>
    <string name="pref_sleep_breathing_quality_monitoring">Sleep breathing quality monitoring</string>
    <string name="miband_prefs_device_time_offset_hours">Device time offset in hours (for detecting sleep of shift workers)</string>
    <string name="prefs_find_phone">Find phone</string>
    <string name="prefs_enable_find_phone">Turn on \'Find phone\'</string>
    <string name="prefs_find_phone_summary">Use your band to play your phone\'s ringtone.</string>
    <string name="prefs_find_phone_duration">Ring duration in seconds</string>
    <string name="miband2_prefs_dateformat">Date format</string>
    <string name="dateformat_time">Time</string>
    <string name="dateformat_date_time"><![CDATA[Time & date]]></string>
    <string name="prefs_disconnect_notification">Disconnect notification</string>
    <string name="prefs_disconnect_notification_summary">Notification on device when disconnected from BT.</string>
    <string name="mi2_prefs_button_actions">Button actions</string>
    <string name="mi2_prefs_button_actions_summary">Specify button press actions</string>
    <string name="mi2_prefs_button_press_count">Button press count</string>
    <string name="mi2_prefs_button_press_count_summary">Number of button presses to trigger an Event 1. Subsequent same amount of presses create Event 2 and so on.</string>
    <string name="mi2_prefs_button_press_broadcast">Broadcast message to send</string>
    <string name="mi2_prefs_button_press_broadcast_summary">Broadcast message sent with the event. Parameter `button_id` is added automatically to each message.</string>
    <string name="mi2_prefs_button_press_broadcast_default_value" translatable="false">nodomain.freeyourgadget.gadgetbridge.ButtonPressed</string>
    <string name="mi2_prefs_button_action">Enable button action</string>
    <string name="mi2_prefs_button_action_summary">Enable action on specified number of button presses</string>
    <string name="mi2_prefs_button_action_vibrate">Enable band vibration</string>
    <string name="mi2_prefs_button_action_vibrate_summary">Enable band vibration on button action triggered</string>
    <string name="mi2_prefs_button_press_count_max_delay">Maximum delay between presses</string>
    <string name="mi2_prefs_button_press_count_max_delay_summary">Maximum delay between button presses in milliseconds</string>
    <string name="mi2_prefs_goal_notification">Goal notification</string>
    <string name="mi2_prefs_goal_notification_summary">The band will vibrate when the daily steps goal is reached</string>
    <string name="mi2_prefs_display_items">Display items</string>
    <string name="mi2_prefs_display_items_summary">Choose the items displayed on the band screen</string>
    <string name="mi2_prefs_activate_display_on_lift">Activate display upon lift</string>
    <string name="mi2_prefs_rotate_wrist_to_switch_info">Rotate wrist to switch info</string>
    <string name="mi2_prefs_do_not_disturb">Do Not Disturb</string>
    <string name="mi2_prefs_do_not_disturb_summary">The band won\'t receive notifications while active</string>
    <string name="mi2_prefs_inactivity_warnings">Inactivity warnings</string>
    <string name="mi2_prefs_inactivity_warnings_summary">The band will vibrate when you have been inactive for a while</string>
    <string name="mi2_prefs_inactivity_warnings_threshold">Inactivity threshold (in minutes)</string>
    <string name="mi2_prefs_inactivity_warnings_dnd_summary">Disable inactivity warnings for a time interval</string>
    <string name="hydration_dnd_summary">Disable hydration warnings for a time interval</string>
    <string name="mi2_prefs_heart_rate_monitoring">Heart Rate Monitoring</string>
    <string name="mi2_prefs_heart_rate_monitoring_summary">Configure heart rate monitoring</string>
    <string name="prefs_phone_silent_mode">Phone Silent Mode</string>
    <string name="silent_mode_normal_vibrate">Normal / Vibrate</string>
    <string name="silent_mode_normal_silent">Normal / Silent</string>
    <string name="silent_mode_vibrate_silent">Vibrate / Silent</string>
    <string name="prefs_always_on_display">Always On Display</string>
    <string name="prefs_always_on_display_follow_watchface">Style follows Watchface</string>
    <string name="prefs_always_on_display_style">Style</string>
    <string name="prefs_always_on_display_summary">Keep the band\'s display always on</string>
    <string name="prefs_device_name">Device name</string>
    <string name="prefs_password">Password</string>
    <string name="prefs_password_summary">Lock the band with a password when removed from the wrist</string>
    <string name="prefs_password_enabled">Password Enabled</string>
    <string name="prefs_password_4_digits_1_to_4_summary">The password must have 4 digits, using numbers 1 to 4</string>
    <string name="prefs_password_4_digits_0_to_9_summary">The password must have 4 digits, using only numbers</string>
    <string name="prefs_password_6_digits_0_to_9_summary">The password must have 6 digits, using only numbers</string>
    <string name="mi2_prefs_heart_rate_monitoring_alerts_summary">Configure heart rate monitoring and alert thresholds</string>
    <string name="mi2_prefs_do_not_disturb_start">Start time</string>
    <string name="mi2_prefs_do_not_disturb_end">End time</string>
    <string name="mi2_prefs_do_not_disturb_lift_wrist">Activate display upon lift during Do Not Disturb</string>
    <string name="do_not_disturb_lift_wrist_summary">Only if activate display upon lift enabled</string>
    <string name="pref_do_not_disturb_not_wear">Do not disturb when not wearing</string>
    <string name="mi3_prefs_band_screen_unlock">Band screen unlock"</string>
    <string name="mi3_prefs_band_screen_unlock_summary">Swipe up to unlock the band\'s screen</string>
    <string name="mi3_prefs_night_mode">Night mode</string>
    <string name="mi3_prefs_night_mode_summary">Lower band screen brightness automatically at night</string>
    <string name="bip_prefs_shortcuts">Shortcuts</string>
    <string name="bip_prefs_shotcuts_summary">Choose the shortcuts on the band screen</string>
    <string name="prefs_shortcut_cards">Shortcut Cards</string>
    <string name="prefs_shortcut_cards_summary">Shortcut cards seen when swiping right on the watchface. When an app is running, auto-generated cards are not affected by this setting.</string>
    <string name="prefs_control_center">Control Center</string>
    <string name="prefs_control_center_summary">Choose the items on the control center dropdown</string>
    <string name="prefs_activate_display_on_lift_sensitivity">Sensitivity</string>
    <string name="prefs_screen_timeout">Screen Timeout</string>
    <string name="mi5_prefs_workout_activity_types">Workout Activity Types</string>
    <string name="mi5_prefs_workout_activity_types_summary">Choose the activity types to display on the workouts screen</string>
    <string name="pref_title_force_white_color_scheme">Force black on white color scheme</string>
    <string name="pref_summary_force_white_color_scheme">Useful if you your watch has dark hands</string>
    <string name="lefun_prefs_hydration_reminder_title">Hydration reminder</string>
    <string name="lefun_prefs_hydration_reminder_summary">The band will vibrate to remind you to drink water</string>
    <string name="lefun_prefs_hydration_reminder_interval_title">Hydration reminder interval (in minutes)</string>
    <string name="lefun_prefs_antilost_title">Anti-loss</string>
    <string name="lefun_prefs_antilost_summary">The band will vibrate if your phone disconnects from the band</string>
    <string name="lefun_prefs_interface_language_title">Interface language</string>
    <string name="automatic">Automatic</string>
    <string name="manual">Manual</string>
    <string name="simplified_chinese">Simplified Chinese</string>
    <string name="traditional_chinese">Traditional Chinese</string>
    <string name="english">English</string>
    <string name="english_au">English (Australia)</string>
    <string name="english_ca">English (Canada)</string>
    <string name="english_gb">English (United Kingdom)</string>
    <string name="english_in">English (India)</string>
    <string name="english_us">English (United States)</string>
    <string name="norwegian_bokmal">Norwegian Bokmål</string>
    <string name="spanish">Spanish</string>
    <string name="spanish_es">Spanish (Spain)</string>
    <string name="spanish_mx">Spanish (Mexico)</string>
    <string name="spanish_us">Spanish (United States)</string>
    <string name="russian">Russian</string>
    <string name="georgian">Georgian</string>
    <string name="german">German</string>
    <string name="bengali">Bengali</string>
    <string name="common_symbols">Common Symbols</string>
    <string name="croatian">Croatian</string>
    <string name="czech">Czech</string>
    <string name="estonian">Estonian</string>
    <string name="extended_ascii">Extended ASCII</string>
    <string name="icelandic">Icelandic</string>
    <string name="latvian">Latvian</string>
    <string name="lithuanian">Lithuanian</string>
    <string name="persian">Persian</string>
    <string name="scandinavian">Scandinavian</string>
    <string name="serbian">Serbian</string>
    <string name="ukranian">Ukranian</string>
    <string name="armenian">Armenian</string>
    <string name="italian">Italian</string>
    <string name="french">French</string>
    <string name="french_ca">French (Canada)</string>
    <string name="french_fr">French (France)</string>
    <string name="polish">Polish</string>
    <string name="korean">Korean</string>
    <string name="japanese">Japanese</string>
    <string name="dutch">Dutch</string>
    <string name="turkish">Turkish</string>
    <string name="ukrainian">Ukrainian</string>
    <string name="arabic">Arabic</string>
    <string name="indonesian">Indonesian</string>
    <string name="thai">Thai</string>
    <string name="vietnamese">Vietnamese</string>
    <string name="portuguese">Portuguese</string>
    <string name="portuguese_br">Portuguese (Brazil)</string>
    <string name="portuguese_pt">Portuguese (Portugal)</string>
    <string name="romanian">Romanian</string>
    <string name="hungarian">Hungarian</string>
    <string name="greek">Greek</string>
    <string name="hebrew">Hebrew</string>
    <string name="swedish">Swedish</string>
    <string name="czesh">Czech</string>
    <string name="danish">Danish</string>
    <string name="FetchActivityOperation_about_to_transfer_since">About to transfer data since %1$s</string>
    <string name="waiting_for_reconnect">Waiting for reconnect</string>
    <string name="activity_prefs_about_you">About you</string>
    <string name="activity_prefs_goals">Goals</string>
    <string name="activity_prefs_date_birth">Date of birth</string>
    <string name="activity_prefs_year_birth">Year of birth</string>
    <string name="activity_prefs_gender">Gender</string>
    <string name="activity_prefs_height_cm">Height in cm</string>
    <string name="activity_prefs_height_inches">Height in inches</string>
    <string name="activity_prefs_weight_kg">Weight in kg</string>
    <string name="activity_prefs_target_weight_kg">Target weight in kg</string>
    <string name="activity_prefs_step_length_cm">Step length in cm</string>
    <!-- Settings - Charts Preferences -->
    <string name="pref_header_charts">Charts Settings</string>
    <string name="pref_title_charts_swipe">Enable left/right swipe in the charts activity</string>
    <string name="pref_title_charts_average">Show averages in the charts</string>
    <string name="activity_prefs_charts">Chart settings</string>
    <string name="activity_prefs_discovery_pairing">Discovery and Pairing options</string>
    <string name="activity_prefs_chart_max_heart_rate">Max heart rate</string>
    <string name="activity_prefs_chart_min_heart_rate">Min heart rate</string>
    <string name="pref_title_charts_range">Charts Range</string>
    <string name="pref_chart_sleep_lines_limit">How many sleep session lines to show before scrolling them</string>
    <string name="pref_charts_range_on">Charts range is set to a Month</string>
    <string name="pref_charts_range_off">Charts range is set to a Week</string>
    <string name="pref_chart_heartrate_color_red">Red</string>
    <string name="pref_chart_heartrate_color_orange">Orange</string>
    <string name="pref_title_chart_heartrate_color">Heart rate color</string>
    <string name="weekstepschart_steps_a_month">Steps per month</string>
    <string name="weeksleepchart_sleep_a_month">Sleep per month</string>
    <string name="weekstepschart_steps_a_week_or_month">Steps per week/month</string>
    <string name="weeksleepchart_sleep_a_week_or_month">Sleep per week/month</string>
    <string name="pref_title_chart_sleep_rolling_24_hour">Sleep range</string>
    <string name="pref_chart_sleep_rolling_24_on">Past 24 hours</string>
    <string name="pref_chart_sleep_rolling_24_off">Noon to noon</string>
    <string name="activity_prefs_chart_min_steps_per_minute_for_run">Minimal steps per minute to detect run</string>
    <string name="activity_prefs_chart_min_steps_per_minute">Minimal steps per minute to detect activity</string>
    <string name="activity_prefs_chart_max_idle_phase_length">Pause length to separate activities (minutes)</string>
    <string name="activity_prefs_chart_min_session_length">Minimal activity length (minutes)</string>
    <string name="authenticating">Authenticating</string>
    <string name="authentication_required">Authentication required</string>
    <string name="authentication_failed_check_key">Authentication failed, please check auth key</string>
    <string name="authentication_failed_negotiation">Authentication key negotiation failed</string>
    <string name="activity_prefs_sleep_duration">Preferred sleep duration in hours</string>
    <string name="device_hw">Hardware revision: %1$s</string>
    <string name="device_fw">Firmware version: %1$s</string>
    <string name="error_creating_directory_for_logfiles">Error creating directory for log files: %1$s</string>
    <string name="DEVINFO_HR_VER">"HR: "</string>
    <string name="updatefirmwareoperation_update_in_progress">Flashing firmware</string>
    <string name="updatefirmwareoperation_firmware_not_sent">Firmware not sent</string>
    <string name="charts_legend_heartrate">Heart rate</string>
    <string name="live_activity_heart_rate">Heart rate</string>
    <string name="charts_legend_heartrate_average">Heart rate average</string>
    <string name="charts_legend_stress_average">Stress average</string>
    <string name="charts_legend_spo2_average">Blood oxygen average</string>
    <string name="activity_prefs_calories_burnt">Daily target: calories burnt</string>
    <string name="activity_prefs_distance_meters">Daily target: distance in meters</string>
    <string name="activity_prefs_activetime_minutes">Daily target: active time in minutes</string>
    <string name="activity_prefs_goal_standing_time_minutes">Daily target: standing time in minutes</string>
    <string name="activity_prefs_goal_fat_burn_time_minutes">Daily target: fat burn time in minutes</string>
    <string name="activity_prefs_goal_active_calories_burnt">Daily target: active calories burnt</string>
    <string name="active_time">Active time</string>
    <string name="standing_time">Standing time</string>
    <string name="pref_title_pebble_health_store_raw">Store raw record in the database</string>
    <string name="pref_summary_pebble_health_store_raw">Stores the data \"as is\", increasing the database usage to allow for later interpretation.</string>
    <string name="action_db_management">Data management</string>
    <string name="title_activity_db_management">Data management</string>
    <string name="activity_db_management_import_export_explanation">The export/import operations use the following path (see below) to a directory on your device. This directory is accessible to other Android apps and your computer. Do note, that this directory and all containing files are deleted if you uninstall Gadgetbridge. The data includes:\n Export_preference - global settings\n Export_preference_MAC - device specific settings\n Gadgetbridge - device and activity database\n Gadgetbridge_date - database exported on a date\n *.gpx - GPS recordings\n *.log - log files\nExpect to find your exported files (or place the files you want to import) there:</string>
    <string name="activity_db_management_merge_old_title">Legacy database delete</string>
    <string name="dbmanagementactivvity_cannot_access_export_path">Cannot access export path. Please contact the developers.</string>
    <string name="dbmanagementactivity_exported_to">Exported to: %1$s</string>
    <string name="dbmanagementactivity_error_exporting_db">"Error exporting DB: %1$s"</string>
    <string name="dbmanagementactivity_error_cleaning_export_directory">"Error erasing files from export directory %1$s"</string>
    <string name="dbmanagementactivity_error_exporting_shared">"Error exporting preference: %1$s"</string>
    <string name="dbmanagementactivity_import_data_title">Import Data?</string>
    <string name="dbmanagementactivity_export_data_title">Export Data?</string>
    <string name="dbmanagementactivity_overwrite_database_confirmation">Really overwrite the current data? All your current activity data (if any), devices, and preferences will be overwritten.</string>
    <string name="dbmanagementactivity_export_confirmation">Really export data? Previously exported activity data (if any) and preferences will be overwritten.</string>
    <string name="dbmanagementactivity_import_successful">Imported.</string>
    <string name="dbmanagementactivity_error_importing_db">"Error importing DB: %1$s"</string>
    <string name="dbmanagementactivity_error_importing_shared">"Error importing preference: %1$s"</string>
    <string name="dbmanagementactivity_delete_activity_data_title">Delete Activity Data?</string>
    <string name="dbmanagementactivity_really_delete_entire_db">Really delete the entire database? All your activity data and information about your devices will be lost.</string>
    <string name="dbmanagementactivity_database_successfully_deleted">Data deleted.</string>
    <string name="dbmanagementactivity_db_deletion_failed">Database deletion failed.</string>
    <string name="dbmanagementactivity_delete_old_activity_db">Delete old Activity Database?</string>
    <string name="dbmanagementactivity_delete_old_activitydb_confirmation">Really delete the old activity database? Activity data that was not imported will be lost.</string>
    <string name="dbmanagementactivity_old_activity_db_successfully_deleted">Old activity data deleted.</string>
    <string name="dbmanagementactivity_old_activity_db_deletion_failed">Old Activity database deletion failed.</string>
    <string name="dbmanagementactivity_overwrite">Overwrite</string>
    <string name="activity_db_management_autoexport_explanation">Database autoexport location has been set to:</string>
    <string name="autoExport_lastTime_label">Last AutoExport: %1$s</string>
    <string name="activity_db_management_autoexport_enabled_yes">AutoExport is enabled.</string>
    <string name="activity_db_management_autoexport_enabled_no">AutoExport is not enabled.</string>
    <string name="activity_db_management_autoexport_scheduled_yes">AutoExport has (originally) been scheduled for %1$s</string>
    <string name="activity_db_management_autoexport_scheduled_no">AutoExport has not been not scheduled.</string>
    <string name="activity_db_management_autoexport_label">AutoExport</string>
    <string name="activity_db_management_autoexport_location">Location could not be understood. Likely an issue of newer Android permission system. Most likely, autoexport is not working now.</string>
    <string name="activity_DB_ExportButton">Export Data</string>
    <string name="activity_DB_import_button">Import Data</string>
    <string name="activity_DB_test_export_button">Run AutoExport Now</string>
    <string name="activity_DB_test_export_message">Exporting database…</string>
    <string name="activity_DB_delete_legacy_button">Delete old DB</string>
    <string name="activity_DB_empty_button">Empty Database</string>
    <string name="activity_db_management_empty_DB">Empty Database</string>
    <string name="activity_db_management_exportimport_label">Export and Import</string>
    <string name="activity_db_management_empty_db_warning">Warning! By pushing this button you will wipe your database and start from scratch.</string>
    <string name="Cancel">Cancel</string>
    <string name="Delete">Delete</string>
    <string name="ok">OK</string>
    <string name="dismiss">Dismiss</string>
    <string name="start">Start</string>
    <string name="stop">Stop</string>
    <string name="status">Status</string>
    <string name="set">Set</string>
    <string name="activity_data_management_directory_content_title">Export/Import directory content</string>
    <string name="activity_DB_ShowContentButton">Show Export/Import directory content</string>
    <string name="activity_db_management_clean_export_directory_label">Delete files in Export/Import directory</string>
    <string name="activity_DB_clean_export_directory_warning_title">Delete files in the Export/Import directory?</string>
    <string name="activity_DB_clean_export_directory_warning_message">Really delete files in the Export/Import directory?</string>
    <string name="activity_db_management_clean_export_directory_text">Exported files in the Export/Import directory are accessible by any app on your device. You might like to remove these files after synchronisation or backup. Make sure to have a backup before deleting them. GPX files, sub-directories and auto-exported database file (if exist) will not be deleted. The path to the Export/Import directory is:</string>
    <string name="dbmanagementactivity_export_finished">Deletion finished</string>
    <!-- Strings related to Vibration Activity -->
    <string name="title_activity_vibration">Vibration</string>
    <!-- Strings related to Pebble Pairing Activity-->
    <string name="title_activity_pebble_pairing">Pebble pairing</string>
    <string name="pebble_pairing_hint">A pairing dialog will pop up on your Android device. If not, look in the notification drawer and accept the pairing request. Also accept it on your Pebble afterwards.</string>
    <string name="weather_notification_label">Make sure that this skin is enabled in the Weather Notification app to get weather information on your Pebble.\n\nNo configuration is needed here.\n\nYou can enable the system weather app of your Pebble from the app management.\n\nSupported watchfaces will show the weather automatically.</string>
    <string name="pref_title_setup_bt_pairing">Enable Bluetooth pairing</string>
    <string name="pref_summary_setup_bt_pairing">Deactivate this if you have trouble connecting</string>
    <string name="unit_metric">Metric</string>
    <string name="unit_imperial">Imperial</string>
    <string name="timeformat_24h">24H</string>
    <string name="timeformat_am_pm">AM/PM</string>
    <string name="dateformat_day_month">Day, Month</string>
    <string name="dateformat_month_day">Month, Day</string>
    <string name="pref_screen_notification_profile_alarm_clock">Alarm clock</string>
    <string name="activity_web_view">Web View Activity</string>
    <string name="StringUtils_sender"> (%1$s)</string>
    <string name="find_device_you_found_it">You found it!</string>
    <string name="find_lost_device_you_found_it">Found it!</string>
    <string name="miband2_prefs_timeformat">Mi2: Time format</string>
    <string name="mi2_fw_installhandler_fw53_hint">You need to install version %1$s before installing this firmware!</string>
    <string name="mi2_enable_text_notifications">Text notifications</string>
    <string name="mi2_enable_text_notifications_summary"><![CDATA[Needs firmware >= 1.0.1.28 and Mili_pro.ft* installed.]]></string>
    <string name="on">On</string>
    <string name="smart">Smart</string>
    <string name="off">Off</string>
    <string name="normal">Normal</string>
    <string name="sensitive">Sensitive</string>
    <string name="mi2_dnd_off">Off</string>
    <string name="mi2_dnd_always">Always</string>
    <string name="mi3_night_mode_sunset">At sunset</string>
    <string name="mi2_dnd_automatic">Automatic (sleep detection)</string>
    <string name="mi2_dnd_scheduled">Scheduled (time interval)</string>
    <string name="dnd_all_day">All day</string>
    <string name="maximum_duration">Duration</string>
    <string name="discovery_attempting_to_pair">Attempting to pair with %1$s</string>
    <string name="discovery_bonding_failed_immediately">Bonding with %1$s failed immediately.</string>
    <string name="discovery_trying_to_connect_to">Trying to connect to: %1$s</string>
    <string name="discovery_enable_bluetooth">Enable Bluetooth to discover devices.</string>
    <string name="discovery_successfully_bonded">Bound to %1$s.</string>
    <string name="discovery_pair_title">Pair with %1$s?</string>
    <string name="discovery_pair_question">Select Pair to pair your devices. If this fails, try again without pairing.</string>
    <string name="discovery_yes_pair">Pair</string>
    <string name="discovery_dont_pair">Don\'t Pair</string>
    <!-- strings sent to pebble watches for quick actions -->
    <string name="_pebble_watch_open_on_phone">Open on Android device</string>
    <string name="_pebble_watch_mute">Mute</string>
    <string name="_pebble_watch_reply">Reply</string>
    <string name="controlcenter_start_activity_tracks">Your activity tracks</string>
    <string name="activity_type_not_measured">Not measured</string>
    <string name="activity_type_activity">Activity</string>
    <string name="activity_type_light_sleep">Light sleep</string>
    <string name="activity_type_rem_sleep">REM sleep</string>
    <string name="activity_type_deep_sleep">Deep sleep</string>
    <string name="activity_type_not_worn">Device not worn</string>
    <string name="activity_type_running">Running</string>
    <string name="activity_type_outdoor_running">Outdoor Running</string>
    <string name="activity_type_indoor_running">Indoor Running</string>
    <string name="activity_type_mountain_hike">Mountain Hike</string>
    <string name="activity_type_cross_trainer">Cross trainer</string>
    <string name="activity_type_free_training">Free training</string>
    <string name="activity_type_rower">Rower</string>
    <string name="activity_type_dynamic_cycle">Dynamic cycle</string>
    <string name="activity_type_stair_stepper">Stair stepper</string>
    <string name="activity_type_fitness_exercises">Fitness exercises</string>
    <string name="activity_type_crossfit">Crossfit</string>
    <string name="activity_type_functional_training">Functional training</string>
    <string name="activity_type_physical_training">Physical training</string>
    <string name="activity_type_taekwondo">Taekwondo</string>
    <string name="activity_type_tae_bo">Tae Bo</string>
    <string name="activity_type_beach_soccer">Beach Soccer</string>
    <string name="activity_type_beach_volleyball">Beach Volleyball</string>
    <string name="activity_type_gateball">Gateball</string>
    <string name="activity_type_sepak_takraw">Sepak Takraw</string>
    <string name="activity_type_luge">Luge</string>
    <string name="activity_type_parachuting">Parachuting</string>
    <string name="activity_type_auto_racing">Auto racing</string>
    <string name="activity_type_parkour">Parkour</string>
    <string name="activity_type_cross_country_running">Cross country running</string>
    <string name="activity_type_karate">Karate</string>
    <string name="activity_type_fencing">Fencing</string>
    <string name="activity_type_kendo">Kendo</string>
    <string name="activity_type_horizontal_bar">Horizontal bar</string>
    <string name="activity_type_parallel_bar">Parallel bar</string>
    <string name="activity_type_cooldown">Cooldown</string>
    <string name="activity_type_cross_training">Cross training</string>
    <string name="activity_type_sit_ups">Sit ups</string>
    <string name="activity_type_fitness_gaming">Fitness gaming</string>
    <string name="activity_type_aerobic_exercise">Aerobic exercise</string>
    <string name="activity_type_rolling">Rolling</string>
    <string name="activity_type_flexibility">Flexibility</string>
    <string name="activity_type_track_and_field">Track and field</string>
    <string name="activity_type_push_ups">Push ups</string>
    <string name="activity_type_battle_rope">Battle rope</string>
    <string name="activity_type_smith_machine">Smith machine</string>
    <string name="activity_type_pull_ups">Pull ups</string>
    <string name="activity_type_plank">Plank</string>
    <string name="activity_type_javelin">Javelin</string>
    <string name="activity_type_long_jump">Long jump</string>
    <string name="activity_type_high_jump">High jump</string>
    <string name="activity_type_trampoline">Trampoline</string>
    <string name="activity_type_dumbbell">Dumbbell</string>
    <string name="activity_type_belly_dance">Belly dance</string>
    <string name="activity_type_jazz_dance">Jazz dance</string>
    <string name="activity_type_latin_dance">Latin dance</string>
    <string name="activity_type_ballet">Ballet</string>
    <string name="activity_type_other_dance">Other dance</string>
    <string name="activity_type_roller_skating">Roller skating</string>
    <string name="activity_type_martial_arts">Martial arts</string>
    <string name="activity_type_tai_chi">Tai chi</string>
    <string name="activity_type_hula_hooping">Hula hooping</string>
    <string name="activity_type_disc_sports">Disc sports</string>
    <string name="activity_type_darts">Darts</string>
    <string name="activity_type_archery">Archery</string>
    <string name="activity_type_horse_riding">Horse riding</string>
    <string name="activity_type_kite_flying">Kite Flying</string>
    <string name="activity_type_swing">Swing</string>
    <string name="activity_type_stairs">Stairs</string>
    <string name="activity_type_fishing">Fishing</string>
    <string name="activity_type_hand_cycling">Hand cycling</string>
    <string name="activity_type_mind_and_body">Mind and body</string>
    <string name="activity_type_kabaddi">Kabaddi</string>
    <string name="activity_type_karting">Karting</string>
    <string name="activity_type_billiards">Billiards</string>
    <string name="activity_type_shuttlecock">Shuttlecock</string>
    <string name="activity_type_softball">Softball</string>
    <string name="activity_type_dodgeball">Dodgeball</string>
    <string name="activity_type_australian_football">Australian football</string>
    <string name="activity_type_pickleball">Pickleball</string>
    <string name="activity_type_lacross">Lacross</string>
    <string name="activity_type_shot">Shot</string>
    <string name="activity_type_sailing">Sailing</string>
    <string name="activity_type_jet_skiing">Jet skiing</string>
    <string name="activity_type_skating">Skating</string>
    <string name="activity_type_ice_hockey">Ice hockey</string>
    <string name="activity_type_curling">Curling</string>
    <string name="activity_type_cross_country_skiing">Cross country skiing</string>
    <string name="activity_type_snow_sports">Snow sports</string>
    <string name="activity_type_skateboarding">Skateboarding</string>
    <string name="activity_type_rock_climbing">Rock climbing</string>
    <string name="activity_type_hunting">Hunting</string>
    <string name="activity_type_walking">Walking</string>
    <string name="activity_type_outdoor_walking">Outdoor Walking</string>
    <string name="activity_type_indoor_walking">Indoor Walking</string>
    <string name="activity_type_surfing">Surfing</string>
    <string name="activity_type_windsurfing">Windsurfing</string>
    <string name="activity_type_kitesurfing">Kitesurfing</string>
    <string name="activity_type_freestyle">Freestyle</string>
    <string name="activity_type_hiking">Hiking</string>
    <string name="activity_type_climbing">Climbing</string>
    <string name="activity_type_swimming">Swimming</string>
    <string name="activity_type_pool_swimming">Pool Swimming</string>
    <string name="activity_type_swimming_openwater">Swimming (Open water)</string>
    <string name="activity_type_indoor_cycling">Indoor Cycling</string>
    <string name="activity_type_outdoor_cycling">Outdoor Cycling</string>
    <string name="activity_type_elliptical_trainer">Elliptical Trainer</string>
    <string name="activity_type_elliptical">Elliptical</string>
    <string name="activity_type_jump_roping">Jumping Rope</string>
    <string name="activity_type_yoga">Yoga</string>
    <string name="activity_type_soccer">Soccer</string>
    <string name="activity_type_football">Football</string>
    <string name="activity_type_rugby">Rugby</string>
    <string name="activity_type_rowing_machine">Rowing Machine</string>
    <string name="activity_type_rowing">Rowing</string>
    <string name="activity_type_cricket">Cricket</string>
    <string name="activity_type_baseball">Baseball</string>
    <string name="activity_type_basketball">Basketball</string>
    <string name="activity_type_handball">Handball</string>
    <string name="activity_type_tennis">Tennis</string>
    <string name="activity_type_pingpong">Ping Pong</string>
    <string name="activity_type_squash">Squash</string>
    <string name="activity_type_badminton">Badminton</string>
    <string name="activity_type_weightlifting">Weightlifting</string>
    <string name="activity_type_strength_training">Strength Training</string>
    <string name="activity_type_dance">Dance</string>
    <string name="activity_type_indoor_fitness">Indoor Fitness</string>
    <string name="activity_type_gymnastics">Gymnastics</string>
    <string name="activity_type_hiit">High-intensity Interval Training</string>
    <string name="activity_type_core_training">Core Training</string>
    <string name="activity_type_stretching">Stretching</string>
    <string name="activity_type_stepper">Stepper</string>
    <string name="activity_type_pilates">Pilates</string>
    <string name="activity_type_volleyball">Volleyball</string>
    <string name="activity_type_table_tennis">Table Tennis</string>
    <string name="activity_type_bowling">Bowling</string>
    <string name="activity_type_boxing">Boxing</string>
    <string name="activity_type_kickboxing">Kickboxing</string>
    <string name="activity_type_street_dance">Street Dance</string>
    <string name="activity_type_zumba">Zumba</string>
    <string name="activity_type_indoor_ice_skating">Indoor Ice Skating</string>
    <string name="activity_type_dancing">Dancing</string>
    <string name="activity_type_skiing">Skiing</string>
    <string name="activity_type_snowboarding">Snowboarding</string>
    <string name="activity_type_riding">Horseback Riding</string>
    <string name="activity_type_hockey">Hockey</string>
    <string name="activity_type_icehockey">Icehockey</string>
    <string name="activity_type_iceskating">Ice Skating</string>
    <string name="activity_type_golf">Golfing</string>
    <string name="activity_type_other">Other</string>
    <string name="activity_type_trekking">Trekking</string>
    <string name="activity_type_trail_run">Trail run</string>
    <string name="activity_type_wrestling">Wrestling</string>
    <string name="activity_type_unknown">Unknown activity</string>
    <string name="activity_type_navigate">Navigate</string>
    <string name="activity_type_indoor_track">Indoor Track</string>
    <string name="activity_type_handcycling">Handcycling</string>
    <string name="activity_type_e_bike">E-Bike</string>
    <string name="activity_type_bike_commute">Bike Commute</string>
    <string name="activity_type_handcycling_indoor">Handcycling Indoor</string>
    <string name="activity_type_transition">Transition</string>
    <string name="activity_type_fitness_equipment">Fitness Equipment</string>
    <string name="activity_type_platform_tennis">Platform Tennis</string>
    <string name="activity_type_american_football">American Football</string>
    <string name="activity_type_training">Training</string>
    <string name="activity_type_cardio">Cardio</string>
    <string name="activity_type_breathwork">Breathwork</string>
    <string name="activity_type_xc_classic_ski">XC Classic Ski</string>
    <string name="activity_type_mountaineering">Mountaineering</string>
    <string name="activity_type_multisport">Multisport</string>
    <string name="activity_type_paddling">Paddling</string>
    <string name="activity_type_flying">Flying</string>
    <string name="activity_type_motorcycling">Motorcycling</string>
    <string name="activity_type_boating">Boating</string>
    <string name="activity_type_driving">Driving</string>
    <string name="activity_type_hang_gliding">Hang Gliding</string>
    <string name="activity_type_inline_skating">Inline Skating</string>
    <string name="activity_type_climb_indoor">Climb Indoor</string>
    <string name="activity_type_bouldering">Bouldering</string>
    <string name="activity_type_sail_race">Sail Race</string>
    <string name="activity_type_sail_expedition">Sail Expedition</string>
    <string name="activity_type_ice_skating">Ice Skating</string>
    <string name="activity_type_sky_diving">Sky Diving</string>
    <string name="activity_type_snowshoe">Snowshoe</string>
    <string name="activity_type_snowmobiling">Snowmobiling</string>
    <string name="activity_type_stand_up_paddleboarding">Standup Paddleboarding</string>
    <string name="activity_type_wakeboarding">Wakeboarding</string>
    <string name="activity_type_water_skiing">Water Skiing</string>
    <string name="activity_type_kayaking">Kayaking</string>
    <string name="activity_type_rafting">Rafting</string>
    <string name="activity_type_tactical">Tactical</string>
    <string name="activity_type_jumpmaster">Jumpmaster</string>
    <string name="activity_type_floor_climbing">Floor Climbing</string>
    <string name="activity_type_softball_slow_pitch">Softball Slow Pitch</string>
    <string name="activity_type_shooting">Shooting</string>
    <string name="activity_type_winter_sport">Winter Sport</string>
    <string name="activity_type_grinding">Grinding</string>
    <string name="activity_type_health_snapshot">Health Snapshot</string>
    <string name="activity_type_marine">Marine</string>
    <string name="activity_type_video_gaming">Video Gaming</string>
    <string name="activity_type_racket">Racket</string>
    <string name="activity_type_padel">Padel</string>
    <string name="activity_type_racquetball">Racquetball</string>
    <string name="activity_type_push_walk_speed">Push - Walk Speed</string>
    <string name="activity_type_indoor_push_walk_speed">Indoor Push - Walk Speed</string>
    <string name="activity_type_push_run_speed">Push - Run Speed</string>
    <string name="activity_type_indoor_push_run_speed">Indoor Push - Run Speed</string>
    <string name="activity_type_meditation">Meditation</string>
    <string name="activity_type_para_sport">Para Sport</string>
    <string name="activity_type_disc_golf">Disc Golf</string>
    <string name="activity_type_ultimate_disc">Ultimate Disc</string>
    <string name="activity_type_team_sport">Team Sport</string>
    <string name="activity_type_lacrosse">Lacrosse</string>
    <string name="activity_type_water_tubing">Water Tubing</string>
    <string name="activity_type_wakesurfing">Wakesurfing</string>
    <string name="activity_type_mixed_martial_arts">Mixed Martial Arts</string>
    <string name="activity_type_aerobic_combo">Aerobic combo</string>
    <string name="activity_type_aerobics">Aerobics</string>
    <string name="activity_type_air_walker">Air walker</string>
    <string name="activity_type_artistic_swimming">Artistic swimming</string>
    <string name="activity_type_ballroom_dance">Ballroom dance</string>
    <string name="activity_type_bmx">BMX</string>
    <string name="activity_type_board_game">Board game</string>
    <string name="activity_type_bocce">Bocce</string>
    <string name="activity_type_breaking">Breaking</string>
    <string name="activity_type_bridge">Bridge</string>
    <string name="activity_type_cardio_combat">Cardio combat</string>
    <string name="activity_type_checkers">Checkers</string>
    <string name="activity_type_chess">Chess</string>
    <string name="activity_type_dragon_boat">Dragon boat</string>
    <string name="activity_type_esports">Esports</string>
    <string name="activity_type_finswimming">Finswimming</string>
    <string name="activity_type_flowriding">Flowriding</string>
    <string name="activity_type_folk_dance">Folk dance</string>
    <string name="activity_type_frisbee">Frisbee</string>
    <string name="activity_type_futsal">Futsal</string>
    <string name="activity_type_hacky_sack">Hacky sack</string>
    <string name="activity_type_hip_hop">Hip-hop</string>
    <string name="activity_type_hula_hoop">Hula hoop</string>
    <string name="activity_type_jai_alai">Jai alai</string>
    <string name="activity_type_judo">Judo</string>
    <string name="activity_type_jujitsu">Jujitsu</string>
    <string name="activity_type_mass_gymnastics">Mass gymnastics</string>
    <string name="activity_type_modern_dance">Modern dance</string>
    <string name="activity_type_muay_thai">Muay thai</string>
    <string name="activity_type_parallel_bars">Parallel bars</string>
    <string name="activity_type_pole_dance">Pole dance</string>
    <string name="activity_type_race_walking">Race walking</string>
    <string name="activity_type_shuffleboard">Shuffleboard</string>
    <string name="activity_type_snorkeling">Snorkeling</string>
    <string name="activity_type_somatosensory_game">Somatosensory game</string>
    <string name="activity_type_spinning">Spinning</string>
    <string name="activity_type_square_dance">Square dance</string>
    <string name="activity_type_stair_climber">Stair climber</string>
    <string name="activity_type_table_football">Table football</string>
    <string name="activity_type_tug_of_war">Tug of war</string>
    <string name="activity_type_wall_ball">Wall ball</string>
    <string name="activity_type_water_polo">Water polo</string>
    <string name="activity_type_weiqi">Weiqi</string>
    <string name="activity_type_free_sparring">Free sparring</string>
    <string name="activity_type_body_combat">Body combat</string>
    <string name="activity_type_plaza_dancing">Plaza dancing</string>
    <string name="activity_type_laser_tag">Laser tag</string>
    <string name="activity_type_obstacle_race">Obstacle race</string>
    <string name="activity_type_billiard_pool">Pool</string>
    <string name="activity_type_canoeing">Canoeing</string>
    <string name="activity_type_water_scooter">Water scooter</string>
    <string name="activity_type_bobsleigh">Bobsleigh</string>
    <string name="activity_type_sledding">Sledding</string>
    <string name="activity_type_biathlon">Biathlon</string>
    <string name="activity_type_bungee_jumping">Bungee jumping</string>
    <string name="activity_type_orienteering">Orienteering</string>
    <string name="activity_summaries">Sport Activities</string>
    <string name="activity_summary_detail">Sport Activity Detail</string>
    <string name="activity_summary_edit_name_title">Edit label</string>
    <string name="activity_summary_detail_select_gpx_track">Select GPX track</string>
    <string name="activity_summary_detail_clear_gpx_track">Clear GPX track</string>
    <string name="activity_summary_detail_editing_gpx_track">Editing linked GPX track</string>
    <string name="activity_summary_today">Today</string>
    <string name="activity_summary_yesterday">Yesterday</string>
    <string name="hrv_status_day_avg">Day average</string>
    <string name="hrv_status_day_avg_legend">Daily average (ms)</string>
    <string name="hrv_status_seven_days_avg">7-day average</string>
    <string name="hrv_status_seven_days_avg_status">Status</string>
    <string name="hrv_status_balanced">Balanced</string>
    <string name="hrv_status_unbalanced">Unbalanced</string>
    <string name="hrv_status_low">Low</string>
    <string name="hrv_status_poor">Poor</string>
    <string name="hrv_status_last_night">Last night</string>
    <string name="hrv_status_last_night_highest_5">Last night 5-min max avg</string>
    <string name="hrv_status_seven_days_avg_long">7-day average</string>
    <string name="hrv_status_unit">%1$d ms</string>
    <string name="hrv_status_baseline">%1$d-%2$d ms</string>
    <string name="hrv_status_baseline_label">Baseline</string>
    <string name="bpm_value_unit">%1$d bpm</string>
    <string name="steps_distance_unit">%1$,.2f km</string>
    <string name="body_energy_gained">Gained</string>
    <string name="body_energy_lost">Lost</string>
    <string name="body_energy_legend_level">Body Energy Level</string>
    <string name="activity_type_biking">Biking</string>
    <string name="activity_type_treadmill">Treadmill</string>
    <string name="activity_type_exercise">Exercise</string>
    <string name="activity_error_no_app_for_gpx">To view activity trace, install app which can handle GPX files.</string>
    <string name="activity_error_no_app_for_png">To share this screenshot, install an app which can handle image files.</string>
    <string name="activity_error_share_failed">Sharing file failed.</string>
    <string name="select_all">Select all</string>
    <string name="share">Share</string>
    <string name="share_screenshot">Share screenshot</string>
    <string name="screenshot_taken">Screenshot taken</string>
    <string name="reset_index">Reset fetch date</string>
    <string name="kind_firmware">Firmware</string>
    <string name="kind_invalid">Invalid data</string>
    <string name="kind_font">Font</string>
    <string name="kind_gps">GPS Firmware</string>
    <string name="kind_gps_almanac">GPS Almanac</string>
    <string name="kind_gps_cep">GPS Error Correction</string>
    <string name="kind_agps_bundle">AGPS Bundle</string>
    <string name="kind_gpx_route">GPX Route</string>
    <string name="kind_resources">Resources</string>
    <string name="kind_watchface">Watchface</string>
    <string name="kind_app">App</string>
    <string name="devicetype_unknown">Unknown Device</string>
    <string name="devicetype_test">Test Device</string>
    <string name="add_test_device">Add test device</string>
    <string name="devicetype_pebble">Pebble</string>
    <string name="devicetype_miband">Mi Band</string>
    <string name="devicetype_miband2">Mi Band 2</string>
    <string name="devicetype_miband3">Mi Band 3</string>
    <string name="devicetype_miband4">Mi Band 4</string>
    <string name="devicetype_miband5">Mi Band 5</string>
    <string name="devicetype_miband6">Mi Band 6</string>
    <string name="devicetype_miband7">Xiaomi Smart Band 7</string>
    <string name="devicetype_miband7pro">Xiaomi Smart Band 7 Pro</string>
    <string name="devicetype_miband8">Xiaomi Smart Band 8</string>
    <string name="devicetype_miband8active">Xiaomi Smart Band 8 Active</string>
    <string name="devicetype_miband8pro">Xiaomi Smart Band 8 Pro</string>
    <string name="devicetype_miband9">Xiaomi Smart Band 9</string>
    <string name="devicetype_miband9pro">Xiaomi Smart Band 9 Pro</string>
    <string name="devicetype_amazfit_balance">Amazfit Balance</string>
    <string name="devicetype_amazfit_active">Amazfit Active</string>
    <string name="devicetype_amazfit_active_edge">Amazfit Active Edge</string>
    <string name="devicetype_amazfit_cheetah_square">Amazfit Cheetah (Square)</string>
    <string name="devicetype_amazfit_cheetah_round">Amazfit Cheetah (Round)</string>
    <string name="devicetype_amazfit_cheetah_pro">Amazfit Cheetah Pro</string>
    <string name="devicetype_amazfit_gts3">Amazfit GTS 3</string>
    <string name="devicetype_amazfit_gts4">Amazfit GTS 4</string>
    <string name="devicetype_amazfit_gts4_mini">Amazfit GTS 4 Mini</string>
    <string name="devicetype_amazfit_gtr3">Amazfit GTR 3</string>
    <string name="devicetype_amazfit_gtr3_pro">Amazfit GTR 3 Pro</string>
    <string name="devicetype_amazfit_bip3">Amazfit Bip 3</string>
    <string name="devicetype_amazfit_bip3_pro">Amazfit Bip 3 Pro</string>
    <string name="devicetype_amazfit_bip5">Amazfit Bip 5</string>
    <string name="devicetype_amazfit_bip5_unity">Amazfit Bip 5 Unity</string>
    <string name="devicetype_amazfit_gtr4">Amazfit GTR 4</string>
    <string name="devicetype_amazfit_trex_2">Amazfit T-Rex 2</string>
    <string name="devicetype_amazfit_trex_3">Amazfit T-Rex 3</string>
    <string name="devicetype_amazfit_trex_ultra">Amazfit T-Rex Ultra</string>
    <string name="devicetype_amazfit_band5">Amazfit Band 5</string>
    <string name="devicetype_amazfit_band7">Amazfit Band 7</string>
    <string name="devicetype_amazfit_neo">Amazfit Neo</string>
    <string name="devicetype_amazfit_bip">Amazfit Bip</string>
    <string name="devicetype_amazfit_bip_lite">Amazfit Bip Lite</string>
    <string name="devicetype_amazfit_cor">Amazfit Cor</string>
    <string name="devicetype_amazfit_cor2">Amazfit Cor 2</string>
    <string name="devicetype_amazfit_gtr">Amazfit GTR</string>
    <string name="devicetype_amazfit_gtr_lite">Amazfit GTR Lite</string>
    <string name="devicetype_amazfit_gtr_mini">Amazfit GTR Mini</string>
    <string name="devicetype_amazfit_falcon">Amazfit Falcon</string>
    <string name="devicetype_amazfit_trex">Amazfit T-Rex</string>
    <string name="devicetype_amazfit_bips">Amazfit Bip S</string>
    <string name="devicetype_amazfit_bips_lite">Amazfit Bip S Lite</string>
    <string name="devicetype_amazfit_bipu">Amazfit Bip U</string>
    <string name="devicetype_amazfit_bipupro">Amazfit Bip U Pro</string>
    <string name="devicetype_amazfit_pop">Amazfit Pop</string>
    <string name="devicetype_amazfit_pop_pro">Amazfit Pop Pro</string>
    <string name="devicetype_amazfit_gtr2">Amazfit GTR 2</string>
    <string name="devicetype_amazfit_gtr2e">Amazfit GTR 2e</string>
    <string name="devicetype_amazfit_gts2">Amazfit GTS 2</string>
    <string name="devicetype_amazfit_gts2_mini">Amazfit GTS 2 Mini</string>
    <string name="devicetype_amazfit_gts2e">Amazfit GTS 2e</string>
    <string name="devicetype_amazfit_x">Amazfit X</string>
    <string name="devicetype_zepp_e">Zepp E</string>
    <string name="devicetype_garmin_vivomove_hr">Garmin Vívomove HR</string>
    <string name="devicetype_garmin_vivomove_style">Garmin Vívomove Style</string>
    <string name="devicetype_garmin_vivomove_trend">Garmin Vívomove Trend</string>
    <string name="devicetype_garmin_venu">Garmin Venu</string>
    <string name="devicetype_garmin_venu_sq">Garmin Venu Sq</string>
    <string name="devicetype_garmin_venu_sq_2">Garmin Venu Sq 2</string>
    <string name="devicetype_garmin_venu_2">Garmin Venu 2</string>
    <string name="devicetype_garmin_venu_2_plus">Garmin Venu 2 Plus</string>
    <string name="devicetype_garmin_venu_2s">Garmin Venu 2S</string>
    <string name="devicetype_garmin_venu_3">Garmin Venu 3</string>
    <string name="devicetype_garmin_venu_3s">Garmin Venu 3S</string>
    <string name="devicetype_garmin_enduro_3">Garmin Enduro 3</string>
    <string name="devicetype_garmin_epix_pro">Garmin Epix Pro</string>
    <string name="devicetype_garmin_fenix_5">Garmin Fenix 5</string>
    <string name="devicetype_garmin_fenix_5_plus">Garmin Fenix 5 Plus</string>
    <string name="devicetype_garmin_fenix_5x_plus">Garmin Fenix 5X Plus</string>
    <string name="devicetype_garmin_fenix_6">Garmin Fenix 6</string>
    <string name="devicetype_garmin_fenix_6_sapphire">Garmin Fenix 6 Sapphire</string>
    <string name="devicetype_garmin_fenix_6s_pro">Garmin Fenix 6S Pro</string>
    <string name="devicetype_garmin_fenix_6s_sapphire">Garmin Fenix 6S Sapphire</string>
    <string name="devicetype_garmin_fenix_7">Garmin Fenix 7</string>
    <string name="devicetype_garmin_fenix_7s">Garmin Fenix 7S</string>
    <string name="devicetype_garmin_fenix_7x">Garmin Fenix 7X</string>
    <string name="devicetype_garmin_fenix_7_pro">Garmin Fenix 7 Pro</string>
    <string name="devicetype_garmin_fenix_8">Garmin Fenix 8</string>
    <string name="devicetype_garmin_instinct">Garmin Instinct</string>
    <string name="devicetype_garmin_instinct_solar">Garmin Instinct Solar</string>
    <string name="devicetype_garmin_instinct_2">Garmin Instinct 2</string>
    <string name="devicetype_garmin_instinct_2s">Garmin Instinct 2S</string>
    <string name="devicetype_garmin_instinct_2s_solar">Garmin Instinct 2S Solar</string>
    <string name="devicetype_garmin_instinct_2x_solar">Garmin Instinct 2X Solar</string>
    <string name="devicetype_garmin_instinct_2_solar">Garmin Instinct 2 Solar</string>
    <string name="devicetype_garmin_instinct_2_soltac">Garmin Instinct 2 SolTac</string>
    <string name="devicetype_garmin_instinct_crossover">Garmin Instinct Crossover</string>
    <string name="devicetype_garmin_forerunner_55">Garmin Forerunner 55</string>
    <string name="devicetype_garmin_forerunner_165">Garmin Forerunner 165</string>
    <string name="devicetype_garmin_forerunner_235">Garmin Forerunner 235</string>
    <string name="devicetype_garmin_forerunner_245">Garmin Forerunner 245</string>
    <string name="devicetype_garmin_forerunner_245_music">Garmin Forerunner 245 Music</string>
    <string name="devicetype_garmin_forerunner_255">Garmin Forerunner 255</string>
    <string name="devicetype_garmin_forerunner_255_music">Garmin Forerunner 255 Music</string>
    <string name="devicetype_garmin_forerunner_255s">Garmin Forerunner 255S</string>
    <string name="devicetype_garmin_forerunner_255s_music">Garmin Forerunner 255S Music</string>
    <string name="devicetype_garmin_forerunner_265">Garmin Forerunner 265</string>
    <string name="devicetype_garmin_forerunner_265s">Garmin Forerunner 265S</string>
    <string name="devicetype_garmin_forerunner_620">Garmin Forerunner 620</string>
    <string name="devicetype_garmin_forerunner_955">Garmin Forerunner 955</string>
    <string name="devicetype_garmin_forerunner_965">Garmin Forerunner 965</string>
    <string name="devicetype_garmin_swim_2">Garmin Swim 2</string>
    <string name="devicetype_garmin_vivoactive_3">Garmin Vívoactive 3</string>
    <string name="devicetype_garmin_vivoactive_4">Garmin Vívoactive 4</string>
    <string name="devicetype_garmin_vivoactive_4s">Garmin Vívoactive 4S</string>
    <string name="devicetype_garmin_vivoactive_5">Garmin Vívoactive 5</string>
    <string name="devicetype_garmin_vivosmart_5">Garmin Vívosmart 5</string>
    <string name="devicetype_garmin_vivosport">Garmin Vívosport</string>
    <string name="devicetype_vibratissimo">Vibratissimo</string>
    <string name="devicetype_um25">UM-25</string>
    <string name="devicetype_liveview">LiveView</string>
    <string name="devicetype_hplus">HPlus</string>
    <string name="devicetype_makibes_f68">Makibes F68</string>
    <string name="devicetype_exrizu_k8">Exrizu K8</string>
    <string name="devicetype_q8">Q8</string>
    <string name="devicetype_no1_f1">No.1 F1</string>
    <string name="devicetype_teclast_h30">Teclast H30</string>
    <string name="devicetype_xwatch">XWatch</string>
    <string name="devicetype_qhybrid">Fossil Q Hybrid</string>
    <string name="devicetype_mykronoz_zetime">MyKronoz ZeTime</string>
    <string name="devicetype_id115">ID115</string>
    <string name="devicetype_watch9">Watch 9</string>
    <string name="devicetype_watchx">Watch X</string>
    <string name="devicetype_watchxplus">Watch X Plus</string>
    <string name="devicetype_roidmi">Roidmi</string>
    <string name="devicetype_roidmi3">Roidmi 3</string>
    <string name="devicetype_y5">Y5</string>
    <string name="devicetype_casioecbs100">Casio ECB-S100</string>
    <string name="devicetype_casiogb6900">Casio GB-6900</string>
    <string name="devicetype_casiogbx100">Casio GBX-100</string>
    <string name="devicetype_casiogwb5600">Casio GW-B5600</string>
    <string name="devicetype_casiogmwb5000">Casio GMW-B5000</string>
    <string name="devicetype_mismartscale">Mi Smart Scale 2</string>
    <string name="devicetype_micompositionscale">Mi Body Composition Scale 2</string>
    <string name="devicetype_itag">iTag</string>
    <string name="devicetype_idasen">IKEA Idasen Desk</string>
    <string name="devicetype_bfh16">BFH-16</string>
    <string name="devicetype_mijia_lywsd02">Mijia Smart Clock</string>
    <string name="devicetype_mijia_lywsd03">Mijia Temperature and Humidity Sensor 2</string>
    <string name="devicetype_mijia_xmwsdj04">Mijia Temperature and Humidity Sensor 2 (E-ink)</string>
    <string name="devicetype_mijia_mho_c303">Mijia MHO-C303</string>
    <string name="devicetype_makibes_hr3">Makibes HR3</string>
    <string name="devicetype_banglejs">Bangle.js</string>
    <string name="devicetype_tlw64">TLW64</string>
    <string name="devicetype_pinetime_jf">PineTime (JF Firmware)</string>
    <string name="devicetype_sonyswr12">Sony SWR12</string>
    <string name="devicetype_waspos">Wasp-os</string>
    <string name="devicetype_smaq2oss">SMA-Q2 OSS</string>
    <string name="devicetype_fitpro">FitPro</string>
    <string name="devicetype_colacao21">ColaCao 2021</string>
    <string name="devicetype_colacao23">ColaCao 2023</string>
    <string name="devicetype_domyos_t540">Domyos T540</string>
    <string name="devicetype_sony_wh_1000xm2">Sony WH-1000XM2</string>
    <string name="devicetype_sony_wh_1000xm3">Sony WH-1000XM3</string>
    <string name="devicetype_sony_wh_1000xm4">Sony WH-1000XM4</string>
    <string name="devicetype_sony_wh_1000xm5">Sony WH-1000XM5</string>
    <string name="devicetype_sony_wf_sp800n">Sony WF-SP800N</string>
    <string name="devicetype_sony_wf_1000xm3">Sony WF-1000XM3</string>
    <string name="devicetype_sony_wf_1000xm4">Sony WF-1000XM4</string>
    <string name="devicetype_sony_wf_1000xm5">Sony WF-1000XM5</string>
    <string name="devicetype_sony_wf_c500">Sony WF-C500</string>
    <string name="devicetype_sony_wf_c700n">Sony WF-C700N</string>
    <string name="devicetype_sony_wi_c100">Sony WI-C100</string>
    <string name="devicetype_sony_wi_sp600n">Sony WI-SP600N</string>
    <string name="devicetype_sony_linkbuds">Sony LinkBuds</string>
    <string name="devicetype_sony_linkbuds_s">Sony LinkBuds S</string>
    <string name="devicetype_soundcore_liberty3_pro">Soundcore Liberty 3 Pro</string>
    <string name="devicetype_soundcore_liberty4_nc">Soundcore Liberty 4 NC</string>
    <string name="devicetype_soundcore_motion300">Soundcore Motion 300</string>
    <string name="devicetype_moondrop_space_travel">Moondrop Space Travel</string>
    <string name="devicetype_binary_sensor">Binary sensor</string>
    <string name="devicetype_honor_band3">Honor Band 3</string>
    <string name="devicetype_honor_band4">Honor Band 4</string>
    <string name="devicetype_honor_band5">Honor Band 5</string>
    <string name="devicetype_honor_band6">Honor Band 6</string>
    <string name="devicetype_honor_band7">Honor Band 7</string>
    <string name="devicetype_honor_magicwatch2">Honor MagicWatch 2</string>
    <string name="devicetype_honor_watchgs3">Honor Watch GS 3</string>
    <string name="devicetype_honor_watchgspro">Honor Watch GS Pro</string>
    <string name="devicetype_huawei_band_aw70">Huawei Band (AW70)</string>
    <string name="devicetype_huawei_band6">Huawei Band 6</string>
    <string name="devicetype_huawei_band7">Huawei Band 7</string>
    <string name="devicetype_huawei_band8">Huawei Band 8</string>
    <string name="devicetype_huawei_band9">Huawei Band 9</string>
    <string name="devicetype_huawei_watch_gt">Huawei Watch GT</string>
    <string name="devicetype_huawei_band2pro">Huawei Band 2 (Pro)</string>
    <string name="devicetype_huawei_band3pro">Huawei Band 3 (Pro)</string>
    <string name="devicetype_huawei_band4pro">Huawei Band 4 (Pro)</string>
    <string name="devicetype_huawei_watchgt2">Huawei Watch GT 2 (Pro)</string>
    <string name="devicetype_huawei_watchgt2e">Huawei Watch GT 2e</string>
    <string name="devicetype_huawei_talk_band_b6">Huawei Talk Band B6</string>
    <string name="devicetype_huawei_watchd2">Huawei Watch D2</string>
    <string name="devicetype_huawei_watchgt3">Huawei Watch GT 3 (Pro)</string>
    <string name="devicetype_huawei_watchgt4">Huawei Watch GT 4</string>
    <string name="devicetype_huawei_watchgt5">Huawei Watch GT 5 (Pro)</string>
    <string name="devicetype_huawei_watchgtrunner">Huawei Watch GT Runner</string>
    <string name="devicetype_huawei_watchgtcyber">Huawei Watch GT Cyber</string>
    <string name="devicetype_huawei_watchfit">Huawei Watch Fit</string>
    <string name="devicetype_huawei_watchfit2">Huawei Watch Fit 2</string>
    <string name="devicetype_huawei_watchfit3">Huawei Watch Fit 3</string>
    <string name="devicetype_huawei_watchultimate">Huawei Watch Ultimate</string>
    <string name="devicetype_huawei_watch3">Huawei Watch 3 (Pro)</string>
    <string name="devicetype_huawei_watch4pro">Huawei Watch 4 (Pro)</string>
    <string name="devicetype_huawei_freebuds_5i">Huawei FreeBuds 5i</string>
    <string name="devicetype_femometer_vinca2">Femometer Vinca II</string>
    <string name="devicetype_xiaomi_watch_lite">Xiaomi Watch Lite</string>
    <string name="devicetype_redmiwatch3active">Redmi Watch 3 Active</string>
    <string name="devicetype_redmiwatch3">Redmi Watch 3</string>
    <string name="devicetype_redmi_buds_5_pro">Redmi Buds 5 Pro</string>
    <string name="devicetype_redmi_smart_band_2">Redmi Smart Band 2</string>
    <string name="devicetype_redmi_watch_2">Redmi Watch 2</string>
    <string name="devicetype_redmi_watch_2_lite">Redmi Watch 2 Lite</string>
    <string name="devicetype_redmi_smart_band_pro">Redmi Smart Band Pro</string>
    <string name="devicetype_redmi_watch_4">Redmi Watch 4</string>
    <string name="devicetype_redmi_watch_5_active">Redmi Watch 5 Active</string>
    <string name="devicetype_redmi_watch_5_lite">Redmi Watch 5 Lite</string>
    <string name="devicetype_colmi_r02">Colmi R02</string>
    <string name="devicetype_colmi_r03">Colmi R03</string>
    <string name="devicetype_colmi_r06">Colmi R06</string>
    <string name="devicetype_colmi_r09">Colmi R09</string>
    <string name="devicetype_colmi_r10">Colmi R10</string>
    <string name="devicetype_bandw_pseries">Bowers and Wilkins P series</string>
    <string name="choose_auto_export_location">Choose export location</string>
    <string name="notification_channel_name">General</string>
    <string name="notification_channel_high_priority_name">High-priority</string>
    <string name="notification_channel_transfer_name">Data transfer</string>
    <string name="notification_channel_low_battery_name">Low battery</string>
    <string name="notification_channel_full_battery_name">Full battery</string>
    <string name="notification_channel_gps">GPS tracking</string>
    <string name="notification_gps_title">Gadgetbridge GPS</string>
    <string name="notification_gps_text">Sending GPS location to %1$d devices</string>
    <string name="devicetype_amazfit_gts">Amazfit GTS</string>
    <string name="devicetype_amazfit_vergel">Amazfit Verge Lite</string>
    <string name="devicetype_sg2">Lemfo SG2</string>
    <string name="devicetype_lefun">Lefun</string>
    <string name="devicetype_bohemic_smart_bracelet">Bohemic Smart Bracelet</string>
    <string name="devicetype_vivitar_hr_bp_monitor_activity_tracker">Vivitar HR &amp; BP Monitor Activity Tracker</string>
    <string name="devicetype_hama_fit6900">Hama Fit6900</string>
    <!-- Menus on the smart device -->
    <string name="menuitem_nothing">Nothing</string>
    <string name="menuitem_status">Status</string>
    <string name="menuitem_notifications">Notifications</string>
    <string name="menuitem_activity">Workout History</string>
    <string name="menuitem_weather">Weather</string>
    <string name="menuitem_aqi">Air Quality Index</string>
    <string name="menuitem_forecast">Forecast</string>
    <string name="menuitem_last_workout">Last workout</string>
    <string name="menuitem_total_workout">Total workout</string>
    <string name="menuitem_vo2_max">VO₂ Max</string>
    <string name="menuitem_recommendation">Recommendation</string>
    <string name="menuitem_zepp_coach">Zepp Coach</string>
    <string name="menuitem_zepp_pay">Zepp Pay</string>
    <string name="menuitem_thermometer">Thermometer</string>
    <string name="menuitem_readiness">Readiness</string>
    <string name="menuitem_body_composition">Body composition</string>
    <string name="menuitem_workout_shortcuts">Workout shortcuts</string>
    <string name="menuitem_apps_shortcuts">Apps shortcuts</string>
    <string name="menuitem_map">Map</string>
    <string name="menuitem_heart_rate_push">Heart Rate Push</string>
    <string name="menuitem_breathing">Breathing</string>
    <string name="menuitem_cycles">Cycle Tracking</string>
    <string name="menuitem_alarm">Alarm</string>
    <string name="menuitem_timer">Countdown</string>
    <string name="menuitem_compass">Compass</string>
    <string name="menuitem_settings">Settings</string>
    <string name="menuitem_alipay">Alipay</string>
    <string name="menuitem_wechat_pay">WeChat Pay</string>
    <string name="menuitem_cards">Cards</string>
    <string name="menuitem_mi_ai">MI AI</string>
    <string name="preferences_qhybrid_settings">Q Hybrid Settings</string>
    <string name="preferences_qhybrid_settings_summary">Legacy settings for Q Hybrid watches</string>
    <string name="menuitem_music">Music</string>
    <string name="menuitem_more">More</string>
    <string name="menuitem_nfc">NFC</string>
    <string name="menuitem_stress">Stress</string>
    <string name="menuitem_stress_simple">Stress (simple)</string>
    <string name="menuitem_stress_segmented">Stress (segmented)</string>
    <string name="menuitem_stress_breakdown">Stress (breakdown)</string>
    <string name="menuitem_calories_segmented">Calories (segmented)</string>
    <string name="menuitem_calories_active_goal">Calories goal (active)</string>
    <string name="menuitem_pai">PAI</string>
    <string name="menuitem_hr">Heart Rate</string>
    <string name="menuitem_spo2">SpO2</string>
    <string name="menuitem_eventreminder">Event Reminder</string>
    <string name="menuitem_workout">Workout</string>
    <string name="menuitem_unknown">Unknown</string>
    <string name="menuitem_worldclock">World Clock</string>
    <string name="menuitem_findphone">Find Phone</string>
    <string name="menuitem_mutephone">Mute Phone</string>
    <string name="menuitem_takephoto">Camera Remote</string>
    <string name="menuitem_alexa">Alexa</string>
    <string name="menuitem_dnd">DND</string>
    <string name="menuitem_stopwatch">Stopwatch</string>
    <string name="menuitem_goal">Activity Goal</string>
    <string name="menuitem_sleep">Sleep</string>
    <string name="menuitem_pomodoro">Pomodoro Tracker</string>
    <string name="menuitem_events">Events</string>
    <string name="menuitem_widgets">Widgets</string>
    <string name="menuitem_temperature">Temperature</string>
    <string name="menuitem_weight">Weight</string>
    <string name="menuitem_barometer">Barometer</string>
    <string name="menuitem_flashlight">Flashlight</string>
    <string name='menuitem_email'>E-mail</string>
    <string name='menuitem_countdown'>Countdown</string>
    <string name='menuitem_personal_activity_intelligence'>Personal Activity Intelligence</string>
    <string name='menuitem_workout_history'>Workout History</string>
    <string name='menuitem_female_health'>Female Health</string>
    <string name='menuitem_workout_status'>Workout Status</string>
    <string name='menuitem_calendar'>Calendar</string>
    <string name='menuitem_todo'>To-Do</string>
    <string name='menuitem_voice_memos'>Voice Memos</string>
    <string name='menuitem_sun_moon'>Sun &amp; Moon</string>
    <string name='menuitem_one_tap_measuring'>One-tap Measuring</string>
    <string name='menuitem_offline_voice'>Offline Voice</string>
    <string name='menuitem_membership_cards'>Membership Cards</string>
    <string name='menuitem_phone'>Phone</string>
    <string name='menuitem_theater_mode'>Theater Mode</string>
    <string name='menuitem_volume'>Volume</string>
    <string name='menuitem_screen_always_lit'>Screen Always Lit</string>
    <string name='menuitem_brightness'>Brightness</string>
    <string name='menuitem_bluetooth'>Bluetooth</string>
    <string name='menuitem_wifi'>Wi-Fi</string>
    <string name='menuitem_lockscreen'>Lockscreen</string>
    <string name='menuitem_eject_water'>Eject Water</string>
    <string name='menuitem_headphone'>Headphone</string>
    <string name='menuitem_buzzer_intensity'>Buzzer Intensity</string>
    <string name='menuitem_night_display'>Night Display</string>
    <string name="menuitem_unknown_app">Unknown (%s)</string>
    <string name="menuitem_unsupported">[UNSUPPORTED] %s</string>
    <string name="zepp_os_watchface_red_fantasy">Red Fantasy</string>
    <string name="zepp_os_watchface_multiple_data">Multiple Data</string>
    <string name="zepp_os_watchface_rush">Rush</string>
    <string name="zepp_os_watchface_minimalist">Minimalist</string>
    <string name="zepp_os_watchface_simplicity_data">Simplicity Data</string>
    <string name="zepp_os_watchface_vibrant">Vibrant</string>
    <string name="zepp_os_watchface_business_style">Business Style</string>
    <string name="zepp_os_watchface_emerald_moonlight">Emerald Moonlight</string>
    <string name="zepp_os_watchface_rotating_earth">Rotating Earth</string>
    <string name="zepp_os_watchface_superposition">superposition</string>
    <string name="zepp_os_watchface_vast_sky">Vast Sky</string>
    <string name="zepp_os_watchface_lightning_flash">Lightning flash</string>
    <string name="zepp_os_watchface_free_combination">Free combination</string>
    <string name="zepp_os_watchface_pure_white">Pure white</string>
    <string name="zepp_os_watchface_guider">Guider</string>
    <string name="zepp_os_watchface_city_of_speed">City of speed</string>
    <string name="zepp_os_watchface_starry_sky">Starry sky</string>
    <string name="zepp_os_watchface_the_ultima">The ultima</string>
    <string name="yesterdays_activity">Yesterday\'s Activity</string>
    <string name="watch9_time_minutes">Minutes:</string>
    <string name="watch9_time_hours">Hours:</string>
    <string name="watch9_time_seconds">Seconds:</string>
    <string name="watch9_calibration_hint">Set the time your device is showing to you right now.</string>
    <string name="watch9_calibration_button">Calibrate</string>
    <string name="title_activity_watch9_pairing">Watch 9 pairing</string>
    <string name="title_activity_watch9_calibration">Watch 9 calibration</string>
    <string name="pref_title_contextual_arabic">Contextual Arabic</string>
    <string name="pref_summary_contextual_arabic">Enable this to support contextual Arabic</string>
    <string name="preferences_rtl_settings">Right To Left Support</string>
    <string name="share_log">Share log</string>
    <string name="share_log_warning">Please keep in mind Gadgetbridge logs files that may contain lots of personal info, including but not limited to health data, unique identifiers (such as a device\'s MAC address), music preferences, etc. Consider editing the file and removing this info before sending the file to a public issue report.</string>
    <string name="share_log_not_enabled_message">You must first enable logging in the Settings - Write log files</string>
    <string name="warning">Warning!</string>
    <string name="note">Note</string>
    <string name="no_data">No data</string>
    <!-- LED Color -->
    <string name="preferences_led_color">LED Color</string>
    <!-- FM transmitters -->
    <string name="preferences_fm_frequency">FM Frequency</string>
    <string name="pref_invalid_frequency_title">Invalid frequency</string>
    <string name="pref_invalid_frequency_message">Please enter a frequency between 87.5 and 108.0</string>
    <string name="language_and_region_prefs">Language and region settings</string>
    <string name="prefs_fm_preset_instructions">Long press the button to store preset</string>
    <string name="prefs_fm_presets_presets">Presets</string>
    <!--Notification Filter Black-/ Whitelist-->
    <string name="title_activity_notification_filter">Notification Filter</string>
    <string name="toast_app_must_not_be_selected">App must not be selected to be configured</string>
    <string name="toast_app_must_be_selected">App must be selected to be configured</string>
    <string name="edittext_notification_filter_words_hint">Enter desired words, new line for each</string>
    <string name="toast_notification_filter_saved_successfully">Notification filter saved</string>
    <string name="filter_mode_none">Do not filter</string>
    <string name="filter_mode_whitelist">Show when words are contained</string>
    <string name="filter_mode_blacklist">Block when words are contained</string>
    <string name="filter_submode_at_least_one">At least one of the words</string>
    <string name="filter_submode_all">All of the words</string>
    <string name="toast_notification_filter_words_empty_hint">Please enter at least one word</string>
    <string name="filter_mode">Filter Mode</string>
    <string name="mode_configuration">Mode Configuration</string>
    <string name="save_configuration">Save Configuration</string>
    <!-- App Widgets-->
    <string name="appwidget_not_connected">Not connected, alarm not set.</string>
    <string name="widget_settings_select_device_title">Select device</string>
    <string name="appwidget_text">Zzz</string>
    <string name="add_widget">Add widget</string>
    <string name="appwidget_setting_alarm">Setting alarm for %1$02d:%2$02d</string>
    <string name="appwidget_sleep_alarm_widget_label">Sleep Alarm</string>
    <string name="widget_listing_label">Status and Alarms</string>
    <string name="widget_set_alarm_after">Set alarm after:</string>
    <string name="widget_5_minutes">5 minutes</string>
    <string name="widget_10_minutes">10 minutes</string>
    <string name="widget_20_minutes">20 minutes</string>
    <string name="widget_1_hour">1 hour</string>
    <string name="quick_alarm">Quick alarm</string>
    <string name="quick_alarm_description">Alarm from widget</string>
    <string name="icon_placeholder" translatable="false">Icon</string>
    <string name="watch_not_connected">Watch not connected</string>
    <string name="qhybrid_vibration_strength">vibration strength:</string>
    <string name="qhybrid_goal_in_steps">Goal in steps</string>
    <string name="qhybrid_time_shift">time shift</string>
    <string name="qhybrid_second_timezone_offset_relative_to_utc">second timezone offset relative to UTC</string>
    <string name="qhybrid_overwrite_buttons">overwrite buttons</string>
    <string name="qhybrid_use_activity_hand_as_notification_counter">use activity hand as notification counter</string>
    <string name="qhybrid_prompt_million_steps">Please set the step count to a million to activate that.</string>
    <string name="qhybrid_buttons_overwrite_success">Buttons overwritten</string>
    <string name="qhybrid_buttons_overwrite_error">Error overwriting buttons</string>
    <string name="qhybrid_offset_timezone">offset timezone by</string>
    <string name="qhybrid_changes_delay_prompt">change might take some seconds…</string>
    <string name="qhybrid_offset_time_by">offset time by</string>
    <string name="hr_widget_heart_rate">Heart rate</string>
    <string name="hr_widget_steps">Steps</string>
    <string name="hr_widget_date">Date</string>
    <string name="hr_widget_active_minutes">Active minutes</string>
    <string name="hr_widget_calories">Calories</string>
    <string name="hr_widget_battery">Battery</string>
    <string name="hr_widget_weather">Weather</string>
    <string name="hr_widget_nothing">Nothing</string>
    <string name="hr_appname_wellness">Wellness</string>
    <string name="hr_appname_workout">Workout</string>
    <string name="hr_appname_stopwatch">Stopwatch</string>
    <string name="hr_appname_commute">Commute</string>
    <string name="pref_title_upper_button_long_press_action">Upper Button long press action</string>
    <string name="pref_title_lower_button_short_press_action">Lower Button short press action</string>
    <string name="pref_title_upper_button_function_short">Upper Button short</string>
    <string name="pref_title_middle_button_function_short">Middle Button short</string>
    <string name="pref_title_lower_button_function_short">Lower Button short</string>
    <string name="pref_title_upper_button_function_long">Upper Button long</string>
    <string name="pref_title_middle_button_function_long">Middle Button long</string>
    <string name="pref_title_lower_button_function_long">Lower Button long</string>
    <string name="pref_title_upper_button_function_double">Upper Button double</string>
    <string name="pref_title_middle_button_function_double">Middle Button double</string>
    <string name="pref_title_lower_button_function_double">Lower Button double</string>
    <string name="prefs_button_single_press_action_selection_title">Event 1 action</string>
    <string name="prefs_button_double_press_action_selection_title">Event 2 action</string>
    <string name="prefs_button_triple_press_action_selection_title">Event 3 action</string>
    <string name="prefs_button_variable_actions">Detailed button press settings</string>
    <string name="prefs_button_long_press_action_selection_title">Long press button action</string>
    <string name="error_no_location_access">Location access must be granted and enabled for scanning to work properly</string>
    <string name="error_no_bluetooth_scan">Bluetooth scan access must be granted and enabled for scanning to work properly</string>
    <string name="error_no_bluetooth_connect">Bluetooth connection access must be granted and enabled for scanning to work properly</string>
    <string name="pref_qhybrid_title_widget_draw_circles">Draw widget circles</string>
    <string name="pref_qhybrid_save_raw_activity_files">Save raw activity files</string>
    <string name="hr_widget_last_notification">Last notification</string>
    <string name="homepage_url" translatable="false">Homepage: <a href="https://gadgetbridge.org/">https://gadgetbridge.org/</a></string>
    <string name="codeberg_url" translatable="false">Code: <a href="https://codeberg.org/Freeyourgadget/Gadgetbridge">https://codeberg.org/Freeyourgadget/Gadgetbridge</a></string>
    <string name="fdroid_url" translatable="false">F-Droid: <a href="https://f-droid.org/packages/nodomain.freeyourgadget.gadgetbridge/">https://f-droid.org/packages/nodomain.freeyourgadget.gadgetbridge/</a></string>
    <string name="about_title">About</string>
    <string name="about_version">Version %s</string>
    <string name="about_hash">Commit %s</string>
    <string name="gpx_receiver_activity_title">GPX Receiver Gadgetbridge</string>
    <string name="text_receiver_activity_title">Send text to device</string>
    <string name="gpx_receiver_files_received">GPX file(s) received:</string>
    <string name="gpx_receiver_overwrite_some_files">Some file(s) already exist. Overwrite?</string>
    <string name="about_core_team_title">Core Team (in order of first code contribution)</string>
    <string name="about_contributors">Contributors</string>
    <string name="about_core_team_members" translatable="false">Andreas Shimokawa\nCarsten Pfeiffer\nDaniele Gobbetti</string>
    <string name="about_additional_device_support">Additional device support</string>
    <string name="about_additional_contributors" translatable="false">João Paulo Barraca (HPlus)\nVitaly Svyastyn (NO.1 F1)\nSami Alaoui (Teclast H30)\n“ladbsoft” (XWatch)\nSebastian Kranz (ZeTime)\nVadim Kaushan (ID115)\n“maxirnilian” (Lenovo Watch 9)\n“ksiwczynski”, “mkusnierz”, “mamutcho” (Lenovo Watch X Plus)\nAndreas Böhler (Casio GB-6900B, Casio GB-5600B, Casio GBX-100)\nJean-François Greffier (Mi Scale 2)\nJohannes Schmitt (BFH-16)\nLukas Schwichtenberg (Makibes HR3)\nDaniel Dakhno (Fossil Q Hybrid, Fossil Hybrid HR)\nGordon Williams (Bangle.js)\nPavel Elagin (JYou Y5)\nTaavi Eomäe (iTag)\nJohannes Krude(Casio GW-B5600)</string>
    <string name="about_additional_contributions">Many thanks to all unlisted contributors for contributing code, translations, support, ideas, motivation, bug reports, money… ✊</string>
    <string name="about_links">Links</string>
    <string name="permission_request">%1$s allows you to send messages and other data from Android to your device. To do this it requires permission to access that data and without it, it might not function properly.\n\nYou\'ll now be presented with a few Android dialogs requesting those permissions.\n\nPlease tap \'%2$s\' to continue.</string>
    <string name="permission_granting_mandatory">All these permissions are required and instability might occur if not granted</string>
    <string name="permission_notification_listener">%1$s needs access to Notifications in order to display them on your watch when your phone\'s screen is off.\n\nPlease tap \'%2$s\' then \'%1$s\' and enable \'Allow Notification Access\', then tap \'Back\' to return to %1$s.</string>
    <string name="permission_notification_policy_access">%1$s needs access to Do Not Disturb settings in order to honour them on your watch when your phone\'s screen is off.\n\nPlease tap \'%2$s\' then \'%1$s\' and enable \'Allow Do Not Disturb\', then tap \'Back\' to return to %1$s.</string>
    <string name="permission_location">%1$s needs access to your location in the background to allow it to stay connected to your watch even when your screen is off.\n\nPlease choose \'%2$s\' in the following screen, then tap \'Back\' to return to %1$s.</string>
    <string name="permission_display_over_other_apps">%1$s needs permission to display over other apps in order to let Bangle.js watches start activities via intents when %1$s is in the background.\n\nThis can be used to start a music app and play a song, and many other things.\n\nPlease tap \'%2$s\' then \'%1$s\' and enable \'Allow display over other apps\', then tap \'Back\' to return to %1$s.\n\nTo stop %1$s asking for permissions go to \'Settings\' and uncheck \'Check permission status\'.\n\nMake sure to grant %1$s the permissions needed to function as you expect.</string>
    <string name="error_version_check_extreme_caution">CAUTION: Error when checking version information! You should not continue! Saw version name \"%s\"</string>
    <string name="require_location_provider">Location must be enabled</string>
    <string name="companiondevice_pairing">CompanionDevice Pairing</string>
 
    <string name="error_background_service">Failed to start background service</string>
    <string name="error_background_service_reason_truncated">Starting the background service failed because…</string>
    <string name="pref_crash_notification_title">Notify on crash</string>
    <string name="pref_crash_notification_summary">When the app crashes, display a notification with the error</string>
    <string name="app_crash_notification_title">%1s has crashed</string>
    <string name="app_crash_share_stacktrace">Share error</string>
    <string name="device_is_currently_bonded">ALREADY BONDED</string>
    <string name="device_requires_key">KEY REQUIRED, LONG PRESS TO ENTER</string>
    <string name="device_unsupported">UNSUPPORTED</string>
    <string name="device_experimental">EXPERIMENTAL</string>
    <string name="error_background_service_reason">Starting the background service failed because of an exception - click here for more information.\n\nError:</string>
    <string name="pref_check_permission_status">Check permission status</string>
    <string name="pref_check_permission_status_summary">Check and ask for missing permissions even when they might not be instantly needed. Disable this only if your devices actually doesn\'t support any of these features. Not granting a permission might cause issues!</string>
    <string name="pref_show_changelog">Show changelog on startup</string>
    <string name="pref_show_changelog_summary">Display the changelog since last version after Gadgetbridge is updated</string>
    <string name="error_exporting_device_preferences">Error exporting device specific preferences</string>
    <string name="error_setting_alias">Error setting alias: </string>
    <string name="error_retrieving_devices_database">Error retrieving devices from database</string>
    <string name="discover_unsupported_devices">Discover unsupported devices</string>
    <string name="discover_unsupported_devices_description">Enabling this option will display all discovered bluetooth devices when scanning. Short tap will copy device name and mac address to clipboard. Long press will launch `Add test device` dialog. Can cause potential app freezing issues.</string>
    <string name="error_location_enabled_mandatory">Location must be turned on to scan for devices</string>
    <string name="sonyswr12_settings_title">Sony SWR12 Settings</string>
    <string name="sonyswr12_settings_low_vibration">Low vibration enabled</string>
    <string name="sonyswr12_settings_low_vibration_summary">Enable low intensity of vibration on wristband</string>
    <string name="sonyswr12_settings_stamina">Power saving mode on</string>
    <string name="sonyswr12_settings_stamina_summary">Power saving mode turns off periodic auto measuring of heart rate thus increases working time</string>
    <string name="sonyswr12_settings_alarm_interval">Smart alarm interval in minutes</string>
    <string name="sonyswr12_settings_alarm_interval_summary">Smart alarm interval is interval before of installed alarm. In this interval device is trying to detect lightest phase of sleep to awake user</string>
    <!-- activity summary labels-->
    <string name="distanceMeters">Distance</string>
    <string name="ascentMeters">Uphill</string>
    <string name="descentMeters">Downhill</string>
    <string name="ascentDistance">Uphill distance</string>
    <string name="descentDistance">Downhill distance</string>
    <string name="flatDistance">Flat distance</string>
    <string name="elevationGain">Elevation gain</string>
    <string name="elevationLoss">Elevation loss</string>
    <string name="maxAltitude">Maximum</string>
    <string name="minAltitude">Minimum</string>
    <string name="averageAltitude">Average</string>
    <string name="steps">Steps</string>
    <string name="steps_avg">Steps AVG</string>
    <string name="steps_total">Steps Total</string>
    <string name="distance_avg">Distance AVG</string>
    <string name="distance_total">Distance Total</string>
    <string name="activeSeconds">Active</string>
    <string name="caloriesBurnt">Calories</string>
    <string name="maxSpeed">Maximum</string>
    <string name="minSpeed">Minimum</string>
    <string name="minPace">Slowest Pace</string>
    <string name="maxPace">Fastest Pace</string>
    <string name="totalStride">Total stride</string>
    <string name="averageHR">Heartrate</string>
    <string name="maxHR">Max Heartrate</string>
    <string name="minHR">Min Heartrate</string>
    <string name="averageKMPaceSeconds">Pace</string>
    <string name="HeartRateZones">Heart Rate Zones</string>
    <string name="hrZoneNa">N/A</string>
    <string name="hrZoneWarmUp">Warm-Up</string>
    <string name="hrZoneFatBurn">Fat Burn</string>
    <string name="hrZoneEasy">Easy</string>
    <string name="hrZoneAerobic">Aerobic</string>
    <string name="hrZoneAnaerobic">Anaerobic</string>
    <string name="hrZoneThreshold">Threshold</string>
    <string name="hrZoneExtreme">Extreme</string>
    <string name="hrZoneMaximum">Maximum</string>
    <string name="average_respiration_rate">Respiration Rate</string>
    <string name="max_respiration_rate">Max Respiration Rate</string>
    <string name="min_respiration_rate">Min Respiration Rate</string>
    <string name="hrv_sdrr">HRV SDRR</string>
    <string name="hrv_rmssd">HRV RMSSD</string>
    <string name="breaths_per_min">breaths/min</string>
    <string name="TrainingEffect">Training Effect</string>
    <string name="aerobicTrainingEffect">Aerobic Effect</string>
    <string name="anaerobicTrainingEffect">Anaerobic Effect</string>
    <string name="currentWorkoutLoad">Workout Load</string>
    <string name="maximumOxygenUptake">Maximum Oxygen Uptake</string>
    <string name="estimatedSweatLoss">Estimated Sweat Loss</string>
    <string name="lactateThresholdHeartRate">Lactate Threshold Heart Rate</string>
    <string name="recoveryTime">Recovery Time</string>
    <string name="averageStride">Average Stride</string>
    <string name="maxStride">Max Stride</string>
    <string name="minStride">Min Stride</string>
    <string name="averageCadence">Average Cadence</string>
    <string name="maxCadence">Max Cadence</string>
    <string name="minCadence">Min Cadence</string>
    <string name="averageStrokeDistance">Average Stroke Distance</string>
    <string name="averageStrokesPerSecond">Average Strokes</string>
    <string name="avgStrokeRate">Average Stroke Rate</string>
    <string name="maxStrokeRate">Max Stroke Rate</string>
    <string name="strokes">Total Strokes</string>
    <string name="avgJumpRate">Average Jump Rate</string>
    <string name="maxJumpRate">Max Jump Rate</string>
    <string name="totalJumps">Total Jumps</string>
    <string name="averageLapPace">Average Lap Pace</string>
    <string name="swolfIndex">SWOLF</string>
    <string name="swolfAvg">Average swolf</string>
    <string name="swolfMax">Maximum swolf</string>
    <string name="swolfMin">Minimum swolf</string>
    <string name="swimStyle">Swim Style</string>
    <string name="laneLength">Lane Length</string>
    <string name="laps">Laps</string>
    <string name="ascentSeconds">Ascending</string>
    <string name="descentSeconds">Descending</string>
    <string name="flatSeconds">Flat</string>
    <string name="baseAltitude">Base Elevation</string>
    <string name="averageSpeed">Average Speed</string>
    <string name="stepRateSum">Sum of step rate</string>
    <string name="stepRateAvg">Average step rate</string>
    <string name="stepRateMax">Max step rate</string>
    <string name="stepLengthAvg">Average Step Length</string>
    <string name="groundContactTimeAvg">Average ground contact time</string>
    <string name="impactAvg">Average impact</string>
    <string name="impactMax">Maximum impact</string>
    <string name="swingAngleAvg">Average swing angle</string>
    <string name="foreFootLandings">Fore foot landings</string>
    <string name="midFootLandings">Mid foot landings</string>
    <string name="backFootLandings">Back foot landings</string>
    <string name="eversionAngleAvg">Average eversion angle</string>
    <string name="eversionAngleMax">Max eversion angle</string>
    <string name="fmtPaceDistance">Pace %d distance</string>
    <string name="fmtPaceType">Pace %d type</string>
    <string name="fmtPacePace">Pace %d pace</string>
    <string name="fmtPaceCorrection">Pace %d correction</string>
    <string name="paceCorrection">Correction</string>
    <string name="fmtPaceTypeAverage">Pace Type %d average</string>
    <string name="fmtPaceAverage">Pace average</string>
    <string name="unknownDataEncountered">Unknown data encountered</string>
    <string name="cyclingPowerAverage">Average cycling power</string>
    <string name="cyclingPowerMin">Min cycling power</string>
    <string name="cyclingPowerMax">Max cycling power</string>
    <string name="workoutSets">Sets</string>
    <string name="workout_set_i">Set %1d</string>
    <string name="workout_set_reps">Repetitions</string>
    <string name="workout_set_repetitions">%1d x</string>
    <string name="workout_set_repetitions_weight_kg">%1d x %2$.2f kg</string>
    <string name="workout_set_repetitions_weight_lbs">%1d x %2$.2f lbs</string>
    <!-- activity summary units-->
    <string name="meters">m</string>
    <string name="cm">cm</string>
    <string name="yard">yard</string>
    <string name="ft">ft</string>
    <string name="steps_unit">steps</string>
    <string name="meters_second">m/s</string>
    <string name="km_h">km/h</string>
    <string name="mi_h">mi/h</string>
    <string name="minutes_mi">min/mi</string>
    <string name="strokes_second">str/s</string>
    <string name="strokes_minute">str/min</string>
    <string name="strokes_unit">str</string>
    <string name="jumps_minute">jumps/min</string>
    <string name="jumps_unit">jumps</string>
    <string name="seconds">sec</string>
    <string name="milliseconds">milliseconds</string>
    <string name="milliseconds_ms">ms</string>
    <string name="swolf_index">swolf index</string>
    <string name="swim_style">swim style</string>
    <string name="laps_unit">laps</string>
    <string name="calories_unit">kcal</string>
    <string name="seconds_km">sec/km</string>
    <string name="seconds_m">sec/m</string>
    <string name="minutes_km">min/km</string>
    <string name="spm">steps/min</string>
    <string name="bpm">bpm</string>
    <string name="km">km</string>
    <string name="mi">mi</string>
    <string name="degrees">degrees</string>
    <string name="Pace">Pace</string>
    <!-- activity summary groups-->
    <string name="Strokes">Strokes</string>
    <string name="Jumps">Jumps</string>
    <string name="Swimming">Swimming</string>
    <string name="Distance">Distance</string>
    <string name="Elevation">Elevation</string>
    <string name="Speed">Speed</string>
    <string name="Activity">Activity</string>
    <string name="Steps">Steps</string>
    <string name="RunningForm">Running Form</string>
    <!-- Sports Activity Detail -->
    <string name="activity_detail_start_label">Start</string>
    <string name="activity_detail_end_label">End</string>
    <string name="activity_detail_duration_label">Duration</string>
    <string name="activity_detail_show_gps_label">Show GPS Track</string>
    <string name="activity_detail_share_gps_label">Share GPS Track</string>
    <string name="activity_detail_share_raw_summary">Share Raw Summary</string>
    <string name="activity_detail_share_raw_details">Share Raw Details</string>
    <string name="activity_detail_share_json_details">Share JSON Details</string>
    <string name="gps_track">GPS track</string>
    <string name="dev_tools">Dev Tools</string>
    <!-- Device Actions Preferences -->
    <string name="prefs_events_forwarding_summary">Use device events to trigger actions and Android broadcasts</string>
    <string name="prefs_events_forwarding_title">Device actions</string>
    <string name="prefs_events_forwarding_fellsleep">On Fall Asleep</string>
    <string name="prefs_events_forwarding_fellsleep_broadcast_default_value" translatable="false">nodomain.freeyourgadget.gadgetbridge.FellAsleep</string>
    <string name="prefs_events_forwarding_wokeup">On Wake Up</string>
    <string name="prefs_events_forwarding_wokeup_broadcast_default_value" translatable="false">nodomain.freeyourgadget.gadgetbridge.WokeUp</string>
    <string name="prefs_events_forwarding_startnonwear">On Not Wearing</string>
    <string name="prefs_events_forwarding_startnonwear_broadcast_default_value" translatable="false">nodomain.freeyourgadget.gadgetbridge.StartNonWear</string>
    <string name="prefs_events_forwarding_broadcast_title">Broadcast message</string>
    <string name="prefs_events_forwarding_action_title">Run action</string>
    <string name="pref_header_filter">Sports Activities Filter</string>
    <string name="pref_header_statistics">Sports Activities Statistics</string>
    <string name="activity_filter_date_from">From</string>
    <string name="activity_filter_date_to">To</string>
    <string name="activity_filter_reset_filter">Reset Filter</string>
    <string name="activity_filter_filter_title">Filter</string>
    <string name="activity_filter_name_contains">Label</string>
    <string name="activity_filter_apply_filter">Apply Filter</string>
    <string name="addto_filter">Add to filter</string>
    <string name="activity_filter_individual_items">Individually selected items</string>
    <string name="yes">Yes</string>
    <string name="no">No</string>
    <string name="activity_summaries_statistics">Statistics</string>
    <string name="activity_summaries_all_activities">All Activities</string>
    <string name="sports_activity_quick_filter_this_week">This week</string>
    <string name="sports_activity_quick_filter_last_week">Previous week</string>
    <string name="sports_activity_quick_filter_this_month">This month</string>
    <string name="sports_activity_quick_filter_last_month">Previous month</string>
    <string name="sports_activity_quick_filter_7days">7 days</string>
    <string name="sports_activity_quick_filter_30days">30 days</string>
    <string name="sports_activity_quick_filter_select">Time period</string>
    <string name="sports_activity_confirm_delete_title">Delete %d activities</string>
    <string name="sports_activity_confirm_delete_description">Are you sure you want to delete %d activities?</string>
    <string name="activity_summaries_all_devices">All devices</string>
    <string name="activity_filter_from_placeholder">distant past</string>
    <string name="activity_filter_to_placeholder">today</string>
    <!-- swim styles -->
    <string name="breaststroke">Breaststroke</string>
    <string name="freestyle">Freestyle</string>
    <string name="backstroke">Backstroke</string>
    <string name="medley">Medley</string>
    <string name="devicetype_nut_mini">Nut mini</string>
    <string name="qhybrid_calibration_align_hint">Use the buttons below to align the watch hands to 12:00.</string>
    <string name="lorem_ipsum" translatable="false">Lorem Ipsum</string>
    <plurals name="widget_alarm_target_hours">
        <item quantity="one">%d hour</item>
        <item quantity="two">%d hours</item>
        <item quantity="few">%d hours</item>
        <item quantity="many">%d hours</item>
        <item quantity="other">%d hours</item>
    </plurals>
    <string name="prefs_autolight">Automatic light</string>
    <string name="prefs_light_duration_longer">Longer light duration</string>
    <string name="prefs_key_vibration">Key Vibration</string>
    <string name="prefs_operating_sounds">Operating Sounds</string>
    <string name="prefs_fake_ring_duration">Fake continuous ringing</string>
    <string name="prefs_autoremove_message">Automatically remove SMS notifications</string>
    <string name="fossil_hr_commute_processing">Processing request…</string>
    <string name="fossil_hr_synced_activity_data">Synchronised activity data</string>
    <string name="fossil_hr_unavailable_unauthed">Not available in unauthenticated mode</string>
    <string name="fossil_hr_auth_failed">Authentication failed, limited functionality</string>
    <string name="qhybrid_title_watchface">Watchface configuration</string>
    <string name="qhybrid_title_apps">Apps</string>
    <string name="qhybrid_title_background_image">Background image</string>
    <string name="qhybrid_title_file_management">File management</string>
    <string name="qhybrid_title_apps_management">Apps management</string>
    <string name="qhybrid_title_calibration">Calibration</string>
    <string name="fossil_hr_warning_firmware_too_new">Some functions are disabled because the firmware of the watch is too new</string>
    <string name="pref_title_physical_buttons">Physical buttons</string>
    <string name="pref_summary_physical_buttons">Configure the functionality of the physical buttons on the watch</string>
    <string name="qhybrid_summary_file_management">Upload and download files</string>
    <string name="qhybrid_summary_calibration">Calibrate the watch hands</string>
    <string name="pref_summary_canned_messages_set">Send the messages configured below to your device</string>
    <string name="pref_summary_canned_messages_dismisscall">Dismiss calls from the watch with an SMS message</string>
    <string name="fossil_hr_commute_actions_explanation">The actions configured here will appear in the Commute app on your watch. Read the wiki for information on how to handle the intents produced by these actions.</string>
    <string name="fossil_hr_edit_action_delete">delete</string>
    <string name="fossil_hr_edit_action">Edit action</string>
    <string name="fossil_hr_new_action_cancel">cancel</string>
    <string name="fossil_hr_new_action">New action</string>
    <string name="qhybrid_calibration_counterclockwise">Counterclockwise</string>
    <string name="qhybrid_calibration_clockwise">Clockwise</string>
    <string name="qhybrid_calibration_1_step">1 step</string>
    <string name="qhybrid_calibration_10_steps">10 steps</string>
    <string name="qhybrid_calibration_100_steps">100 steps</string>
    <string name="qhybrid_watchface_configuration_old_firmware">Watchface configuration screen for watches with firmware version DN1.0.2.19r and lower</string>
    <string name="qhybrid_pref_title_actions">Actions</string>
    <string name="qhybrid_pref_summary_actions">Actions for the Commute app</string>
    <string name="pref_title_developer_settings">Developer settings</string>
    <string name="pref_summary_developer_settings">Settings and functionality used by developers</string>
    <string name="qhybrid_pref_title_external_intents">Allow dangerous external intents</string>
    <string name="qhybrid_pref_summary_external_intents">Allows other Android apps to upload/overwrite files</string>
    <string name="devicetype_amazfit_trex_pro">Amazfit T-Rex Pro</string>
    <string name="button_watchface_edit_name">Edit name</string>
    <string name="button_watchface_select_image">Change background image</string>
    <string name="button_watchface_add_widget">Add widget</string>
    <string name="button_watchface_settings">Watchface settings</string>
    <string name="watchface_dialog_title_set_name">Set watchface name</string>
    <string name="watchface_widget_type_date">Date</string>
    <string name="watchface_widget_type_weather">Weather</string>
    <string name="watchface_widget_type_steps">Steps</string>
    <string name="watchface_widget_type_heart_rate">Heart rate</string>
    <string name="button_watchface_preview">Preview on watch</string>
    <string name="button_watchface_save_apply">Save and apply</string>
    <string name="appmanager_app_edit">Edit</string>
    <string name="watchface_dialog_widget_cat_generic">Generic</string>
    <string name="watchface_dialog_widget_cat_position">Position</string>
    <string name="watchface_dialog_widget_cat_2nd_tz_widget">2nd timezone widget</string>
    <string name="watchface_dialog_widget_cat_custom_widget">Custom widget</string>
    <string name="watchface_dialog_widget_type">Type</string>
    <string name="watchface_dialog_widget_x_coordinate">X coordinate (max 240)</string>
    <string name="watchface_dialog_widget_y_coordinate">Y coordinate (max 240)</string>
    <string name="watchface_dialog_widget_presets">Position presets</string>
    <string name="watchface_dialog_widget_preset_top">Top</string>
    <string name="watchface_dialog_widget_preset_bottom">Bottom</string>
    <string name="watchface_dialog_widget_preset_left">Left</string>
    <string name="watchface_dialog_widget_preset_right">Right</string>
    <string name="qhybrid_title_watchface_designer">Watchface designer</string>
    <string name="watchface_dialog_widget_color">Color</string>
    <string name="watchface_dialog_widget_color_white">White</string>
    <string name="watchface_dialog_widget_color_black">Black</string>
    <string name="watchface_dialog_title_settings">Watchface settings</string>
    <string name="watchface_dialog_title_widget">Widget settings</string>
    <string name="watchface_dialog_widget_width">Widget width (in pixels)</string>
    <string name="watchface_setting_title_display_refresh_timeout">Display refresh timeout</string>
    <string name="watchface_setting_display_refresh_full">Full refresh (in minutes)</string>
    <string name="watchface_setting_display_refresh_partial">Partial refresh (in minutes)</string>
    <string name="watchface_setting_title_wrist_flick">Wrist flick</string>
    <string name="watchface_setting_desc_wrist_flick">(to disable completely, enable relative movement and set all values to 0)</string>
    <string name="watchface_setting_wrist_flick_move_relative">Move hands relative to time</string>
    <string name="watchface_setting_wrist_flick_hour">Hour hand (-360 to 360)</string>
    <string name="watchface_setting_wrist_flick_minute">Minute hand (-360 to 360)</string>
    <string name="watchface_setting_wrist_flick_duration">Duration (in ms)</string>
    <string name="watchface_setting_title_custom_events">Custom events</string>
    <string name="watchface_setting_button_toggle_widgets">Toggle widgets</string>
    <string name="watchface_setting_button_toggle_backlight">Turn backlight on</string>
    <string name="watchface_setting_button_move_hands">Move hands</string>
    <string name="watchface_cache_confirm_overwrite">A watchface with this name already exists in the cache. Do you want to overwrite it?</string>
    <string name="watchface_upload_failed">Upload of the watchface failed. Please try again.</string>
    <string name="watchface_widget_type_battery">Battery</string>
    <string name="watchface_widget_type_calories">Calories</string>
    <string name="watchface_widget_type_2nd_tz">2nd time zone</string>
    <string name="watchface_widget_type_active_mins">Active minutes</string>
    <string name="watchface_widget_type_chance_rain">Chance of rain</string>
    <string name="watchface_widget_type_uv_index">UV index</string>
    <string name="watchface_widget_type_sp02">SpO2</string>
    <string name="watchface_setting_title_power_saving">Power saving</string>
    <string name="watchface_setting_power_saving_display">Disable display updates while off wrist</string>
    <string name="watchface_setting_power_saving_hands">Disable hands movement while off wrist</string>
    <string name="watchface_dialog_widget_background">Background</string>
    <string name="hybridhr_widget_bg_thin_circle">Thin circle</string>
    <string name="hybridhr_widget_bg_double_circle">Double circle</string>
    <string name="hybridhr_widget_bg_dashed_circle">Dashed circle</string>
    <string name="prefs_sleep_time">Sleep times</string>
    <string name="prefs_sleep_time_label">Define sleep hours</string>
    <string name="prefs_sleep_time_summary">Specifies times when sleep is registered</string>
    <string name="prefs_vibration_enable">Enable vibrations</string>
    <string name="prefs_notifications_enable">Enable notifications</string>
    <string name="enable_vibrations_summary">Vibrations for calls, messages, notifications and more</string>
    <string name="enable_notifications_summary">Notifications for calls, messages and more</string>
    <string name="prefs_autoheartrate">Automatic Heart Rate</string>
    <string name="prefs_autoheartrate_summary">Periodical Heart Rate measurements during the day and also while asleep</string>
    <string name="prefs_autoheartrate_measurement">Automatic Heart Rate measurements</string>
    <string name="prefs_autoheartrate_sleep">Take measurements during sleep</string>
    <string name="prefs_autoheartrate_interval">Frequency of measurements</string>
    <string name="devicetype_nothingear1">Nothing Ear (1)</string>
    <string name="devicetype_nothingear2">Nothing Ear (2)</string>
    <string name="devicetype_nothingearstick">Nothing Ear (Stick)</string>
    <string name="devicetype_nothing_cmf_buds_pro_2">CMF Buds Pro 2</string>
    <string name="devicetype_nothing_cmf_watch_pro">CMF Watch Pro</string>
    <string name="devicetype_nothing_cmf_watch_pro_2">CMF Watch Pro 2</string>
    <string name="devicetype_oppo_enco_air">Oppo Enco Air</string>
    <string name="devicetype_oppo_enco_air2">Oppo Enco Air2</string>
    <string name="devicetype_realme_buds_t110">Realme Buds T110</string>
    <string name="devicetype_galaxybuds">Galaxy Buds</string>
    <string name="devicetype_galaxybuds_live">Galaxy Buds Live</string>
    <string name="devicetype_galaxybuds_pro">Galaxy Buds Pro</string>
    <string name="devicetype_galaxybuds_2">Galaxy Buds2</string>
    <string name="devicetype_galaxybuds_2_pro">Galaxy Buds2 Pro</string>
    <string name="nothing_prefs_inear_summary">Play/pause the music depending if you wear the earbuds</string>
    <string name="nothing_prefs_inear_title">In-Ear detection</string>
    <string name="prefs_in_ear_detection_summary">Play calls through your earbuds when they are in your ears</string>
    <string name="nothing_prefs_audiomode_title">Audio mode</string>
    <string name="prefs_equalizer_preset">Equalizer Preset</string>
    <string name="pref_title_equalizer_normal">Normal</string>
    <string name="pref_title_equalizer_bass_boost">Bass boost</string>
    <string name="pref_title_equalizer_soft">Soft</string>
    <string name="pref_title_equalizer_dynamic">Dynamic</string>
    <string name="pref_title_equalizer_clear">Clear</string>
    <string name="pref_title_equalizer_trebble">Treble boost</string>
    <string name="prefs_dolby_mode">Dolby Mode</string>
    <string name="prefs_equalizer">Equalizer</string>
    <string name="prefs_equalizer_summary">Enable or disable equalizer</string>
    <string name="prefs_dolby_summary">Dolby preset for equalizer</string>
    <string name="prefs_game_mode">Game mode</string>
    <string name="prefs_game_mode_summary">Only if your phone supports game mode</string>
    <string name="prefs_touch_lock">Touch Lock</string>
    <string name="prefs_touch_lock_buds2">Touch controls</string>
    <string name="prefs_touch_lock_summary">Disable touch events</string>
    <string name="prefs_galaxy_buds_experimental">Experimental</string>
    <string name="prefs_seamless_connection_switch_title">Seamless connection switch</string>
    <string name="prefs_seamless_connection_switch_summary">Switches the buds between paired devices automatically</string>
    <string name="prefs_ambient_volume">Ambient volume</string>
    <string name="prefs_ambient_volume_left">Ambient Volume Left</string>
    <string name="prefs_ambient_volume_right">Ambient Volume Right</string>
    <string name="prefs_ambient_voice_focus">Voice Focus</string>
    <string name="prefs_ambient_voice_summary">Make voice stand out</string>
    <string name="prefs_ambient_sound">Ambient Sound</string>
    <string name="prefs_customize_ambient_sound_summary">Customize Ambient Sound</string>
    <string name="prefs_ambient_sound_during_call_title">Ambient Sound during call</string>
    <string name="prefs_ambient_sound_during_call_summary">Hear own voice clearly during calls</string>
    <string name="prefs_ambient_mode">Ambient Mode</string>
    <string name="prefs_ambient_settings_title">Ambient Sound Options</string>
    <string name="prefs_active_noise_cancelling">Active Noise Cancelling</string>
    <string name="prefs_active_noise_cancelling_light">Light Active Noise Cancelling</string>
    <string name="prefs_active_noise_cancelling_transparency">Transparency</string>
    <string name="prefs_active_noise_cancelling_level">Active Noise Cancelling Level</string>
    <string name="prefs_active_noise_cancelling_level_high">High</string>
    <string name="prefs_active_noise_cancelling_level_low">Low</string>
    <string name="prefs_active_noise_cancelling_summary">Block noises of the surroundings</string>
    <string name="prefs_pressure_relief">Pressure relief with ambient sound</string>
    <string name="pressure_relief_summary">Prevent feeling of pressure in ears when not using Active Noise Cancelling</string>
    <string name="prefs_left">Left</string>
    <string name="prefs_right">Right</string>
    <string name="prefs_switch_control_left">Switch control left</string>
    <string name="prefs_switch_control_right">Switch control right</string>
    <string name="prefs_galaxy_touch_options">Touch Options</string>
    <string name="battery_i">Battery %d</string>
    <string name="battery_case">Battery case</string>
    <string name="left_earbud">Left earbud</string>
    <string name="right_earbud">Right earbud</string>
    <string name="audio_codec">Audio Codec</string>
    <string name="pref_title_touch_voice_assistant">Voice Assistant</string>
    <string name="pref_title_touch_anc">Active Noise Cancelling</string>
    <string name="pref_title_touch_quick_ambient">Quick Ambient Sound</string>
    <string name="pref_title_touch_volume">Volume</string>
    <string name="pref_title_touch_ambient">Ambient Sound</string>
    <string name="pref_title_touch_spotify">Spotify</string>
    <string name="pref_title_touch_spotify_official_app">Spotify (official app only)</string>
    <string name="pref_title_touch_spotify_galaxy_app">Spotify (Galaxy Wearable app only)</string>
    <string name="pref_switch_noise_control">Switch Noise Control</string>
    <string name="prefs_noise_control_with_one_earbud">Noise Control with one earbud</string>
    <string name="prefs_noise_control_with_one_earbud_summary">Allow noise control when using one earbud only</string>
    <string name="pref_ambient_sound_tone">Ambient Sound Tone</string>
    <string name="pref_ambient_sound_tone_summary">From Soft to Clear</string>
    <string name="pref_balance">Balance</string>
    <string name="pref_switch_controls_anc_ambient">Noise cancelling ←→ Ambient</string>
    <string name="pref_switch_controls_anc_off">Noise cancelling ←→ Off</string>
    <string name="pref_switch_controls_ambient_off">Ambient ←→ Off</string>
    <string name="pref_switch_controls_anc_ambient_off">Noise cancelling ←→ Ambient ←→ Off</string>
    <string name="prefs_noise_control">Noise control</string>
    <string name="prefs_voice_detect">Voice detect</string>
    <string name="prefs_voice_detect_summary">Enable Ambient sound and lower playback automatically after voice has been detected</string>
    <string name="prefs_double_tap_edge">Double tap edge</string>
    <string name="prefs_double_tap_edge_summary">Detect double tap even when not tapped on touch pad</string>
    <string name="prefs_voice_detect_duration">End after quiet for:</string>
    <string name="pref_voice_detect_duration_5">5 seconds</string>
    <string name="pref_voice_detect_duration_10">10 seconds</string>
    <string name="pref_voice_detect_duration_15">15 seconds</string>
    <string name="pref_voice_passthrough_enabled">Passthrough</string>
    <string name="pref_voice_passthrough_enabled_summary">Allow external sounds to pass through to your ears</string>
    <string name="pref_voice_passthrough_level">Passthrough level</string>
    <string name="pref_header_heartrate_sleep">Sleep</string>
    <string name="pref_header_heartrate_allday">All-day monitoring</string>
    <string name="pref_header_heartrate_alerts">Heart rate alerts</string>
    <string name="pref_header_stress">Stress</string>
    <string name="pref_header_spo2">Blood Oxygen</string>
    <string name="pref_header_hrv_status">HRV Status</string>
    <string name="pref_wear_sensor_summary">Detect when the device is not being worn</string>
    <string name="pref_wear_sensor_title">Wear Sensor</string>
    <string name="body_energy">Body Energy</string>
    <string name="vo2max_running">Running VO₂ Max</string>
    <string name="vo2max_cycling">Cycling VO₂ Max</string>
    <string name="thirty_days_timeline">30 Days Timeline</string>
    <string name="pref_header_sony_ambient_sound_control">Ambient Sound Control</string>
    <string name="pref_header_sony_sound_control">Sound Control</string>
    <string name="pref_header_sony_device_info">Device Information</string>
    <string name="stress_relaxed">Relaxed</string>
    <string name="stress_mild">Mild</string>
    <string name="stress_moderate">Moderate</string>
    <string name="stress_high">High</string>
    <string name="pai_total">Total</string>
    <string name="pai_day">Day increase</string>
    <string name="weight_kg">%1$.2f kg</string>
    <string name="weight_lbs">%1$.2f lbs</string>
    <string name="target">Target</string>
    <string name="redmi_buds_5_pro_anc_balanced">Balanced</string>
    <string name="redmi_buds_5_pro_anc_light">Light</string>
    <string name="redmi_buds_5_pro_anc_deep">Deep</string>
    <string name="redmi_buds_5_pro_transparency_strength">Transparency Strength</string>
    <string name="redmi_buds_5_pro_transparency_regular">Regular</string>
    <string name="redmi_buds_5_pro_transparency_voice">Enhance Voices</string>
    <string name="redmi_buds_5_pro_transparency_ambient">Enhance Ambient Sounds</string>
    <string name="redmi_buds_5_pro_combo_anc_off">ANC / Off</string>
    <string name="redmi_buds_5_pro_combo_transparency_off">Transparency / Off</string>
    <string name="redmi_buds_5_pro_combo_anc_transparency">ANC / Transparency</string>
    <string name="redmi_buds_5_pro_combo_all">ANC / Transparency / Off</string>
    <string name="redmi_buds_5_pro_double_connection">Double Connection</string>
    <string name="redmi_buds_5_pro_double_connection_description">Allow the earbuds to connect to two devices at the same time</string>
    <!--    <string name="redmi_buds_5_pro_spatial_audio">Spatial Audio</string>-->
    <!--    <string name="redmi_buds_5_pro_spatial_audio_mode">Spatial Audio Mode</string>-->
    <string name="redmi_buds_5_pro_adaptive_sound">Adaptive Sound</string>
    <string name="redmi_buds_5_pro_adaptive_sound_description">Adjusts the sound according to the ear shape and the environment</string>
    <string name="redmi_buds_5_pro_equalizer_preset_standard">Standard</string>
    <string name="redmi_buds_5_pro_equalizer_preset_treble">Enhance Treble</string>
    <string name="redmi_buds_5_pro_equalizer_preset_bass">Enhance Bass</string>
    <string name="redmi_buds_5_pro_equalizer_preset_voice">Enhance Voice</string>
    <string name="redmi_buds_5_pro_equalizer_preset_custom">Custom</string>
    <string name="redmi_buds_5_pro_equalizer_band_62">62 Hz</string>
    <string name="redmi_buds_5_pro_equalizer_band_125">125 Hz</string>
    <string name="redmi_buds_5_pro_equalizer_band_250">250 Hz</string>
    <string name="redmi_buds_5_pro_equalizer_band_500">500 Hz</string>
    <string name="redmi_buds_5_pro_equalizer_band_1k">1 kHz</string>
    <string name="redmi_buds_5_pro_equalizer_band_2k">2 kHz</string>
    <string name="redmi_buds_5_pro_equalizer_band_4k">4 kHz</string>
    <string name="redmi_buds_5_pro_equalizer_band_8k">8 kHz</string>
    <string name="redmi_buds_5_pro_equalizer_band_12k">12 kHz</string>
    <string name="redmi_buds_5_pro_equalizer_band_16k">16 kHz</string>
    <string name="redmi_buds_5_pro_equalizer_neg6">-6 dB</string>
    <string name="redmi_buds_5_pro_equalizer_neg5">-5 dB</string>
    <string name="redmi_buds_5_pro_equalizer_neg4">-4 dB</string>
    <string name="redmi_buds_5_pro_equalizer_neg3">-3 dB</string>
    <string name="redmi_buds_5_pro_equalizer_neg2">-2 dB</string>
    <string name="redmi_buds_5_pro_equalizer_neg1">-1 dB</string>
    <string name="redmi_buds_5_pro_equalizer_zero">0 dB</string>
    <string name="redmi_buds_5_pro_equalizer_1">1 dB</string>
    <string name="redmi_buds_5_pro_equalizer_2">2 dB</string>
    <string name="redmi_buds_5_pro_equalizer_3">3 dB</string>
    <string name="redmi_buds_5_pro_equalizer_4">4 dB</string>
    <string name="redmi_buds_5_pro_equalizer_5">5 dB</string>
    <string name="redmi_buds_5_pro_equalizer_6">6 dB</string>
    <string name="sony_ambient_sound">Mode</string>
    <string name="sony_ambient_sound_off">Off</string>
    <string name="sony_ambient_sound_noise_cancelling">Noise Cancelling</string>
    <string name="sony_ambient_sound_wind_noise_reduction">Wind Noise Reduction</string>
    <string name="sony_ambient_sound_ambient_sound">Ambient Sound</string>
    <string name="sony_ambient_sound_focus_voice">Focus on Voice</string>
    <string name="sony_ambient_sound_level">Ambient Sound Level</string>
    <string name="pref_header_sony_anc_optimizer">Noise Cancelling Optimizer</string>
    <string name="sony_anc_optimize_title">Optimize</string>
    <string name="sony_anc_optimize_description">Click to start the noise cancelling optimizer.</string>
    <string name="sony_anc_optimize_confirmation_title">Noise Cancelling Optimizer</string>
    <string name="sony_anc_optimize_confirmation_description">Use the headphones as you normally would. If the wearing condition or atmospheric pressure change, run the optimizer again.</string>
    <string name="pref_anc_optimizer_state_pressure">Atmospheric pressure</string>
    <string name="sony_sound_position">Sound Position</string>
    <string name="sony_sound_position_off">Off</string>
    <string name="sony_sound_position_front">Front</string>
    <string name="sony_sound_position_front_left">Front Left</string>
    <string name="sony_sound_position_front_right">Front Right</string>
    <string name="sony_sound_position_rear_left">Rear Left</string>
    <string name="sony_sound_position_rear_right">Rear Right</string>
    <string name="sony_surround_mode">Surround Mode</string>
    <string name="sony_surround_mode_off">Off</string>
    <string name="sony_surround_mode_arena">Arena</string>
    <string name="sony_surround_mode_club">Club</string>
    <string name="sony_surround_mode_outdoor_stage">Outdoor Stage</string>
    <string name="sony_surround_mode_concert_hall">Concert Hall</string>
    <string name="sony_warn_sbc_codec">Warning: The equalizer, audio position and surround settings only work for the SBC audio codec.</string>
    <string name="sony_equalizer">Equalizer</string>
    <string name="sony_anc_optimizer_status_starting">Starting…</string>
    <string name="sony_anc_optimizer_status_not_running">Not Running</string>
    <string name="sony_anc_optimizer_status_wearing_condition">Measuring wearing condition…</string>
    <string name="sony_anc_optimizer_status_atmospheric_pressure">Measuring atmospheric pressure…</string>
    <string name="sony_anc_optimizer_status_analyzing">Analyzing…</string>
    <string name="sony_anc_optimizer_status_finished">Finishing…</string>
    <string name="sony_equalizer_preset_off">Off</string>
    <string name="sony_equalizer_preset_bright">Bright</string>
    <string name="sony_equalizer_preset_excited">Excited</string>
    <string name="sony_equalizer_preset_mellow">Mellow</string>
    <string name="sony_equalizer_preset_relaxed">Relaxed</string>
    <string name="sony_equalizer_preset_vocal">Vocal</string>
    <string name="sony_equalizer_preset_treble_boost">Treble Boost</string>
    <string name="sony_equalizer_preset_bass_boost">Bass Boost</string>
    <string name="sony_equalizer_preset_speech">Speech</string>
    <string name="sony_equalizer_preset_manual">Manual</string>
    <string name="sony_equalizer_preset_custom_1">Custom 1</string>
    <string name="sony_equalizer_preset_custom_2">Custom 2</string>
    <string name="pref_header_sony_equalizer_bands">Bands</string>
    <string name="pref_header_sony_equalizer_preset_custom_1">Custom Preset 1</string>
    <string name="pref_header_sony_equalizer_preset_custom_2">Custom Preset 2</string>
    <string name="sony_equalizer_band_400">400</string>
    <string name="sony_equalizer_band_1000">1k</string>
    <string name="sony_equalizer_band_2500">2.5k</string>
    <string name="sony_equalizer_band_6300">6.3k</string>
    <string name="sony_equalizer_band_16000">16k</string>
    <string name="sony_equalizer_clear_bass">Clear Bass</string>
    <string name="sony_audio_upsampling">Audio Upsampling</string>
    <string name="sony_touch_sensor">Touch sensor control</string>
    <string name="pref_wide_area_tap_summary">Recognize taps between cheeks and ears</string>
    <string name="pref_wide_area_tap_title">Wide area tap</string>
    <string name="pref_adaptive_volume_control_summary">Increase volume automatically when ambient sound is loud</string>
    <string name="pref_adaptive_volume_control_title">Adaptive volume control</string>
    <string name="pref_adaptive_noise_cancelling_title">Adaptive ANC</string>
    <string name="pref_adaptive_noise_cancelling_summary">Set the strength of the ANC automatically depending on the ambient sound level</string>
    <!--    <string name="pref_personalized_noise_cancelling_title">Personalized ANC</string>-->
    <!--    <string name="pref_personalized_noise_cancelling_summary">Set whether to use personalized active noise cancelling</string>-->
    <string name="sony_speak_to_chat">Speak-to-chat</string>
    <string name="sony_speak_to_chat_summary">Turn off noise cancelling automatically when you start talking.</string>
    <string name="sony_speak_to_chat_sensitivity">Voice Detection Sensitivity</string>
    <string name="sony_speak_to_chat_sensitivity_auto">Automatic</string>
    <string name="sony_speak_to_chat_sensitivity_high">High</string>
    <string name="sony_speak_to_chat_sensitivity_low">Low</string>
    <string name="sony_speak_to_chat_sensitivity_standard">Standard</string>
    <string name="sony_speak_to_chat_focus_on_voice">Focus on Voice</string>
    <string name="sony_speak_to_chat_timeout">Timeout</string>
    <string name="sony_speak_to_chat_timeout_off">Off</string>
    <string name="sony_speak_to_chat_timeout_short">Short (15s)</string>
    <string name="sony_speak_to_chat_timeout_standard">Standard (30s)</string>
    <string name="sony_speak_to_chat_timeout_long">Long (1m)</string>
    <string name="sony_connect_two_devices">Connect to 2 devices simultaneously</string>
    <string name="sony_notification_voice_guide">Notifications &amp; Voice Guide</string>
    <string name="sony_automatic_power_off">Automatic Power Off</string>
    <string name="sony_automatic_power_off_off">Do not turn off</string>
    <string name="sony_automatic_power_off_5_min">5 minutes</string>
    <string name="sony_automatic_power_off_30_min">30 minutes</string>
    <string name="sony_automatic_power_off_1_hour">1 hour</string>
    <string name="sony_automatic_power_off_3_hour">3 hours</string>
    <string name="sony_automatic_power_off_when_taken_off">When taken off</string>
    <string name="sony_pause_when_taken_off">Pause when headphones are taken off</string>
    <string name="sony_button_mode_left">Button Mode (Left)</string>
    <string name="sony_button_mode_right">Button Mode (Right)</string>
    <string name="sony_button_mode_off">Off</string>
    <string name="sony_button_mode_help_title">Button Modes - Help</string>
    <string name="sony_button_mode_help_summary">A description of each button mode</string>
    <string name="sony_button_mode_ambient_sound_control">Ambient Sound Control</string>
    <string name="sony_button_mode_playback_control">Playback Control</string>
    <string name="sony_button_mode_volume_control">Volume Control</string>
    <string name="sony_ambient_sound_control_button_modes">Ambient Sound Control Button Modes</string>
    <string name="sony_ambient_sound_control_button_mode_nc_as_off">Noise Cancelling, Ambient Sound, Off</string>
    <string name="sony_ambient_sound_control_button_mode_nc_as">Noise Cancelling, Ambient Sound</string>
    <string name="sony_ambient_sound_control_button_mode_nc_off">Noise Cancelling, Off</string>
    <string name="sony_ambient_sound_control_button_mode_as_off">Ambient Sound, Off</string>
    <string name="sony_quick_access_double_tap">Quick Access (Double Tap)</string>
    <string name="sony_quick_access_triple_tap">Quick Access (Triple Tap)</string>
    <string name="sony_protocol_v1">Version 1</string>
    <string name="sony_protocol_v2">Version 2</string>
    <string name="sony_protocol_v3">Version 3</string>
    <string name="moondrop_equalizer_preset_reference">Reference</string>
    <string name="moondrop_equalizer_preset_basshead">Basshead</string>
    <string name="moondrop_equalizer_preset_monitor">Monitor</string>
    <string name="moondrop_touch_earbud">Earbud</string>
    <string name="moondrop_touch_earbud_both">Both</string>
    <string name="moondrop_touch_trigger">Trigger</string>
    <string name="moondrop_touch_action_play_pause">Play/Pause</string>
    <string name="moondrop_touch_action_call_pick_hang">Pick/Hang Call</string>
    <string name="moondrop_touch_action_call_start">Start Call</string>
    <string name="moondrop_touch_action_assistant">Trigger Voice Assistant</string>
    <string name="moondrop_touch_action_anc_mode">Switch Active Noise Cancelling Mode</string>
    <string name="moondrop_touch_trigger_long_press_1s">Long Press (1s)</string>
    <string name="moondrop_touch_trigger_long_press_3s">Long Press (3s)</string>
    <string name="soundcore_voice_prompts">Voice Prompts</string>
    <string name="soundcore_button_brightness">Button Brightness</string>
    <string name="soundcore_button_brightness_low">Low</string>
    <string name="soundcore_button_brightness_medium">Medium</string>
    <string name="soundcore_button_brightness_high">High</string>
    <string name="soundcore_ldac_mode_title">LDAC Mode</string>
    <string name="soundcore_ldac_mode_summary">Enabling LDAC will decrease the battery life and might lead to connection instability</string>
    <string name="soundcore_adaptive_direction_title">Adaptive Direction</string>
    <string name="soundcore_adaptive_direction_summary">Adjust equalizer preset automatically based on device direction</string>
    <string name="soundcore_equalizer_preset">Preset</string>
    <string name="soundcore_equalizer_preset_signature">soundcore Signature</string>
    <string name="soundcore_equalizer_preset_xtra_bass">Xtra Bass</string>
    <string name="soundcore_equalizer_preset_voice">Voice</string>
    <string name="soundcore_equalizer_preset_balanced">Balanced</string>
    <string name="soundcore_equalizer_custom_title">Customize…</string>
    <string name="soundcore_equalizer_custom_summary">Configure parametric equalizer settings</string>
    <string name="soundcore_equalizer_direction">Device Direction</string>
    <string name="soundcore_equalizer_direction_standing">Standing</string>
    <string name="soundcore_equalizer_direction_lying">Lying</string>
    <string name="soundcore_equalizer_direction_hanging">Hanging</string>
    <string name="soundcore_equalizer_reset_title">Reset to default</string>
    <string name="soundcore_equalizer_reset_summary">Set all equalizer bands back to default settings</string>
    <string name="soundcore_equalizer_band1">Band 1</string>
    <string name="soundcore_equalizer_band2">Band 2</string>
    <string name="soundcore_equalizer_band3">Band 3</string>
    <string name="soundcore_equalizer_band4">Band 4</string>
    <string name="soundcore_equalizer_band5">Band 5</string>
    <string name="soundcore_equalizer_band6">Band 6</string>
    <string name="soundcore_equalizer_band7">Band 7</string>
    <string name="soundcore_equalizer_band8">Band 8</string>
    <string name="soundcore_equalizer_band9">Band 9</string>
    <string name="soundcore_equalizer_frequency">Frequency</string>
    <string name="soundcore_equalizer_value">Value</string>
    <string name="miscale_weight_unit_title">Weight Unit</string>
    <string name="miscale_weight_unit_summary">Set unit of weight for displayed measurements</string>
    <string name="miscale_weight_unit_metric">Metric (kg)</string>
    <string name="miscale_weight_unit_imperial">Imperial (lbs)</string>
    <string name="miscale_weight_unit_chinese">Chinese (jin)</string>
    <string name="miscale_small_objects_title">Small Objects</string>
    <string name="miscale_small_objects_summary">Store weight of objects lighter than 10 kg</string>
    <string name="mijia_lywsd_comfort_level_title">Comfort Level</string>
    <string name="mijia_lywsd_comfort_level_summary">Configure the temperature and humidity limits for the displayed emoji</string>
    <string name="mijia_lywsd_comfort_temperature_title">Temperature (°C)</string>
    <string name="mijia_lywsd_comfort_temperature_summary">Recommended range: 19 - 27</string>
    <string name="mijia_lywsd_comfort_humidity_title">Humidity (%)</string>
    <string name="mijia_lywsd_comfort_humidity_summary">Recommended range: 20 - 85</string>
    <string name="mijia_lywsd_comfort_lower">Lower Limit</string>
    <string name="mijia_lywsd_comfort_upper">Upper Limit</string>
    <string name="protocol_version">Protocol Version</string>
    <string name="pref_screen_auto_brightness_title">Auto Brightness</string>
    <string name="pref_screen_auto_brightness_summary">Adjust screen brightness according to ambient light</string>
    <string name="pref_screen_brightness">Screen Brightness</string>
    <string name="single_tap">Single Tap</string>
    <string name="double_tap">Double Tap</string>
    <string name="triple_tap">Triple Tap</string>
    <string name="long_press">Long Press</string>
    <string name="continue_pressing">Continue Pressing</string>
    <string name="quick_attention">Quick Attention</string>
    <string name="watchface_widget_type_custom">Custom widget</string>
    <string name="watchface_dialog_widget_timezone">Time zone</string>
    <string name="watchface_dialog_widget_timezone_duration">Clock visibility duration (in seconds)</string>
    <string name="watchface_dialog_widget_update_timeout">Update timeout in minutes</string>
    <string name="watchface_dialog_widget_timeout_hide_text">Hide text on timeout</string>
    <string name="watchface_dialog_widget_timeout_show_circle">Show circle on timeout</string>
    <string name="qhybrid_title_on_device_confirmation">Enable on-device pairing confirmation</string>
    <string name="qhybrid_summary_on_device_confirmation">On-device pairing confirmations can get annoying. Disabling them might lose you functionality.</string>
    <string name="devicetype_vesc">VESC</string>
    <string name="devicetype_bose_qc35">Bose QC35</string>
    <string name="devicetype_sony_wena3">Sony Wena 3</string>
    <string name="withings_steel_hr">Withings Steel HR</string>
    <string name="pref_button_action_disabled">Disabled</string>
    <string name="pref_media_play">Media Play</string>
    <string name="pref_media_pause">Media Pause</string>
    <string name="pref_media_playpause">Toggle playback</string>
    <string name="pref_media_next">Next Track</string>
    <string name="pref_media_previous">Previous Track</string>
    <string name="pref_media_volumeup">Volume Up</string>
    <string name="pref_media_volumedown">Volume Down</string>
    <string name="pref_media_forward">Skip forward</string>
    <string name="pref_media_rewind">Skip back</string>
    <string name="pref_device_action_broadcast">Send Broadcast</string>
    <string name="pref_device_action_fitness_app_control_start">Fitness App Tracking Start</string>
    <string name="pref_device_action_fitness_app_control_stop">Fitness App Tracking Stop</string>
    <string name="pref_device_action_fitness_app_control_toggle">Toggle Fitness App Tracking</string>
    <string name="pref_device_action_phone_gps_location_listener_stop">GPS Location Listener Stop</string>
    <string name="pref_device_action_dnd_off">Do not disturb - Off</string>
    <string name="pref_device_action_dnd_priority">Do not disturb - Priority only</string>
    <string name="pref_device_action_dnd_alarms">Do not disturb - Alarms only</string>
    <string name="pref_device_action_dnd_on">Do not disturb - On</string>
    <!-- Translators: the ### indicate number of digits, keep intact -->
    <string name="distance_format_meters">###m</string>
    <!-- Translators: the ### indicate number of digits, keep intact -->
    <string name="distance_format_kilometers">###.#km</string>
    <!-- Translators: the ### indicate number of digits, keep intact -->
    <string name="distance_format_miles">###.#mi</string>
    <!-- Translators: the ### indicate number of digits, keep intact -->
    <string name="distance_format_feet">###ft</string>
 
    <string name="idasen_control_button_mid">MID</string>
    <string name="idasen_control_button_sit">SIT</string>
    <string name="idasen_control_button_stand">STAND</string>
    <string name="idasen_pref_mid_height">Middle position height (in centimeters)</string>
    <string name="idasen_pref_sit_height">Sit position height (in centimeters)</string>
    <string name="idasen_pref_stand_height">Stand position height (in centimeters)</string>
    <string name="idasen_pref_value_warning">The value must be between 62 - 126 cm</string>
    <string name="prefs_workmode">Work Mode</string>
    <string name="huawei_alarm_smart_description">Do not uncheck smart wakeup checkbox.</string>
    <string name="huawei_alarm_event_description">Do not check smart wakeup checkbox.</string>
    <string name="huawei_trusleep_title">HUAWEI TruSleep &#8482;</string>
    <string name="huawei_trusleep_summary">Monitor your sleep quality and breathing pattern in real time.\nAnalyze your sleep patterns and accurately diagnose 6 types of sleeping problems.</string>
    <string name="huawei_trusleep_summary_light">Improved sleep monitoring</string>
    <string name="huawei_trusleep_warning">Warning: enabling this will make all sleep show up as light sleep in Gadgetbridge! Click here if you accept this.</string>
    <string name="prefs_activity_recognition">Activity recognition settings</string>
    <string name="pref_activity_recognize_running">recognize running</string>
    <string name="pref_activity_recognize_biking">recognize biking</string>
    <string name="pref_activity_recognize_walking">recognize walking</string>
    <string name="pref_activity_recognize_rowing">recognize rowing</string>
    <string name="pref_activity_recognition_mode_none">none</string>
    <string name="pref_activity_recognition_mode_ask">ask</string>
    <string name="pref_activity_recognition_mode_auto">auto</string>
    <string name="pref_continuous_skin_temperature_measurement_title">Continuous skin temperature measurement</string>
 
    <string name="menuitem_menu">Menu</string>
    <string name="fossil_hr_button_config_info">Some buttons cannot be configured because their functions are hard-coded in the watch firmware.\n\nWarning: long-pressing the upper button when a watchface from the official Fossil app is installed will also toggle between showing/hiding widgets.</string>
    <string name="pref_title_opentracks_packagename">OpenTracks package name</string>
    <string name="pref_summary_opentracks_packagename">Used for starting/stopping GPS track recording in external fitness app.</string>
    <string name="pref_summary_navigation_forward">Forward instructions from navigation apps to the watch</string>
    <string name="pref_title_navigation_forward">Send navigation to watch</string>
    <string name="watchface_dialog_pre_setting_position">pre-setting position to %s</string>
    <string name="watchface_setting_light_up_on_notification">Light up on new notification</string>
 
    <string name="pref_enable_call_accept">Enable accepting calls</string>
    <string name="pref_enable_call_accept_summary">Enable accepting calls from the device</string>
    <string name="pref_enable_call_reject">Enable rejecting calls</string>
    <string name="pref_enable_call_reject_summary">Enable rejecting calls from the device</string>
 
    <string name="pref_disable_find_phone_with_dnd">Disable find my phone when do not disturb is active</string>
 
    <string name="pref_heartrate_automatic_enable">Enable automatic heartrate measuring</string>
    <string name="pref_spo_automatic_enable">Enable automatic SpO2 measuring</string>
 
    <string name="pref_force_options">Force options</string>
    <string name="pref_force_options_summary">Some devices falsely claim not to have support for some options. This settings can be used to enable them anyway.\nUSE AT YOUR OWN RISK\nRead the wiki</string>
    <string name="pref_force_smart_alarm">Force smart alarm</string>
    <string name="pref_force_smart_alarm_summary">Force smart alarms support.\nUSE AT YOUR OWN RISK</string>
    <string name="pref_force_wear_location">Force wear location</string>
    <string name="pref_force_wear_location_summary">Force wear location support.\nUSE AT YOUR OWN RISK</string>
    <string name="pref_force_dnd_support">Force Do Not Disturb support</string>
    <string name="pref_force_dnd_support_summary">Force Do Not Disturb support.\nUSE AT YOUR OWN RISK</string>
    <string name="pref_force_enable_heartrate_support">Force heart rate support</string>
    <string name="pref_force_enable_heartrate_support_summary">Force enable heart rate support.\nUSE AT YOUR OWN RISK</string>
    <string name="pref_force_enable_spo2_support">Force SpO2 support</string>
    <string name="pref_force_enable_spo2_support_summary">Force enable SpO2 support.\nUSE AT YOUR OWN RISK</string>
    <string name="huawei_ignore_wakeup_status_start">Ignore wakeup start status</string>
    <string name="huawei_ignore_wakeup_status_start_description">May help with proper sleep detection. Visible immediately in the daily activities view.</string>
    <string name="huawei_ignore_wakeup_status_end">Ignore wakeup end status</string>
    <string name="huawei_ignore_wakeup_status_end_description">May help with proper sleep detection. Visible immediately in the daily activities view.</string>
    <string name="huawei_reparse_workout_data">"Reparse workout data"</string>
    <string name="huawei_reparse_workout_data_description">"This will only do something after certain updates"</string>
 
    <string name="info_no_devices_connected">No devices connected</string>
    <string name="info_connected_count">%d devices connected</string>
    <string name="controlcenter_set_parent_folder">Set parent folder</string>
    <string name="controlcenter_set_preferences">Set preferences</string>
    <string name="controlcenter_toggle_details">Toggle details</string>
    <string name="controlcenter_connected_fraction">Connected: %d/%d</string>
    <string name="error_setting_parent_folder">Error setting parent folder: %s</string>
    <string name="error_deleting_device">Error deleting device: %s</string>
    <string name="controlcenter_folder_name">Folder name:</string>
    <string name="controlcenter_add_new_folder">Add new folder</string>
    <string name="controlcenter_unset_folder">Unset folder</string>
    <string name="controlcenter_set_folder_title">Set or create new folder</string>
    <string name="auto_reconnect_ble_title">Auto reconnect to device</string>
    <string name="auto_reconnect_ble_summary">Proactively try to connect to device periodically</string>
    <string name="connection_over_ble">Connection over BLE</string>
    <string name="connection_over_bt_classic">Connection over Bluetooth classic</string>
    <string name="autoconnect_from_device_title">Connect on connection from device</string>
    <string name="autoconnect_from_device_summary">Establish a connection when connection is initiated by device, like headphones</string>
    <!-- related to steps streak view -->
    <string name="steps_streaks">Steps streaks</string>
    <string name="steps_streaks_hint">Series of consecutive days without interruption with steps goal being reached</string>
    <string name="step_streak_ongoing">Ongoing</string>
    <string name="step_streak_longest">Longest</string>
    <string name="step_streak_total">Total</string>
    <string name="steps_streaks_total_steps">Total\nsteps</string>
    <string name="steps_streaks_streak_days">Streak\nDays</string>
    <string name="steps_streaks_average_steps">Average\nsteps</string>
    <string name="steps_streaks_achievement_rate">Achievement\nrate</string>
    <string name="steps_streaks_since_date">Since %s</string>
    <string name="step_streak_average_steps_hint">Average steps per day of the streak</string>
    <string name="steps_streaks_total_steps_hint_totals">Total number of steps ever recorded</string>
    <string name="steps_streaks_total_days_hint_totals">Percentage of days with achieved goal in relation to all days with steps</string>
    <string name="step_streak_days_hint">Number of consecutive days with steps goal being reached</string>
    <string name="steps_streaks_total_steps_hint">Total number of steps in the whole streak</string>
    <string name="steps_streaks_total_steps_average_hint">Total average %d steps per day</string>
    <string name="step_streaks_achievements_sharing_message">My daily step achievements!</string>
    <string name="step_streaks_achievements_sharing_title">Steps Achievements</string>
    <string name="weekly_total">Weekly total</string>
    <string name="prefs_hourly_chime">Hourly chime</string>
    <string name="prefs_hourly_chime_summary">The watch will beep once an hour</string>
    <string name="devicetype_flipper_zero">Flipper zero</string>
    <string name="activity_prefs_allow_bluetooth_intent_api">Bluetooth Intent API</string>
    <string name="activity_prefs_summary_allow_bluetooth_intent_api">Allow controlling Bluetooth connection via Intent API</string>
    <string name="intent_api_allow_activity_sync_title">Allow activity sync trigger</string>
    <string name="intent_api_allow_activity_sync_summary">Allow triggering activity sync via Intent API</string>
    <string name="intent_api_allow_trigger_export_title">Allow database export</string>
    <string name="intent_api_allow_trigger_export_summary">Allow triggering database export via Intent API</string>
    <string name="intent_api_broadcast_export_title">Broadcast on database export</string>
    <string name="intent_api_broadcast_export_summary">Broadcast an intent when database export finishes</string>
    <string name="intent_api_broadcast_activity_sync_title">Broadcast on activity sync finish</string>
    <string name="intent_api_broadcast_activity_sync_summary">Broadcast an intent when activity sync finishes for any device</string>
    <string name="intent_api_allow_debug_commands_title">Allow Debug Commands</string>
    <string name="intent_api_allow_debug_commands_summary">Allow triggering debug menu commands via Intent API</string>
    <string name="devicetype_super_cars">Shell Racing</string>
    <string name="supercars_turbo_speed_label">Turbo Speed</string>
    <string name="supercars_lights_label">Lights</string>
    <string name="supercars_lights_blinking_label">Blinking</string>
    <string name="pref_summary_debug">Send a debug request to Huawei device</string>
    <string name="pref_title_debug">Debug request</string>
    <string name="devicetype_asteroidos">AsteroidOS</string>
    <string name="devicetype_soflow_s06">SoFlow SO6</string>
    <string name="pref_title_lock_unlock">Lock</string>
    <string name="wifi_hotspot">Wi-Fi Hotspot</string>
    <string name="wifi_hotspot_summary">Control the Wi-Fi hotspot on the watch</string>
    <string name="wifi_hotspot_configuration">Wi-Fi Hotspot Configuration</string>
    <string name="wifi_ssid">SSID</string>
    <string name="wifi_hotspot_status">Wi-Fi Hotspot Status</string>
    <string name="wifi_hotspot_start_summary">Start the Wi-Fi hotspot on the watch</string>
    <string name="wifi_hotspot_stop_summary">Stop the Wi-Fi hotspot on the watch</string>
    <string name="ftp_server">FTP Server</string>
    <string name="ftp_server_summary">Control the FTP server on the watch</string>
    <string name="ftp_server_start_summary">Start the FTP server on the watch</string>
    <string name="ftp_server_stop_summary">Stop the FTP server on the watch</string>
    <string name="ftp_server_status">FTP Server Status</string>
    <string name="ftp_server_configuration">FTP Server Configuration</string>
    <string name="ftp_server_root_dir">Root Directory</string>
    <string name="address">Address</string>
    <string name="username">Username</string>
    <string name="fossil_hr_confirm_connection">Please confirm on your watch</string>
    <string name="fossil_hr_connection_not_confirmed">Connection not confirmed on watch, using unauthenticated mode</string>
    <string name="fossil_hr_pairing_successful">Pairing with watch successful</string>
    <string name="fossil_hr_pairing_failed">Pairing with watch failed</string>
    <string name="fossil_hr_confirmation_skipped">Skipping on-device confirmation</string>
    <string name="fossil_hr_confirmation_timeout">Confirmation timeout, continuing</string>
    <string name="debug_companion_show_associated">Show associated companion devices</string>
    <string name="debug_companion_pair_current">Pair current device as companion</string>
    <string name="contact_name">Name</string>
    <string name="contact_phone_number">Phone number</string>
    <string name="contact_missing_name">Contact name is empty</string>
    <string name="contact_missing_number">Contact number is empty</string>
    <string name="voice_service_package_title">Voice service package</string>
    <string name="voice_service_package_summary">Application that contains the service handling voice commands</string>
    <string name="voice_service_class_title">Voice service class</string>
    <string name="voice_service_class_summary">Full service path handling voice commands</string>
    <string name="voice_service">Voice Service</string>
    <string name="pref_app_logs_title">App logs</string>
    <string name="pref_app_logs_summary">Enable logs from watch apps</string>
    <string name="pref_app_logs_start_summary">Start logging from watch apps</string>
    <string name="pref_app_logs_stop_summary">Stop logging from watch apps</string>
    <string name="pref_app_connection_duration">App connection duration</string>
    <string name="title">Title</string>
    <string name="description">Description</string>
    <string name="preview_image">Preview image</string>
    <string name="status_icon">Status icon</string>
    <string name="changelog_full_title">Changelog</string>
    <string name="changelog_show_full">More…</string>
    <string name="changelog_ok_button">OK</string>
    <string name="changelog_title">What\'s New</string>
    <string name="loyalty_cards_catima_package">Catima package name</string>
    <string name="loyalty_cards_install">Install Catima</string>
    <string name="loyalty_cards_sync_groups_only">Sync only specific groups</string>
    <string name="loyalty_cards_sync_groups">Groups to Sync</string>
    <string name="loyalty_cards_sync_archived">Sync archived cards</string>
    <string name="loyalty_cards_install_catima_fail">Failed to open app store to install Catima</string>
    <string name="loyalty_cards_sync_starred">Sync only starred cards</string>
    <string name="loyalty_cards_sync_title">Sync Loyalty Cards</string>
    <string name="loyalty_cards_sync_summary">Tap to sync the cards to the watch</string>
    <string name="loyalty_cards_catima_not_installed">Catima is needed to manage the loyalty cards</string>
    <string name="loyalty_cards_catima_not_compatible">The installed Catima version is not compatible with Gadgetbridge. Please update Catima and Gadgetbridge to the latest versions.</string>
    <string name="loyalty_cards_sync_options">Sync Options</string>
    <string name="loyalty_cards_sync">Sync</string>
    <string name="loyalty_cards_catima">Catima</string>
    <string name="loyalty_cards_open_catima">Open Catima</string>
    <string name="loyalty_cards_catima_permissions_title">Missing permissions</string>
    <string name="loyalty_cards_catima_permissions_summary">Gadgetbridge needs read permissions on Catima cards to sync them. Tap this button to grant them.</string>
    <string name="loyalty_cards">Loyalty Cards</string>
    <string name="loyalty_cards_syncing">Syncing %d loyalty cards to device</string>
    <string name="withings_calibration_text_hours">Please use the dial below to align the hour hand to the 12.</string>
    <string name="withings_calibration_text_minutes">Now use the dial to align the minute hand to the 12.</string>
    <string name="withings_calibration_text_activity_target">Finally align the activity hand to 100%. Please be aware that this hand only moves clockwise.</string>
    <string name="withings_bt_calibration_previous">Previous</string>
    <string name="withings_bt_calibration_next">Next</string>
    <string name="drag_handle">drag handle</string>
    <string name="find_my_phone_found_it">FOUND IT</string>
    <string name="pref_activity_full_sync_trigger_summary">Trigger a full sync of all activity data</string>
    <string name="pref_activity_full_sync_trigger_title">Full sync</string>
    <string name="pref_activity_full_sync_trigger_warning">This will trigger a full sync of all activity data from the device. It may take a few minutes to complete.</string>
    <string name="pref_theme_dynamic_colors_not_available_warning">Dynamic colors are not available on your device, only Android 12+ supports this functionality. Gadgetbridge will use the default Material 3 colors.</string>
    <string name="pref_theme_dynamic_colors_explanation">Note: for the dynamic colors theme you need to enable Wallpaper Colors or Color Palette in your Android 12+ appearance settings. If you don\'t, Gadgetbridge will use the default Material 3 colors.</string>
    <string name="info_menu_structure_set">Menu structure JSON set in GB</string>
    <string name="error_invalid_menu_structure">Invalid menu structure JSON</string>
    <string name="button_open_menu_companion">Open menu companion app</string>
    <string name="button_reset_menu_structure">Reset menu structure</string>
    <string name="info_menu_structure_removed">Menu structure removed</string>
    <string name="error_menu_companion_not_installed">\'HR Menu Companion\' probably not installed</string>
    <string name="info_menu_structure_contents">Menu structure: %s</string>
    <string name="info_fossil_rebuild_watchface_custom_menu">Please rebuild your watchface for custom menu</string>
    <string name="devicetype_miband2_hrx">Mi Band HRX</string>
 
    <string name="prefs_home_icon_left_item">Left</string>
    <string name="prefs_home_icon_center_item">Center</string>
    <string name="prefs_home_icon_right_item">Right</string>
 
    <string name="red">Red</string>
    <string name="yellow">Yellow</string>
    <string name="green">Green</string>
    <string name="cyan">Cyan</string>
    <string name="blue">Blue</string>
    <string name="purple">Purple</string>
    <string name="white">White</string>
 
    <string name="prefs_wena3_title_screen">Display Settings</string>
    <string name="prefs_wena3_title_activity">Activity Settings</string>
    <string name="prefs_wena3_item_background_sync">Background Activity Data Sync</string>
    <string name="prefs_wena3_hint_background_sync">Allow the Wena to periodically ask Gadgetbridge to download activity data from the device</string>
    <string name="prefs_wena3_hint_lift_wrist">Turn on the display when you look at your wrist</string>
    <string name="prefs_wena3_item_large_font">Larger Font Size</string>
    <string name="prefs_wena3_hint_large_font">Increase the font size in calendar, notifications, etc.</string>
    <string name="prefs_wena3_item_rich_design">Use Rich Design</string>
    <string name="prefs_wena3_hint_rich_design">Adds rounded rectangles around home screen icons</string>
    <string name="prefs_wena3_item_weather_statusbar">Weather In Status Bar</string>
    <string name="prefs_wena3_hint_weather_statusbar">Show current conditions icon in the top left corner of the home screen</string>
    <string name="prefs_wena3_title_alarm">Alarm Settings</string>
    <string name="prefs_wena3_smart_alarm_margin_item">Smart Alarm Margin</string>
    <string name="prefs_wena3_vibration_strength_item">Vibration Strength</string>
    <string name="prefs_wena3_vibration_smart_item">Smart Vibration</string>
    <string name="prefs_wena3_vibration_strength_item_weak">Weak</string>
    <string name="prefs_wena3_vibration_strength_item_medium">Medium</string>
    <string name="prefs_wena3_vibration_strength_item_strong">Strong</string>
    <string name="prefs_wena3_home_icon_title">Home Screen Icons</string>
    <string name="prefs_wena3_home_icon_name_clock">Current Time</string>
    <string name="prefs_wena3_home_icon_name_wena_pay">Wena Pay</string>
    <string name="prefs_wena3_home_icon_name_qrio">Qrio</string>
    <string name="prefs_wena3_home_icon_name_edy">Edy balance</string>
    <string name="prefs_wena3_home_icon_name_pedometer">Step Count</string>
    <string name="prefs_wena3_home_icon_name_energy">Body Energy</string>
    <string name="prefs_wena3_home_icon_name_suica">Suica Balance</string>
    <string name="prefs_wena3_home_icon_name_calories">Calories</string>
    <string name="prefs_wena3_home_icon_name_riiiver">Riiiver</string>
    <string name="prefs_wena3_menu_icon_name_payment">Payment</string>
    <string name="prefs_wena3_menu_icon_title">Menu Icons</string>
    <string name="prefs_wena3_menu_icon_hint">The Settings icon is always shown at the end</string>
    <string name="prefs_wena3_status_page_title">Status Page Ordering</string>
    <string name="prefs_wena3_day_start_hour_item">Day Starts At</string>
    <string name="prefs_wena3_auto_power_off_item">Auto Power Off</string>
    <string name="prefs_wena3_auto_power_off_hint">The device will turn off and on automatically at the specified schedule</string>
    <string name="prefs_wena3_auto_power_off_turn_off_time_item">Shutdown time</string>
    <string name="prefs_wena3_auto_power_off_turn_on_time_item">Resume time</string>
    <string name="prefs_wena3_button_action_item">Button Action</string>
    <string name="prefs_wena3_button_action_item_double">Double Press</string>
    <string name="prefs_wena3_button_action_item_long">Long Press</string>
    <string name="prefs_wena3_button_action_name_qrio_unlock">Qrio Unlock</string>
    <string name="prefs_wena3_button_action_name_qrio_lock">Qrio Lock</string>
    <string name="prefs_wena3_button_action_name_start_timer">Start active timer</string>
    <string name="prefs_wena3_button_action_name_activity_screen">Activity Screen</string>
    <string name="prefs_wena3_notification_settings_title">Notification Settings</string>
    <string name="prefs_wena3_receive_calls_title">Incoming Call Settings</string>
    <string name="prefs_wena3_receive_calls_item">Receive Call Notifications</string>
    <string name="prefs_wena3_receive_calls_hint">If turned off, you will not get notified of incoming calls on the Wena</string>
    <string name="prefs_wena3_notification_default_vibration">Notification Vibration</string>
    <string name="prefs_wena3_notification_default_vibration_repetition">Notification Vibration Repeat</string>
    <string name="prefs_wena3_notification_vibration_repetition_0">Indefinitely</string>
    <string name="prefs_wena3_notification_vibration_repetition_1">Once</string>
    <string name="prefs_wena3_notification_vibration_repetition_2">Twice</string>
    <string name="prefs_wena3_notification_vibration_repetition_3">3 times</string>
    <string name="prefs_wena3_notification_vibration_repetition_4">4 times</string>
    <string name="prefs_wena3_notification_per_app_settings_title">Per-app Notification Settings</string>
    <string name="prefs_wena3_notification_default_led">Notification LED Color</string>
    <string name="prefs_wena3_notification_default_call_vibration">Incoming Call Vibration</string>
    <string name="prefs_wena3_notification_default_call_vibration_repetition">Incoming Call Vibration Repeat</string>
    <string name="prefs_wena3_notification_default_call_led">Incoming Call LED Color</string>
    <string name="prefs_wena3_vibration_none">No Vibration</string>
    <string name="prefs_wena3_vibration_continuous">Continuous</string>
    <string name="prefs_wena3_vibration_basic">Basic</string>
    <string name="prefs_wena3_vibration_rapid">Rapid</string>
    <string name="prefs_wena3_vibration_triple">Triple</string>
    <string name="prefs_wena3_vibration_step_up">Step Up</string>
    <string name="prefs_wena3_vibration_step_down">Step Down</string>
    <string name="prefs_wena3_vibration_warning">Warning</string>
    <string name="prefs_wena3_vibration_siren">Siren</string>
    <string name="prefs_wena3_vibration_short">Short</string>
    <string name="prefs_wena3_led_none">No LED</string>
    <string name="temperature_scale_cf">Temperature scale</string>
    <string name="temperature_scale_cf_summary">Select whether device uses Celsius or Fahrenheit scale.</string>
    <string name="temperature_scale_celsius">Celsius</string>
    <string name="temperature_scale_fahrenheit">Fahrenheit</string>
    <string name="fossil_hr_nav_app_not_installed_notify_title">Navigation app not installed on watch</string>
    <string name="fossil_hr_nav_app_not_installed_notify_text">Navigation started but navigationApp not installed on watch. Please install it from the App Manager.</string>
    <string name="call_rejection_method_reject">Reject</string>
    <string name="call_rejection_method_ignore">Ignore (silence)</string>
    <string name="pref_call_rejection_method_title">Call rejection method</string>
    <string name="pref_call_rejection_method_summary">Which action is taken when an incoming call is rejected from the watch</string>
    <string name="pref_title_prefix_notification_with_app">App name in notification</string>
    <string name="pref_summary_prefix_notification_with_app">Prefix notification title with name of source application</string>
    <string name="pref_title_osmand_packagename">OsmAnd package name</string>
    <string name="pref_summary_osmand_packagename">Used for selecting the version of OsmAnd to connect to</string>
    <string name="pref_title_navigation_prefs">Navigation preferences</string>
    <string name="pref_title_navigation_apps">Navigation apps</string>
    <string name="pref_navigation_app_osmand">OsmAnd(+)</string>
    <string name="pref_navigation_app_gmaps">Google Maps</string>
    <string name="serial_number">Serial Number</string>
    <string name="menuitem_stats">Stats</string>
    <string name="menuitem_running">Running</string>
    <string name="menuitem_alerts">Alerts</string>
    <string name="menuitem_focus">Focus</string>
    <string name="bedtime">Bedtime</string>
    <string name="wake_up_time">Wake Up</string>
    <string name="pref_sleep_mode_schedule_title">Sleep Mode Schedule</string>
    <string name="pref_sleep_mode_schedule_summary">Send a reminder and enter sleep mode at bedtime. At the scheduled wake-up time, the wake-up alarm will sound.</string>
    <string name="devicetype_xiaomi_watch_s1">Xiaomi Watch S1</string>
    <string name="devicetype_xiaomi_watch_s3">Xiaomi Watch S3</string>
    <string name="devicetype_xiaomi_watch_s1_active">Xiaomi Watch S1 Active</string>
    <string name="devicetype_xiaomi_watch_s1_pro">Xiaomi Watch S1 Pro</string>
    <string name="devicetype_mi_watch_color_sport">Mi Watch Color Sport</string>
    <string name="devicetype_pixoo">Pixoo</string>
    <string name="not_set">Not set</string>
    <string name="garmin_intensity_minutes">Intensity Minutes</string>
    <string name="pref_vitality_score_title">Vitality Score</string>
    <string name="pref_vitality_score_7_day_title">7-day progress</string>
    <string name="pref_vitality_score_7_day_summary">Get a notification when your vitality score reaches 30, 60 or 100 in the past 7 days</string>
    <string name="pref_vitality_score_daily_title">Daily progress</string>
    <string name="pref_vitality_score_daily_summary">Get a notification when you reached the maximum number of vitality points for the day</string>
    <string name="widget">Widget</string>
    <string name="widget_screen">Widget Screen</string>
    <string name="widget_screen_delete_confirm_title">Delete widget screen</string>
    <string name="widget_screen_delete_confirm_description">Are you sure you want to delete \'%1$s\'?</string>
    <string name="widget_screen_no_free_slots_description">The device has no free slots for widget screens (total slots: %1$s)</string>
    <string name="widget_screen_min_screens">There must be a minimum of %1$s screens</string>
    <string name="widget_layout_top_1_bot_2">1 top, 2 bottom</string>
    <string name="widget_layout_top_2_bot_1">2 top, 1 bottom</string>
    <string name="widget_layout_top_2_bot_2">2 top, 2 bottom</string>
    <string name="widget_layout_single">1 widget</string>
    <string name="widget_layout_two">2 widgets</string>
    <string name="widget_layout_top_wide_bot_large">Wide above, large below</string>
    <string name="widget_layout_top_large_bot_wide">Large above, wide below</string>
    <string name="widget_layout">Widget layout</string>
    <string name="widget_subtype">Widget Subtype</string>
    <string name="widget_screen_x">Screen %s</string>
    <string name="widget_move_up">Move up</string>
    <string name="widget_move_down">Move down</string>
    <string name="widget_missing_parts">Please select all widgets</string>
    <string name="widget_unknown_workout">Unknown workout - %s</string>
    <string name="widget_name_colored_tile">%1$s (colored tile)</string>
    <string name="widget_name_untitled">Untitled widget (%1$s)</string>
    <string name="pref_title_fossil_hr_navigation_instructions">Navigation instructions</string>
    <string name="pref_summary_fossil_hr_navigation_instructions">Configure on-watch navigation app behavior</string>
    <string name="pref_title_fossil_hr_nav_foreground">Come to foreground</string>
    <string name="pref_summary_fossil_hr_nav_foreground">Whether the navigation app should automatically come to the foreground when it receives a navigation instruction</string>
    <string name="pref_title_fossil_hr_nav_vibrate">Vibrate on new instruction</string>
    <string name="pref_summary_fossil_hr_nav_vibrate">Whether the watch should vibrate on every new or changed navigation instruction (only when the app is in the foreground)</string>
    <string name="notification_channel_connection_status_name">Connection Status</string>
    <string name="uploading_watchface">Uploading watchface…</string>
    <string name="uploadwatchfaceoperation_in_progress">Uploading watchface</string>
    <string name="uploadwatchfaceoperation_complete">Watchface installation completed</string>
    <string name="uploadwatchfaceoperation_failed">Watchface installation failed</string>
    <string name="pref_force_connection_type_title">Force connection type</string>
    <string name="pref_force_connection_type_description">You may try forcing the connection type in case your device does not respond to Gadgetbridge</string>
    <string name="pref_force_connection_type_auto">Automatic</string>
    <string name="pref_force_connection_type_ble">Bluetooth LE</string>
    <string name="pref_force_connection_type_bt_classic">Bluetooth Classic</string>
    <string name="pref_force_connection_type_auto_value" translatable="false">BOTH</string>
    <string name="pref_force_connection_type_ble_value" translatable="false">BLE</string>
    <string name="pref_force_connection_type_bt_classic_value" translatable="false">BT_CLASSIC</string>
    <string name="activity_info">Activity info</string>
    <string name="warning_missing_notification_permission">Could not post ongoing notification due to missing permission</string>
    <string name="pref_test_features_title">Features</string>
    <string name="pref_test_features_summary">Enabled features for this test device</string>
    <string name="pref_developer_add_test_activities_title">Add test activities</string>
    <string name="pref_developer_add_test_activities_summary">Populate the database with dummy test activities</string>
    <string name="device_state_waiting_scan">Waiting for device scan</string>
    <string name="auto_reconnect_ble_scan_title">Reconnect by BLE scan</string>
    <string name="auto_reconnect_ble_scan_summary">Wait for device scan instead of blind connection attempts</string>
    <string name="prompt_restart_gadgetbridge">Please restart GB in order to take effect.</string>
    <string name="waiting_for_bluetooth">Waiting for bluetooth…</string>
    <string name="error_scan_failed">"Scan failed: %d"</string>
    <string name="scan_not_scanning">Not scanning</string>
    <string name="scan_scanning_all_devices">Scanning all devices</string>
    <string name="scan_scanning_single_device">Scanning 1 device</string>
    <string name="scan_scanning_multiple_devices">Scanning %d devices</string>
    <string name="notification_channel_scan_service_name">Scan service</string>
    <string name="unbind_before_pair_title">Already bound</string>
    <string name="unbind_before_pair_message">This device is already bound in Android settings, which can make pairing fail for some devices.\n\nIf adding the device fails, please remove it in Android settings and try again.</string>
    <string name="companion_pairing_request_title">Companion device</string>
    <string name="companion_pairing_request_description">Pair this device as companion?.\n\nThis is recommended for some functions such as find device, and provides a better connection.</string>
    <string name="devicetype_scannable">Scannable device</string>
    <string name="state_scanned">Scanned</string>
    <string name="devicesetting_scannable_debounce">Scannable debounce timeout (seconds)</string>
    <string name="devicesetting_scannable_minimum_unseen">Minimum unseen time (seconds)</string>
    <string name="devicesetting_scannable_rssi">Minimal RSSI threshold</string>
    <string name="devicesetting_scannable_debounce_summary">After being scanned, the device will stick as scanned and ignored for the specified amount of time</string>
    <string name="devicesetting_scannable_minimum_unseen_summary">After being scanned, the device has to be unseen for this amount of time before being registered again</string>
    <string name="devicesetting_scannable_rssi_summary">The minimum RSSI threshold for detection</string>
    <string name="error_showing_changelog">Error showing Changelog</string>
    <string name="activity_type_worn">Worn</string>
    <string name="dashboard_settings">Dashboard settings</string>
    <string name="bottom_nav_dashboard">Dashboard</string>
    <string name="bottom_nav_devices">Devices</string>
    <string name="pref_dashboard_first_title">Show dashboard first</string>
    <string name="pref_dashboard_first_summary">Show the dashboard when Gadgetbridge starts, instead of the devices screen</string>
    <string name="pref_dashboard_cards_title">Show widgets on cards</string>
    <string name="pref_dashboard_cards_summary">Draw cards around the widgets on the dashboard</string>
    <string name="pref_dashboard_widget_settings">Widget settings</string>
    <string name="pref_dashboard_widget_today_title">Activity chart</string>
    <string name="pref_dashboard_widget_today_24h_title">24h mode</string>
    <string name="pref_dashboard_widget_double_size_title">Double size</string>
    <string name="pref_dashboard_widget_show_legend_title">Show legend</string>
    <string name="pref_dashboard_widget_goals_chart_title">Goals chart</string>
    <string name="pref_dashboard_devices_to_include">Devices to include</string>
    <string name="pref_dashboard_all_devices_title">All devices</string>
    <string name="pref_dashboard_select_devices_title">Select devices...</string>
    <string name="pref_dashboard_widgets_order_summary">Select which widgets are enabled and in what order they are displayed on the dashboard</string>
    <string name="pref_dashboard_widget_today_24h_summary">Show the activity in a single 24h circle instead of a double 12h circle</string>
    <string name="pref_dashboard_widget_double_size_summary">Allow the widget to take up two columns on the dashboard</string>
    <string name="pref_dashboard_widget_show_legend_summary">Show a legend below the widget explaining the colors</string>
    <string name="pref_dashboard_all_devices_summary">Combine activity data from all added devices for the totals on the dashboard</string>
    <string name="pref_dashboard_select_devices_summary">Combine activity data from specific devices for the totals on the dashboard</string>
    <string name="pref_dashboard_widget_today_hr_interval_title">Heart rate interval</string>
    <string name="pref_dashboard_widget_today_hr_interval_summary">The amount of minutes the chart shows \'worn\' after each successful heart rate measurement</string>
    <plurals name="amount_of_days">
        <item quantity="one">%d day</item>
        <item quantity="other">%d days</item>
    </plurals>
    <string name="dashboard_calendar_month_goals_reached_title">% of steps goal reached</string>
    <string name="pref_auto_reply_calls_summary">The phone will automatically pick-up incoming phonecalls</string>
    <string name="pref_auto_reply_calls_title">Automatically answer phone calls</string>
    <string name="pref_auto_reply_calls_delay_summary">Number of seconds after which the call is automatically picked up</string>
    <string name="pref_auto_reply_calls_delay_title">Automatic Answer Delay</string>
    <string name="pref_speak_notifications_aloud_summary">Notifications will be read aloud through the headphones</string>
    <string name="pref_speak_notifications_aloud_title">Speak Notifications Aloud</string>
    <string name="pref_speak_notifications_focus_exclusive_title">Pause audio of other applications</string>
    <string name="pref_speak_notifications_focus_exclusive_summary_on">Playback from other applications will be paused while the notification is spoken</string>
    <string name="pref_speak_notifications_focus_exclusive_summary_off">Playback volume of other applications will be lowered while the notification is spoken</string>
    <string name="pref_header_calls_and_notifications">Calls and notifications</string>
    <string name="pref_title_bottom_navigation_bar">Bottom navigation bar</string>
    <string name="pref_summary_bottom_navigation_bar_on">Switch between main screens using the navigation bar or horizontal swiping</string>
    <string name="pref_summary_bottom_navigation_bar_off">Switch between main screens only using horizontal swiping</string>
    <string name="pref_summary_garmin_default_reply_suffix">Appended in addition to the suffix set in Gadgetbridge</string>
    <string name="pref_title_garmin_default_reply_suffix">Use predefined reply suffix</string>
    <string name="pref_dashboard_widget_today_upside_down_title">Midnight at bottom</string>
    <string name="pref_dashboard_widget_today_upside_down_summary">In 24h mode, draw midnight at the bottom, midday at the top of the chart</string>
 
    <string name="sleepasandroid_settings">Sleep As Android</string>
    <string name="pref_sleepasandroid_enable_summary">Enable Sleep As Android integration</string>
    <string name="pref_sleepasandroid_device_title">Provider device</string>
    <string name="pref_sleepasandroid_device_summary">Select device as Sleep As Android data provider</string>
    <string name="pref_sleepasandroid_features_title">Features</string>
    <string name="pref_sleepasandroid_features_summary">Support differs from device to device</string>
    <string name="pref_sleepasandroid_feat_alarms">Alarms</string>
    <string name="pref_sleepasandroid_slot_title">Alarms slot</string>
    <string name="pref_sleepasandroid_slot_summary">Which alarm slot to use when setting alarms</string>
    <string name="alarm_slot_reset">Alarm slot has been set to default</string>
    <string name="pref_sleepasandroid_feat_notifications">Notifications</string>
    <string name="pref_sleepasandroid_feat_movement">Accelerometer</string>
    <string name="pref_sleepasandroid_feat_heartrate">Heart rate</string>
    <string name="pref_sleepasandroid_feat_oximetry">Oximetry</string>
    <string name="pref_sleepasandroid_feat_spo2">SPO2</string>
    <string name="pref_title_huawei_account">Huawei Account</string>
    <string name="pref_summary_huawei_account">Huawei account used in pairing process. Setting it allows to pair without factory reset.</string>
    <string name="watchface_resolution_doesnt_match">Watchface resolution doesnt match device screen. Watchface is %1$s device screen is %2$s</string>
    <string name="device_name_bicycle_sensor">Bicycle sensor</string>
    <string name="device_name_cycling_sensor">Cycling sensor</string>
    <string name="devicetype_cycling_sensor">Cycling speed sensor</string>
    <string name="title_cycling">Cycling</string>
    <string name="pref_summary_wheel_diameter">Wheel diameter in inches. Typically 29, 27,5 or 26.</string>
    <string name="pref_title_wheel_diameter">Wheel diameter</string>
    <string name="pref_summary_cycling_persistence_interval">Interval in seconds when the current cycling data should be written to the database</string>
    <string name="pref_title_cycling_persistence_interval">Persistence interval</string>
    <string name="chart_cycling_point_label_distance">Today: %.1f km\nTotal: %.1f km</string>
    <string name="chart_cycling_point_label_speed">%.1f km/h</string>
    <string name="toast_setting_requires_reconnect">This setting will take effect after a reconnect</string>
 
    <!-- Camera strings -->
    <string name="open_camera">Open Camera</string>
    <string name="toast_camera_permission_required">Camera permission is required for this function.</string>
    <string name="toast_camera_support_required">Camera support is required for this function.</string>
    <string name="toast_camera_photo_taken">Photo has been taken and saved at: %s</string>
 
    <!-- Battery polling preference strings -->
    <string name="pref_battery_polling_configuration">Battery polling configuration</string>
    <string name="pref_battery_polling_summary">This is best-effort, and might be delayed for several reasons</string>
    <string name="pref_battery_polling_enable">Enable battery polling</string>
    <string name="pref_battery_polling_interval">Battery polling interval</string>
    <string name="pref_battery_polling_interval_format">every %1$s minutes</string>
    <string name="battery_polling_failed_start">Failed to start the battery polling</string>
 
    <string name="none">None</string>
    <string name="garmin_agps_url_i">AGPS %1$d URL</string>
    <string name="no_folder_selected">No folder selected</string>
    <string name="folder_is_empty">Folder is empty</string>
    <string name="folder">Folder</string>
    <string name="url">URL</string>
    <string name="number_selected_items">%1d selected</string>
    <string name="garmin_agps_local_file">Local file</string>
    <string name="pref_garmin_agps_help">The list below contains all URLs requested by the watch for AGPS updates. You can select a file from the phone\'s storage that will be sent to the watch when it requests an update.</string>
    <string name="copied_to_clipboard">Copied to clipboard</string>
    <string name="loading">Loading…</string>
    <string name="toggle_debug_mode">Toggle debug mode</string>
    <string name="share_debug_info">Share debug info</string>
    <string name="realtime_settings">Realtime settings</string>
    <string name="unsupported">Unsupported</string>
    <string name="min_val">Minimum: %d</string>
    <string name="max_val">Maximum: %d</string>
    <string name="show_in_notification">Show in notification</string>
    <string name="battery_low_notify_enabled">Notify on low battery</string>
    <string name="battery_low_threshold">Low battery threshold</string>
    <string name="battery_full_notify_enabled">Notify on full battery</string>
    <string name="battery_full_threshold">Full battery threshold</string>
    <string name="default_percentage">Default (%1$d%%)</string>
    <string name="battery_percentage_str">%1$s%%</string>
    <string name="pref_fetch_unknown_files_title">Fetch unknown files</string>
    <string name="pref_fetch_unknown_files_summary">Fetch unknown activity files from the watch. They will not be processed, but will be saved in the phone.</string>
    <string name="cannot_upload_watchface_too_many_watchfaces_installed">"Cannot upload watchface, too many watchfaces installed"</string>
    <string name="insufficient_space_for_upload">"Insufficient space for upload"</string>
    <string name="file_already_exists">"File already exists"</string>
    <string name="smart_ring_measurement_error_worn_incorrectly">Measurement error. Are the ring\'s sensors oriented correctly?</string>
    <string name="smart_ring_measurement_error_unknown">Unknown measurement error %d received from ring</string>
    <string name="pref_header_deprecated_functionalities">Deprecated functionalities</string>
    <string name="pref_header_deprecated_functionalities_warning">The following functionalities have been deprecated and will be removed soon from the software.\nIf you need to enable one of the following settings be sure to get in touch with the project team.</string>
    <string name="pref_deprecated_media_control_title">Deprecated media control</string>
    <string name="pref_deprecated_media_control_summary">Send media control commands as key events instead of the media controller.</string>
    <string name="devicetype_ble_gatt_client">Generic BLE GATT Client</string>
    <string name="prefs_title_gatt_client_notification_intents">Broadcast GATT notification Intents through BLE Intent API</string>
    <string name="prefs_summary_gatt_client_notification_intents">Receive BLE characteristic changes through Intents</string>
    <string name="prefs_title_gatt_client_allow_gatt_interactions">Allow GATT interaction through BLE Intent API</string>
    <string name="prefs_summary_gatt_client_allow_gatt_interactions">Allow to send BLE characteristic read/write and connect commands</string>
    <string name="prefs_summary_gatt_client_device_state_updates">Receive BLE connection state changes via Intents</string>
    <string name="prefs_title_gatt_client_api_package">BLE API package</string>
    <string name="prefs_summary_gatt_client_api_package">Restrict BLE Intent API communication to this package</string>
    <string name="prefs_title_ble_intent_api">BLE Intent API</string>
    <string name="activity_db_management_backup_restore_label">Backup and Restore</string>
    <string name="activity_db_management_export_to_zip">Export zip</string>
    <string name="activity_db_management_import_from_zip">Import zip</string>
    <string name="activity_db_management_backup_restore_explanation">The import/export operations allows you to migrate or backup all Gadgetbridge settings, devices and data to and from a zip file.\n\nImporting a file will remove all existing data, devices, and preferences, completely replacing them with the backup.</string>
    <string name="backup_restore_exporting">Exporting to zip…</string>
    <string name="backup_restore_exporting_preferences">Exporting preferences…</string>
    <string name="backup_restore_exporting_database">Exporting database…</string>
    <string name="backup_restore_exporting_files">Exporting files…</string>
    <string name="backup_restore_exporting_files_i_of_n">Exporting files… %1d of %2d</string>
    <string name="backup_restore_exporting_finishing">Finishing export…</string>
    <string name="backup_restore_importing">Importing from zip…</string>
    <string name="backup_restore_do_not_exit">%s Please keep this screen open until the operation finishes.</string>
    <string name="backup_restore_importing_loading">Loading file…</string>
    <string name="backup_restore_importing_validating">Validating file…</string>
    <string name="backup_restore_importing_files_i_of_n">Importing files… %1d of %2d</string>
    <string name="backup_restore_importing_database">Importing database…</string>
    <string name="backup_restore_importing_preferences">Importing preferences…</string>
    <string name="backup_restore_warning_files">%1d files failed to be restored: \n%2s</string>
    <string name="backup_restore_export_complete">Export complete</string>
    <string name="backup_restore_import_complete">Import complete</string>
    <string name="backup_restore_error_export">Export to zip failed</string>
    <string name="backup_restore_error_import">Import from zip failed</string>
    <string name="backup_restore_abort_title">Abort</string>
    <string name="backup_restore_abort_export_confirmation">Abort the export? The partial zip file will be deleted.</string>
    <string name="backup_restore_abort_import_confirmation">Abort the import? This may lead to a corrupted or inconsistent database.</string>
    <string name="backup_restore_restart_title">Restart</string>
    <string name="backup_restore_restart_summary">%1s will now restart.</string>
    <string name="label_distance_trip">Trip: %.1f km</string>
    <string name="label_distance_total">Total: %.1f km</string>
    <string name="label_distance_trip_mph">Trip: %.1f mi</string>
    <string name="label_distance_total_mph">Total: %.1f mi</string>
    <string name="error_no_cycling_sensor_found">no cycling sensor found</string>
    <string name="contact_birthday">%1s\'s birthday</string>
    <string name="birthdays">Birthdays</string>
    <string name="pref_dashboard_widget_today_yesterday_data_title">Data from yesterday</string>
    <string name="pref_dashboard_widget_today_yesterday_data_summary">Show data from yesterday dimmed between the current time and midnight</string>
    <string name="pref_dashboard_widget_today_time_indicator_title">Current time indicator</string>
    <string name="pref_dashboard_widget_today_time_indicator_summary">Show an indicator at the current time, to visually separate data from yesterday and today</string>
    <string name="pref_dnd_follow_phone_title">Follow phone DND setting</string>
    <string name="pref_dnd_follow_phone_summary">When DND is enabled or disabled on the phone, automatically toggle it on the device too</string>
    <string name="inactivity_warnings_minimum_steps_title">Minimum amount of steps</string>
    <string name="inactivity_warnings_minimum_steps_summary">Minimum amount of steps that need to be taken during the threshold minutes</string>
    <string name="prefs_hrv_monitoring_title">HRV monitoring</string>
    <string name="prefs_hrv_monitoring_description">Automatically monitor heart rate variability throughout the day</string>
    <string name="pref_music_management_title">Manage Music</string>
    <string name="pref_music_management_summary">Manage music on the watch</string>
    <string name="music_delete_confirm_description">Are you sure you want to delete \'%1$s\'?</string>
    <string name="music_delete_multiple_confirm_description">Are you sure you want to delete \'%1$d\' songs?</string>
    <string name="music_add_to_playlist">Add to playlist</string>
    <string name="music_delete_from_playlist">Delete from playlist</string>
    <string name="music_delete">Delete song</string>
    <string name="music_all_songs">All songs</string>
    <string name="music_new_playlist">New playlist</string>
    <string name="music_rename_playlist">Rename playlist</string>
    <string name="music_error">Error occurred</string>
    <string name="music_huawei_device_info">Supported formats: %1$s\nWatch storage: %2$d MB</string>
    <string name="music_multiselect_limit">Limit for selecting more than one item reached</string>
 
    <!-- Welcome screens strings -->
    <string name="first_start_welcome_title">Welcome</string>
    <string name="first_start_intro_welcome_to">Welcome to</string>
    <string name="first_start_intro_tag_line">Break free from the proprietary apps and cloud services of gadget vendors.</string>
    <string name="first_start_overview_title">Overview</string>
    <string name="first_start_overview_desc">Gadgetbridge has two main views, each with their own purpose.</string>
    <string name="first_start_overview_dashboard">The dashboard allows you to get a quick idea of how you\'re doing today. The calendar view shows the status of your goals over a whole month.</string>
    <string name="first_start_overview_devices">The devices view shows all devices you have configured and their status, and gives access to device specific functions such as detailed charts, settings, apps and alarms.</string>
    <string name="first_start_open_source_title">Open Source</string>
    <string name="first_start_open_source_text">Gadgetbridge is an open source app. It is developed by the community, for the community.\n\nAnyone is welcome to contribute via code, documentation, testing and donations.\n\nGadgetbridge contains no ads and no tracking. It keeps your data locally on your Android device, so it is 100% privacy friendly.\n\nVisit our website for more information, documentation and links to our communication channels.</string>
    <string name="first_start_permissions_title">Permissions</string>
    <string name="first_start_permissions_desc">Gadgetbridge needs a lot of permissions to perform all its functions. Review the permissions and their purposes below.</string>
    <string name="first_start_permissions_request_all_button">Request all permissions</string>
    <string name="first_start_permissions_request_button">Request</string>
    <string name="first_start_get_started_title">Get started</string>
    <string name="first_start_get_started_desc">To get started, add your first device directly from this screen, restore a backup or start with a clean database.</string>
    <string name="first_start_get_started_add_first_device_button">Add first device</string>
    <string name="first_start_get_started_restore_button">Restore backup</string>
    <string name="first_start_get_started_go_to_app_button">Go to the app</string>
    <string name="permission_notifications_summary">Forwarding notifications to connected gadgets</string>
    <string name="permission_manage_dnd_title">Manage Do Not Disturb</string>
    <string name="permission_manage_dnd_summary">Changing DND notification policy</string>
    <string name="permission_displayover_title">Display over other apps</string>
    <string name="permission_displayover_summary">Used by Bangle.js for starting apps and other functionality on your phone</string>
    <string name="permission_fine_location_title">Fine location</string>
    <string name="permission_fine_location_summary">Scanning for Bluetooth devices</string>
    <string name="permission_background_location_title">Background location</string>
    <string name="permission_background_location_summary">Scanning for Bluetooth devices in the background and sending the location to certain gadgets</string>
    <string name="permission_bluetooth_title">Bluetooth</string>
    <string name="permission_bluetooth_summary">Connecting to Bluetooth devices</string>
    <string name="permission_bluetooth_admin_title">Bluetooth admin</string>
    <string name="permission_bluetooth_admin_summary">Discovering and pairing Bluetooth devices</string>
    <string name="permission_bluetooth_scan_title">Bluetooth scan</string>
    <string name="permission_bluetooth_scan_summary">Scanning for new Bluetooth devices</string>
    <string name="permission_bluetooth_connect_title">Bluetooth connect</string>
    <string name="permission_bluetooth_connect_summary">Connecting to already-paired Bluetooth devices</string>
    <string name="permission_post_notification_title">Post notifications</string>
    <string name="permission_post_notification_summary">Posting ongoing notification which keeps the service running</string>
    <string name="permission_internet_access_title">Internet access</string>
    <string name="permission_internet_access_summary">Synchronization with online resources</string>
    <string name="permission_contacts_title">Contacts</string>
    <string name="permission_contacts_summary">Sending contacts to gadgets</string>
    <string name="permission_calendar_title">Calendar</string>
    <string name="permission_calendar_summary">Sending calendar to gadgets</string>
    <string name="permission_receive_sms_title">Receive SMS</string>
    <string name="permission_receive_sms_summary">Forwarding SMS messages to gadgets</string>
    <string name="permission_send_sms_title">Send SMS</string>
    <string name="permission_send_sms_summary">Sending SMS (canned response) from gadgets</string>
    <string name="permission_read_call_log_title">Read call log</string>
    <string name="permission_read_call_log_summary">Forwarding call log to gadgets</string>
    <string name="permission_read_phone_state_title">Read phone state</string>
    <string name="permission_read_phone_state_summary">Reading status of ongoing calls</string>
    <string name="permission_call_phone_title">Call phone</string>
    <string name="permission_call_phone_summary">Initiating phone calls from gadgets</string>
    <string name="permission_process_outgoing_calls_title">Process outgoing calls</string>
    <string name="permission_process_outgoing_calls_summary">Reading the number of an outgoing call to display it on a gadget</string>
    <string name="permission_answer_phone_calls_title">Answer phone calls</string>
    <string name="permission_answer_phone_calls_summary">Answering phone calls from gadgets</string>
    <string name="permission_external_storage_title">External storage</string>
    <string name="permission_external_storage_summary">Using images, ringtones, app files and more</string>
    <string name="permission_query_all_packages_title">Query all packages</string>
    <string name="permission_query_all_packages_summary">Reading names and icons of all installed apps</string>
    <string name="about_build_details_copied_to_clipboard">Build details copied to clipboard</string>
    <string name="devicetype_marstek_b2500">Marstek B2500</string>
    <string name="battery_discharge_intervals">Battery Discharge Intervals</string>
    <string name="discharge_interval_1">Discharge interval 1</string>
    <string name="discharge_interval_2">Discharge interval 2</string>
    <string name="discharge_interval_3">Discharge interval 3</string>
    <string name="discharge_interval_4">Discharge interval 4</string>
    <string name="discharge_interval_5">Discharge interval 5</string>
    <string name="power_w">Power in W</string>
    <string name="manual_discharge_summary">when disabled, this assumes intelligent discharge controlled by an external power meter (not supported by Gadgetbridge)</string>
    <string name="manual_discharge">Manual discharge intervals</string>
    <string name="summary_battery_discharge_intervals_set">Send configuration below to device</string>
    <string name="battery_minimum_charge">Minimum battery charge in %</string>
    <string name="battery_allow_pass_though_summary">When enabled, the battery can be charged while discharging</string>
    <string name="battery_allow_pass_through">Allow battery pass-through</string>
</resources>