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
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
    <string name="application_name_generic">Gadgetbridge</string>
    <string name="title_activity_controlcenter_generic">Gadgetbridge</string>
    <string name="action_settings">Paramètres</string>
    <string name="action_debug">Déboguer</string>
    <string name="action_quit">Quitter</string>
    <string name="action_donate">Faire un don</string>
    <string name="controlcenter_fetch_activity_data">Synchroniser</string>
    <string name="controlcenter_find_device">Retrouver votre appareil perdu</string>
    <string name="controlcenter_take_screenshot">Prendre une capture d\'écran</string>
    <string name="controlcenter_disconnect">Déconnecter</string>
    <string name="controlcenter_delete_device">Supprimer l’appareil</string>
    <string name="controlcenter_delete_device_name">Supprimer %1$s</string>
    <string name="controlcenter_delete_device_dialogmessage">Ceci va supprimer l’appareil et toutes les données associées !</string>
    <string name="controlcenter_navigation_drawer_open">Ouvrir le tiroir de navigation</string>
    <string name="controlcenter_navigation_drawer_close">Fermer le tiroir de navigation</string>
    <string name="controlcenter_snackbar_need_longpress">Presser longuement l\'icône pour déconnecter</string>
    <string name="controlcenter_snackbar_disconnecting">Déconnexion</string>
    <string name="controlcenter_snackbar_connecting">Connexion…</string>
    <string name="controlcenter_snackbar_requested_screenshot">Faire une capture d\'écran de l\'appareil</string>
    <string name="title_activity_debug">Déboguer</string>
    <!--Strings related to AppManager-->
    <string name="title_activity_appmanager">Gestionnaire d\'application</string>
    <string name="appmanager_cached_watchapps_watchfaces">Applis en cache</string>
    <string name="appmanager_installed_watchapps">Applis installées</string>
    <string name="appmanager_installed_watchfaces">Cadrans installés</string>
    <string name="appmananger_app_delete">Supprimer</string>
    <string name="appmananger_app_delete_cache">Supprimer et effacer du cache</string>
    <string name="appmananger_app_reinstall">Réinstaller</string>
    <string name="appmanager_app_openinstore">Rechercher dans le magasin d’application Pebble</string>
    <string name="appmanager_health_activate">Activer</string>
    <string name="appmanager_health_deactivate">Désactiver</string>
    <string name="appmanager_hrm_activate">Activer la mesure du rythme cardiaque</string>
    <string name="appmanager_hrm_deactivate">Désactiver la mesure du rythme cardiaque</string>
    <string name="appmanager_weather_activate">Activer l\'application météo</string>
    <string name="appmanager_weather_deactivate">Désactiver l\'application météo</string>
    <string name="appmanager_weather_install_provider">Installer l\'application de notification de la météo</string>
    <string name="app_configure">Configurer</string>
    <string name="app_move_to_top">Haut de page </string>
    <!--Strings related to CalBlacklist-->
    <string name="title_activity_calblacklist">Calendriers sur liste noire</string>
    <!--Strings related to FwAppInstaller-->
    <string name="title_activity_fw_app_insaller">Installateur d\'applications/firmware</string>
    <string name="fw_upgrade_notice">Vous êtes sur le point d\'installer le micrologiciel %s.</string>
    <string name="fw_multi_upgrade_notice">Vous êtes sur le point d\'installer les micrologiciels %1$s et %2$s à la place de ceux qui sont actuellement sur votre Mi Band.</string>
    <string name="miband_firmware_known">Ce micrologiciel a été testé et est connu pour être compatible avec Gadgetbridge.</string>
    <string name="miband_firmware_unknown_warning">Ce micrologiciel n\'a pas été testé et peut ne pas être compatible avec Gadgetbridge. 
\n 
\nIl n\'est PAS conseillé de le flasher !</string>
    <string name="miband_firmware_suggest_whitelist">Si vous désirez continuer malgré tout, et que tout fonctionne correctement par la suite, veuillez en informer les développeurs de Gadgetbridge pour demander l\'ajout du micrologiciel %s à leur liste blanche.</string>
    <!--Strings related to Settings-->
    <string name="title_activity_settings">Paramètres</string>
    <string name="pref_header_general">Paramètres généraux</string>
    <string name="pref_title_general_autoconnectonbluetooth">Reconnecter votre appareil(s) quand le Bluetooth est activé</string>
    <string name="pref_title_general_autostartonboot">Démarrer automatiquement</string>
    <string name="pref_title_general_autoreconnect">Reconnexion automatique </string>
    <string name="pref_title_audio_player">Lecteur audio préféré</string>
    <string name="pref_default">Par défaut</string>
    <string name="pref_header_datetime">Date et heure</string>
    <string name="pref_title_datetime_syctimeonconnect">Synchroniser l\'heure</string>
    <string name="pref_summary_datetime_syctimeonconnect">Synchroniser l\'heure sur les appareil(s) Gadgetbridge lors de la connexion, et lorsque l\'heure ou le fuseau horaire changent sur Android, et périodiquement</string>
    <string name="pref_title_theme">Thème</string>
    <string name="pref_theme_light">Clair</string>
    <string name="pref_theme_dark">Sombre</string>
    <string name="pref_title_language">Langue</string>
    <string name="pref_title_minimize_priority">Masquer la notification de Gadgetbridge</string>
    <string name="pref_summary_minimize_priority_off">L\'icône de la barre d\'état et la notification de l\'écran de verrouillage sont affichées</string>
    <string name="pref_summary_minimize_priority_on">L\'icône de la barre d\'état et la notification de l\'écran de verrouillage sont masquées</string>
    <string name="pref_header_notifications">Notifications</string>
    <string name="pref_title_notifications_repetitions">Répétitions</string>
    <string name="pref_title_notifications_call">Appels téléphoniques</string>
    <string name="pref_title_notifications_sms">Textos</string>
    <string name="pref_title_notifications_pebblemsg">Messages Pebble</string>
    <string name="pref_summary_notifications_pebblemsg">Support des applications qui envoient des notification à Pebble via PebbleKit.</string>
    <string name="pref_title_notifications_generic">Support des notifications génériques</string>
    <string name="pref_title_whenscreenon">…y compris quand l\'écran est allumé</string>
    <string name="pref_title_notification_filter">Ne Pas Déranger</string>
    <string name="pref_summary_notification_filter">Toutes les notifications sont suspendues dans le mode Ne Pas Déranger</string>
    <string name="pref_title_transliteration">Transcription</string>
    <string name="pref_summary_transliteration">Activez ceci si votre appareil ne supporte pas la police de caractères</string>
    <string name="always">Toujours</string>
    <string name="when_screen_off">Quand l\'écran est éteint</string>
    <string name="never">Jamais</string>
    <string name="pref_header_privacy">Confidentialité</string>
    <string name="pref_title_call_privacy_mode">Mode de confidentialité d\'appel</string>
    <string name="pref_call_privacy_mode_off">Afficher le nom et le numéro</string>
    <string name="pref_call_privacy_mode_name">Masquer le nom mais afficher le numéro</string>
    <string name="pref_call_privacy_mode_number">Masquer le numéro mais afficher le nom</string>
    <string name="pref_call_privacy_mode_complete">Masquer le nom et le numéro</string>
    <string name="pref_blacklist_calendars">Mettre des calendriers en liste noire</string>
    <string name="pref_header_cannned_messages">Modèles de messages</string>
    <string name="pref_title_canned_replies">Réponses</string>
    <string name="pref_title_canned_reply_suffix">Suffixe fréquent</string>
    <string name="pref_title_canned_messages_dismisscall">Raccrocher</string>
    <string name="pref_title_canned_messages_set">Mise à jour sur l\'appareil</string>
    <string name="pref_header_development">Options développeur</string>
    <string name="pref_title_development_miaddr">Adresse Mi Band</string>
    <string name="pref_title_pebble_settings">Paramètres Pebble</string>
    <string name="pref_header_activitytrackers">Traqueurs d\'activité</string>
    <string name="pref_title_pebble_activitytracker">Traqueur d\'activité préféré</string>
    <string name="pref_title_pebble_sync_health">Synchroniser Pebble Health</string>
    <string name="pref_title_pebble_sync_misfit">Synchroniser Misfit</string>
    <string name="pref_title_pebble_sync_morpheuz">Synchroniser Morpheuz</string>
    <string name="pref_title_enable_outgoing_call">Support des appels sortants</string>
    <string name="pref_summary_enable_outgoing_call">Désactiver ceci empêchera la Pebble 2/LE de vibrer lors des appels sortants</string>
    <string name="pref_title_enable_pebblekit">Permettre l\'accès aux applications tierces Android</string>
    <string name="pref_summary_enable_pebblekit">Activer le support expérimental pour les applications Android utilisant PebbleKit</string>
    <string name="pref_header_pebble_timeline">Timeline Pebble</string>
    <string name="pref_title_sunrise_sunset">Lever et coucher de soleil</string>
    <string name="pref_summary_sunrise_sunset">Envoyer les heures de lever et coucher du soleil dans l’historique Pebble en fonction de l\'emplacement</string>
    <string name="pref_title_enable_calendar_sync">Synchroniser le calendrier</string>
    <string name="pref_summary_enable_calendar_sync">Envoyer les événements du calendrier sur la timeline</string>
    <string name="pref_title_autoremove_notifications">Effacer automatiquement les notifications rejetées</string>
    <string name="pref_summary_autoremove_notifications">Les notifications sont automatiquement effacées de l\'appareil lorsqu\'elles sont rejetées sur le téléphone</string>
    <string name="pref_title_pebble_privacy_mode">Mode privé</string>
    <string name="pref_pebble_privacy_mode_off">Notifications normales</string>
    <string name="pref_pebble_privacy_mode_content">Déplace les notifications hors de l\'écran</string>
    <string name="pref_pebble_privacy_mode_complete">Ne montre que l\'icône de notification</string>
    <string name="pref_header_location">Emplacement</string>
    <string name="pref_title_location_aquire">Obtenir l\'emplacement</string>
    <string name="pref_title_location_latitude">Latitude</string>
    <string name="pref_title_location_longitude">Longitude</string>
    <string name="pref_title_location_keep_uptodate">Garder l’emplacement à jour</string>
    <string name="pref_summary_location_keep_uptodate">Essayer de garder la localisation à jour pendant le fonctionnement, sinon utiliser l’emplacement enregistré</string>
    <string name="toast_enable_networklocationprovider">Veuillez activer la localisation réseau</string>
    <string name="toast_aqurired_networklocation">Emplacement obtenu</string>
    <string name="pref_title_pebble_forceprotocol">Forcer le protocole de notification</string>
    <string name="pref_summary_pebble_forceprotocol">Cette option force l\'utilisation du protocole de notification le plus récent selon votre version du micrologiciel. À VOS PROPRES RISQUES ET PÉRILS !</string>
    <string name="pref_title_pebble_forceuntested">Activer les fonctionnalités non testées</string>
    <string name="pref_summary_pebble_forceuntested">Activer les fonctionnalités non testées. À VOS PROPRES RISQUES ET PÉRILS !</string>
    <string name="pref_title_pebble_forcele">Toujours préférer le BLE</string>
    <string name="pref_summary_pebble_forcele">Utiliser le support expérimental du LE pour toutes les Pebble au lieu du Bluetooth classique. Cela requiert le jumelage d\'une Pebble non LE, puis d\'une Pebble LE</string>
    <string name="pref_title_pebble_mtu_limit">Limite du GATT MTU de Pebble 2/LE</string>
    <string name="pref_summary_pebble_mtu_limit">Si votre Pebble 2/LE ne fonctionne pas correctement, essayez d\'activer cette option pour limiter le MTU (plage valide 20–512)</string>
    <string name="pref_title_pebble_enable_applogs">Activer la journalisation des applis du bracelet</string>
    <string name="pref_summary_pebble_enable_applogs">Ceci fera en sorte que les journaux des applis de montre soient journalisés par Gadgetbridge (requiert une reconnexion)</string>
    <string name="pref_title_pebble_always_ack_pebblekit">ACK à l\'avance du PebbleKit</string>
    <string name="pref_summary_pebble_always_ack_pebblekit">Ceci permettra aux messages envoyés à des apps tierces d\'être toujours reconnus immédiatement</string>
    <string name="pref_title_pebble_reconnect_attempts">Tentatives de reconnexion</string>
    <string name="pref_title_unit_system">Unités</string>
    <string name="pref_title_timeformat">Format de l\'heure</string>
    <string name="pref_title_screentime">Durée d\'écran allumé</string>
    <string name="prefs_title_all_day_heart_rate">Mesure de la fréquence cardiaque toute la journée</string>
    <string name="preferences_hplus_settings">Paramètres HPlus/Makibes</string>
    <string name="not_connected">Non connecté</string>
    <string name="connecting">Connexion en cours</string>
    <string name="connected">Connecté</string>
    <string name="unknown_state">État inconnu</string>
    <string name="_unknown_">(inconnu)</string>
    <string name="test">Test</string>
    <string name="test_notification">Notification de test</string>
    <string name="this_is_a_test_notification_from_gadgetbridge">Ceci est un test de notification venant de Gadgetbridge</string>
    <string name="bluetooth_is_not_supported_">Le Bluetooth n\'est pas supporté.</string>
    <string name="bluetooth_is_disabled_">Le Bluetooth est désactivé.</string>
    <string name="tap_connected_device_for_app_mananger">Cliquez sur l\'appareil pour ouvrir le gestionnaire d\'application</string>
    <string name="tap_connected_device_for_activity">Cliquez sur l\'appareil pour ouvrir le gestionnaire d’activité</string>
    <string name="tap_connected_device_for_vibration">Cliquez sur connecter pour envoyer une vibration</string>
    <string name="tap_a_device_to_connect">Tapez sur le périphérique pour le connecter</string>
    <string name="cannot_connect_bt_address_invalid_">Connexion impossible. L’adresse Bluetooth est-elle valide ?</string>
    <string name="gadgetbridge_running_generic">Gadgetbridge est en fonctionnement</string>
    <string name="installing_binary_d_d">Installation du binaire %1$d/%2$d</string>
    <string name="installation_failed_">Échec de l\'installation</string>
    <string name="installation_successful">Installé</string>
    <string name="firmware_install_warning">VOUS TENTEZ D\'INSTALLER UN MICROLOGICIEL, PROCÉDEZ À VOS RISQUES ET PÉRILS.\n\n\nCe micrologiciel est pour la version de matériel : %s</string>
    <string name="app_install_info">Vous êtes sur le point d\'installer l\'application suivante :
\n
\n%1$s-
\nVersion %2$s par %3$s
\n</string>
    <string name="n_a">N.D.</string>
    <string name="initialized">Initialisé</string>
    <string name="appversion_by_creator">%1$s par %2$s</string>
    <string name="title_activity_discovery">Scanner les appareils</string>
    <string name="discovery_stop_scanning">Arrêter le scan</string>
    <string name="discovery_start_scanning">Démarrer le scan</string>
    <string name="action_discover">Connecter un nouvel appareil</string>
    <string name="device_with_rssi">%1$s (%2$s)</string>
    <string name="title_activity_android_pairing">Appairer l\'appareil</string>
    <string name="android_pairing_hint">Utiliser l\'appairage Bluetooth d\'Android pour jumeler l\'appareil.</string>
    <string name="title_activity_mi_band_pairing">Appairer votre Mi Band</string>
    <string name="pairing">Jumelage avec %s…</string>
    <string name="pairing_creating_bond_with">Création d’un lien avec %1$s (%2$s)</string>
    <string name="pairing_unable_to_pair_with">Impossible se s’appairer avec %1$s (%2$s)</string>
    <string name="pairing_in_progress">Création du lien en cours : %1$s (%2$s)</string>
    <string name="pairing_already_bonded">Déjà lié avec %1$s (%2$s), connexion…</string>
    <string name="message_cannot_pair_no_mac">Aucune adresse MAC fournie, ne peut être appairé.</string>
    <string name="preferences_category_device_specific_settings">Paramètres spécifiques à l\'appareil </string>
    <string name="preferences_miband_settings">Paramètres Mi Band / Amazfit</string>
    <string name="male">Homme</string>
    <string name="female">Femme</string>
    <string name="other">Autre</string>
    <string name="left">Gauche</string>
    <string name="right">Droite</string>
    <string name="miband_pairing_using_dummy_userdata">Aucune donnée utilisateur valide fournie, utilisation de données fictives pour le moment.</string>
    <string name="miband_pairing_tap_hint">Quand votre Mi Band vibre et clignote, appuyez dessus plusieurs fois d\'affilée.</string>
    <string name="appinstaller_install">Installer</string>
    <string name="discovery_connected_devices_hint">Mettez votre appareil en mode visible. Les appareils déjà connectés ne seront pas visibles. Sur Android 6 ou supérieur, vous devez activer la localisation (ex. GPS). Désactivez Privacy Guard pour Gadgetbridge, il pourrait stopper et redémarrer votre téléphone. Si votre appareil n\'est pas visible après 2 minutes, réessayez après avoir redémarré votre téléphone.</string>
    <string name="discovery_note">Note :</string>
    <string name="candidate_item_device_image">Image de l\'appareil</string>
    <string name="miband_prefs_alias">Nom/Pseudo</string>
    <string name="pref_header_vibration_count">Nombre de vibrations</string>
    <string name="title_activity_sleepmonitor">Moniteur de sommeil</string>
    <string name="pref_write_logfiles">Écrire des fichiers journaux</string>
    <string name="initializing">Initialisation</string>
    <string name="busy_task_fetch_activity_data">Récupération des données d\'activité</string>
    <string name="sleep_activity_date_range">De %1$s à %2$s</string>
    <string name="prefs_wearside">Port main gauche ou droite ?</string>
    <string name="pref_screen_vibration_profile">Profil de vibration</string>
    <string name="vibration_profile_staccato">Saccadé</string>
    <string name="vibration_profile_short">Court</string>
    <string name="vibration_profile_medium">Moyen</string>
    <string name="vibration_profile_long">Long</string>
    <string name="vibration_profile_waterdrop">Goute d\'eau</string>
    <string name="vibration_profile_ring">Sonnette</string>
    <string name="vibration_profile_alarm_clock">Alarme</string>
    <string name="miband_prefs_vibration">Vibreur</string>
    <string name="vibration_try">Essayer</string>
    <string name="pref_screen_notification_profile_sms">Notification Texto</string>
    <string name="pref_header_vibration_settings">Paramètres des vibrations</string>
    <string name="pref_screen_notification_profile_generic">Notification générique</string>
    <string name="pref_screen_notification_profile_email">Notification par courriel</string>
    <string name="pref_screen_notification_profile_incoming_call">Notification d\'appels entrants</string>
    <string name="pref_screen_notification_profile_generic_chat">Tchat</string>
    <string name="pref_screen_notification_profile_generic_navigation">Navigation</string>
    <string name="pref_screen_notification_profile_generic_social">Réseau social</string>
    <string name="stats_title">Zones de vitesse</string>
    <string name="stats_x_axis_label">Total de minutes</string>
    <string name="stats_y_axis_label">Pas par minute</string>
    <string name="control_center_find_lost_device">Trouver l\'appareil perdu</string>
    <string name="control_center_cancel_to_stop_vibration">Annuler pour arrêter les vibrations.</string>
    <string name="title_activity_charts">Activité et Sommeil</string>
    <string name="title_activity_set_alarm">Configurer les alarmes</string>
    <string name="controlcenter_start_configure_alarms">Configurer les alarmes</string>
    <string name="title_activity_alarm_details">Détails des alarmes</string>
    <string name="alarm_sun_short">Dim</string>
    <string name="alarm_mon_short">Lun</string>
    <string name="alarm_tue_short">Mar</string>
    <string name="alarm_wed_short">Mer</string>
    <string name="alarm_thu_short">Jeu</string>
    <string name="alarm_fri_short">Ven</string>
    <string name="alarm_sat_short">Sam</string>
    <string name="alarm_smart_wakeup">Réveil intelligent</string>
    <string name="user_feedback_miband_set_alarms_failed">Une erreur s\'est produite lors du paramétrage des alarmes, veuillez réessayer.</string>
    <string name="user_feedback_miband_set_alarms_ok">Alarmes envoyées à l\'appareil.</string>
    <string name="chart_no_data_synchronize">Aucune donnée. Synchroniser l\'appareil ?</string>
    <string name="user_feedback_miband_activity_data_transfer">Sur le point de transférer %1$s de données à partir de %2$s</string>
    <string name="miband_prefs_fitness_goal">Objectif de pas par jour</string>
    <string name="dbaccess_error_executing">Erreur lors de l’exécution de %1$s\'</string>
    <string name="controlcenter_start_activitymonitor">Votre activité</string>
    <string name="cannot_connect">Impossible de se connecter : %1$s</string>
    <string name="installer_activity_unable_to_find_handler">Impossible de trouver un gestionnaire pour installer ce fichier.</string>
    <string name="pbw_install_handler_unable_to_install">Impossible d\'installer le ficher suivant : %1$s</string>
    <string name="pbw_install_handler_hw_revision_mismatch">Impossible d\'installer le micrologiciel spécifié : il ne correspond pas à la version du matériel de votre Pebble.</string>
    <string name="installer_activity_wait_while_determining_status">Veuillez patienter pendant la détermination de l\'état de l\'installation…</string>
    <string name="notif_battery_low_title">Niveau de batterie faible !</string>
    <string name="notif_battery_low_percent">%1$s batterie restante : %2$s%%</string>
    <string name="notif_battery_low_bigtext_last_charge_time">Dernière charge : %s \n</string>
    <string name="notif_battery_low_bigtext_number_of_charges">Nombre de charges : %s</string>
    <string name="sleepchart_your_sleep">Sommeil</string>
    <string name="weeksleepchart_sleep_a_week">Sommeil de la semaine</string>
    <string name="weeksleepchart_today_sleep_description">Sommeil aujourd\'hui, objectif : %1$s</string>
    <string name="weekstepschart_steps_a_week">Pas de la semaine</string>
    <string name="activity_sleepchart_activity_and_sleep">Activité</string>
    <string name="updating_firmware">Installation du micrologiciel…</string>
    <string name="fwapp_install_device_not_ready">Le fichier ne peut pas être installé, l\'appareil n\'est pas prêt.</string>
    <string name="installhandler_firmware_name">%1$s : %2$s %3$s</string>
    <string name="miband_fwinstaller_compatible_version">Version compatible</string>
    <string name="miband_fwinstaller_untested_version">Version non testée !</string>
    <string name="fwappinstaller_connection_state">Connexion  à l\'appareil : %1$s</string>
    <string name="pbw_installhandler_pebble_firmware">Micrologiciel Pebble %1$s</string>
    <string name="pbwinstallhandler_correct_hw_revision">Version du matériel correcte</string>
    <string name="pbwinstallhandler_incorrect_hw_revision">Version du matériel incorrecte !</string>
    <string name="pbwinstallhandler_app_item">%1$s (%2$s)</string>
    <string name="updatefirmwareoperation_updateproblem_do_not_reboot">Problème avec le transfert du micrologiciel. Ne redémarrez pas votre Mi Band !</string>
    <string name="updatefirmwareoperation_metadata_updateproblem">Problème avec le transfert de métadonnées du micrologiciel</string>
    <string name="updatefirmwareoperation_update_complete">Installation complète du micrologiciel</string>
    <string name="updatefirmwareoperation_update_complete_rebooting">Installation complète du micrologiciel, redémarrage de l\'appareil…</string>
    <string name="updatefirmwareoperation_write_failed">Échec lors de l\'installation du micrologiciel</string>
    <string name="chart_steps">Pas</string>
    <string name="calories">Calories</string>
    <string name="distance">Distance</string>
    <string name="clock">Horloge</string>
    <string name="heart_rate">Fréquence cardiaque</string>
    <string name="battery">Batterie</string>
    <string name="liveactivity_live_activity">Activité en direct</string>
    <string name="weeksteps_today_steps_description">Nombre de pas aujourd\'hui, objectif : %1$s</string>
    <string name="pref_title_dont_ack_transfer">Ne pas confirmer le transfert de données d\'activités</string>
    <string name="pref_summary_dont_ack_transfers">Les données d\'activités ne seront pas effacées du bracelet si elles ne sont pas confirmées par le bracelet. Utile si GB est utilisé avec d\'autres applications.</string>
    <string name="pref_summary_keep_data_on_device">Les données d\'activités seront conservées sur l\'appareil après la synchronisation. Utile si GB est utilisé avec d\'autres applications. Cela peut entraîner la saturation de l\'espace dans la montre et/ou l’arrêt de la synchronisation.</string>
    <string name="pref_title_low_latency_fw_update">Utilisez le mode basse latence pour installer un micrologiciel</string>
    <string name="pref_summary_low_latency_fw_update">Cela peut aider sur les appareils où les installations de micrologiciel échouent.</string>
    <string name="live_activity_steps_history">Historique de pas</string>
    <string name="live_activity_current_steps_per_minute">Pas/minute actuel</string>
    <string name="live_activity_total_steps">Nombre total de pas</string>
    <string name="live_activity_steps_per_minute_history">Historique de pas/minute</string>
    <string name="live_activity_start_your_activity">Démarrez votre activité</string>
    <string name="abstract_chart_fragment_kind_activity">Activité</string>
    <string name="abstract_chart_fragment_kind_light_sleep">Sommeil léger</string>
    <string name="abstract_chart_fragment_kind_deep_sleep">Sommeil profond</string>
    <string name="abstract_chart_fragment_kind_not_worn">Non porté</string>
    <string name="device_not_connected">Non connecté.</string>
    <string name="user_feedback_all_alarms_disabled">Toutes alarmes désactivées</string>
    <string name="pref_title_keep_data_on_device">Conserver les activités sur l\'appareil</string>
    <string name="miband_fwinstaller_incompatible_version">Micrologiciel non compatible</string>
    <string name="fwinstaller_firmware_not_compatible_to_device">Ce micrologiciel n\'est pas compatible avec l\'appareil</string>
    <string name="miband_prefs_reserve_alarm_calendar">Alarmes à réserver pour événements futurs</string>
    <string name="miband_prefs_hr_sleep_detection">Utiliser le capteur cardiaque pour améliorer la détection du sommeil</string>
    <string name="miband_prefs_device_time_offset_hours">La compensation de temps en heure (pour travailleurs en rotation, par exemple)</string>
    <string name="miband2_prefs_dateformat">Format de la date</string>
    <string name="dateformat_time">Heure</string>
    <string name="dateformat_date_time"><![CDATA[Date et heure]]></string>
    <string name="mi2_prefs_goal_notification">Notification d\'objectif</string>
    <string name="mi2_prefs_goal_notification_summary">Le bracelet vibrera lorsque l\'objectif de pas quotidien sera atteint</string>
    <string name="mi2_prefs_display_items">Éléments à afficher</string>
    <string name="mi2_prefs_display_items_summary">Choisissez les éléments à afficher sur le bracelet</string>
    <string name="mi2_prefs_activate_display_on_lift">Allumer l\'écran lors d\'un mouvement</string>
    <string name="mi2_prefs_rotate_wrist_to_switch_info">Tourner votre poignet pour changer d\'élément</string>
    <string name="mi2_prefs_do_not_disturb">Ne Pas Déranger</string>
    <string name="mi2_prefs_do_not_disturb_summary">Le bracelet ne recevra pas de notifications si activé</string>
    <string name="mi2_prefs_inactivity_warnings">Alertes d\'inactivité</string>
    <string name="mi2_prefs_inactivity_warnings_summary">Le bracelet vibrera si vous n\'êtes pas actif pendant un moment</string>
    <string name="mi2_prefs_inactivity_warnings_threshold">Seuil d\'inactivité (en minutes)</string>
    <string name="mi2_prefs_inactivity_warnings_dnd_summary">Désactiver les alertes d\'inactivité pendant un intervalle de temps</string>
    <string name="mi2_prefs_do_not_disturb_start">Heure de début</string>
    <string name="mi2_prefs_do_not_disturb_end">Heure de fin</string>
    <string name="FetchActivityOperation_about_to_transfer_since">Sur le point de transférer des données depuis %1$s</string>
    <string name="waiting_for_reconnect">En attente de reconnexion</string>
    <string name="activity_prefs_about_you">À propos de vous</string>
    <string name="activity_prefs_year_birth">Année de naissance</string>
    <string name="activity_prefs_gender">Sexe</string>
    <string name="activity_prefs_height_cm">Taille en cm</string>
    <string name="activity_prefs_weight_kg">Poids en kg</string>
    <string name="authenticating">Authentification</string>
    <string name="authentication_required">Authentification requise</string>
    <string name="appwidget_text">Zzz</string>
    <string name="add_widget">Ajouter un widget</string>
    <string name="activity_prefs_sleep_duration">
Temps de sommeil préféré en heures</string>
    <string name="appwidget_setting_alarm">Une alarme a été enregistré pour %1$02d:%2$02d</string>
    <string name="device_hw">Révision matérielle : %1$s</string>
    <string name="device_fw">Version du micrologiciel : %1$s</string>
    <string name="error_creating_directory_for_logfiles">Erreur à la création de votre fichier log : %1$s</string>
    <string name="DEVINFO_HR_VER">"Fréquence cardiaque : "</string>
    <string name="updatefirmwareoperation_update_in_progress">Installation du micrologiciel</string>
    <string name="updatefirmwareoperation_firmware_not_sent">Échec lors de l\'écriture du micrologiciel</string>
    <string name="charts_legend_heartrate">Fréquence cardiaque</string>
    <string name="live_activity_heart_rate">Fréquence cardiaque</string>
    <string name="pref_title_pebble_health_store_raw">Stockez les enregistrements brut dans la base de données</string>
    <string name="pref_summary_pebble_health_store_raw">Si coché, les données « brutes » sont stockées pour une interprétation ultérieure, augmentant la taille de la base de données.</string>
    <string name="action_db_management">Gestion des données</string>
    <string name="title_activity_db_management">Gestion des données</string>
    <string name="activity_db_management_import_export_explanation">Les opérations d\'Import/Export utilisent le répertoire suivant (voir ci-dessous) sur votre appareil. Ce répertoire est accessible à d\'autres applications Android et depuis votre ordinateur. Merci de prendre note que ce répertoire et tout son contenu seront effacés si vous désinstallez Gadgetbridge. Cela inclut :
\n Export_preference - réglages généraux
\n Export_preference_MAC - réglages spécifiques à l\'appareil
\n Gadgetbridge - base de données des appareils et activités
\n Gadgetbridge_date - export de la base de données sur une date
\n *.gpx - enregistrements GPS
\n *.log - fichiers de log
\nAttendez-vous à trouver vos fichiers exportés (ou à placer là les fichiers que vous voulez importer) à cet endroit :</string>
    <string name="activity_db_management_merge_old_title">Effacer l\'ancienne base de données</string>
    <string name="dbmanagementactivvity_cannot_access_export_path">Impossible d\'accéder au fichier d\'export. Merci de contacter les développeurs.</string>
    <string name="dbmanagementactivity_exported_to">Exporter vers : %1$s</string>
    <string name="dbmanagementactivity_error_exporting_db">Erreur d\'exportation de la base de données : %1$s</string>
    <string name="dbmanagementactivity_error_exporting_shared">Erreur d\'exportation des préférences : %1$s</string>
    <string name="dbmanagementactivity_import_data_title">Importer des données ?</string>
    <string name="dbmanagementactivity_overwrite_database_confirmation">Voulez-vous vraiment écraser les données actuelles ? Toutes vos données actuelles d\'activité (s\'il y en a), appareils et préférences seront écrasées.</string>
    <string name="dbmanagementactivity_import_successful">Importé.</string>
    <string name="dbmanagementactivity_error_importing_db">Erreur lors de l\'importation de la base de données : %1$s</string>
    <string name="dbmanagementactivity_error_importing_shared">Erreur d\'importation des préférences : %1$s</string>
    <string name="dbmanagementactivity_delete_activity_data_title">Détruire les anciennes données ?</string>
    <string name="dbmanagementactivity_really_delete_entire_db">Voulez-vous vraiment détruire entièrement la base de données ? Toutes vos données d\'activité et vos informations issues de vos appareils seront perdues.</string>
    <string name="dbmanagementactivity_database_successfully_deleted">Les données ont été effacées.</string>
    <string name="dbmanagementactivity_db_deletion_failed">Échec de la destruction de la base de données.</string>
    <string name="dbmanagementactivity_delete_old_activity_db">Voulez-vous détruire les anciennes activités de la base de données ?</string>
    <string name="dbmanagementactivity_delete_old_activitydb_confirmation">Voulez-vous vraiment détruire entièrement la base de données ? Toutes vos données non importées seront perdues.</string>
    <string name="dbmanagementactivity_old_activity_db_successfully_deleted">Les anciennes données d\'activité ont été effacées.</string>
    <string name="dbmanagementactivity_old_activity_db_deletion_failed">Échec de la destruction de l\'ancienne base de données.</string>
    <string name="dbmanagementactivity_overwrite">Écraser</string>
    <string name="Cancel">Annuler</string>
    <string name="Delete">Supprimer</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">Jumelage avec une Pebble</string>
    <string name="pebble_pairing_hint">Une fenêtre de jumelage va s’afficher sur votre téléphone. Si cela ne se produit pas, regardez dans vos notifications et acceptez-la. Acceptez ensuite la demande de jumelage sur votre Pebble.</string>
    <string name="weather_notification_label">Assurez vous que ce thème soit activé dans l\'application de notification de la météo pour recevoir les informations sur votre Pebble.
\n
\nAucune configuration n\'est requise.
\n
\nVous pouvez activer l\'application météo système de votre Pebble depuis la configuration de l\'application.
\n
\nLes cadrans supportés afficheront la météo automatiquement.</string>
    <string name="pref_title_setup_bt_pairing">Activer le jumelage Bluetooth</string>
    <string name="pref_summary_setup_bt_pairing">Désactivez ceci si vous avez des problèmes de connexion</string>
    <string name="unit_metric">Métrique</string>
    <string name="unit_imperial">Impériale</string>
    <string name="timeformat_24h">24H</string>
    <string name="timeformat_am_pm">AM/PM</string>
    <string name="pref_screen_notification_profile_alarm_clock">Alarme</string>
    <string name="StringUtils_sender">(%1$s)</string>
    <string name="find_device_you_found_it">Vous l\'avez trouvé !</string>
    <string name="miband2_prefs_timeformat">Mi2 : format de l\'heure</string>
    <string name="mi2_fw_installhandler_fw53_hint">Vous devez installer la version %1$s avant d\'installer ce micrologiciel !</string>
    <string name="mi2_enable_text_notifications">Notifications textuelles</string>
    <string name="mi2_enable_text_notifications_summary"><![CDATA[Requis : micrologiciel version 1.0.1.28 ou plus, fichier Mili_pro.ft* installé.]]></string>
    <string name="off">Éteint</string>
    <string name="mi2_dnd_off">Éteint</string>
    <string name="mi2_dnd_automatic">Automatique (détection de sommeil)</string>
    <string name="mi2_dnd_scheduled">Programmé (intervalle de temps)</string>
    <string name="discovery_attempting_to_pair">Tentative de jumelage avec %1$s</string>
    <string name="discovery_bonding_failed_immediately">Le lien avec %1$s a échoué instantanément.</string>
    <string name="discovery_trying_to_connect_to">Tentative de connexion à : %1$s</string>
    <string name="discovery_enable_bluetooth">Activez le Bluetooth pour trouver des dispositifs.</string>
    <string name="discovery_successfully_bonded">Lié à %1$s.</string>
    <string name="discovery_pair_title">Appairer avec %1$s ?</string>
    <string name="discovery_pair_question">Sélectionnez Jumeler pour associer vos dispositifs. Si cela échoue, essayez à nouveau sans jumelage.</string>
    <string name="discovery_yes_pair">Appairer</string>
    <string name="discovery_dont_pair">Ne pas appairer</string>
    <string name="fw_upgrade_notice_amazfitbip">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit Bip. 
\n 
\nVeuillez installer le fichier .fw, puis le fichier .res, et enfin le fichier .gps. Votre montre redémarrera après l\'installation du .fw. 
\n 
\nNote : vous n\'avez pas à installer les fichiers .res et .gps si ceux-ci sont identiques à ceux installés précédemment. 
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS !</string>
    <string name="mi2_prefs_button_actions">Actions du bouton</string>
    <string name="mi2_prefs_button_actions_summary">Spécifier les actions par pression du bouton</string>
    <string name="mi2_prefs_button_press_count">Nombre de pressions du bouton</string>
    <string name="mi2_prefs_button_press_count_summary">Nombre d\'appuis sur le boutton pour envoyer l’Évènement 1. Appuyer de nouveau autant de fois créera l\'Évènement 2, etc.</string>
    <string name="mi2_prefs_button_press_broadcast">Message à envoyer</string>
    <string name="mi2_prefs_button_press_broadcast_summary">Message de diffusion envoyé avec l\'évènement. Le paramètre « button_id » est automatiquement ajouté à chaque message.</string>
    <string name="mi2_prefs_button_action">Activer action du bouton</string>
    <string name="mi2_prefs_button_action_summary">Activer action après nombre spécifié de pressions</string>
    <string name="mi2_prefs_button_action_vibrate">Activer la vibration du bracelet</string>
    <string name="mi2_prefs_button_action_vibrate_summary">Activer la vibration après déclenchement de l\'action</string>
    <string name="mi2_prefs_button_press_count_max_delay">Délai maximum entre pressions</string>
    <string name="mi2_prefs_button_press_count_max_delay_summary">Délai maximum entre pressions en millisecondes</string>
    <string name="_pebble_watch_open_on_phone">Ouvrir sur le smartphone Android</string>
    <string name="_pebble_watch_mute">Silencieux</string>
    <string name="_pebble_watch_reply">Répondre</string>
    <string name="pref_title_pebble_enable_bgjs">Activer tâche de fond JS</string>
    <string name="pref_summary_pebble_enable_bgjs">Si activé, autorise l\'affichage de la météo, niveau de batterie, etc.</string>
    <string name="activity_web_view">Activité Web View</string>
    <string name="controlcenter_connect">Connecter…</string>
    <string name="fw_upgrade_notice_amazfitcor">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit Cor. 
\n 
\nVeuillez installer le fichier .fw, puis le fichier .res. Votre montre redémarrera après l\'installation du .fw. 
\n 
\nNote : vous n\'avez pas à installer le .res si celui-ci est identique à celui installé précédemment. 
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS !</string>
    <string name="pref_title_charts_swipe">Permettre le balayage gauche/droite dans les graphiques d\'activité</string>
    <string name="automatic">Automatique</string>
    <string name="simplified_chinese">Chinois simplifié</string>
    <string name="traditional_chinese">Chinois traditionnel</string>
    <string name="english">Anglais</string>
    <string name="prefs_title_heartrate_measurement_interval">Mesure du pouls toute la journée</string>
    <string name="interval_one_minute">Une fois par minute</string>
    <string name="interval_five_minutes">Toutes les 5 minutes</string>
    <string name="interval_ten_minutes">Toutes les 10 minutes</string>
    <string name="interval_thirty_minutes">Toutes les 30 minutes</string>
    <string name="interval_one_hour">Une fois par heure</string>
    <string name="pref_title_weather">Météo</string>
    <string name="pref_title_weather_location">Emplacement météo (du fournisseur météo LineageOS)</string>
    <string name="kind_firmware">Micrologiciel</string>
    <string name="kind_invalid">Données non valides</string>
    <string name="kind_font">Police</string>
    <string name="kind_gps">Micrologiciel GPS</string>
    <string name="kind_gps_almanac">Almanach GPS</string>
    <string name="kind_gps_cep">Correction d\'erreurs GPS</string>
    <string name="kind_resources">Ressources</string>
    <string name="kind_watchface">Cadran</string>
    <string name="devicetype_unknown">Appareil inconnu</string>
    <string name="devicetype_test">Appareil de test</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_amazfit_bip">Amazfit Bip</string>
    <string name="devicetype_amazfit_cor">Amazfit Cor</string>
    <string name="devicetype_vibratissimo">Vibratissimo</string>
    <string name="devicetype_liveview">Vue en direct</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_no1_f1">No.1 F1</string>
    <string name="devicetype_teclast_h30">Teclast H30</string>
    <string name="pref_header_auto_export">Exporter automatiquement</string>
    <string name="pref_title_auto_export_enabled">Exportation automatique activée</string>
    <string name="pref_title_auto_export_location">Emplacement de l\'exportation</string>
    <string name="pref_title_auto_export_interval">Intervalle d\'exportation</string>
    <string name="pref_summary_auto_export_interval">Exporter toutes les %d heures</string>
    <string name="notif_export_failed_title">L\'exportation de la base de données a échoué ! Veuillez vérifier vos paramètres.</string>
    <string name="choose_auto_export_location">Choisissez l\'emplacement d\'exportation</string>
    <string name="spanish">Espagnol</string>
    <string name="notification_channel_name">Général</string>
    <string name="devicetype_xwatch">XWatch</string>
    <string name="on">Actif</string>
    <string name="activity_type_not_measured">Non mesurée</string>
    <string name="activity_type_activity">Activité</string>
    <string name="activity_type_light_sleep">Sommeil léger</string>
    <string name="activity_type_deep_sleep">Sommeil profond</string>
    <string name="activity_type_running">Course</string>
    <string name="activity_type_walking">Marche</string>
    <string name="activity_type_swimming">Natation</string>
    <string name="activity_type_unknown">Activité inconnue</string>
    <string name="activity_summaries">Activités sportives</string>
    <string name="activity_type_biking">Vélo</string>
    <string name="activity_type_treadmill">Tapis de course</string>
    <string name="controlcenter_start_activity_tracks">Suivi de vos activités</string>
    <string name="activity_type_not_worn">Dispositif non utilisé</string>
    <string name="select_all">Tout sélectionner</string>
    <string name="share">Partager</string>
    <string name="reset_index">Réinitialiser la date de récupération</string>
    <string name="menuitem_status">État</string>
    <string name="menuitem_activity">Historique d\'activité</string>
    <string name="menuitem_weather">Météo</string>
    <string name="menuitem_alarm">Alarme</string>
    <string name="menuitem_timer">Décompte</string>
    <string name="menuitem_compass">Boussole</string>
    <string name="menuitem_settings">Réglages</string>
    <string name="menuitem_alipay">Alipay</string>
    <string name="blacklist_all_for_notifications">Mettre toutes les notifications en liste noire</string>
    <string name="whitelist_all_for_notifications">Mettre toutes les notifications en liste blanche</string>
    <string name="fw_upgrade_notice_miband3">Vous allez installer le micrologiciel %s dans votre Mi Band 3.
\n
\nVeuillez installer le fichier .fw, puis le fichier .res.. Votre bracelet redémarrera après l\'installation du fichier .fw.
\n 
\nNote : vous n\'avez pas à installer le fichier .res si celui-ci est exactement le même que celui installé précédemment.
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS !</string>
    <string name="pref_title_pebble_gatt_clientonly">client GATT uniquement</string>
    <string name="pref_summary_pebble_gatt_clientonly">Pour Pebble 2 seulement et expérimental, essayez seulement si vous avez des problèmes de connexion</string>
    <string name="prefs_screen_orientation">Orientation de l\'écran</string>
    <string name="pref_auto_fetch">Récupérer automatiquement les données d\'activité</string>
    <string name="pref_auto_fetch_summary">Récupération au déverrouillage de l\'écran. Fonctionne uniquement si un mécanisme de verrouillage est configuré !</string>
    <string name="pref_auto_fetch_limit_fetches">Temps minimum entre synchronisations</string>
    <string name="pref_auto_fetch_limit_fetches_summary">Synchronisation toutes les %d minutes</string>
    <string name="horizontal">Horizontal</string>
    <string name="vertical">Vertical</string>
    <string name="russian">Russe</string>
    <string name="devicetype_miband3">Mi Band 3</string>
    <string name="devicetype_q8">Q8</string>
    <string name="devicetype_mykronoz_zetime">MyKronoz ZeTime</string>
    <string name="devicetype_id115">ID115</string>
    <string name="menuitem_notifications">Notifications</string>
    <string name="menuitem_music">Musique</string>
    <string name="menuitem_more">Suite</string>
    <string name="controlcenter_change_led_color">Changer la couleur de la LED</string>
    <string name="controlcenter_change_fm_frequency">Changer la fréquence FM</string>
    <string name="controlcenter_calibrate_device">Calibrer l\'appareil</string>
    <string name="pref_title_notifications_timeout">Durée minimum entre deux notifications</string>
    <string name="pref_title_rtl">De droite à gauche</string>
    <string name="pref_summary_rtl">Cocher ceci si votre appareil n\'est pas compatible avec les langues \"droite-à-gauche\"</string>
    <string name="pref_rtl_max_line_length">Longueur max. d\'une ligne en mode Droite-à-Gauche</string>
    <string name="watch9_pairing_tap_hint">Lorsque votre bracelet vibre, secouez-le ou pressez son bouton.</string>
    <string name="notif_battery_low">%1$s batterie faible</string>
    <string name="notif_battery_low_extended">%1$s batterie faible : %2$s</string>
    <string name="lack_of_sleep">Manque de sommeil : %1$s</string>
    <string name="overslept">Excès de sommeil : %1$s</string>
    <string name="no_limit">Sans limite</string>
    <string name="seconds_5">5 secondes</string>
    <string name="seconds_10">10 secondes</string>
    <string name="seconds_20">20 secondes</string>
    <string name="seconds_30">30 secondes</string>
    <string name="minutes_1">1 minute</string>
    <string name="minutes_5">5 minutes</string>
    <string name="minutes_10">10 minutes</string>
    <string name="minutes_30">30 minutes</string>
    <string name="lack_of_step">Manque d\'activité : %1$d</string>
    <string name="overstep">Trop d\'activité : %1$d</string>
    <string name="live_activity_max_heart_rate">Mesure cardiaque actuelle / maximum : %1$d / %2$d</string>
    <string name="you_slept">%1$s - %2$s</string>
    <string name="you_did_not_sleep">Vous n\'avez pas dormi</string>
    <string name="mi3_prefs_band_screen_unlock_summary">Glisser le doigt vers le haut pour débloquer l\'écran du bracelet</string>
    <string name="mi3_prefs_night_mode">Mode nuit</string>
    <string name="mi3_prefs_night_mode_summary">Diminuer la luminosité de l\'écran du bracelet automatiquement lorsqu\'il fait sombre</string>
    <string name="german">Allemand</string>
    <string name="italian">Italien</string>
    <string name="french">Français</string>
    <string name="polish">Polonais</string>
    <string name="korean">Coréen</string>
    <string name="japanese">Japonais</string>
    <string name="activity_prefs_charts">Paramètres des graphiques</string>
    <string name="activity_prefs_chart_max_heart_rate">Fréquence cardiaque maximum</string>
    <string name="activity_prefs_chart_min_heart_rate">Fréquence cardiaque minimum</string>
    <string name="ok">Ok</string>
    <string name="mi3_night_mode_sunset">Au coucher du soleil</string>
    <string name="devicetype_watch9">Watch 9</string>
    <string name="watch9_time_minutes">Minutes :</string>
    <string name="watch9_time_hours">Heures :</string>
    <string name="watch9_time_seconds">Secondes :</string>
    <string name="watch9_calibration_hint">Régler l\'heure que votre appareil indique actuellement.</string>
    <string name="watch9_calibration_button">Calibrer</string>
    <string name="title_activity_watch9_pairing">Appairage de la Watch 9</string>
    <string name="title_activity_watch9_calibration">Calibration de la Watch 9</string>
    <string name="preferences_rtl_settings">Support Droite-à-Gauche</string>
    <string name="share_log">Partager les journaux</string>
    <string name="share_log_warning">Veuillez garder à l\'esprit que les fichiers de journalisation de Gadgetbridge peuvent contenir beaucoup d\'informations personnelles, incluant entre autre des données relatives à la santé, des identifiants uniques (telles que des adresses MAC), des préférences musicales, etc. Pensez à modifier le fichier et à retirer ces informations personnelles avant toute publication sur un rapport de bug public.</string>
    <string name="warning">Attention !</string>
    <string name="no_data">Pas de données</string>
    <string name="preferences_led_color">Couleur de la DEL</string>
    <string name="preferences_fm_frequency">Fréquence FM</string>
    <string name="pref_invalid_frequency_title">Fréquence invalide</string>
    <string name="pref_invalid_frequency_message">Veuillez introduire une fréquence entre 87,5 et 108,0</string>
    <string name="language_and_region_prefs">Paramètres de langue et de région</string>
    <string name="norwegian_bokmal">Bokmål norvégien</string>
    <string name="devicetype_roidmi">Roidmi</string>
    <string name="devicetype_roidmi3">Roidmi 3</string>
    <string name="pref_title_contextual_arabic">Arabe contextuel</string>
    <string name="pref_summary_contextual_arabic">Activer ceci pour prendre en charge l\'arabe contextuel</string>
    <string name="debugactivity_really_factoryreset_title">Êtes-vous sûr de vouloir retourner aux paramètres d\'usine \?</string>
    <string name="debugactivity_really_factoryreset">Une réinitialisation effacera toutes les données de l\'appareil connecté (si supporté). Les appareils Xiaomi/Huami modifient également l\'adresse MAC Bluetooth, ainsi ils apparaîtront comme nouveau dans Gadgetbridge.</string>
    <string name="mi3_prefs_band_screen_unlock">Déverrouillage de l\'écran du Band</string>
    <string name="activity_type_exercise">Activité physique</string>
    <string name="devicetype_casiogb6900">Casio GB-6900</string>
    <string name="title_activity_notification_filter">Filtre de notifications</string>
    <string name="edittext_notification_filter_words_hint">Saisissez les mots désirés, chacun sur une ligne</string>
    <string name="toast_notification_filter_saved_successfully">Filtre des notifications sauvegardé</string>
    <string name="filter_mode_none">Ne pas filtrer</string>
    <string name="filter_mode_whitelist">Montrer lorsque contient les mots</string>
    <string name="filter_mode_blacklist">Bloquer lorsque contient les mots</string>
    <string name="filter_submode_at_least_one">Au moins un des mots</string>
    <string name="filter_submode_all">Tous les mots</string>
    <string name="toast_notification_filter_words_empty_hint">Veuillez entrer au moins un mot</string>
    <string name="filter_mode">Mode Filtre</string>
    <string name="mode_configuration">Mode Configuration</string>
    <string name="save_configuration">Sauvegarder la configuration</string>
    <string name="appwidget_not_connected">Non connecté, l\'alarme n\'est pas définie.</string>
    <string name="prefs_disconnect_notification">Notification de déconnexion</string>
    <string name="zetime_title_settings">Paramètres ZeTime</string>
    <string name="zetime_title_heartrate">Paramètres Fréquence Cardiaque</string>
    <string name="zetime_title_screentime">Durée d\'écran allumé en secondes</string>
    <string name="zetime_title_heart_rate_alarm">Alarme Fréquence Cardiaque</string>
    <string name="zetime_title_heart_rate_alarm_summary">La montre vous alertera quand votre fréquence cardiaque dépasse les limites.</string>
    <string name="zetime_heart_rate_alarm_enable">Activer l\'alarme de fréquence cardiaque</string>
    <string name="activity_prefs_alarm_max_heart_rate">Fréquence cardiaque maximale</string>
    <string name="activity_prefs_alarm_min_heart_rate">Fréquence cardiaque minimale</string>
    <string name="zetime_analog_mode">Mode analogique</string>
    <string name="zetime_analog_mode_hands">Aiguilles seulement</string>
    <string name="zetime_analog_mode_handsandsteps">Aiguilles et Pas</string>
    <string name="zetime_activity_tracking">Suivi des Activités</string>
    <string name="zetime_activity_tracking_summary">Activer le suivi des activités : comptera vos pas, etc.</string>
    <string name="zetime_handmove_display_summary">Tourner le poignet pour activer ou désactiver l\'écran.</string>
    <string name="zetime_calories_type">Type de calories</string>
    <string name="zetime_calories_type_active">Seulement les calories brûlées activement</string>
    <string name="zetime_calories_type_all">Calories brûlées activement et au repos</string>
    <string name="zetime_date_format">Format de la date</string>
    <string name="zetime_date_format_1">aaaa/mm/jj</string>
    <string name="zetime_date_format_2">jj/mm/aaaa</string>
    <string name="zetime_date_format_3">mm/jj/aaaa</string>
    <string name="zetime_prefs_inactivity_repetitions">Répétitions</string>
    <string name="zetime_prefs_inactivity_mo">Lundi</string>
    <string name="zetime_prefs_inactivity_tu">Mardi</string>
    <string name="zetime_prefs_inactivity_we">Mercredi</string>
    <string name="zetime_prefs_inactivity_th">Jeudi</string>
    <string name="zetime_prefs_inactivity_fr">Vendredi</string>
    <string name="zetime_prefs_inactivity_sa">Samedi</string>
    <string name="zetime_prefs_inactivity_su">Dimanche</string>
    <string name="zetime_title_alarm_signaling">Type de signal pour l\'alarme</string>
    <string name="zetime_signaling_none">Silencieux</string>
    <string name="zetime_signaling_vibrate">Vibration continue</string>
    <string name="zetime_signaling_beep">Bip continu</string>
    <string name="zetime_signaling_vibrate_beep">Vibration et bip continus</string>
    <string name="zetime_signaling_vibrate_once">Vibration unique</string>
    <string name="zetime_signaling_vibrate_twice">Vibration double</string>
    <string name="zetime_signaling_beep_once">Bip unique</string>
    <string name="zetime_signaling_beep_twice">Bip double</string>
    <string name="zetime_signaling_vibrate_beep_once">Vibration et bip uniques</string>
    <string name="pref_screen_notification_profile_missed_call">Notification appel manqué</string>
    <string name="pref_screen_notification_profile_calendar">Notification du calendrier</string>
    <string name="pref_screen_notification_profile_inactivity">Notification d\'inactivité</string>
    <string name="pref_screen_notification_profile_low_power">Alerte batterie faible</string>
    <string name="pref_screen_notification_profile_anti_loss">Alerte Anti-Perte</string>
    <string name="interval_fifteen_minutes">Toutes les 15 min</string>
    <string name="interval_forty_five_minutes">Toutes les 45 min</string>
    <string name="activity_prefs_calories_burnt">Objectif quotidien : calories brulées</string>
    <string name="activity_prefs_distance_meters">Objectif quotidien : distance en mètres</string>
    <string name="activity_prefs_activetime_minutes">Objectif quotidien : temps d\'activité en minutes</string>
    <string name="devicetype_miscale2">Mi Scale 2</string>
    <string name="pref_title_support_voip_calls">Activer les applications d\'appel VoIP</string>
    <string name="title_activity_device_specific_settings">Paramètres spécifiques de l\'appareil</string>
    <string name="pref_title_authkey">Clé d\'autorisation</string>
    <string name="pref_summary_authkey">Changez la clé d\'autorisation pour une clé commune à tous vos appareils Android sur lesquels vous souhaitez vous connecter. La précédente clé par défaut est 0123456789@ABCDE</string>
    <string name="devicetype_bfh16">BFH-16</string>
    <string name="fw_upgrade_notice_amazfitcor2">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit Cor 2. 
\n 
\nVeuillez installer le fichier .fw, puis le fichier .res. Votre montre redémarrera après installation du .fw. 
\n 
\nNote : il n\'est pas nécessaire d\'installer le fichier .res si celui-ci est identique à celui installé précédemment. 
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS ! 
\n 
\nNON TESTÉ, IL PEUT ÊTRE NÉCESSAIRE DE FLASHER UN MICROLOGICIEL BEATS_W SI LE NOM DE L\'APPAREIL EST « Amazfit Band 2 »</string>
    <string name="dutch">Néerlandais</string>
    <string name="turkish">Turc</string>
    <string name="ukrainian">Ukrainien</string>
    <string name="arabic">Arabe</string>
    <string name="indonesian">Indonésien</string>
    <string name="thai">Thaï</string>
    <string name="vietnamese">Vietnamien</string>
    <string name="portuguese">Portugais</string>
    <string name="devicetype_amazfit_cor2">Amazfit Cor 2</string>
    <string name="pref_rtl_max_line_length_summary">Allonge ou raccourcis les lignes dans les textes écrits de droite à gauche</string>
    <string name="zetime_handmove_display">Mouvement de la main</string>
    <string name="devicetype_miband4">Mi Band 4</string>
    <string name="fw_upgrade_notice_miband4">Vous êtes sur le point d\'installer le firmware %s sur votre Mi Band 4.
\n
\nVeuillez installer le fichier .fw, puis le fichier .res. Votre bracelet redémarrera après l\'installation du fichier .fw.
\n 
\nRemarque : Vous n\'avez pas à installer le .res s\'il est exactement le même que celui installé précédemment.
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS !</string>
    <string name="prefs_hr_alarm_activity">Alarme de la fréquence cardiaque durant une activité sportive</string>
    <string name="prefs_hr_alarm_low">Limite basse</string>
    <string name="prefs_hr_alarm_high">Limite haute</string>
    <string name="average">Moyenne : %1$s</string>
    <string name="pref_header_charts">Paramètres graphiques</string>
    <string name="pref_title_charts_average">Afficher les moyennes dans les graphiques</string>
    <string name="pref_title_charts_range">Gamme des graphiques</string>
    <string name="weekstepschart_steps_a_month">Pas par mois</string>
    <string name="weeksleepchart_sleep_a_month">Sommeil par mois</string>
    <string name="menuitem_nfc">CCP</string>
    <string name="pref_title_use_custom_font">Utiliser une police personnalisée</string>
    <string name="activity_DB_test_export_message">Exportation de la base de données…</string>
    <string name="activity_db_management_exportimport_label">Exporter et Importer</string>
    <string name="widget_listing_label">État et alarmes</string>
    <string name="widget_set_alarm_after">Définir l\'alarme après :</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 heure</string>
    <string name="pref_display_add_device_fab_on">Toujours visible</string>
    <string name="pref_display_add_device_fab_off">Visible uniquement si aucun appareil n\'est ajouté</string>
    <string name="prefs_find_phone_duration">Durée de la sonnerie en secondes</string>
    <string name="maximum_duration">Durée</string>
    <string name="pref_charts_range_on">Gamme des graphiques positionnée sur un mois</string>
    <string name="pref_charts_range_off">Gamme des graphiques positionnée sur une semaine</string>
    <string name="devicetype_mijia_lywsd02">Mijia Smart Clock</string>
    <string name="pref_summary_expose_hr">Permettre aux autres applis d\'accéder aux données de fréquence cardiaque en temps réel lorsque Gadgetbridge est connecté</string>
    <string name="pref_title_expose_hr">Accès tiers fréq. cardiaque</string>
    <string name="pref_summary_use_custom_font">Activer ceci afin d’afficher les émojis si votre appareil a un micrologiciel de police personnalisée</string>
    <string name="activity_db_management_autoexport_explanation">L\'export automatique des données est réglé vers :</string>
    <string name="activity_db_management_autoexport_label">Exportation automatique</string>
    <string name="activity_DB_ExportButton">Exporter les données</string>
    <string name="activity_DB_import_button">Importer les données</string>
    <string name="activity_DB_test_export_button">Lancer immédiatement l\'exportation automatique</string>
    <string name="activity_DB_delete_legacy_button">Supprimer l\'ancienne base de données</string>
    <string name="activity_DB_empty_button">Vider la base de données</string>
    <string name="activity_db_management_empty_DB">Vider la base de données</string>
    <string name="activity_db_management_empty_db_warning">Attention ! En cliquant sur ce bouton, vous supprimerez toutes vos données et recommencerez à zéro.</string>
    <string name="appwidget_sleep_alarm_widget_label">Réveil</string>
    <plurals name="widget_alarm_target_hours" tools:ignore="MissingQuantity">
        <item quantity="one">%d heure</item>
        <item quantity="many">%d heures</item>
        <item quantity="other">%d heures</item>
    </plurals>
    <string name="pref_display_add_device_fab">Bouton pour connecter un nouvel appareil</string>
    <string name="activity_error_no_app_for_gpx">Pour visualiser votre géolocalisation, installez une appli qui lit les fichiers GPX.</string>
    <string name="preferences_makibes_hr3_settings">Réglages Makibes HR3</string>
    <string name="devicetype_makibes_hr3">Makibes HR3</string>
    <string name="devicetype_amazfit_bip_lite">Amazfit Bip Lite</string>
    <string name="prefs_find_phone">Trouver le téléphone</string>
    <string name="prefs_enable_find_phone">Activer « Trouver le tél. »</string>
    <string name="prefs_find_phone_summary">Utilisez votre bande pour lire l\'alarme de votre téléphone.</string>
    <string name="discovery_need_to_enter_authkey">Cet appareil a besoin d\'une clé d\'auth. Pression longue sur celui-ci pour la saisir. Lisez le wiki.</string>
    <string name="pref_chart_heartrate_color_red">Rouge</string>
    <string name="pref_chart_heartrate_color_orange">Orange</string>
    <string name="pref_chart_sleep_rolling_24_on">Dernières 24 heures</string>
    <string name="pref_chart_sleep_rolling_24_off">De midi à midi</string>
    <string name="fw_upgrade_notice_amazfitbip_lite">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit Bip Lite. 
\n 
\nVeuillez installer le fichier .fw, puis le fichier .res. Votre montre redémarrera après l\'installation du .fw. 
\n 
\nNote : vous n\'avez pas à installer le fichier .res si c\'est exactement le même que celui installé précédemment. 
\n 
\nÀ VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_gtr">Amazfit GTR</string>
    <string name="fw_upgrade_notice_amazfitgtr">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit GTR. 
\n 
\nVeuillez installer le fichier .fw, puis le fichier .res et enfin le fichier .gps. Votre montre redémarrera après installation du fichier .fw. 
\n 
\nNote : vous n\'avez pas à installer les fichiers .res et .gps si ceux-ci sont exactement les mêmes que ceux installés précédemment. 
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS ET PÉRILS !</string>
    <string name="pref_title_chart_heartrate_color">Couleur du rythme cardiaque</string>
    <string name="pref_title_chart_sleep_rolling_24_hour">Plage de sommeil</string>
    <string name="devicetype_amazfit_gts">Amazfit GTS</string>
    <string name="fw_upgrade_notice_amazfitgts">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit GTS. 
\n 
\nVeuillez installer le fichier .fw, puis le fichier .res et enfin le fichier .gps. Votre montre redémarrera après installation du fichier .fw. 
\n 
\nNote : vous n\'avez pas à installer les fichiers .res et .gps s\'ils sont exactement les mêmes que ceux installés précédemment. 
\n 
\nCONTINUEZ À VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_qhybrid">Fossil Q Hybrid</string>
    <string name="preferences_qhybrid_settings">Paramètres hybrides Q</string>
    <string name="watch_not_connected">Montre non connectée</string>
    <string name="qhybrid_vibration_strength">Puissance de vibration :</string>
    <string name="qhybrid_goal_in_steps">Objectif de pas</string>
    <string name="qhybrid_time_shift">décalage horaire</string>
    <string name="qhybrid_second_timezone_offset_relative_to_utc">décalage du deuxième fuseau horaire par rapport à UTC</string>
    <string name="qhybrid_prompt_million_steps">Veuillez régler le compteur de pas à un million pour l\'activer.</string>
    <string name="qhybrid_changes_delay_prompt">le changement peut prendre quelques secondes…</string>
    <string name="pref_disable_new_ble_scanning">Désactiver la nouvelle détection BLE</string>
    <string name="pref_summary_disable_new_ble_scanning">Cochez cette option si votre appareil ne peut être découvert</string>
    <string name="devicetype_banglejs">Bangle.js</string>
    <string name="qhybrid_overwrite_buttons">modifier les boutons</string>
    <string name="qhybrid_use_activity_hand_as_notification_counter">utilise l\'activité de la main comme compteur de notification</string>
    <string name="qhybrid_buttons_overwrite_success">Boutons modifiés</string>
    <string name="qhybrid_buttons_overwrite_error">Une erreur est survenue lors de la modification des boutons</string>
    <string name="qhybrid_offset_timezone">décale le fuseau horaire de</string>
    <string name="qhybrid_offset_time_by">décale l\'heure de</string>
    <string name="devicetype_y5">Y5</string>
    <string name="prefs_button_single_press_action_selection_title">Action de l\'évènement 1</string>
    <string name="prefs_button_double_press_action_selection_title">Action de l\'évènement 2</string>
    <string name="prefs_button_triple_press_action_selection_title">Action de l\'évènement 3</string>
    <string name="prefs_button_variable_actions">Paramètres détaillés des appuis de bouton</string>
    <string name="prefs_button_long_press_action_selection_title">Action d\'appui long de bouton</string>
    <string name="alarm_snooze">Reporter</string>
    <string name="error_no_location_access">L\'accès à la localisation doit être autorisé et activé pour permettre à la détection de fonctionner correctement</string>
    <string name="devicetype_itag">iTag</string>
    <string name="pref_title_allow_high_mtu">Autoriser une grande MTU</string>
    <string name="pref_summary_allow_high_mtu">Augmente la vitesse de transfert, mais peut ne pas fonctionner avec quelques appareils Android.</string>
    <string name="pref_summary_sync_calendar">Permet les alertes de calendrier, même en cas de déconnexion</string>
    <string name="pref_title_sync_caldendar">Sync. calendrier des évènements</string>
    <string name="hr_widget_heart_rate">Fréquence cardiaque</string>
    <string name="hr_widget_steps">Pas</string>
    <string name="hr_widget_date">Date</string>
    <string name="hr_widget_active_minutes">Les minutes actives</string>
    <string name="hr_widget_calories">Calories</string>
    <string name="hr_widget_battery">Batterie</string>
    <string name="hr_widget_weather">Météo</string>
    <string name="hr_widget_nothing">Rien</string>
    <string name="find_lost_device_you_found_it">Trouvé !</string>
    <string name="pref_title_force_white_color_scheme">Forcer le noir sur le blanc</string>
    <string name="pref_summary_force_white_color_scheme">Utile si votre montre a les mains noires</string>
    <string name="hr_appname_commute">Trajet</string>
    <string name="hr_appname_stopwatch">Chronomètre</string>
    <string name="hr_appname_workout">Entraînement</string>
    <string name="hr_appname_wellness">Bien-être</string>
    <string name="notification_channel_high_priority_name">Haute priorité</string>
    <string name="devicetype_amazfit_bips">Amazfit Bip S</string>
    <string name="find_my_phone_notification">Trouver mon téléphone</string>
    <string name="pref_title_vibration_strength">Puissance du vibreur</string>
    <string name="pref_title_relax_firmware_checks">Activez cette option si vous souhaitez flasher un microprogramme qui n\'est pas destiné à votre appareil (à vos propres risques)</string>
    <string name="pref_summary_relax_firmware_checks">Assouplir les contrôles des microprogrammes</string>
    <string name="pref_summary_custom_deviceicon">Afficher une icône de notification Android spécifique à l\'appareil à la place de l\'icône Gadgetbridge lors de la connexion</string>
    <string name="pref_title_custom_deviceicon">Afficher l’icône de notification spécifique à l’appareil</string>
    <string name="pref_qhybrid_title_widget_draw_circles">Widget traçant des cercles</string>
    <string name="pref_header_auto_fetch">Récupération automatique</string>
    <string name="pref_summary_notifications_and_calls_enable_misscall">Se répète chaque minute</string>
    <string name="devicetype_watchxplus">Watch X Plus</string>
    <string name="devicetype_watchx">Watch X</string>
    <string name="menuitem_hr">Fréquence cardiaque</string>
    <string name="menuitem_pai">PAI</string>
    <string name="menuitem_eventreminder">Rappel d\'évènement</string>
    <string name="menuitem_workout">Entraînement</string>
    <string name="czesh">Tchèque</string>
    <string name="swedish">Suédois</string>
    <string name="hebrew">Hébreu</string>
    <string name="greek">Grec</string>
    <string name="hungarian">Hongrois</string>
    <string name="romanian">Roumain</string>
    <string name="title_activity_LenovoWatch_calibration">Calibrage de Watch X Plus</string>
    <string name="power_mode_saving">Économie d\'énergie</string>
    <string name="power_mode_normal">Normal</string>
    <string name="prefs_sensors_button_bp_calibration_sum">Appuyez ici pour commencer le calibrage</string>
    <string name="pref_sensors_bp_calibration_low">Tension artérielle DIASTOLIQUE (basse)</string>
    <string name="pref_sensors_bp_calibration">Calibrage de la tension artérielle</string>
    <string name="prefs_sensors_button_bp_calibration">Calibrage</string>
    <string name="pref_sensors_bp_calibration_high">Tension artérielle SYSTOLIQUE (élevée)</string>
    <string name="pref_title_sensors_altitude">Calibrage de l\'altitude</string>
    <string name="pref_header_sensors_calibration">Calibrage du capteur</string>
    <string name="pref_title_device_spec_settings_force_time">Forcer l\'heure de synchronisation</string>
    <string name="pref_header_device_spec_settings">Paramètres de l\'appareil</string>
    <string name="prefs_notifications_and_calls_shake_reject">Secouer le poignet pour ignorer/rejeter un appel</string>
    <string name="pref_summary_notifications_and_calls_title_reject">Désactivé – ignorer, Activé – rejeter</string>
    <string name="prefs_notifications_and_calls_reject">Bouton ignorer/rejeter l\'appel</string>
    <string name="pref_header_notifications_and_calls_callhandling">Traitement des appels</string>
    <string name="pref_title_notifications_and_calls_repeat_on_misscall">Répéter pendant X minutes</string>
    <string name="pref_notifications_and_calls_enable_misscall">Notifier un appel manqué</string>
    <string name="prefs_notifications_and_calls_continious_ring">Notification durant la sonnerie</string>
    <string name="pref_title_notifications_and_calls_repeat_on_call">Répéter la notification d\'appel</string>
    <string name="pref_header_notifications_and_calls">Notifications et appels</string>
    <string name="pref_theme_system">Système</string>
    <string name="pref_summary_device_spec_settings_title_force_time">Forcer la synchronisation dès la reconnexion. Les montres analogiques peuvent montrer une heure incorrecte !</string>
    <string name="pref_summary_notifications_and_calls_title_shake_reject">Action du bouton en doublons</string>
    <string name="hr_widget_last_notification">Dernière notification</string>
    <string name="pref_qhybrid_save_raw_activity_files">Enregistrer les données RAW (brutes) des activités</string>
    <string name="menuitem_unknown">Inconnu</string>
    <string name="bip_prefs_shotcuts_summary">Choisir les éléments apparaissant dans le menu</string>
    <string name="bip_prefs_shortcuts">Éléments du menu</string>
    <string name="power_mode_watch">Seulement l\'heure</string>
    <string name="power_mode_title">Mode d\'alimentation de la montre</string>
    <string name="pref_title_device_spec_settings_show_raw_graph">Montrer les données RAW (brutes) sur le graphique d\'activité</string>
    <string name="controlcenter_set_alias">Définir un alias</string>
    <string name="laps">Tours</string>
    <string name="maxPace">Rythme maximum</string>
    <string name="minPace">Vitesse minimum</string>
    <string name="backstroke">Dos crawlé</string>
    <string name="maxSpeed">Maximum</string>
    <string name="medley">Medley</string>
    <string name="prefs_events_forwarding_fellsleep">Au sommeil</string>
    <string name="prefs_events_forwarding_title">Actions de l\'appareil</string>
    <string name="prefs_events_forwarding_summary">Utiliser les évènements de l\'appareil pour déclencher des actions et des messages diffusé Android</string>
    <string name="menuitem_cycles">Suivi des Cycles féminins</string>
    <string name="freestyle">Style libre</string>
    <string name="breaststroke">Rythme mammaire</string>
    <string name="activity_filter_to_placeholder">aujourd\'hui</string>
    <string name="activity_filter_from_placeholder">passé lointain</string>
    <string name="activity_summaries_all_devices">Tous les appareils</string>
    <string name="sports_activity_quick_filter_select">Intervalle de temps</string>
    <string name="sports_activity_quick_filter_30days">30 jours</string>
    <string name="sports_activity_quick_filter_7days">7 jours</string>
    <string name="sports_activity_quick_filter_last_month">Mois précédent</string>
    <string name="sports_activity_quick_filter_this_month">Mois en cours</string>
    <string name="sports_activity_quick_filter_last_week">Semaine précédente</string>
    <string name="sports_activity_quick_filter_this_week">Cette semaine</string>
    <string name="activity_summaries_all_activities">Toutes les activités</string>
    <string name="activity_summaries_statistics">Statistiques</string>
    <string name="no">Non</string>
    <string name="yes">Oui</string>
    <string name="activity_filter_individual_items">Éléments sélectionnés individuellement</string>
    <string name="addto_filter">Ajouter au filtre</string>
    <string name="activity_filter_apply_filter">Appliquer les filtres</string>
    <string name="activity_filter_name_contains">Étiquette</string>
    <string name="activity_filter_filter_title">Filtre</string>
    <string name="activity_filter_reset_filter">Effacer les filtres</string>
    <string name="activity_filter_date_to">À</string>
    <string name="activity_filter_date_from">De</string>
    <string name="pref_header_statistics">Statistiques sur les activités sportives</string>
    <string name="pref_header_filter">Filtre sur les activités sportives</string>
    <string name="prefs_events_forwarding_action_title">Exécuter l\'action</string>
    <string name="prefs_events_forwarding_broadcast_title">Message diffusé</string>
    <string name="prefs_events_forwarding_startnonwear">Au non port</string>
    <string name="prefs_events_forwarding_wokeup">Au réveil</string>
    <string name="activity_detail_show_gps_label">Montrer la trace GPS</string>
    <string name="activity_detail_duration_label">Durée</string>
    <string name="activity_detail_end_label">Fin</string>
    <string name="activity_detail_start_label">Départ</string>
    <string name="Steps">Pas</string>
    <string name="Activity">Activité</string>
    <string name="Speed">Vitesse</string>
    <string name="Elevation">Altitude</string>
    <string name="Distance">Distance</string>
    <string name="Swimming">Natation</string>
    <string name="Strokes">Rythmes</string>
    <string name="km">km</string>
    <string name="bpm">bpm</string>
    <string name="minutes_km">min/km</string>
    <string name="seconds_m">sec/m</string>
    <string name="seconds_km">sec/km</string>
    <string name="calories_unit">kcal</string>
    <string name="laps_unit">intermédiaires</string>
    <string name="swim_style">type de nage</string>
    <string name="swolf_index">index swolf</string>
    <string name="seconds">sec</string>
    <string name="strokes_unit">rythme</string>
    <string name="strokes_second">rythme/s</string>
    <string name="km_h">km/h</string>
    <string name="meters_second">m/s</string>
    <string name="steps_unit">pas</string>
    <string name="cm">cm</string>
    <string name="meters">m</string>
    <string name="averageSpeed">Vitesse moyenne</string>
    <string name="baseAltitude">Altitude de départ</string>
    <string name="flatSeconds">Plat</string>
    <string name="ascentSeconds">Ascendant</string>
    <string name="swimStyle">Type de nage</string>
    <string name="swolfIndex">SWOLF</string>
    <string name="averageLapPace">Moyenne de pause</string>
    <string name="averageStrokesPerSecond">Foulées moyennes</string>
    <string name="averageStrokeDistance">Distance moyenne de foulée</string>
    <string name="averageStride">Foulée moyenne</string>
    <string name="averageKMPaceSeconds">Rythme</string>
    <string name="averageHR">Rythme cardiaque</string>
    <string name="totalStride">Foulées totales</string>
    <string name="caloriesBurnt">Calories</string>
    <string name="activeSeconds">Actif</string>
    <string name="steps">Pas</string>
    <string name="minAltitude">Minimum</string>
    <string name="maxAltitude">Maximum</string>
    <string name="descentMeters">Descente</string>
    <string name="ascentMeters">Montée</string>
    <string name="distanceMeters">Distance</string>
    <string name="error_location_enabled_mandatory">La localisation doit être activée pour scanner les appareils</string>
    <string name="ignore_bonded_devices_description">Activer cette option ignorera les appareils déja liés/pairés lors d\'un scan</string>
    <string name="ignore_bonded_devices">Ignorer les appareils déja liés</string>
    <string name="error_retrieving_devices_database">Erreur lors de la récupération des appareils de la base de données</string>
    <string name="error_setting_alias">Erreur pour configurer l\'alias:</string>
    <string name="error_exporting_device_preferences">Erreur à l\'exportation des préférences spécifiques de cet appareil</string>
    <string name="pref_check_permission_status_summary">Demander et vérifier les autorisations manquantes même si elles ne sont pas immédiatement nécessaires. Désactiver uniquement si votre appareil ne supporte pas ces fonctions. Refuser une autorisation peut provoquer des problèmes !</string>
    <string name="pref_check_permission_status">Vérifier l\'état des autorisations</string>
    <string name="error_background_service_reason">Le démarrage du service en arrière-plan n\'a pas réussi à cause d\'une exception - cliquer ici pour plus d\'informations.\n\nErreur:</string>
    <string name="device_requires_key">CLÉ NÉCESSAIRE, APPUI LONG POUR ENTRER</string>
    <string name="device_is_currently_bonded">DÉJA LIÉ</string>
    <string name="error_background_service_reason_truncated">Le démarrage du service en arrière-plan n\'a pas réussi à cause de…</string>
    <string name="error_background_service">Impossible de démarrer le service d\'arrière-plan</string>
    <string name="companiondevice_pairing_details">Active le support de la nouvelle API CompanionDevice (n\'a d\'effet qu\'avec Android 8 ou supérieur) ce qui améliore la fiabilité si le service doit être redémarré en tâche de fond, nécessite de refaire le pairage avec GadgetBridge pour être effectif</string>
    <string name="companiondevice_pairing">Pairage du bracelet</string>
    <string name="require_location_provider">La géolocalisation doit être activée</string>
    <string name="error_version_check_extreme_caution">ATTENTION: Erreur lors de la vérification de l\'information de version ! Vous ne devriez pas poursuivre ! Numéro de version \"%s\"</string>
    <string name="permission_granting_mandatory">Toutes ces permissions sont nécessaires et une instabilité peut se produire si elles ne sont pas accordées</string>
    <string name="about_links">Liens</string>
    <string name="about_additional_contributions">Nombreux remerciements à tous les participants non indiqués pour la contribution au code, les traductions, le support, les idées, la motivation, les rapports de bugs, les soutiens financiers… ✊</string>
    <string name="about_additional_device_support">Support d\'appareil supplémentaire</string>
    <string name="about_contributors">Contributeurs</string>
    <string name="about_core_team_title">Équipe principal (dans l\'ordre de la première contribution au code)</string>
    <string name="about_description_generic">Un remplaçant libre et sans cloud aux applications Android propriétaires des fabricants de vos bracelets.</string>
    <string name="about_activity_title_generic">À propos de Gadgetbridge</string>
    <string name="about_title">À propos</string>
    <string name="menuitem_worldclock">Horloge mondiale</string>
    <string name="menuitem_stress">Stress</string>
    <string name="menuitem_breathing">Respiration</string>
    <string name="devicetype_sg2">Lemfo SG2</string>
    <string name="devicetype_pinetime_jf">PineTime (Micrologiciel JF)</string>
    <string name="devicetype_tlw64">TLW64</string>
    <string name="devicetype_amazfit_trex">Amazfit T-Rex</string>
    <string name="devicetype_miband5">Mi Band 5</string>
    <string name="activity_summary_yesterday">Hier</string>
    <string name="activity_summary_today">Aujourd\'hui</string>
    <string name="activity_summary_edit_name_title">Modifier l\'étiquette</string>
    <string name="activity_summary_detail">Détail de l\'activité sportive</string>
    <string name="activity_type_badminton">Badminton</string>
    <string name="activity_type_pingpong">Ping-pong</string>
    <string name="activity_type_basketball">Basketball</string>
    <string name="activity_type_cricket">Cricket</string>
    <string name="activity_type_rowing_machine">Aviron</string>
    <string name="activity_type_soccer">Football</string>
    <string name="activity_type_yoga">Yoga</string>
    <string name="activity_type_jump_roping">Corde à sauter</string>
    <string name="activity_type_elliptical_trainer">Entraîneur elliptique</string>
    <string name="activity_type_indoor_cycling">Vélo d\'intérieur</string>
    <string name="activity_type_swimming_openwater">Natation (en eau libre)</string>
    <string name="pref_title_weather_summary">Utilisé par le fournisseur météo de LineageOS, les autres versions d\'Android doivent utiliser une application comme Weather notification. Se reporter au wiki Gadgetbridge.</string>
    <string name="fw_upgrade_notice_miband5">Vous êtes sur le point d\'installer le micrologiciel %s dans votre Mi Band 5.
\n
\nVeuillez installer le fichier .fw, puis le fichier .res. Votre montre redémarrera après avoir installé le fichier .fw.
\n
\nRemarque : Vous n\'avez pas besoin d\'installer le fichier .res si c\'est exactement le même que celui précédemment installé.
\n
\nCONTINUEZ À VOS RISQUES ET PÉRILS !</string>
    <string name="fw_upgrade_notice_amazfit_trex">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit T-Rex.
\n
\nVeuillez installer le fichier .fw, puis le fichier .res et finalement le fichier .gps. Votre montre redémarrera après l\'installation du .fw.
\n
\nNote : vous n\'avez pas à installer les fichier .res et .gps si ceux ci sont exactement les même qu\'installé précédemment.
\n
\nÀ VOS RISQUES ET PÉRILS !</string>
    <string name="activity_prefs_chart_min_session_length">Durée d\'activité minimale (minutes)</string>
    <string name="activity_prefs_chart_max_idle_phase_length">Longueur de la pause pour séparer les activités (minutes)</string>
    <string name="activity_prefs_chart_min_steps_per_minute">Nombre de pas minimum par minute pour détecter une activité</string>
    <string name="activity_prefs_chart_min_steps_per_minute_for_run">Nombre de pas minimum par minute pour détecter une course</string>
    <string name="charts_activity_list">Activités du jour</string>
    <string name="chart_get_active_and_synchronize">Avoir une activité et synchroniser l\'appareil.</string>
    <string name="chart_no_active_data">Aucune activité détectée.</string>
    <string name="devicetype_lefun">Lefun</string>
    <string name="lefun_prefs_interface_language_title">langue de l\'interface</string>
    <string name="lefun_prefs_antilost_summary">Le bracelet vibrera si votre téléphone se déconnecte du bracelet</string>
    <string name="lefun_prefs_antilost_title">Anti-perte</string>
    <string name="lefun_prefs_hydration_reminder_interval_title">Intervalle de rappel d\'hydratation (en minutes)</string>
    <string name="lefun_prefs_hydration_reminder_summary">Le bracelet vibrera pour vous rappeler de boire de l\'eau</string>
    <string name="lefun_prefs_hydration_reminder_title">Rappel d\'hydratation</string>
    <string name="devicetype_sonyswr12">Sony SWR12</string>
    <string name="sonyswr12_settings_title">Paramètres Sony SWR12</string>
    <string name="sonyswr12_settings_low_vibration">Faible vibration activée</string>
    <string name="sonyswr12_settings_stamina">Le mode d\'économie d\'énergie est activé</string>
    <string name="sonyswr12_settings_alarm_interval">Intervalle d\'alarme intelligente en minutes</string>
    <string name="sonyswr12_settings_low_vibration_summary">Permettre une faible intensité de vibration sur la bande</string>
    <string name="sonyswr12_settings_stamina_summary">Le mode d\'économie d\'énergie désactive la mesure automatique périodique de la fréquence cardiaque augmente ainsi le temps de travail</string>
    <string name="sonyswr12_settings_alarm_interval_summary">L\'intervalle d\'alarme intelligente est l\'intervalle avant l\'alarme installée. Dans cet intervalle, l\'appareil tente de détecter la phase de sommeil la plus légère pour réveiller l\'utilisateur</string>
    <string name="devicetype_nut_mini">Nut mini</string>
    <string name="descentSeconds">Descendant</string>
    <string name="activity_error_no_app_for_png">Pour partager cette capture écran, installer une application pour gérer les fichiers images.</string>
    <string name="firmware_update_progress">Envoi en cours
\n%1d%% à %.2fkbps (moyenne %.2fkbps)
\nÉlément %1d de %1d</string>
    <string name="devicestatus_upload_failed">L\'envoi n\'a pas réussi</string>
    <string name="devicestatus_upload_aborted">L\'envoi a avorté !</string>
    <string name="devicestatus_upload_validating">L\'envoi est en cours de validation</string>
    <string name="devicestatus_upload_completed">L\'envoi est terminé</string>
    <string name="devicestatus_disconnected">Appareil déconnecté !</string>
    <string name="devicestatus_disconnecting">L\'appareil se déconnecte !</string>
    <string name="devicestatus_upload_started">L\'envoi a démarré</string>
    <string name="devicestatus_upload_starting">L\'envoi démarre</string>
    <string name="devicestatus_connected">Appareil connecté</string>
    <string name="devicestatus_connecting">Connexion à l\'apparel</string>
    <string name="pref_title_lower_button_function_double">Double appui bouton du bas</string>
    <string name="pref_title_middle_button_function_double">Double appui bouton du milieu</string>
    <string name="pref_title_upper_button_function_double">Double appui bouton du haut</string>
    <string name="pref_title_lower_button_function_long">Appui long bouton du bas</string>
    <string name="pref_title_middle_button_function_long">Appui long bouton du milieu</string>
    <string name="pref_title_upper_button_function_long">Appui long bouton du haut</string>
    <string name="pref_title_lower_button_function_short">Appui court bouton du bas</string>
    <string name="pref_title_middle_button_function_short">Appui court bouton du milieu</string>
    <string name="pref_title_upper_button_function_short">Appui court bouton du haut</string>
    <string name="devicetype_amazfit_band5">Amazfit Band 5</string>
    <string name="activity_prefs_step_length_cm">Longueur de pas en cm</string>
    <string name="menuitem_spo2">SpO2</string>
    <string name="qhybrid_calibration_align_hint">Utiliser les boutons ci-dessous pour aligner les aiguilles du bracelet sur midi.</string>
    <string name="gps_track">Trace GPS</string>
    <string name="about_version">Version %s</string>
    <string name="devicetype_amazfit_bips_lite">Amazfit Bip S Lite</string>
    <string name="charts_legend_heartrate_average">Rythme cardiaque moyen</string>
    <string name="charts_min_max_heartrate_popup">Rythme cardiaque le plus bas : %1$d
\nRythme cardiaque le plus élevé : %2$d
\nIntensité du mouvement : %3$s</string>
    <string name="find_lost_device_message">Rechercher %1$s \?</string>
    <string name="devicetype_amazfit_gtr2">Amazfit GTR 2</string>
    <string name="menuitem_stopwatch">Étape</string>
    <string name="menuitem_dnd">NPD</string>
    <string name="menuitem_alexa">Alexa</string>
    <string name="menuitem_takephoto">Appareil photo à distance</string>
    <string name="menuitem_mutephone">Téléphone muet</string>
    <string name="menuitem_findphone">Trouver mon téléphone</string>
    <string name="movement_intensity">Intensité du mouvement</string>
    <string name="activity_list_summary_activities">Activités</string>
    <string name="activity_list_summary_intensity">Mouvement
\nIntensité</string>
    <string name="activity_list_summary_active_time">Durée d\'activité</string>
    <string name="activity_list_summary_distance">Distance</string>
    <string name="activity_list_summary_active_steps">Pas réels</string>
    <string name="devicetype_amazfit_gts2">Amazfit GTS 2</string>
    <string name="devicetype_casiogbx100">Casio GBX-100</string>
    <string name="prefs_charts_tabs_summary">Onglets visibles des tableaux</string>
    <string name="prefs_charts_tabs">Onglets des Tableaux</string>
    <string name="devicetype_amazfit_bipu">Amazfit Bip U</string>
    <string name="menuitem_pomodoro">Tracker Pomodoro</string>
    <string name="menuitem_sleep">Sommeil</string>
    <string name="menuitem_goal">Objectif d\'activité</string>
    <string name="pref_summary_connected_advertisement">Rend l\'appareil découvrable via Bluetooth même si connecté</string>
    <string name="pref_title_connected_advertisement">Visible si connecté</string>
    <string name="prefs_autoremove_message">Désactiver automatiquement les notifications SMS</string>
    <string name="prefs_fake_ring_duration">Simulation de sonnerie permanente</string>
    <string name="prefs_operating_sounds">Sons en fonctionnement</string>
    <string name="prefs_key_vibration">Mode de vibration</string>
    <string name="prefs_autolight">Éclairage automatique</string>
    <string name="discovery_entered_invalid_authkey">La clé secrète d\'identification saisie est invalide ! Faire un appui long sur l\'appareil pour la modifier.</string>
    <string name="devicetype_amazfit_vergel">Amazfit Verge Lite</string>
    <string name="fw_upgrade_notice_amazfitvergel">Vous êtes sur le point d\'installer le firmware %s dans votre Amazfit Verge Lite.
\n
\nAssurez-vous d\'installer le fichier .fw, puis le fichier .res, et pour finir le fichier .gps. Votre montre va redémarrer après l\'installation du fichier .fw.
\n
\nRemarque : Vous n\'avez pas besoin d\'installer les fichiers .res et .gps si ce sont exactement les mêmes fichiers que précédemment.
\n
\nMANIPULATION À VOS RISQUES ET PÉRILS !</string>
    <string name="activity_DB_ShowContentButton">Montrer le contenu du répertoire d\'Import/Export</string>
    <string name="activity_data_management_directory_content_title">Exporter/Importer le contenu du répertoire</string>
    <string name="widget_settings_select_device_title">Choisir l\'appareil</string>
    <string name="dbmanagementactivity_export_confirmation">Exporter réellement les données \? Les données et les préférences précédemment exportées (s\'il y en a) seront écrasées.</string>
    <string name="dbmanagementactivity_export_data_title">Exporter les Données \?</string>
    <string name="devicetype_amazfit_bipupro">Amazfit Bip U Pro</string>
    <string name="dbmanagementactivity_export_finished">Suppression terminée</string>
    <string name="activity_db_management_clean_export_directory_text">Les fichiers exportés dans le répertoire d\'Import/Export sont accessibles depuis n\'importe quelle application sur votre appareil. Il est préférable de supprimer ces fichiers après synchronisation ou sauvegarde. Assurez-vous d\'avoir une sauvegarde avant de supprimer les fichiers. Les fichiers GPX, les sous-répertoires, et les fichiers de base de données auto-exportés (s\'ils existent) ne seront pas supprimés. Le chemin du répertoire d\'Import/Export est :</string>
    <string name="activity_DB_clean_export_directory_warning_message">Vraiment effacer les fichiers dans le répertoire d\'Import/Export \?</string>
    <string name="activity_DB_clean_export_directory_warning_title">Effacer les fichiers dans le répertoire d\'Import/Export \?</string>
    <string name="activity_db_management_clean_export_directory_label">Effacer les fichiers dans le répertoire d\'Import/Export</string>
    <string name="dbmanagementactivity_error_cleaning_export_directory">Erreur lors de l\'effacement des fichiers du répertoire d\'exportation %1$s</string>
    <string name="devicetype_amazfit_neo">Amazfit Neo</string>
    <string name="activity_type_strength_training">Entrainement de Puissance</string>
    <string name="mi">miles</string>
    <string name="minutes_mi">min/miles</string>
    <string name="mi_h">miles/h</string>
    <string name="ft">pieds</string>
    <string name="devicetype_amazfit_gts2_mini">Amazfit GTS 2 Mini</string>
    <string name="devicetype_zepp_e">Zepp E</string>
    <string name="devicetype_amazfit_gtr2e">Amazfit GTR 2e</string>
    <string name="devicetype_waspos">Wasp-os</string>
    <string name="battery_detail_activity_title">Info. Batterie</string>
    <string name="devicetype_amazfit_gts2e">Amazfit GTS 2e</string>
    <string name="devicetype_amazfit_x">Amazfit X</string>
    <string name="fw_upgrade_notice_amazfitx">Vous allez installer le microcode %s dans votre Amazfit X.
\n
\nAssurez-vous d\'abord d\'installer le fichier .fw, puis ensuite le fichier .res. Votre bracelet va redémarrer après l\'installation du fichier .fw.
\n
\nRemarque : Vous n\'avez pas à réinstaller le fichiers .res si c\'est exactement le même que vous avez précédemment installé.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="calendar_year">Année</string>
    <string name="calendar_six_months">Semestre</string>
    <string name="calendar_month">Mois</string>
    <string name="calendar_two_weeks">Deux semaines</string>
    <string name="calendar_week">Semaine</string>
    <string name="calendar_day">Jour</string>
    <string name="battery_level">Niveau de batterie</string>
    <string name="show_ongoing_activity">Afficher une popup pour l\'activité en cours</string>
    <string name="dialog_hide">Cacher</string>
    <string name="calendar_three_months">3 mois</string>
    <string name="fossil_hr_auth_failed">Authentification échouée, fonctionnalités limitées</string>
    <string name="fossil_hr_unavailable_unauthed">Indisponible en mode non authentifié</string>
    <string name="fossil_hr_synced_activity_data">Données d\'activité synchronisées</string>
    <string name="fossil_hr_commute_processing">En cours de traitement…</string>
    <string name="qhybrid_title_calibration">Calibration</string>
    <string name="qhybrid_title_apps_management">Gestion des apps</string>
    <string name="qhybrid_title_file_management">Gestion de fichiers</string>
    <string name="qhybrid_title_background_image">Image de fond</string>
    <string name="qhybrid_title_apps">Apps</string>
    <string name="devicetype_um25">UM-25</string>
    <string name="fossil_hr_warning_firmware_too_new">Certaines fonctions sont désactivées en raison de la version trop récente du micrologiciel du bracelet</string>
    <string name="prefs_sounds_summary">Configurer une fois que l\'appareil a bipé</string>
    <string name="prefs_sounds">Sons</string>
    <string name="fw_upgrade_notice_amazfitneo">Vous êtes sur le point d\'installer le micrologiciel %s dans votre Amazfit Neo.
\n
\n- Votre bracelet va redémarrer après l\'installation du micrologiciel.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="menuitem_temperature">Température</string>
    <string name="menuitem_widgets">Widgets</string>
    <string name="menuitem_events">Évènements</string>
    <string name="pref_summary_canned_messages_dismisscall">Refuser les appels depuis la montre avec un message SMS</string>
    <string name="pref_summary_canned_messages_set">Envoyer le message saisi ci-dessous vers votre bracelet</string>
    <string name="qhybrid_summary_calibration">Calibrer les aiguilles de la montre</string>
    <string name="qhybrid_summary_file_management">Envoyer et recevoir des fichiers</string>
    <string name="pref_summary_physical_buttons">Configurer les fonctions des boutons physiques du bracelet</string>
    <string name="pref_title_physical_buttons">Boutons physiques</string>
    <string name="devicetype_miband6">Mi Band 6</string>
    <string name="kind_agps_bundle">Bundle AGPS</string>
    <string name="fw_upgrade_notice_miband6">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Mi Band 6.
\n
\nAssurez-vous d\'installer le fichier .fw, et puis ensuite le fichier .res. Votre bracelet redémarrera après l\'installation du fichier .fw.
\n
\nRemarque. Vous n\'avez pas besoin d\'installer le fichier .res si c\'est exactement le même que celui précédemment installé.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="watchface_install_info">Vous êtes sur le point d\'installer le cadran suivant :
\n
\n%1$s
\nVersion %2$s par %3$s
\n</string>
    <string name="qhybrid_watchface_configuration_old_firmware">Configuration du cadran pour les bracelets dont le micro-logiciel est en version DN1.0.2.19r ou inférieur</string>
    <string name="qhybrid_calibration_100_steps">100 pas</string>
    <string name="qhybrid_calibration_10_steps">10 pas</string>
    <string name="qhybrid_calibration_1_step">1 pas</string>
    <string name="qhybrid_calibration_clockwise">Dans le sens horaire</string>
    <string name="qhybrid_calibration_counterclockwise">Dans le sens anti-horaire</string>
    <string name="fossil_hr_new_action">Nouvelle action</string>
    <string name="fossil_hr_new_action_cancel">annuler</string>
    <string name="fossil_hr_edit_action">Modifier l\'action</string>
    <string name="fossil_hr_edit_action_delete">supprimer</string>
    <string name="fossil_hr_commute_actions_explanation">Les actions configurées ici apparaitront dans l\'app Commute dans votre bracelet. Consulter le wiki pour plus d\'informations sur la gestion des intentions générés par ces actions.</string>
    <string name="qhybrid_title_watchface">Configuration du cadran</string>
    <string name="notification_channel_low_battery_name">Batterie faible</string>
    <string name="notification_channel_transfer_name">Transfert de données</string>
    <string name="qhybrid_pref_summary_external_intents">Autoriser d\'autres apps Android à envoyer/écraser des fichiers</string>
    <string name="qhybrid_pref_title_external_intents">Autorise des intentions externes dangereux</string>
    <string name="pref_summary_developer_settings">Réglages et fonctionnalités utilisés par les développeurs</string>
    <string name="pref_title_developer_settings">Réglages Développeurs</string>
    <string name="qhybrid_pref_summary_actions">Actions pour l\'app Commute</string>
    <string name="qhybrid_pref_title_actions">Actions</string>
    <string name="devicetype_amazfit_trex_pro">Amazfit T-Rex Pro</string>
    <string name="menuitem_barometer">Baromètre</string>
    <string name="pref_theme_black_background">Utiliser un fond sombre en mode Thème Sombre</string>
    <string name="gpx_receiver_overwrite_some_files">Certain(s) fichier(s) existe(nt) déja. Les écraser \?</string>
    <string name="gpx_receiver_files_received">Fichier(s) GPX reçu(s):</string>
    <string name="gpx_receiver_activity_title">Récepteur GPX Gadgetbridge</string>
    <string name="activity_summary_detail_editing_gpx_track">Modifier les traces GPX liées</string>
    <string name="activity_summary_detail_clear_gpx_track">Effacer la trace GPX</string>
    <string name="activity_summary_detail_select_gpx_track">Choisir une trace GPX</string>
    <string name="set">Configurer</string>
    <string name="watchface_setting_wrist_flick_duration">Durée (en ms)</string>
    <string name="watchface_setting_wrist_flick_minute">Grande aiguille (-360 à 360)</string>
    <string name="watchface_setting_wrist_flick_hour">Petite aiguille (-360 à +360)</string>
    <string name="watchface_setting_wrist_flick_move_relative">Déplacement des mains en fonction du temps</string>
    <string name="watchface_setting_desc_wrist_flick">(pour désactiver complètement, permettre le mouvement relatif et configurer toutes les valeurs à 0)</string>
    <string name="watchface_setting_title_wrist_flick">Mouvement du poignet</string>
    <string name="watchface_setting_display_refresh_partial">Rafraîchissement partiel (en minutes)</string>
    <string name="watchface_setting_display_refresh_full">Rafraîchissement complet (en minutes)</string>
    <string name="watchface_setting_title_display_refresh_timeout">Intervalle de rafraîchissement de l\'écran</string>
    <string name="watchface_dialog_title_settings">Réglages du thème d\'écran</string>
    <string name="watchface_dialog_widget_color_black">Noir</string>
    <string name="watchface_dialog_widget_color_white">Blanc</string>
    <string name="watchface_dialog_widget_color">Couleur</string>
    <string name="qhybrid_title_watchface_designer">Concepteur de thème d\'écran</string>
    <string name="watchface_dialog_widget_preset_right">Droite</string>
    <string name="watchface_dialog_widget_preset_left">Gauche</string>
    <string name="watchface_dialog_widget_preset_bottom">Bas</string>
    <string name="watchface_dialog_widget_preset_top">Sommet</string>
    <string name="watchface_dialog_widget_presets">Réglages de position</string>
    <string name="watchface_dialog_widget_y_coordinate">Coordonnée Y (max 240)</string>
    <string name="watchface_dialog_widget_x_coordinate">Coordonnée X (max 240)</string>
    <string name="watchface_dialog_widget_type">Genre</string>
    <string name="appmanager_app_edit">Modifier</string>
    <string name="button_watchface_save_apply">Enregistrer et appliquer</string>
    <string name="button_watchface_preview">Aperçu sur la montre</string>
    <string name="watchface_widget_type_heart_rate">Rythme cardiaque</string>
    <string name="watchface_widget_type_steps">Pas</string>
    <string name="watchface_widget_type_weather">Météo</string>
    <string name="watchface_widget_type_date">Date</string>
    <string name="watchface_dialog_title_add_widget">Ajouter un widget</string>
    <string name="watchface_toast_settings_incomplete">Configuration incomplète, widget non ajouté</string>
    <string name="watchface_dialog_title_set_name">Configurer le nom du thème d\'écran</string>
    <string name="button_watchface_settings">Réglages du thème d\'écran</string>
    <string name="button_watchface_add_widget">Ajouter un widget</string>
    <string name="button_watchface_select_image">Changer l\'image d\'arrière-plan</string>
    <string name="button_watchface_edit_name">Modifier le nom</string>
    <string name="devicetype_smaq2oss">SMA-Q2 OSS</string>
    <string name="watchface_upload_failed">L\'envoi du thème d\'écran a échoué. Merci de réessayer.</string>
    <string name="watchface_cache_confirm_overwrite">Un thème d\'écran avec le même nom existe déja dans le cache. Voulez-vous l\'écraser \?</string>
    <string name="heart_rate_result">Résultats des mesures</string>
    <string name="getting_heart_rate">Mesure en cours</string>
    <string name="blood_pressure">Pression artérielle</string>
    <string name="watchface_setting_power_saving_hands">Désactiver les détections de mouvement lorsque non porté</string>
    <string name="watchface_setting_power_saving_display">Suspendre les mises à jour de l\'écran quand non porté</string>
    <string name="watchface_setting_title_power_saving">Économie d\'énergie</string>
    <string name="watchface_widget_type_chance_rain">Risque de pluie</string>
    <string name="watchface_widget_type_active_mins">Minutes actives</string>
    <string name="watchface_widget_type_2nd_tz">Zone temps intermédiaire</string>
    <string name="watchface_widget_type_calories">Calories</string>
    <string name="watchface_widget_type_battery">Batterie</string>
    <string name="pref_summary_huami_force_new_protocol">À activer si votre appareil ne se connecte plus après une mise à jour du micrologiciel</string>
    <string name="pref_title_huami_force_new_protocol">Nouveau protocole d\'identification</string>
    <string name="menuitem_flashlight">Flash</string>
    <string name="prefs_autoheartrate_interval">Fréquence des mesures</string>
    <string name="prefs_autoheartrate_sleep">Prendre des mesures pendant le sommeil</string>
    <string name="prefs_autoheartrate_measurement">Mesures automatiques du rythme cardiaque</string>
    <string name="prefs_autoheartrate_summary">Mesures périodiques du rythme cardiaque durant la journée et également pendant le sommeil</string>
    <string name="prefs_autoheartrate">Rythme cardiaque automatique</string>
    <string name="enable_notifications_summary">Notifications pour les appels, les messages et autres</string>
    <string name="enable_vibrations_summary">Vibrant pour les appels, messages, notifications et autres</string>
    <string name="prefs_notifications_enable">Activer les notifications</string>
    <string name="prefs_vibration_enable">Activer le mode vibreur</string>
    <string name="prefs_sleep_time_summary">Configurer les périodes horaires durant lesquelles le sommeil est enregistré</string>
    <string name="prefs_sleep_time_label">Configurer les heures de sommeil</string>
    <string name="prefs_sleep_time">Durées de sommeil</string>
    <string name="devicetype_fitpro">FitPro</string>
    <string name="pref_title_ping_tone">Sonnerie du Ping</string>
    <string name="devicetype_nothingear1">Nothing Ear (1)</string>
    <string name="nothing_prefs_inear_summary">Mettre en lecture/pause la musique selon si vous portez les écouteurs ou pas</string>
    <string name="nothing_prefs_audiomode_title">Mode Audio</string>
    <string name="nothing_prefs_inear_title">Détection In-Ear</string>
    <string name="check_all_applications">Activer toutes les applications</string>
    <string name="uncheck_all_applications">Désactiver toutes les applications</string>
    <string name="pref_title_notification_use_as">Utiliser la liste des applications pour…</string>
    <string name="pref_title_notification_use_as_deny">Bloquer les notifications des apps sélectionnées</string>
    <string name="pref_title_message_privacy_mode">Mode messages privés</string>
    <string name="pref_message_privacy_mode_off">Afficher tout le contenu</string>
    <string name="pref_message_privacy_mode_complete">Cacher tout le contenu</string>
    <string name="pref_applications_settings">Liste des applications</string>
    <string name="toast_app_must_be_selected">L\'app doit être sélectionnée pour être configurée</string>
    <string name="pref_title_notification_use_as_allow">Autoriser les notifications des apps sélectionnées</string>
    <string name="title_activity_notification_management">Configuration des notifications</string>
    <string name="pref_header_notification_application_settings">Réglages par application</string>
    <string name="toast_app_must_not_be_selected">L\'app ne doit pas être sélectionnée pour être configurée</string>
    <string name="prefs_equalizer_preset">Préréglage d\'égalisation</string>
    <string name="pref_title_equalizer_bass_boost">Renforcement des basses</string>
    <string name="pref_title_equalizer_soft">Logiciel</string>
    <string name="pref_title_equalizer_clear">Effacer</string>
    <string name="pref_title_equalizer_trebble">Renforcement des aigus</string>
    <string name="prefs_dolby_mode">Mode Dolby</string>
    <string name="prefs_equalizer">Égaliseur</string>
    <string name="prefs_equalizer_summary">Activer ou désactiver l\'égaliseur</string>
    <string name="prefs_dolby_summary">Préréglage Dolby pour l\'égaliseur</string>
    <string name="prefs_game_mode">Mode Jeu</string>
    <string name="prefs_touch_lock">Verrouillage du tactile</string>
    <string name="prefs_touch_lock_summary">Désactiver les évènements tactiles</string>
    <string name="prefs_galaxy_buds_experimental">Expérimental</string>
    <string name="prefs_ambient_volume">Volume ambiant</string>
    <string name="prefs_ambient_voice_focus">Direction de la voix</string>
    <string name="prefs_ambient_voice_summary">Rendre la voix intelligible</string>
    <string name="prefs_ambient_sound">Son ambiant</string>
    <string name="prefs_ambient_mode">Mode Ambiance</string>
    <string name="prefs_left">Gauche</string>
    <string name="prefs_right">Droite</string>
    <string name="prefs_galaxy_touch_options">Options tactiles</string>
    <string name="devicetype_galaxybuds">Galaxy Buds</string>
    <string name="pref_title_equalizer_dynamic">Dynamique</string>
    <string name="prefs_game_mode_summary">Uniquement si votre téléphone gère le mode jeu</string>
    <string name="left_earbud">Écouteur gauche</string>
    <string name="right_earbud">Écouteur droit</string>
    <string name="battery_case">Boîtier batterie</string>
    <string name="pref_header_other">Autre</string>
    <string name="pref_header_system">Système</string>
    <string name="pref_header_equalizer">Équalisateur</string>
    <string name="devicetype_galaxybuds_live">Galaxy Buds Live</string>
    <string name="pref_title_equalizer_normal">Normal</string>
    <string name="prefs_active_noise_cancelling">Activer l\'annulation de bruit</string>
    <string name="sony_ambient_sound_off">Off</string>
    <string name="sony_ambient_sound_noise_cancelling">Annulation de bruit</string>
    <string name="sony_ambient_sound_wind_noise_reduction">Réduction du bruit du vent</string>
    <string name="sony_ambient_sound_ambient_sound">Son ambiant</string>
    <string name="sony_ambient_sound_focus_voice">Focus sur la voix</string>
    <string name="sony_ambient_sound_level">Niveau du son ambiant</string>
    <string name="sony_sound_position">Position du son</string>
    <string name="sony_sound_position_off">Off</string>
    <string name="sony_sound_position_front">Avant</string>
    <string name="sony_sound_position_front_left">Avant gauche</string>
    <string name="sony_sound_position_front_right">Avant droit</string>
    <string name="sony_sound_position_rear_left">Arrière gauche</string>
    <string name="sony_sound_position_rear_right">Arrière droit</string>
    <string name="sony_surround_mode">Mode Surround</string>
    <string name="sony_surround_mode_off">Off</string>
    <string name="sony_surround_mode_arena">Arène</string>
    <string name="sony_surround_mode_club">Club</string>
    <string name="sony_surround_mode_outdoor_stage">Scène extérieure</string>
    <string name="sony_surround_mode_concert_hall">Hall de concert</string>
    <string name="sony_warn_sbc_codec">Avertissement : L\'équaliseur, la position audio et les réglages surrond ne s\'appliquent qu\'au codec audio SBC.</string>
    <string name="sony_equalizer">Egalisateur</string>
    <string name="sony_equalizer_preset_off">Off</string>
    <string name="sony_equalizer_preset_bright">Lumineux</string>
    <string name="sony_equalizer_preset_excited">Excité</string>
    <string name="sony_equalizer_preset_mellow">Calme</string>
    <string name="sony_equalizer_preset_relaxed">Relax</string>
    <string name="sony_equalizer_preset_vocal">Vocal</string>
    <string name="prefs_pressure_relief">Réduction de la pression dûe au bruit ambiant</string>
    <string name="pref_header_sony_ambient_sound_control">Contrôle du son ambiant</string>
    <string name="sony_ambient_sound">Mode</string>
    <string name="pressure_relief_summary">Réduire la sensation de pression dans les oreilles lorsque l\'annulation de bruit est active</string>
    <string name="devicetype_sony_wh_1000xm3">Sony WH-1000XM3</string>
    <string name="prefs_active_noise_cancelling_summary">Bloquer les sons extérieurs</string>
    <string name="sony_equalizer_preset_treble_boost">Renfort des aigus</string>
    <string name="sony_equalizer_preset_bass_boost">Renfort des graves</string>
    <string name="sony_equalizer_preset_speech">Parole</string>
    <string name="prefs_activity_in_device_card_title">Afficher l\'activité sur la carte de l\'appareil</string>
    <string name="prefs_activity_in_device_card_sleep_title">Sommeil</string>
    <string name="prefs_activity_in_device_card_sleep_title_summary">Afficher la durée du sommeil</string>
    <string name="prefs_activity_in_device_card_steps_title_summary">Afficher le nombre total de pas</string>
    <string name="sony_equalizer_preset_manual">Manuel</string>
    <string name="sony_equalizer_preset_custom_1">Personnalisé 1</string>
    <string name="sony_equalizer_preset_custom_2">Personnalisé 2</string>
    <string name="pref_header_sony_equalizer_preset_custom_1">Configuration personnalisée 1</string>
    <string name="sony_equalizer_band_400">400</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">Graves claires</string>
    <string name="sony_touch_sensor">Contrôle du capteur tactile</string>
    <string name="sony_notification_voice_guide">Notifications et guide audio</string>
    <string name="sony_automatic_power_off">Extinction automatique</string>
    <string name="sony_automatic_power_off_off">Ne pas éteindre</string>
    <string name="sony_automatic_power_off_3_hour">3 heures</string>
    <string name="device_card_activity_card_title_summary">Choisir les activités affichées sur la carte de l\'appareil</string>
    <string name="watchface_widget_type_custom">Widget personnalisé</string>
    <string name="pref_header_sony_equalizer_preset_custom_2">Configuration personnalisée 2</string>
    <string name="device_card_activity_card_title">Info Activité sur la carte de l\'appareil</string>
    <string name="sony_automatic_power_off_30_min">30 minutes</string>
    <string name="prefs_activity_in_device_card_title_summary">Afficher le nombre de pas, la distance ou le sommeil sur la carte de l\'appareil</string>
    <string name="prefs_activity_in_device_card_distance_title_summary">La distance est calculée d\'après le nombre de pas et la longueur des pas (configurable dans les Réglages - A propos de vous(</string>
    <string name="sony_equalizer_band_1000">1k</string>
    <string name="sony_automatic_power_off_5_min">5 minutes</string>
    <string name="sony_automatic_power_off_1_hour">1 heure</string>
    <string name="sony_automatic_power_off_when_taken_off">Lorsqu\'éteint</string>
    <string name="prefs_fm_preset_instructions">Faire un appui long sur le bouton pour enregistrer cette configuration</string>
    <string name="prefs_fm_presets_presets">Configurations</string>
    <string name="watchface_dialog_widget_timeout_show_circle">Montrer le cercle en cas de perte de connexion</string>
    <string name="watchface_dialog_widget_timezone">Fuseau horaire</string>
    <string name="watchface_dialog_widget_timeout_hide_text">Cacher le texte en cas de perte de communication</string>
    <string name="watchface_dialog_widget_update_timeout">Mettre à jour le temps de déconnexion en minutes</string>
    <string name="qhybrid_title_on_device_confirmation">Activer la confirmation de pairage sur l\'appareil</string>
    <string name="qhybrid_summary_on_device_confirmation">La confirmation de pairage sur l\'appareil peut être ennuyeuse. Sa désactivation peut entrainer la perte de fonctions.</string>
    <string name="title_activity_set_reminders">Configurer les rappels</string>
    <string name="controlcenter_start_configure_reminders">Configurer les rappels</string>
    <string name="reminder_repeat">Répéter</string>
    <string name="reminder_date">Date</string>
    <string name="reminder_time">Heure</string>
    <string name="reminder_message">Message</string>
    <string name="reminder_time_every_week">%1$s, toutes les semaines</string>
    <string name="reminder_time_every_month">%1$s, tous les mois</string>
    <string name="reminder_time_every_year">%1$s, tous les ans</string>
    <string name="reminder_once">Une fois</string>
    <string name="reminder_every_year">Annuel</string>
    <string name="reminder_delete_confirm_title">Effacer le rappel</string>
    <string name="reminder_delete_confirm_description">Êtes-vous sûr de vouloir effacer ce rappel \?</string>
    <string name="reminder_no_free_slots_title">Pas d\'emplacement disponible</string>
    <string name="reminder_time_once">%1$s, une fois</string>
    <string name="reminder_time_every_day">%1$s, tous les jours</string>
    <string name="reminder_every_day">quotidien</string>
    <string name="reminder_every_week">Hebdomadaire</string>
    <string name="reminder_every_month">Mensuel</string>
    <string name="reminder_no_free_slots_description">Plus d\'emplacement pour rappel disponible (emplacements totaux : %1$s)</string>
    <string name="miband_prefs_reserve_reminder_calendar">Rappels réservés pour des évènements futurs</string>
    <string name="prefs_reserve_reminder_calendar_summary">Nombre d\'évènements du calendrier qui seront synchronisés</string>
    <string name="title_activity_reminder_details">Détails du rappel</string>
    <string name="mi2_prefs_do_not_disturb_lift_wrist">Activer l\'écran lors d\'un retournement en mode Ne Pas Déranger</string>
    <string name="maxHR">Rythme cardiaque max</string>
    <string name="maxStride">Distance de pas max</string>
    <string name="minStride">Distance de pas min</string>
    <string name="minCadence">Cadence min</string>
    <string name="spm">pas/min</string>
    <string name="averageAltitude">Moyenne</string>
    <string name="averageCadence">Cadence moyenne</string>
    <string name="minSpeed">Minimum</string>
    <string name="minHR">Rythme cardiaque min</string>
    <string name="maxCadence">Cadence max</string>
    <string name="activity_prefs_discovery_pairing">Options de découverte et de pairage</string>
    <string name="discover_unsupported_devices">Découvrir les appareils non pris en charge</string>
    <string name="add_test_device">Ajouter un appareil de test</string>
    <string name="controlcenter_power_off">Éteindre</string>
    <string name="controlcenter_power_off_confirm_title">Éteindre</string>
    <string name="controlcenter_power_off_confirm_description">Etes-vous sûr de vouloir éteindre l\'appareil \?</string>
    <string name="discover_unsupported_devices_description">Activer cette option pour afficher tous les appareils bluetooth lors du scan. Un appui bref copie le nom de l\'appareil et sa mac adresse dans le presse-papier. Un appui long lancera le processus \"Ajouter un appareil de test\". Peut potentiellement provoquer un blocage de l\'app.</string>
    <string name="devicetype_vesc">VESC</string>
    <string name="devicetype_bose_qc35">Bose QC35</string>
    <string name="activity_type_hiking">Randonnée</string>
    <string name="ascentDistance">Distance en montée</string>
    <string name="descentDistance">Distance en descente</string>
    <string name="sony_button_mode_left">Mode du bouton (Gauche)</string>
    <string name="sony_button_mode_right">Mode du bouton (Droite)</string>
    <string name="sony_button_mode_off">Eteint</string>
    <string name="sony_button_mode_ambient_sound_control">Contrôle du son ambiant</string>
    <string name="devicetype_sony_wf_sp800n">Sony WF-SP800N</string>
    <string name="sony_audio_upsampling">Sur-échantillonnage audio</string>
    <string name="activity_type_climbing">Randonnée</string>
    <string name="sony_pause_when_taken_off">Pause lorsqu\'on enlève les écouteurs</string>
    <string name="sony_button_mode_playback_control">Contrôle de la lecture</string>
    <string name="sony_button_mode_volume_control">Contrôle du volume</string>
    <string name="pref_header_sony_equalizer_bands">Bandes</string>
    <string name="pref_button_action_disabled">Désactivé</string>
    <string name="pref_media_play">Lecteure média</string>
    <string name="pref_media_pause">Pause Média</string>
    <string name="pref_media_playpause">Changer l\'état de lecture</string>
    <string name="pref_media_volumedown">Volume moins</string>
    <string name="distance_format_miles">###.#mi</string>
    <string name="pref_media_previous">Piste précédente</string>
    <string name="pref_media_volumeup">Volume plus</string>
    <string name="pref_media_next">Piste suivante</string>
    <string name="pref_media_rewind">Piste précédente</string>
    <string name="pref_device_action_broadcast">Envoyer un message Broadcast</string>
    <string name="distance_format_meters">###m</string>
    <string name="pref_media_forward">Avance rapide</string>
    <string name="distance_format_kilometers">###.#km</string>
    <string name="distance_format_feet">###ft</string>
    <string name="about_hash">Commit %s</string>
    <string name="menuitem_menu">Menu</string>
    <string name="fossil_hr_button_config_info">Certains boutons ne peuvent pas être configurés car leurs fonctions sont encodées en dur dans le micro-logiciel de l\'appareil.
\n
\nAvertissement : Un appui long sur le bouton du haut quand l\'appareil a une application Fossil officielle installée provoquera l\'activation/déactivation des widgets.</string>
    <string name="devicetype_domyos_t540">Domyos T540</string>
    <string name="prefs_activity_recognition">Réglages de la détection d\'activité</string>
    <string name="pref_activity_recognize_running">détection de course à pieds</string>
    <string name="pref_activity_recognize_biking">détection de pédalage</string>
    <string name="pref_activity_recognize_walking">détection de marche</string>
    <string name="pref_activity_recognize_rowing">détection de pagayage</string>
    <string name="pref_activity_recognition_mode_ask">demander</string>
    <string name="pref_activity_recognition_mode_none">aucune</string>
    <string name="pref_activity_recognition_mode_auto">auto</string>
    <string name="watchface_dialog_widget_width">Largeur du widget (en pixels)</string>
    <string name="discovery_bluetooth_scan">Scan Bluetooth :</string>
    <string name="discovery_bluetooth_le_scan">Scan Bluetooth LE :</string>
    <string name="sony_speak_to_chat">Speak-to-chat</string>
    <string name="sony_speak_to_chat_sensitivity_auto">Automatique</string>
    <string name="sony_speak_to_chat_timeout">Délai expiré</string>
    <string name="sony_speak_to_chat_timeout_off">Éteint</string>
    <string name="sony_speak_to_chat_timeout_short">Court (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">Connecter à 2 appareils simultanément</string>
    <string name="devicetype_sony_wh_1000xm4">Sony WH-1000XM4</string>
    <string name="sony_speak_to_chat_sensitivity_low">Bas</string>
    <string name="sony_speak_to_chat_sensitivity">Sensibilité de la détection de voix</string>
    <string name="sony_speak_to_chat_sensitivity_high">Haut</string>
    <string name="sony_speak_to_chat_focus_on_voice">Focus sur la voix</string>
    <string name="device_unsupported">Non supporté</string>
    <string name="audio_codec">Codec Audio</string>
    <string name="pref_header_sony_device_info">Information de l\'appareil</string>
    <string name="start">Départ</string>
    <string name="pref_header_sony_anc_optimizer">Optimisation de l\'annulation de bruits</string>
    <string name="sony_anc_optimize_description">Cliquer pour lancer l\'optimiseur d\'annulation de bruits.</string>
    <string name="sony_anc_optimize_confirmation_title">Optimiseur d\'annulation de bruits</string>
    <string name="pref_anc_optimizer_state_pressure">Pression atmosphérique</string>
    <string name="sony_anc_optimizer_status_starting">Démarrage…</string>
    <string name="sony_anc_optimizer_status_atmospheric_pressure">Mesure de la pression atmosphérique…</string>
    <string name="sony_anc_optimizer_status_analyzing">Analyse…</string>
    <string name="sony_anc_optimizer_status_finished">Fin…</string>
    <string name="sony_anc_optimize_title">Optimisation</string>
    <string name="sony_anc_optimize_confirmation_description">Utiliser les écouteurs comme d\'habitude. Si les conditions ambiantes ou la pression atmosphérique change, relancer l\'optimiseur.</string>
    <string name="unknown">Inconnu</string>
    <string name="sony_anc_optimizer_status_not_running">Pas en service</string>
    <string name="sony_anc_optimizer_status_wearing_condition">Mesure des conditions actuelles…</string>
    <string name="devicetype_amazfit_pop">Amazfit Pop</string>
    <string name="devicetype_amazfit_pop_pro">Amazfit Pop Pro</string>
    <string name="menuitem_nothing">Rien</string>
    <string name="pref_title_opentracks_packagename">Nom du logiciel OpenTracks</string>
    <string name="pref_summary_opentracks_packagename">Utilisé pour démarrer/arrêter l\'enregistrement GPS dans une app. de fitness externe.</string>
    <string name="pref_device_action_fitness_app_control_start">Démarrage de l\'enregistrement dans l\'app Fitness</string>
    <string name="pref_device_action_fitness_app_control_stop">Arrêt de l\'enregistrement dans l\'app Fitness</string>
    <string name="pref_title_notifications_generic_settings">Configuration des notifications Android</string>
    <string name="autoExport_lastTime_label">Dernier export automatique : %1$s</string>
    <string name="activity_db_management_autoexport_enabled_yes">L\'export automatique est activé.</string>
    <string name="activity_db_management_autoexport_scheduled_yes">L\'export automatique a été (initialement) réglé pour %1$s</string>
    <string name="activity_db_management_autoexport_scheduled_no">L\'export automatique n\'a pas été planifié.</string>
    <string name="activity_db_management_autoexport_enabled_no">L\'export automatique est désactivé.</string>
    <string name="activity_db_management_autoexport_location">L\'emplacement n\'a pas pu être détecté. Probablement un problème avec les nouvelles permissions du système Android. Très probablement, l\'export automatique ne fonctionne pas actuellement.</string>
    <string name="watchface_dialog_pre_setting_position">pré-configuration de la position à %s</string>
    <string name="watchface_setting_light_up_on_notification">S\'allumer pour une nouvelle notification</string>
    <string name="menuitem_email">Email</string>
    <string name="title_activity_controlcenter_banglejs_main">Bangle.js Gadgetbridge</string>
    <string name="about_activity_title_banglejs_main">À propos de Bangle.js Gadgetbridge</string>
    <string name="application_name_banglejs_main">Bangle.js Gadgetbridge</string>
    <string name="about_description_banglejs_main">Application complémentaire Android pour Bangle.js élaborée sur la base du projet Gadgetbridge, avec des fonctionnalités Internet supplémentaires.
\n
\nEn raison des règles du Google Play Store, nous ne pouvons pas mettre de lien de don directement dans l\'application, mais si vous appréciez cette application, pensez à faire un don via la page web de Gadgetbridge ci-dessous.</string>
    <string name="application_name_banglejs_nopebble">Bangle.js pour Gadgetbridge</string>
    <string name="title_activity_controlcenter_banglejs_nopebble">Bangle.js pour Gadgetbridge</string>
    <string name="about_activity_title_main_nightly">À propos de Gatgetbridge Nightly</string>
    <string name="about_activity_title_banglejs_nopebble">A propos de Bangle.js pour Gadgetbridge</string>
    <string name="about_activity_title_main_nopebble">À propos de Gadgetbridge Nightly sans Pebble</string>
    <string name="about_description_main_nightly">Remplaçant autonome et sous licence libre pour remplacer les applications propriétaires des fabricants. Version Nightly de Gadgetbridge. Ne peut pas être installé si vous avez déja Gadgetbridge ou Pebble d\'installé, en raison d\'un conflit avec l\'application Pebble.</string>
    <string name="application_name_main_nopebble">Gadgetbridage (Nightly, pas defournisseur Pebble)</string>
    <string name="title_activity_controlcenter_main_nopebble">Gadgetbridge Nightly Sans Pebble</string>
    <string name="gadgetbridge_running_main_nightly">GB Nightly en fonctionnement</string>
    <string name="gadgetbridge_running_banglejs_main">Bangle.js en fonctionnement</string>
    <string name="about_description_banglejs_nopebble">Application complémentaire Android pour Bangle.js élaborée sur la base du projet Gadgetbridge, avec des fonctionnalités Internet supplémentaires.
\n
\nEn raison des règles du Google Play Store, nous ne pouvons pas mettre de lien de don directement dans l\'application, mais si vous appréciez cette application, pensez à faire un don via la page web de Gadgetbridge ci-dessous.</string>
    <string name="gadgetbridge_running_banglejs_nopebble">Bangle.js en fonctionnement</string>
    <string name="application_name_main_nightly">Gadgetbridge (version Nightly)</string>
    <string name="title_activity_controlcenter_main_nightly">Gadgetbrigde version Nightly</string>
    <string name="pref_screen_notification_profile_event_reminder">Rappel d\'évènements</string>
    <string name="pref_screen_notification_profile_find_device">Trouver l\'appareil</string>
    <string name="pref_screen_notification_idle_alerts">Alertes d\'inactivité</string>
    <string name="pref_screen_vibration_patterns_title">Modes de vibration</string>
    <string name="pref_screen_vibration_patterns_summary">Configurer les modes de vibration pour les différentes notifications</string>
    <string name="world_clock_delete_confirm_title">Effacer \'%1$s\'</string>
    <string name="world_clock_timezone">Fuseau horaire</string>
    <string name="world_clock_label">Étiquette</string>
    <string name="title_activity_world_clock_details">Détails du fuseau horaire</string>
    <string name="normal">Normal</string>
    <string name="sensitive">Sensible</string>
    <string name="activity_type_outdoor_running">Course à pied en extérieur</string>
    <string name="activity_type_freestyle">Exercice libre</string>
    <string name="activity_type_elliptical">Ellyptique</string>
    <string name="devicetype_sony_wf_1000xm3">Sony WF-1000XM3</string>
    <string name="devicetype_galaxybuds_pro">Galaxy Buds Pro</string>
    <string name="prefs_seamless_connection_switch_title">Changement de connexion sans coupure</string>
    <string name="gadgetbridge_running_main_nopebble">GB nightly non Pebble en cours de fonctionnement</string>
    <string name="heartrate_bpm_105">105 bpm</string>
    <string name="about_description_main_nopebble">Remplaçant autonome et sous licence libre pour remplacer les applications propriétaires des fabricants. Version Nightly de Gadgetbridge. Cette ersion contient le fournisseur Pebble renommé pour éviter les conflits, donc certaines intégrations Pebble ne marcheront pas, mais elle peut être installé à côté d\'une installation GadgetBridge existante.</string>
    <string name="heartrate_bpm_145">145 bpm</string>
    <string name="prefs_heartrate_alert_experimental_title">Alerte de rythme cardiaque (expérimentale)</string>
    <string name="prefs_stress_monitoring_description">Surveiller le niveau de stress pendant le repos</string>
    <string name="mi2_prefs_heart_rate_monitoring">Surveillance du rythme cardiaque</string>
    <string name="mi2_prefs_heart_rate_monitoring_alerts_summary">Configuration de la surveillance du rythme cardiaque et des seuils d\'alerte</string>
    <string name="mi2_prefs_heart_rate_monitoring_summary">Configuration de la surveillance du rythme cardiaque</string>
    <string name="heartrate_bpm_100">100 bpm</string>
    <string name="heartrate_bpm_110">110 bpm</string>
    <string name="heartrate_bpm_112">112 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="world_clock_delete_confirm_description">Etes-vous sûr de vouloir supprimer l\'horloge mondiale \?</string>
    <string name="world_clock_no_free_slots_title">Aucun emplacement de libre</string>
    <string name="world_clock_no_free_slots_description">Cet appareil n\'a plus d\'emplacement disponible pour des fuseaux horaires (total des emplacements : %1$s)</string>
    <string name="prefs_heartrate_alert_experimental_description">Faire vibrer le bracelet quand le rythme cardiaque passe un seuil, sans aucune activité physique évidente dans les 10 dernières minutes. Cette fonctionnalité est expérimentale, et n\'a pas été beaucoup testé.</string>
    <string name="prefs_heartrate_alert_threshold">Seuil d\'alerte du rythme cardiaque</string>
    <string name="prefs_stress_monitoring_title">Surveillance du stress</string>
    <string name="prefs_activity_monitoring_title">Surveillante de l\'activité</string>
    <string name="prefs_activity_monitoring_description">Augmenter automatiquement la fréquence de mesure du rythme cardiaque quand le bracelet détecte une activité, pour augmenter la précision de mesure du rythme cardiaque.</string>
    <string name="prefs_ambient_volume_left">Volume ambiant gauche</string>
    <string name="prefs_ambient_volume_right">Volume ambiant droit</string>
    <string name="prefs_customize_ambient_sound_summary">Personnaliser le son ambiant</string>
    <string name="prefs_ambient_sound_during_call_title">Son ambiant pendant un appel</string>
    <string name="prefs_ambient_settings_title">Options pour le son ambiant</string>
    <string name="heartrate_bpm_150">150 bpm</string>
    <string name="prefs_in_ear_detection_summary">Recevoir les appels dans les écouteurs lorsque vous les portez</string>
    <string name="prefs_seamless_connection_switch_summary">Commutation entre les appareils déja pairés automatiquement</string>
    <string name="prefs_ambient_sound_during_call_summary">Entendre sa propre voix clairement durant un appel</string>
    <string name="pref_world_clocks_title">Horloges mondiales</string>
    <string name="pref_world_clocks_summary">Configurer les horloges pour différents fuseaux horaires</string>
    <string name="prefs_activate_display_on_lift_sensitivity">Sensibilité</string>
    <string name="mi5_prefs_workout_activity_types">Types d\'activités physiques</string>
    <string name="mi5_prefs_workout_activity_types_summary">Choisir les types d\'activité à afficher sur l\'écran d\'activité physique</string>
    <string name="activity_type_outdoor_cycling">Vélo en extérieur</string>
    <string name="pref_title_banglejs_text_bitmap">Texte comme Images</string>
    <string name="pref_summary_banglejs_text_bitmap">Si un mot ne peut être affiché avec la police de la montre, en faire une image dans GadgetBridge et l\'afficher comme image dans la montre</string>
    <string name="pref_title_device_internet_access">Autoriser l\'accès à Internet</string>
    <string name="pref_summary_device_internet_access">Permettre aux apps sur cet appareil d\'accéder à Internet</string>
    <string name="pref_title_device_intents">Permettre les intentions</string>
    <string name="pref_workout_start_on_phone_title">Application de suivi sportif</string>
    <string name="pref_workout_start_on_phone_summary">Démarre/arrête le suivi sportif sur le téléphone si une activité GPS est démarrée sur le bracelet</string>
    <string name="pref_workout_send_gps_title">Envoyer le GPS durant l\'exercice</string>
    <string name="pref_workout_send_gps_summary">Envoyer les données GPS en cours durant un exercice</string>
    <string name="notification_gps_title">GPS Gadgebridge</string>
    <string name="notification_gps_text">Envoi des données GPS au(x) appareil(s) %1$d</string>
    <string name="notification_channel_gps">Suivi GPS</string>
    <string name="permission_notification_listener">%1$s a besoin d\'accéder aux notifications pour les afficher sur votre montre quand l\'écran de votre téléphone est éteint.
\n
\nMerci de sélectionner \'%2$s\' puis \'%1$s\' et activer \'Autoriser l\'accès aux notifications\', puis appuyer sur \'Retour\' pour revenir à %1$s.</string>
    <string name="discovery_scanning_intensity">Intensité du scan</string>
    <string name="discovery_scanning_intensity_warning">Si vous rencontrez des problèmes de blocage ou non réponse, essayer de régler l\'intensité du scan à un faible niveau. Si votre appareil n\'est pas découvert, essayer l\'intensité du scan au plus haut niveau.</string>
    <string name="portuguese_br">Portugais (Brésil)</string>
    <string name="portuguese_pt">Portugais (Portugal)</string>
    <string name="prefs_active_noise_cancelling_level_low">Bas</string>
    <string name="prefs_double_tap_edge">Double appui sur le bord</string>
    <string name="prefs_voice_detect_duration">Arrêt après pause pendant :</string>
    <string name="pref_voice_detect_duration_5">5 secondes</string>
    <string name="prefs_switch_control_left">Mettre le contrôle à gauche</string>
    <string name="prefs_switch_control_right">Mettre le contrôle à droite</string>
    <string name="pref_title_touch_ambient">Son Ambiant</string>
    <string name="pref_title_touch_spotify">Spotify</string>
    <string name="pref_switch_noise_control">Changer le contrôle du bruit</string>
    <string name="prefs_noise_control_with_one_earbud">Contrôle du bruit avec un écouteur</string>
    <string name="prefs_active_noise_cancelling_level">Niveau actif de l\'annulation de bruit</string>
    <string name="prefs_active_noise_cancelling_level_high">Haut</string>
    <string name="pref_title_touch_voice_assistant">Assistant vocal</string>
    <string name="pref_title_touch_anc">Annulation de bruit active</string>
    <string name="pref_title_touch_quick_ambient">Son Ambiant</string>
    <string name="prefs_double_tap_edge_summary">Détecter un double appui même si hors zone tactile</string>
    <string name="pref_voice_detect_duration_10">10 secondes</string>
    <string name="pref_device_action_phone_gps_location_listener_stop">Arrêt du gestionnaire GPS</string>
    <string name="permission_notification_policy_access">%1$s doit accéder aux réglages Ne Pas Déranger afin de les respecter sur votre montre quand l\'écran de votre téléphone est éteint.
\n
\nMerci de sélectionner \'%2$s\' puis \'%1$s\' et activer \'Autoriser Ne Pas Déranger\', puis sélectionner \'Retour\' pour revenir à %1$s.</string>
    <string name="prefs_voice_detect_summary">Activer le son ambiant et réduction de bruit automatique lors de la détection de voix</string>
    <string name="quick_alarm">Alarme rapide</string>
    <string name="quick_alarm_description">Alarme d\'un widget</string>
    <string name="pref_summary_device_intents">Permettre à Bangle.js d\'envoyer des notifications Android, et permettre aux autres apps Android (comme Tasker) d\'envoyer des données à Bangle.js avec le dispositif com.banglejs.uart.tx . Nécessite les droits d\'affichage par-dessus les autres apps pour fonctionner en arrière-plan.</string>
    <string name="pref_title_touch_volume">Volume</string>
    <string name="prefs_noise_control_with_one_earbud_summary">Permettre le contrôle du bruit en utilisant un seul écouteur</string>
    <string name="pref_ambient_sound_tone">Tonalité du son ambiant</string>
    <string name="pref_ambient_sound_tone_summary">De doux à Clair</string>
    <string name="pref_balance">Balance</string>
    <string name="pref_switch_controls_ambient_off">Ambiant ←→ Off</string>
    <string name="prefs_noise_control">Contrôle du bruit</string>
    <string name="prefs_voice_detect">Détection de la voix</string>
    <string name="pref_switch_controls_anc_ambient">Annulation de bruit ←→ Ambiant</string>
    <string name="pref_switch_controls_anc_off">Annulation de bruit ←→ Off</string>
    <string name="pref_voice_detect_duration_15">15 secondes</string>
    <string name="pref_device_action_fitness_app_control_toggle">Basculer d\'app de suivi sportif</string>
    <string name="pref_title_banglejs_webview_url">URL de chargement de l\'app</string>
    <string name="permission_location">%1$s a besoin d\'accès à votre emplacement en arrière-plan pour lui permettre de rester connecté à votre montre même quand votre écran est éteint. \n \nVeuillez choisir \'%2$s\' dans l’écran suivant, puis appuyez sur Retour pour revenir à %1$s.</string>
    <string name="pref_summary_banglejs_webview_url">Si vous souhaitez utiliser un chargeur d\'app spécifique mettre votre URL https://…/android.html ici. Sinon laissez blanc pour https://banglejs.com/apps</string>
    <string name="info_no_devices_connected">Aucun appareil connecté</string>
    <string name="info_connected_count">%d appareils connectés</string>
    <string name="ukranian">Ukrainien</string>
    <string name="estonian">Estonien</string>
    <string name="icelandic">Islandais</string>
    <string name="lithuanian">Lituanien</string>
    <string name="persian">Perse</string>
    <string name="bengali">Bengali</string>
    <string name="czech">Tchèque</string>
    <string name="extended_ascii">ASCII étendu</string>
    <string name="scandinavian">Scandinave</string>
    <string name="pref_title_notification_delay_calls">Délai de notification d\'appel</string>
    <string name="pref_summary_notification_delay_calls">Délai avant d\'envoyer les notifications d\'appels entrants à l\'appareil, en secondes.</string>
    <string name="prefs_password">Mot de passe</string>
    <string name="controlcenter_toggle_details">Afficher les détails</string>
    <string name="pref_blacklist_calendars_summary">Les calendriers bloqués ne seront pas synchronisés avec l\'appareil</string>
    <string name="controlcenter_set_preferences">Configurer les préférences</string>
    <string name="controlcenter_connected_fraction">Connecté : %d/%d</string>
    <string name="error_deleting_device">Erreur lors de l\'effacement de l\'appareil : %s</string>
    <string name="controlcenter_folder_name">Nom du dossier :</string>
    <string name="controlcenter_add_new_folder">Ajouter un nouveau dossier</string>
    <string name="controlcenter_set_folder_title">Configurer ou créer un nouveau dossier</string>
    <string name="auto_reconnect_ble_title">Auto-reconnexion à l\'appareil</string>
    <string name="auto_reconnect_ble_summary">Essayer de se reconnecter à l\'appareil périodiquement</string>
    <string name="connection_over_ble">Connexion par BLE</string>
    <string name="connection_over_bt_classic">Connexion en Bluetooth classique</string>
    <string name="autoconnect_from_device_title">Connecter lors de la connexion de l\'appareil</string>
    <string name="pref_explanation_authkey">Certains appareils nécessitent une clé de pairage pour la toute première initialisation de l\'appareil. Touchez ici pour plus de détails dans le wiki.</string>
    <string name="controlcenter_unset_folder">Dossier non configuré</string>
    <string name="pref_explanation_authkey_new_protocol">Si vous obtenez le message \"Mettre à jour l\'application dans sa dernière version\" sur le bracelet, assurez-vous de vérifier la section \"Nouveau protocole Auth\" ci-dessus. Ou ici pour plus d\'info dans le wiki.</string>
    <string name="prefs_password_enabled">Mot de passe activé</string>
    <string name="prefs_password_4_digits_1_to_4_summary">Le mot de passe doit être à 4 chiffres, avec les chiffres de 1 à 4</string>
    <string name="error_setting_parent_folder">Erreur lors de la configuration du dossier parent : %s</string>
    <string name="controlcenter_set_parent_folder">Configurer le dossier parent</string>
    <string name="prefs_password_summary">Verrouiller le bracelet avec un mot de passe quand il n\'est pas au poignet</string>
    <string name="prefs_password_6_digits_0_to_9_summary">Le mot de passe doit comporter 6 caractères, en utilisant seulement des chiffres</string>
    <string name="autoconnect_from_device_summary">Établir la connexion lorsque celle-ci est initiée par l\'appareil, comme pour des écouteurs</string>
    <string name="watchface_dialog_widget_timezone_duration">Durée de visibilité de la pendule (en secondes)</string>
    <string name="open_fw_installer_getting_files_title">Obtenir le fichier de firmware/application</string>
    <string name="open_fw_installer_pick_file">Choisir le fichier</string>
    <string name="open_fw_installer_info_text_title">Installateur de fichier</string>
    <string name="open_fw_installer_select_file">Sélectionner un fichier à envoyer à votre appareil : %s</string>
    <string name="open_fw_installer_warning_title">Avertissement</string>
    <string name="open_fw_installer_info_text">L\'installateur de firmware/façade de montre/application/fichier vous permet d\'envoyer/installer des fichiers compatibles (firmwares, façades de montre, applications, GPS, ressources, polices,...) dans l\'appareil. Pour plus d\'information se reporter au wiki : https ://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Firmware-Update</string>
    <string name="open_fw_installer_warning_text">Cette fonction a la capacité de rendre inopérant/endommager votre appareil. Cela étant dit, cela ne s\'est jamais produit pour aucun des développeurs, mais rappelez-vous que vous faites cela à vos risques et périls.</string>
    <string name="open_fw_installer_ensure_device_connected">Assurez-vous que l\'appareil %s est bien connecté</string>
    <string name="open_fw_installer_connect_maximum_one_device">Merci de connecter UN SEUL appareil vers lequel vous souhaitez envoyer le fichier.</string>
    <string name="open_fw_installer_getting_files_text">Comme nous ne pouvons pas distribue les fichiers de firmware, vous devrez les obtenir par vous-même. Cela signifie que vous devrez chercher les fichiers dans des fichiers apk, en ligne, dans des forums, sur Amazfitwatchfaces (pour les appareils Miband/Amazfit) et ainsi de suite.</string>
    <string name="open_fw_installer_connect_minimum_one_device">Merci de connecter AU MOINS UN appareil vers lequel vous voulez envoyer le fichier.</string>
    <string name="appmanager_item_outdated">(obsolète)</string>
    <string name="appmanager_app_share">Partager</string>
    <string name="pref_title_banglejs_txt_bitmap_size">Taille des images texte</string>
    <string name="pref_summary_banglejs_txt_bitmap_size">Taille à utiliser pour le rendu de texte en image</string>
    <string name="watchface_dialog_title_widget">Réglages du widget</string>
    <string name="watchface_dialog_widget_cat_generic">Générique</string>
    <string name="watchface_dialog_widget_cat_position">Position</string>
    <string name="watchface_dialog_widget_background">Arrière-plan</string>
    <string name="hybridhr_widget_bg_double_circle">Cercle double</string>
    <string name="hybridhr_widget_bg_dashed_circle">Cercle en pointillé</string>
    <string name="watchface_dialog_widget_cat_2nd_tz_widget">Widget deuxième fuseau horaire</string>
    <string name="watchface_dialog_widget_cat_custom_widget">Widget personnalisé</string>
    <string name="hybridhr_widget_bg_thin_circle">Cercle fin</string>
    <string name="watchface_setting_title_button_toggle_widgets">Intervertir les widgets</string>
    <string name="watchface_setting_button_toggle_widgets">Intervertir les widgets</string>
    <string name="steps_streaks">Rythme de marche</string>
    <string name="step_streak_total">Total</string>
    <string name="steps_streaks_total_steps">Pas
\nTotal</string>
    <string name="steps_streaks_streak_days">Jour
\nD\'objectif</string>
    <string name="steps_streaks_average_steps">Nombre de pas
\nmoyen</string>
    <string name="steps_streaks_achievement_rate">Taux
\nde réussite</string>
    <string name="steps_streaks_since_date">Depuis %s</string>
    <string name="steps_streaks_hint">Série de jours consécutifs sans interruption où l\'objectif de pas a été atteint</string>
    <string name="step_streak_ongoing">En cours</string>
    <string name="step_streak_longest">Le plus long</string>
    <string name="note">Remarque</string>
    <string name="step_streak_days_hint">Nombre de jours consécutifs où l\'objectif de pas a été réalisé</string>
    <string name="steps_streaks_total_steps_average_hint">Moyenne totale %d de pas par jour</string>
    <string name="share_log_not_enabled_message">Vous devez d\'abord activer l\'enregistrement des journaux dans les Réglages - Enregistrer les journaux</string>
    <string name="steps_streaks_total_steps_hint_totals">Nombre total de pas jamais enregistré</string>
    <string name="steps_streaks_total_days_hint_totals">Pourcentage de jours où l\'objectif a été réalisé comparé à tous les jours avec de l\'exercice</string>
    <string name="step_streak_average_steps_hint">Moyenne de pas par jour pour l\'objectif</string>
    <string name="steps_streaks_total_steps_hint">Nombre total de pas de l\'objectif</string>
    <string name="watchface_setting_button_toggle_backlight">Allumer le rétroéclairage</string>
    <string name="watchface_setting_title_custom_events">Événements personnalisés</string>
    <string name="pref_write_logfiles_not_available">Création du fichier journal ratée, l\'écriture du fichier journal est indisponible. Redémarrer l\'application pour essayer de nouveau l\'écriture du fichier journal.</string>
    <string name="controlcenter_get_heartrate_measurement">Obtenir les mesures de rythme cardiaque</string>
    <string name="about_activity_title_banglejs_nightly">À propos de Bangle.js Gadgetbridge (Version quotidienne)</string>
    <string name="title_activity_controlcenter_banglejs_nightly">Bangle.js Gadgetbridge (Version quotidienne)</string>
    <string name="application_name_banglejs_nightly">Bangle.js Gadgetbridge (Version quotidienne)</string>
    <string name="devicetype_binary_sensor">Capteur binaire</string>
    <string name="gadgetbridge_running_banglejs_nightly">Bangle.js version quotidienne est en fonctionnement</string>
    <string name="about_description_banglejs_nightly">Application complémentaire pour Bangle.js construit sur la base du projet Gadgetbridge project, avec l\'ajout de l\'accès Internet.
\n
\nEn raison des contraintes du Google Play Store, nous ne sommes pas autorisés à mettre un lien de donation dans l\'application elle-même, mais si vous appréciez cette application, merci de penser à faire une donation via la page Gadgetbridge ci-dessous.</string>
    <string name="prefs_hourly_chime">Beep horaire</string>
    <string name="prefs_hourly_chime_summary">La montre fera un beep toutes les heures</string>
    <string name="step_streaks_achievements_sharing_title">Objectifs de pas</string>
    <string name="step_streaks_achievements_sharing_message">Mes résultats quotidiens de pas !</string>
    <string name="permission_display_over_other_apps">%1$s a besoin d\'une autorisation pour s\'afficher au-dessus des autres apps afin de pouvoir lancer des activités via la commande vocale lorsque %1$s est en arrière-plan.
\n
\nCela peut être utilisé pour démarrer une application de musique et jouer un morceau, et de nombreuses autres choses.
\n
\nMerci de choisir \'%2$s\' puis \'%1$s\' et activer \'Permettre l\'affichage au-dessus des autres apps\', puis faire \'Retour\' pour revenir à %1$s.
\n
\nPour empêcher %1$s de demander des permissions se rendre dans les \'Réglages\' et décocher \'Vérifier l\'état des permissions\'.
\n
\nAssurez-vous d\'accorder à %1$s les permissions nécessaires pour les fonctionnalités attendues.</string>
    <string name="pref_header_time">Heure</string>
    <string name="pref_header_workout">Exercice</string>
    <string name="pref_summary_canned_replies">Réponse de la montre utilisant des messages préenregistrés</string>
    <string name="pref_title_screen_on_on_notifications">Allumer l\'écran pour les notifications</string>
    <string name="pref_summary_screen_on_on_notifications">Allumer l\'écran du bracelet quand une notification arrive</string>
    <string name="spo2_perc_80">80%</string>
    <string name="spo2_perc_85">85%</string>
    <string name="spo2_off">Éteint</string>
    <string name="prefs_relaxation_reminder_description">Fais vibrer le bracelet pour vous avertir si le taux de stress est supérieur à 80</string>
    <string name="prefs_spo2_monitoring_title">Surveillance de l\'oxygénation du sang</string>
    <string name="prefs_spo2_monitoring_description">Surveille automatiquement le taux d\'oxygénation du sang durant la journée</string>
    <string name="prefs_spo2_alert_threshold">Seuil d\'alerte SPO2</string>
    <string name="seconds_11">11 secondes</string>
    <string name="seconds_12">12 secondes</string>
    <string name="seconds_13">13 secondes</string>
    <string name="seconds_14">14 secondes</string>
    <string name="seconds_15">15 secondes</string>
    <string name="pref_sleep_breathing_quality_monitoring">Surveillance de la qualité de la respiration durant le sommeil</string>
    <string name="prefs_always_on_display">Écran toujours allumé</string>
    <string name="devicetype_miband7">Xiaomi Smart Band 7</string>
    <string name="menuitem_countdown">Compte à rebours</string>
    <string name="menuitem_personal_activity_intelligence">Activité personnelle</string>
    <string name="pref_header_stress">Stress</string>
    <string name="pref_header_spo2">Oxygénation du sang</string>
    <string name="pref_screen_brightness">Luminosité de l\'écran</string>
    <string name="seconds_8">8 secondes</string>
    <string name="menuitem_female_health">Santé féminine</string>
    <string name="heartrate_bpm_115">115 bpm</string>
    <string name="fw_upgrade_notice_miband7">Vous êtes sur le point d\'installer le micro-logiciel %s dans votne Xiaomi Smart Band 7.
\n
\nVotre bracelet redémarrera après l\'installation du fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="pref_header_calendar">Calendrier</string>
    <string name="pref_header_connection">Connexion</string>
    <string name="pref_header_display">Affichage</string>
    <string name="pref_header_health">Santé</string>
    <string name="pref_cache_weather">Mettre en cache les informations météo</string>
    <string name="pref_cache_weather_summary">Les informations météo seront conservées en cache entre les redémarrages de l\'application.</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="prefs_heartrate_alert_low_threshold">Seuil d\'alerte pour un taux trop bas du rythme cardiaque</string>
    <string name="prefs_relaxation_reminder_title">Rappel de relaxation</string>
    <string name="spo2_perc_90">90%</string>
    <string name="prefs_heartrate_alert_high_threshold">Seuil d\'alerte pour un taux trop élevé du rythme cardiaque</string>
    <string name="seconds_7">7 secondes</string>
    <string name="prefs_always_on_display_summary">Garder l\'écran du bracelet toujours allumé</string>
    <string name="pref_header_heartrate_sleep">Sommeil</string>
    <string name="smart">Optimisé</string>
    <string name="pref_header_heartrate_allday">Surveillance toute la journée</string>
    <string name="seconds_6">6 secondes</string>
    <string name="seconds_9">9 secondes</string>
    <string name="prefs_screen_timeout">Temps de passage en veille de l\'écran</string>
    <string name="mi2_dnd_always">Toujours</string>
    <string name="menuitem_workout_history">Historique des entrainements</string>
    <string name="menuitem_workout_status">État des entrainements</string>
    <string name="pref_header_heartrate_alerts">Alerte pour le rythme cardiaque</string>
    <string name="pref_title_notifications_ignore_low_priority">Ignorer les notifications de faible priorité</string>
    <string name="pref_summary_notifications_ignore_low_priority">Ne pas envoyer les notifications de priorité minimum ou faible à la montre</string>
    <string name="devicetype_flipper_zero">Flipper zero</string>
    <string name="activity_prefs_allow_bluetooth_intent_api">API Bluetooth d\'intention</string>
    <string name="activity_prefs_summary_allow_bluetooth_intent_api">Permet le contrôle de la connexion Bluetooth via les intentions d\'API</string>
    <string name="fw_upgrade_notice_amazfit_gts3">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit GTS 3.
\n
\nVotre bracelet redémarrera après installation du fichier zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="pref_title_notification_prefer_long_text">Préférer les notifications texte longues</string>
    <string name="pref_summary_notification_prefer_long_text">Si disponible, envoyer les notifications texte longues à l\'appareil</string>
    <string name="devicetype_amazfit_gts3">Amazfit GTS 3</string>
    <string name="kind_app">App</string>
    <string name="menuitem_unknown_app">Inconnu (%s)</string>
    <string name="pref_summary_overwrite_settings_on_connection">Lors de la connexion au bracelet, écrasez tous les réglages de celui-ci.</string>
    <string name="pref_title_overwrite_settings_on_connection">Écraser les réglages à la connexion</string>
    <string name="dismiss">Annuler</string>
    <string name="fw_upgrade_notice_amazfit_gtr3">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit GTR 3.
\n
\nVotre bracelet redémarrera automatiquement après l\'installation du fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_gtr3">Amazfit GTR 3</string>
    <string name="pref_title_third_party_app_device_settings">Permettre à des applications tierces à modifier les réglages</string>
    <string name="pref_summary_third_party_app_device_settings">Autoriser les applications tierces à modifier les réglages à travers les commandes vocales.</string>
    <string name="activity_type_dance">Danse</string>
    <string name="activity_type_hiit">Entrainement à haute-intensité par intervalles</string>
    <string name="activity_type_core_training">Entrainement de fond</string>
    <string name="activity_type_stretching">Étirements</string>
    <string name="activity_type_stepper">Stepper</string>
    <string name="activity_type_pilates">Pilate</string>
    <string name="activity_type_volleyball">Volley-Ball</string>
    <string name="activity_type_table_tennis">Ping-Pong</string>
    <string name="activity_type_bowling">Bouling</string>
    <string name="activity_type_kickboxing">Kickboxing</string>
    <string name="activity_type_street_dance">Danse de rue</string>
    <string name="activity_type_indoor_ice_skating">Patinage sur glace en intérieur</string>
    <string name="activity_type_boxing">Boxe</string>
    <string name="activity_type_zumba">Zoumba</string>
    <string name="activity_type_gymnastics">Gymnastique</string>
    <string name="activity_type_indoor_fitness">Fitness en intérieur</string>
    <string name="devicetype_super_cars">Course</string>
    <string name="devicetype_amazfit_gtr_lite">Amazfit GTR Lite</string>
    <string name="watchface_setting_button_move_hands">Bouger les mains</string>
    <string name="supercars_turbo_speed_label">Vitesse Turbo</string>
    <string name="supercars_lights_label">Lumières</string>
    <string name="abstract_chart_fragment_kind_rem_sleep">Sommeil REM</string>
    <string name="pref_header_authentication">Identification</string>
    <string name="sports_activity_confirm_delete_title">Activités %d supprimées</string>
    <string name="sports_activity_confirm_delete_description">Etes-vous sûr de vouloir effacer ces %d activités \?</string>
    <string name="supercars_lights_blinking_label">Clignotant</string>
    <string name="pref_chart_sleep_lines_limit">Combien de lignes de sommeil doivent être affichées avant de les faire défiler</string>
    <string name="HeartRateZones">Zones de rythme cardiaque</string>
    <string name="hrZoneNa">N/A</string>
    <string name="hrZoneWarmUp">Mise en route</string>
    <string name="hrZoneFatBurn">Élimination matières grasses</string>
    <string name="anaerobicTrainingEffect">Effet anaérobique</string>
    <string name="currentWorkoutLoad">Intensité de l\'exercice</string>
    <string name="maximumOxygenUptake">Oxygénation maximale</string>
    <string name="hrZoneAerobic">Aérobique</string>
    <string name="elevationGain">Gain d\'altitude</string>
    <string name="elevationLoss">Perte d\'altitude</string>
    <string name="hrZoneAnaerobic">Anaérobique</string>
    <string name="hrZoneExtreme">Extrême</string>
    <string name="aerobicTrainingEffect">Effet aérobique</string>
    <string name="TrainingEffect">Effet de l\'entrainement</string>
    <string name="devicetype_sony_wh_1000xm2">Sony WH-1000XM2</string>
    <string name="devicetype_sony_wf_1000xm4">Sony WF-1000XM4</string>
    <string name="accuracy">Précision</string>
    <string name="gps">GPS</string>
    <string name="low_power_gps">GPS en mode économie d\'énergie</string>
    <string name="gps_bds">GPS + BDS</string>
    <string name="gps_gnolass">GPS + GNOLASS</string>
    <string name="all_satellites">Tous les satellites</string>
    <string name="speed_first">Vitesse en premier</string>
    <string name="accuracy_first">Précision en premier</string>
    <string name="pref_header_sound_vibration">Son et Vibreur</string>
    <string name="pref_header_offline_voice">Voix hors-ligne</string>
    <string name="pref_gps_header">GPS</string>
    <string name="pref_gps_satellite_search">Recherche satellites</string>
    <string name="pref_crown_vibration">Vibration de la couronne</string>
    <string name="pref_cover_to_mute">Couvrir pour couper le son</string>
    <string name="pref_vibrate_for_alert">Vibrer pour alerter</string>
    <string name="pref_text_to_speech">Texte en parole</string>
    <string name="offline_voice_respond_turn_wrist">Répondre en tournant le poignet</string>
    <string name="offline_voice_response_during_screen_lighting">Répondre lorsque l\'écran est allumé</string>
    <string name="pref_agps_header">AGPS</string>
    <string name="pref_agps_expiry_reminder_enabled">Rappel d\'expiration AGPS</string>
    <string name="pref_agps_expiry_reminder_time">Rappel d\'alerte d\'expiration GPS</string>
    <string name="pref_workout_detection_categories_summary">Détection automatique des catégories d\'exercices</string>
    <string name="pref_workout_detection_alert_title">Alerte</string>
    <string name="pref_workout_detection_alert_summary">Notifier lorsqu\'un exercice est détecté</string>
    <string name="pref_sleep_mode_sleep_screen_summary">Montrer l\'écran de veille lors du réveil de l\'écran en mode sommeil, pour réduire les distractions</string>
    <string name="buttons_on_left">Boutons de gauche</string>
    <string name="buttons_on_right">Boutons de droite</string>
    <string name="prefs_weardirection">Sens de port</string>
    <string name="vibration_profile_default">Défaut</string>
    <string name="pref_screen_notification_profile_schedule">Planification</string>
    <string name="pref_screen_notification_profile_todo_list">Liste À faire</string>
    <string name="seconds_25">25 secondes</string>
    <string name="pref_enable_unsupported_settings_title">Activer les réglages non supportés</string>
    <string name="pref_enable_unsupported_settings_summary">Cela donne l\'accès à tous les réglages disponibles, y compris ceux non supportés par l\'appareil. Cela peut causer des instabilités et des plantages de l\'appareil.</string>
    <string name="prefs_always_on_display_follow_watchface">Le style suit le thème de façade</string>
    <string name="prefs_control_center_summary">Choisir les éléments du menu contextuel du centre de contrôle</string>
    <string name="activity_prefs_target_weight_kg">Poids souhaité en kg</string>
    <string name="activity_type_indoor_walking">Marche intérieure</string>
    <string name="activity_type_pool_swimming">Natation en piscine</string>
    <string name="devicetype_amazfit_gtr4">Amazfit GTR 4</string>
    <string name="menuitem_unsupported">[NON SUPPORTÉ] %s</string>
    <string name="pref_title_upper_button_long_press_action">Action sur un appui long du bouton supérieur</string>
    <string name="pref_screen_auto_brightness_title">Luminosité automatique</string>
    <string name="pref_screen_auto_brightness_summary">Ajuster la luminosité de l\'écran en fonction de l\'éclairage ambiant</string>
    <string name="menuitem_todo">A faire</string>
    <string name="menuitem_voice_memos">Mémos vocaux</string>
    <string name="menuitem_one_tap_measuring">Mesure un appui</string>
    <string name="menuitem_wifi">Wi-Fi</string>
    <string name="menuitem_lockscreen">Verrouillage écran</string>
    <string name="prefs_always_on_display_style">Style</string>
    <string name="prefs_control_center">Centre de contrôle</string>
    <string name="activity_prefs_goal_standing_time_minutes">Objectif quotidien : temps debout en minutes</string>
    <string name="sony_speak_to_chat_sensitivity_standard">Standart</string>
    <string name="custom">Personnalisé</string>
    <string name="dual_band">Double bande</string>
    <string name="balanced">Équilibré</string>
    <string name="power_saving">Économie d\'énergie</string>
    <string name="single_band">Bande unique</string>
    <string name="gps_galileo">GPS + GALILEO</string>
    <string name="fw_upgrade_notice_amazfit_gtr4">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit GTR 4.
\n
\nVotre bracelet redémarrera après l\'installation du fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="pref_alert_tone">Tonalité d\'alerte</string>
    <string name="pref_workout_detection_summary">Détecter les exercices automatiquement</string>
    <string name="pref_workout_detection_categories_title">Catégories d\'exercices</string>
    <string name="pref_gps_mode_preset">Mode GPS</string>
    <string name="pref_gps_band">Bande GPS</string>
    <string name="pref_gps_combination">Combinaison GPS</string>
    <string name="offline_voice_respond_screen_on">Répondre lorsque l\'écran est allumé</string>
    <string name="pref_sleep_mode_title">Mode Sommeil</string>
    <string name="pref_sleep_mode_sleep_screen_title">Veille écran</string>
    <string name="pref_workout_detection_title">Détection d\'exercice</string>
    <string name="pref_workout_detection_sensitivity">Sensibilité</string>
    <string name="pref_huami_truncate_fetch_operation_timestamps_summary">Tronquer les indicateurs de temps à la minute. Désactiver ce réglage pour garder les indicateurs de temps à la seconde, si vous rencontrez des problèmes à enregistrer les exercices très courts.</string>
    <string name="menuitem_calendar">Calendrier</string>
    <string name="pref_sleep_mode_smart_enable_title">Mode Intelligent</string>
    <string name="activity_prefs_goal_fat_burn_time_minutes">Objectif quotidien : temps d\'élimination de calories en minutes</string>
    <string name="menuitem_theater_mode">Mode Cinéma</string>
    <string name="pref_sleep_mode_smart_enable_summary">Activer le mode sommeil automatiquement lors du port du bracelet durant le sommeil</string>
    <string name="pref_huami_truncate_fetch_operation_timestamps_title">Tronquer les horaires lors de la récupération</string>
    <string name="menuitem_sun_moon">Soleil &amp; Lune</string>
    <string name="menuitem_offline_voice">Voix hors-ligne</string>
    <string name="menuitem_screen_always_lit">Écran tout le temps allumé</string>
    <string name="menuitem_bluetooth">Bluetooth</string>
    <string name="menuitem_membership_cards">Cartes de membre</string>
    <string name="menuitem_volume">Volume</string>
    <string name="menuitem_phone">Téléphone</string>
    <string name="menuitem_brightness">Luminosité</string>
    <string name="pref_title_lower_button_short_press_action">Action sur un appui court du bouton inférieur</string>
    <string name="pref_title_notification_media_ignores_application_list">Liste des applications dont les notifications média doivent être ignorées</string>
    <string name="pref_summary_notification_media_ignores_application_list">Traiter les notifications média avant la liste des app. Si la préférence n\'est pas cochée, les applications média doivent être autorisées dans la liste des applications pour que les contrôles média fonctionnent sur l\'appareil.</string>
    <string name="debugactivity_confirm_remove_device_preferences_title">Supprimer les préférences de l\'appareil \?</string>
    <string name="debugactivity_confirm_remove_device_preferences">Cela supprimera toutes les préférences appareil pour tous les appareils connectés. Etes-vous sûr \?</string>
    <string name="menuitem_eject_water">Éjecter l\'eau</string>
    <string name="devicetype_amazfit_band7">Amazfit Band 7</string>
    <string name="fw_upgrade_notice_amazfit_band7">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit Band 7.
\n
\nVotre bracelet redémarrera après avoir installé le fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="function_enabled">Activé</string>
    <string name="world_clock_code">Code</string>
    <string name="devicetype_galaxybuds_2">Galaxy Buds2</string>
    <string name="pref_title_touch_spotify_galaxy_app">Spotify (app Galaxy Wear uniquement)</string>
    <string name="prefs_touch_lock_buds2">Contrôles tactiles</string>
    <string name="pref_title_touch_spotify_official_app">Spotify (app officielle uniquement)</string>
    <string name="fw_upgrade_notice_amazfit_gts4">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit GTS 4.
\n
\nVotre bracelet redémarrera après l\'installation du .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_gts4">Amazfit GTS 4</string>
    <string name="fw_upgrade_notice_amazfit_gts4_mini">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit GTS 4 Mini.
\n
\nVotre bracelet redémarrera une fois le fichier .zip installé.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_gts4_mini">Amazfit GTS 4 Mini</string>
    <string name="devicetype_sony_linkbuds_s">Sony LinkBuds S</string>
    <string name="pref_header_intent_api">API vocale</string>
    <string name="intent_api_allow_trigger_export_summary">Permettre le déclenchement de l\'export de la base de données via l\'API vocale</string>
    <string name="intent_api_allow_activity_sync_title">Permettre le déclenchement de la sync.</string>
    <string name="intent_api_allow_activity_sync_summary">Permettre le déclenchement de la sync via l\'API vocale</string>
    <string name="intent_api_allow_trigger_export_title">Autoriser l\'export de la base de données</string>
    <string name="intent_api_broadcast_export_title">Diffusion sur un export de la base de données</string>
    <string name="intent_api_broadcast_export_summary">Diffuser une commande vocale quand l\'export de la base de données est fini</string>
    <string name="sony_ambient_sound_control_button_modes">Modes des boutons de contrôle du son ambiant</string>
    <string name="sony_ambient_sound_control_button_mode_nc_as_off">Annulation de bruit, Son ambiant, Éteint</string>
    <string name="sony_ambient_sound_control_button_mode_nc_as">Annulation de bruit, Son Ambiant</string>
    <string name="sony_ambient_sound_control_button_mode_nc_off">Annulation de Bruit, Éteint</string>
    <string name="sony_ambient_sound_control_button_mode_as_off">Son Ambiant, Éteint</string>
    <string name="sony_quick_access_double_tap">Accès rapide (Double Appui)</string>
    <string name="sony_quick_access_triple_tap">Accès Rapide (Triple Appui)</string>
    <string name="menuitem_wechat_pay">Paiement WeChat</string>
    <string name="pref_agps_update_time">Mise à jour de l\'heure AGPS</string>
    <string name="pref_agps_expire_time">Heure d\'expiration AGPS</string>
    <string name="appmanager_app_start">Démarrer</string>
    <string name="appmanager_app_download">Télécharger en cache</string>
    <string name="appmanager_downloaded_to_cache">Téléchargé %s dans le cache</string>
    <string name="appmanager_download_app_error">Erreur en téléchargeant l\'app</string>
    <string name="appmanager_download_started">Téléchargement de l\'app démarré</string>
    <string name="appmanager_watchface_activate">Activer</string>
    <string name="devicetype_asteroidos">AsteroidOS</string>
    <string name="devicetype_amazfit_trex_2">Amazfit T-Rex 2</string>
    <string name="fw_upgrade_notice_amazfit_trex2">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit T-Rex 2.
\n
\nVotre bracelet redémarrera une fois le fichier .zip installé.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="pref_workout_detection_ask_first">Me demander d\'abord</string>
    <string name="pref_workout_detection_ask_first_summary">Demander une confirmation sur le bracelet quand un exercice est détecté</string>
    <string name="pref_workout_detection_time">Minutes d\'activité avant la détection</string>
    <string name="pref_workout_detection_enabled_summary">Permettre la détection automatique de cet exercice</string>
    <string name="pref_workout_detection_enabled">Détection activée</string>
    <string name="pref_workout_detection_time_summary">Le nombre de minutes pendant lesquelles l\'exercice doit être en cours pour le détecter</string>
    <string name="activity_type_rowing">Rameur</string>
    <string name="georgian">Georgien</string>
    <string name="devicetype_soflow_s06">SoFlow SO6</string>
    <string name="pref_title_lock_unlock">Verrouiler</string>
    <string name="devicetype_galaxybuds_2_pro">Galaxy Buds2 Pro</string>
    <string name="pref_workout_keep_screen_on_summary">L\'écran restera allumé durant un exercice, et la luminosité sera ajustée en continu pour permettre l\'affichage des données en temps réel</string>
    <string name="pref_workout_keep_screen_on_title">Garder l\'écran allumé durant un exercice</string>
    <string name="pref_camera_remote_title">Télécommande Photo</string>
    <string name="pref_camera_remote_summary">Permettre au bracelet de déclencher l\'appareil photo du téléphone</string>
    <string name="stop">Arrêt</string>
    <string name="wifi_hotspot">Point d\'accès Wifi</string>
    <string name="wifi_hotspot_status">Etat du point d\'accès Wifi</string>
    <string name="status">État</string>
    <string name="wifi_hotspot_configuration">Configuration du point d\'accès Wifi</string>
    <string name="wifi_ssid">SSID</string>
    <string name="wifi_hotspot_summary">Contrôler le point d\'accès Wifi depuis la montre</string>
    <string name="wifi_hotspot_start_summary">Démarrer le point d’accès Wifi depuis la montre</string>
    <string name="wifi_hotspot_stop_summary">Arrêter le point d\'accès Wifi depuis la montre</string>
    <string name="ftp_server_summary">Contrôler le serveur FTP depuis la montre</string>
    <string name="ftp_server_stop_summary">Arrêter le serveur FTP depuis la montre</string>
    <string name="ftp_server_configuration">Configuration du serveur FTP</string>
    <string name="ftp_server_root_dir">Répertoire racine</string>
    <string name="croatian">Croate</string>
    <string name="ftp_server">Serveur FTP</string>
    <string name="ftp_server_start_summary">Démarrer le serveur FTP depuis la montre</string>
    <string name="ftp_server_status">État du serveur FTP</string>
    <string name="username">Nom d\'utilisateur</string>
    <string name="address">Adresse</string>
    <string name="sony_speak_to_chat_summary">Désactiver l\'annulation de bruit automatiquement lors d\'un appel.</string>
    <string name="yesterdays_activity">Activité d\'hier</string>
    <string name="pref_morning_updates_title">Mises à jour le matin</string>
    <string name="pref_morning_updates_summary">Afficher les mises à jour tous les matins</string>
    <string name="pref_morning_updates_categories_title">Les catégories de mises à jour du matin</string>
    <string name="pref_morning_updates_categories_summary">Liste des catégories à afficher tous les matins</string>
    <string name="bluetooth_calls_pairing">Pairage pour les appels Bluetooth</string>
    <string name="bluetooth_calls_settings">Configuration des appels Bluetooth</string>
    <string name="pref_display_caller_title">Afficher les informations du contact</string>
    <string name="pref_display_caller_summary">Afficher le numéro ou le nom pour les appels entrants</string>
    <string name="pref_pair_bluetooth_calls_summary">Appuyer ici pour commencer le processus de pairage</string>
    <string name="pref_pair_bluetooth_calls_help_title">Comment recevoir des appels Bluetooth</string>
    <string name="pref_pair_bluetooth_calls_help_1">1. Appuyer sur le bouton ci-dessous pour commencer le processus de pairage.</string>
    <string name="pref_pair_bluetooth_calls_help_3">3. Activer les réglages d\'appel en Bluetooth ci-dessous.</string>
    <string name="pref_pair_bluetooth_calls_help_warning">AVERTISSEMENT : Si vous activez les appels Bluetooth sans faire le pairage avec la seconde instance, les notifications d\'appel pourraient ne pas marcher comme prévu.</string>
    <string name="bluetooth_calls">Appels Bluetooth</string>
    <string name="pref_summary_receive_calls_watch">Passer et recevoir des appels directement depuis la montre</string>
    <string name="pref_pair_bluetooth_calls_title">Coupler pour les appels Bluetooth</string>
    <string name="pref_pair_bluetooth_calls_help_summary">Afin de recevoir les appels en Bluetooth, vous devez pairer votre téléphone avec une seconde instance de la montre.</string>
    <string name="pref_pair_bluetooth_calls_help_2">2. Rendez-vous dans les réglages Bluetooth de votre téléphone, et pairez-le avec le nouvel appareil qui apparaitra (nom similaire à votre montre existante, mais avec un suffixe, du style \"Amazfit GTR 4 - AFC8\".</string>
    <string name="pref_title_notification_cache_while_disconnected">Garder en cache lorsque hors de portée</string>
    <string name="pref_summary_notification_cache_while_disconnected">Envoyer les notifications manquées lorsqu\'un appareil se reconnecte après avoir été hors de portée</string>
    <string name="pref_switch_controls_anc_ambient_off">Annulation de bruit ←→ Ambiance ←→ Off</string>
    <string name="single_tap">Appui simple</string>
    <string name="double_tap">Double appui</string>
    <string name="triple_tap">Triple appui</string>
    <string name="long_press">Appui long</string>
    <string name="continue_pressing">Continuer à presser</string>
    <string name="quick_attention">Aperçu rapide</string>
    <string name="sony_button_mode_help_title">Bouton Modes - Aide</string>
    <string name="sony_button_mode_help_summary">Description du mode de chaque bouton</string>
    <string name="prefs_shortcut_cards">Cartes de raccourcis</string>
    <string name="menuitem_forecast">Prévision</string>
    <string name="menuitem_vo2_max">VO₂ Max</string>
    <string name="menuitem_recommendation">Recommendation</string>
    <string name="menuitem_cards">Cartes</string>
    <string name="menuitem_mi_ai">MI AI</string>
    <string name="zepp_os_watchface_minimalist">Minimal</string>
    <string name="zepp_os_watchface_vibrant">Vibre</string>
    <string name="zepp_os_watchface_business_style">Business Style</string>
    <string name="zepp_os_watchface_rotating_earth">Rotating Earth</string>
    <string name="zepp_os_watchface_emerald_moonlight">Emerald Moonlight</string>
    <string name="zepp_os_watchface_superposition">superposition</string>
    <string name="menuitem_aqi">Index de la Qualité de l\'Air</string>
    <string name="zepp_os_watchface_rush">Rapide</string>
    <string name="menuitem_last_workout">Dernier exercice</string>
    <string name="menuitem_total_workout">Total des exercices</string>
    <string name="zepp_os_watchface_red_fantasy">Red Fantasy</string>
    <string name="zepp_os_watchface_multiple_data">Données multiples</string>
    <string name="zepp_os_watchface_simplicity_data">Données simplifiées</string>
    <string name="prefs_shortcut_cards_summary">Cartes de raccourcis visibles en glissant vers la droite sur l\'écran de la montre. Lorsque l\'app est en fonctionnement, les cartes auto-générées ne sont pas affectés par ce réglage.</string>
    <string name="fw_upgrade_notice_amazfit_gtr3_pro">Vous êtes sur le point d\'installer le micrologiciel %s dans votre Amazfit GTR 3 Pro.
\n
\nVotre bracelet redémarrera après l\'installation du fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_gtr3_pro">Amazfit GTR 3 Pro</string>
    <string name="devicetype_sony_wh_1000xm5">Sony WH-1000XM5</string>
    <string name="fossil_hr_confirm_connection">Merci de confirmer sur le bracelet</string>
    <string name="fossil_hr_connection_not_confirmed">Connexion non confirmée sur l\'appareil, utilisation du mode non identifié</string>
    <string name="fossil_hr_pairing_successful">Pairage avec l\'appareil réussie</string>
    <string name="fossil_hr_pairing_failed">Pairage avec l\'appareil raté</string>
    <string name="fossil_hr_confirmation_skipped">Passer la confirmation sur l\'appareil</string>
    <string name="fossil_hr_confirmation_timeout">Hors délai pour la confirmation</string>
    <string name="gpx_route_upload_failed">L\'envoi du tracé Gpx a échoué</string>
    <string name="kind_gpx_route">Tracé GPX</string>
    <string name="debug_companion_show_associated">Afficher les appareils associés</string>
    <string name="activity_error_share_failed">Le partage du fichier a échoué.</string>
    <string name="dev_tools">Outils Dev</string>
    <string name="debug_companion_pair_current">Associer l\'appareil actuel comme compagnon</string>
    <string name="gpx_route_upload_complete">L\'envoi du tracé Gpx a réussi</string>
    <string name="activity_detail_share_raw_details">Partager les détails bruts</string>
    <string name="activity_detail_share_gps_label">Partager un tracé GPS</string>
    <string name="activity_detail_share_raw_summary">Partager le résumé brut</string>
    <string name="gpx_route_upload_in_progress">Envoi du tracé Gpx en cours</string>
    <string name="contact_delete_confirm_title">Effacer le contact</string>
    <string name="title_activity_contact_details">Détails du contact</string>
    <string name="title_activity_set_contacts">Configurer les contacts</string>
    <string name="contact_delete_confirm_description">Etes-vous sûr de vouloir effacer \'%1$s\' \?</string>
    <string name="contact_name">Nom</string>
    <string name="contact_missing_name">Le nom du contact est vide</string>
    <string name="contact_missing_number">Le numéro du contact est vide</string>
    <string name="pref_contacts_title">Contacts</string>
    <string name="contact_no_free_slots_description">L\'appareil n\'a plus d\'emplacement libre pour des contacts (nombre d\'emplacements : %1$s)</string>
    <string name="contact_phone_number">Numéro de téléphone</string>
    <string name="pref_contacts_summary">Configurer les contacts sur la montre</string>
    <string name="intent_api_allow_debug_commands_title">Permettre les commandes de débuggage</string>
    <string name="intent_api_allow_debug_commands_summary">Permettre le déclenchement des commandes de débuggage depuis l\'API d\'intentions</string>
    <string name="pref_header_navigation">Navigation</string>
    <string name="pref_summary_navigation_forward">Transfère les instructions de navigation à la montre</string>
    <string name="pref_title_navigation_forward">Envoyer la navigation à la montre</string>
    <string name="voice_service_package_title">Paquet des services audio</string>
    <string name="voice_service_package_summary">Application qui contient le service qui gère les commandes vocales</string>
    <string name="voice_service_class_title">Classe des services audio</string>
    <string name="voice_service_class_summary">Chemin d\'accès au service qui gère les commandes vocales</string>
    <string name="voice_service">Service vocal</string>
    <string name="pref_app_logs_summary">Activer les logs des apps de la montre</string>
    <string name="pref_app_logs_start_summary">Activer les logs pour les apps de la montre</string>
    <string name="pref_app_logs_title">Logs de l\'app</string>
    <string name="pref_app_logs_stop_summary">Arrêter les logs pour les apps de la montre</string>
    <string name="fwapp_install_device_not_supported">Le fichier ne peut pas être installé, l\'appareil n\'est pas supporté.</string>
    <string name="share_screenshot">Partager la capture écran</string>
    <string name="screenshot_taken">Capture écran faite</string>
    <string name="stress_relaxed">Relaxé</string>
    <string name="stress_mild">Moyen</string>
    <string name="stress_moderate">Modéré</string>
    <string name="stress_high">Élevé</string>
    <string name="charts_legend_stress_average">Stress moyen</string>
    <string name="watchface_widget_type_uv_index">Index UV</string>
    <string name="action_changelog">Journal des modifications</string>
    <string name="pref_title_banglejs_phone_gps_enbale">Utiliser les données GPS du téléphone</string>
    <string name="pref_summary_banglejs_phone_gps_network_only">Utiliser uniquement le réseau pour déterminer la position. Cela réduit la consommation d\'énergie au prix de la précision. Une reconnexion est nécessaire.</string>
    <string name="pref_summary_banglejs_phone_gps_enbale">Utiliser les données GPS du téléphone à la place des données de l\'appareil bangle</string>
    <string name="pref_title_banglejs_phone_gps_update_interval">Intervalle de mise à jour du GPS</string>
    <string name="pref_summary_banglejs_phone_gps_update_interval">Intervalle de mise à jour de la position GPS, en ms</string>
    <string name="preview_image">Aperçu</string>
    <string name="changelog_title">Quoi de neuf</string>
    <string name="description">Description</string>
    <string name="status_icon">Icône d\'état</string>
    <string name="changelog_show_full">Plus…</string>
    <string name="changelog_full_title">Journal des modifications</string>
    <string name="changelog_ok_button">OK</string>
    <string name="pref_title_banglejs_phone_gps_network_only">Utiliser le réseau uniquement pour déterminer la position</string>
    <string name="title">Titre</string>
    <string name="pai_chart_per_month">PAI par mois</string>
    <string name="pai_plus_num">+%d</string>
    <string name="num_min">%d min</string>
    <string name="pai_chart_per_week">PAI par semaine</string>
    <string name="pai_total">PAI Total</string>
    <string name="pai_day">Augmentation journalière du PAI</string>
    <string name="loyalty_cards_install">Installer Catima</string>
    <string name="loyalty_cards_sync_groups">Groupes à synchroniser</string>
    <string name="loyalty_cards_install_catima_fail">Impossible d\'ouvrir l\'app store pour installer Catima</string>
    <string name="loyalty_cards_sync_summary">Toucher pour synchroniser les cartes dans la montre</string>
    <string name="loyalty_cards_catima_not_installed">Catima est requis pour gérer les cartes de fidélité</string>
    <string name="loyalty_cards_sync_options">Options de synchronisation</string>
    <string name="loyalty_cards_sync">Synchronisation</string>
    <string name="loyalty_cards_catima">Catima</string>
    <string name="loyalty_cards_open_catima">Démarrer Catima</string>
    <string name="loyalty_cards_catima_permissions_title">Autorisations manquantes</string>
    <string name="loyalty_cards_catima_permissions_summary">Gadgetbridge a besoin d\'une autorisation de lecture sur les cartes Catima pour les synchroniser. Appuyer sur ce bouton pour l\'autoriser.</string>
    <string name="loyalty_cards_catima_package">Nom du logiciel Catima</string>
    <string name="loyalty_cards_sync_groups_only">Synchroniser uniquement certains groupes</string>
    <string name="loyalty_cards_sync_archived">Synchroniser les cartes archivées</string>
    <string name="loyalty_cards_sync_starred">Synchroniser uniquement les cartes étoilées</string>
    <string name="loyalty_cards_sync_title">Synchroniser les cartes de fidélité</string>
    <string name="loyalty_cards_syncing">Synchronisation de %d des cartes de fidélité dans l\'appareil</string>
    <string name="loyalty_cards_catima_not_compatible">La version installée de Catima est incompatible avec Gadgetbridge. Merci de mettre à jour Catima et Gadgetbridge en dernière version.</string>
    <string name="loyalty_cards">Cartes de fidélité</string>
    <string name="pref_title_mb_intents">Diffuser les annonces Media directement</string>
    <string name="pref_summary_mb_intents">Activer si le contrôle des médias ne marche pas dans certaines applications</string>
    <string name="devicetype_bohemic_smart_bracelet">Bohemic Smart Bracelet</string>
    <string name="devicetype_vivomove_hr">Garmin Vivomove HR</string>
    <string name="busy_task_fetch_stress_data">Récupération des données de stress</string>
    <string name="busy_task_fetch_hr_data">Récupération des données de rythme cardiaque</string>
    <string name="busy_task_fetch_sports_summaries">Récupération des résumés d\'exercice</string>
    <string name="busy_task_fetch_sports_details">Récupération des détails d\'activité</string>
    <string name="busy_task_fetch_debug_logs">Récupération des logs de dépannage</string>
    <string name="busy_task_fetch_pai_data">Récupération des données RAI</string>
    <string name="busy_task_fetch_spo2_data">Récupération des données SpO2</string>
    <string name="busy_task_fetch_sleep_respiratory_rate_data">Récupération des données du rythme respiratoire</string>
    <string name="devicetype_casiogwb5600">Casio GW-B5600</string>
    <string name="devicetype_casiogmwb5000">Casio GMW-B5000</string>
    <string name="activity_prefs_goals">Objectifs</string>
    <string name="error_no_bluetooth_scan">L\'accès au Bluetooth doit être autorisé et activé pour que le scan fonctionne correctement</string>
    <string name="error_no_bluetooth_connect">L\'accès au Bluetooth doit être autorisé et activé pour que le scan fonctionne correctement</string>
    <string name="permission_request">%1$s vous permet d\'envoyer des messages et d\'autres données depuis Android vers votre appareil. Pour cela il a besoin de permission pour accéder à ces données, sans quoi cela risque de ne pas fonctionner correctement.
\n
\nVous allez maintenant pouvoir configurer ces autorisations.
\n
\nMerci d\'appuyer sur \'%2$s\' pour continuer.</string>
    <string name="activity_type_handball">Handball</string>
    <string name="activity_type_windsurfing">Surf à voile</string>
    <string name="activity_type_kitesurfing">Kitesurfing</string>
    <string name="activity_type_rugby">Rugby</string>
    <string name="activity_type_baseball">Baseball</string>
    <string name="activity_type_squash">Squash</string>
    <string name="activity_type_skiing">Ski</string>
    <string name="activity_type_snowboarding">Snowboard</string>
    <string name="activity_type_riding">Course à cheval</string>
    <string name="activity_type_hockey">Hockey</string>
    <string name="withings_calibration_text_hours">Merci d\'utiliser la molette ci-dessous pour aligner la main sur le 12.</string>
    <string name="withings_calibration_text_minutes">Maintenant utiliser la molette pour aligner la main des minutes sur le 12.</string>
    <string name="withings_calibration_text_activity_target">Pour finir aligner la main d\'activité sur 100%. Attention cette main ne bouge que dans le sens des aiguilles d\'une montre.</string>
    <string name="activity_type_weightlifting">Halthérophilie</string>
    <string name="activity_type_dancing">Danse</string>
    <string name="activity_type_icehockey">Hockey sur glace</string>
    <string name="activity_type_iceskating">Patinage sur glace</string>
    <string name="activity_type_golf">Golf</string>
    <string name="activity_type_other">Autre</string>
    <string name="withings_steel_hr">Withings Steel HR</string>
    <string name="withings_bt_calibration_previous">Précédent</string>
    <string name="withings_bt_calibration_next">Suivant</string>
    <string name="activity_type_tennis">Tennis</string>
    <string name="activity_type_surfing">Surf</string>
    <string name="activity_type_football">Football</string>
    <string name="drag_handle">Poignets</string>
    <string name="pref_theme_dynamic">Couleurs dynamiques</string>
    <string name="pref_canned_message">Message</string>
    <string name="find_my_phone_found_it">TROUVÉ</string>
    <string name="preferences_miband_1_2_settings" tools:ignore="TypographyFractions">Réglages Mi Band 1/2</string>
    <string name="pref_activity_full_sync_trigger_warning">Cela va déclencher une synchronisation complète des données d\'activité de l\'appareil. Cela peut prendre quelques minutes.</string>
    <string name="pref_activity_full_sync_trigger_summary">Déclenche une sychronisation complète de tous les données d\'activité</string>
    <string name="pref_activity_full_sync_trigger_title">Synchronisation complète</string>
    <string name="preferences_miband_1_2_warning">Avertissement : Ces réglages s\'appliquent uniquement aux Mi Band 1 et 2.</string>
    <string name="pref_show_changelog">Afficher le journal des modifications au démarrage</string>
    <string name="pref_show_changelog_summary">Afficher le journal des modifications depuis la dernière version après la mise à jour de GadgetBridge</string>
    <string name="pref_theme_dynamic_colors_not_available_warning">Les coouleurs dynamiques ne sont pas disponibles sur votre appareil, seul Android 12 ou sup. le supporte. Gadgetbridge utilisera les couleurs par défaut Material 3.</string>
    <string name="pref_theme_dynamic_colors_explanation">Remarque : pour le thème avec des couleurs dynamiques, vous devez activer les couleurs de papier-peint ou la palette de couleurs dans les réglages d\'apparenci d\'Android 12 ou supérieur. Si vous ne le faites pas, Gadgetbridge utilisera les couleurs par défaut de Material 3.</string>
    <string name="menuitem_zepp_coach">Zepp Coach</string>
    <string name="devicetype_amazfit_bip3_pro">Amazfit Bip 3 Pro</string>
    <string name="fw_upgrade_notice_amazfitbip3pro">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit Bip 3 Pro.
\n
\nAssurez-vous d\'installer le fichier .fw, et ensuite le fichier .res. Votre montre redémarrera après l\'installation du fichier .fw.
\n
\nRemarque : Pas besoin d\'installer le fichier .res si c\'est exactement le même que le précédent installé.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="fw_upgrade_notice_amazfit_cheetah_pro">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre Amazfit Cheetah Pro.
\n
\nVotre bracelet va redémarrer après l\'installation du fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_cheetah_pro">Amazfit Cheetah Pro</string>
    <string name="devicetype_amazfit_cheetah_square">Amazfit Cheetah (Square)</string>
    <string name="devicetype_amazfit_falcon">Amazfit Falcon</string>
    <string name="devicetype_amazfit_cheetah_round">Amazfit Cheetah (Round)</string>
    <string name="devicetype_amazfit_bip5">Amazfit Bip 5</string>
    <string name="fw_upgrade_notice_zepp_os">Vous êtes sur le point d\'installer le micro-logiciel %s dans votre %s.
\n
\nVotre montre va redémarrer après l\'installation du fichier .zip.
\n
\nA VOS RISQUES ET PÉRILS !</string>
    <string name="devicetype_amazfit_trex_ultra">Amazfit T-Rex Ultra</string>
    <string name="devicetype_amazfit_gtr_mini">Amazfit GTR Mini</string>
    <string name="device_experimental">EXPÉRIMENTAL</string>
    <string name="info_menu_structure_removed">Structure de menu enlevé</string>
    <string name="error_menu_companion_not_installed">\'Compagnon HR\' probablement non installé</string>
    <string name="info_fossil_rebuild_watchface_custom_menu">Merci de reconstruire l\'écran de la montre pour un menu personnalisé</string>
    <string name="info_menu_structure_set">Structure JSON définie dans GB</string>
    <string name="info_menu_structure_contents">Structure de menu : %s</string>
    <string name="error_invalid_menu_structure">Structure JSON invalide</string>
    <string name="button_open_menu_companion">Ouvrir le menu de l\'app compagnon</string>
    <string name="button_reset_menu_structure">Remettre à zéro la structure de menu</string>
    <string name="english_au">Anglais (Australien)</string>
    <string name="english_gb">Anglais (Royaume-Uni)</string>
    <string name="english_ca">Anglais (Canadien)</string>
    <string name="english_in">Anglais (Indien)</string>
    <string name="english_us">Anglais (Américain)</string>
    <string name="spanish_es">Espagnol (Espagne)</string>
    <string name="spanish_mx">Espagnol (Mexicain)</string>
    <string name="spanish_us">Espagnol (Américain)</string>
    <string name="french_ca">Français (Canadien)</string>
    <string name="french_fr">Français (France)</string>
    <string name="updatefirmwareoperation_updateproblem_free_space">Cet appareil n\'a pas assez d\'espace libre</string>
    <string name="text_receiver_activity_title">Envoyer un message texte à l\'appareil</string>
    <string name="updatefirmwareoperation_failed_low_mtu">Le MTU actuel pour %1$d est trop faible, merci de régler un MTU élevé dans les réglages de l\'appareil. et puis déconnecter/reconnecter l\'appareil.</string>
    <string name="devicetype_miband2_hrx">Mi Band HRX</string>
    <string name="new_discover_activity_title">Activer la découverte de nouvelles activités</string>
    <string name="prefs_wena3_receive_calls_title">Réglages pour les appels entrants</string>
    <string name="prefs_wena3_button_action_name_start_timer">Démarrer le chronomètre</string>
    <string name="prefs_wena3_menu_icon_hint">L\'icône des réglages est toujours affichée en dernière</string>
    <string name="prefs_wena3_notification_vibration_repetition_3">3 fois</string>
    <string name="prefs_wena3_button_action_name_qrio_lock">Verrouillage Qrio</string>
    <string name="prefs_wena3_auto_power_off_turn_off_time_item">Heure d\'extinction</string>
    <string name="prefs_wena3_vibration_short">Court</string>
    <string name="prefs_wena3_home_icon_name_calories">Calories</string>
    <string name="prefs_home_icon_left_item">Gauche</string>
    <string name="prefs_wena3_led_none">Aucune LED</string>
    <string name="prefs_wena3_vibration_step_down">Descente</string>
    <string name="prefs_wena3_vibration_smart_item">Vibration intelligente</string>
    <string name="prefs_wena3_home_icon_name_riiiver">Riiiver</string>
    <string name="pref_message_privacy_mode_bodyonly">Cacher uniquement le contenu</string>
    <string name="prefs_wena3_hint_background_sync">Permet à Wena de périodiquement demander à Gadgetbridge de récupérer les données depuis votre appareil</string>
    <string name="prefs_wena3_home_icon_name_suica">Balance Suica</string>
    <string name="prefs_wena3_vibration_strength_item_medium">Moyen</string>
    <string name="prefs_wena3_title_activity">Réglages d\'activité</string>
    <string name="prefs_wena3_vibration_continuous">Continu</string>
    <string name="prefs_wena3_home_icon_name_pedometer">Nombre de pas</string>
    <string name="prefs_wena3_home_icon_name_qrio">Qrio</string>
    <string name="new_discover_activity_description">Activer le nouveau service de découverte, ce qui devrait résoudre le problème de découverte. Désactiver cette option en cas de problèmes si vous avez des problèmes pour découvrir ou pairer votre appareil.</string>
    <string name="white">Blanc</string>
    <string name="prefs_wena3_home_icon_name_clock">Heure actuelle</string>
    <string name="prefs_wena3_item_background_sync">Activité de synchronisation en tache de fond</string>
    <string name="prefs_wena3_vibration_strength_item_weak">Faible</string>
    <string name="prefs_wena3_home_icon_title">Icônes de l\'écran d\'accueil</string>
    <string name="prefs_wena3_item_weather_statusbar">Métoé dans la barre d\'état</string>
    <string name="temperature_scale_celsius">Celsius</string>
    <string name="prefs_wena3_vibration_step_up">Montée</string>
    <string name="prefs_home_icon_right_item">Droite</string>
    <string name="prefs_wena3_vibration_basic">Basique</string>
    <string name="prefs_wena3_title_screen">Réglages d\'affichage</string>
    <string name="prefs_wena3_item_large_font">Taille de texte plus grande</string>
    <string name="prefs_wena3_home_icon_name_energy">Énergie corporelle</string>
    <string name="prefs_wena3_notification_vibration_repetition_2">Deux fois</string>
    <string name="prefs_wena3_auto_power_off_hint">L\'appareil s\'éteindra et s\'allumera automatiquement selon les intervalles configurés</string>
    <string name="prefs_wena3_hint_lift_wrist">Allumer l\'écran lorsque vous regardez votre poignée</string>
    <string name="prefs_wena3_hint_large_font">Augmenter la taille du texte dans le calendrier, les notifications, etc.</string>
    <string name="prefs_wena3_button_action_item_double">Double appui</string>
    <string name="prefs_wena3_vibration_rapid">Rapide</string>
    <string name="prefs_wena3_button_action_name_qrio_unlock">Déverrouillage Qrio</string>
    <string name="temperature_scale_cf">Échelle de température</string>
    <string name="prefs_wena3_notification_vibration_repetition_1">Une fois</string>
    <string name="prefs_wena3_receive_calls_item">Notifications pour les appels entrants</string>
    <string name="prefs_wena3_hint_weather_statusbar">Afficher l\'icône des conditions en cours dans le coin supérieur gauche de l\'écran d\'accueil</string>
    <string name="prefs_wena3_home_icon_name_wena_pay">Wena Pay</string>
    <string name="prefs_wena3_button_action_item">Bouton Action</string>
    <string name="prefs_wena3_auto_power_off_turn_on_time_item">Heure d\'allumage</string>
    <string name="prefs_wena3_notification_default_call_vibration">Vibration pour les appels entrants</string>
    <string name="green">Vert</string>
    <string name="yellow">Jaune</string>
    <string name="devicetype_sony_wena3">Sony Wena 3</string>
    <string name="prefs_wena3_notification_default_call_led">Couleur de la LED pour les appels entrants</string>
    <string name="red">Rouge</string>
    <string name="cyan">Cyan</string>
    <string name="prefs_wena3_vibration_siren">Sirène</string>
    <string name="temperature_scale_cf_summary">Choisir si l\'appareil utilise Celsius ou Farenheit.</string>
    <string name="prefs_wena3_menu_icon_title">Icônes du Menu</string>
    <string name="prefs_wena3_notification_default_call_vibration_repetition">Répéter les vibrations pour les appels entrants</string>
    <string name="prefs_wena3_notification_default_vibration">Vibration de notification</string>
    <string name="prefs_wena3_notification_vibration_repetition_0">Infiniment</string>
    <string name="prefs_wena3_notification_vibration_repetition_4">4 fois</string>
    <string name="temperature_scale_fahrenheit">Fahrenheit</string>
    <string name="prefs_wena3_vibration_strength_item">Force des vibrations</string>
    <string name="prefs_wena3_receive_calls_hint">Si éteint, vous ne serez pas notifié des appels entrants sur le Wena</string>
    <string name="prefs_wena3_button_action_item_long">Appui long</string>
    <string name="prefs_wena3_menu_icon_name_payment">Payement</string>
    <string name="latvian">Letton</string>
    <string name="prefs_wena3_status_page_title">Organisation de la page d\'état</string>
    <string name="prefs_wena3_title_alarm">Réglages de l\'alarme</string>
    <string name="prefs_wena3_notification_default_vibration_repetition">Répéter les vibrations de notification</string>
    <string name="prefs_home_icon_center_item">Centre</string>
    <string name="prefs_wena3_hint_rich_design">Ajoute des rectangles ronds autour des icônes de l\'écran d\'accueil</string>
    <string name="prefs_wena3_notification_default_led">Couleur de la LED de notification</string>
    <string name="prefs_wena3_auto_power_off_item">Extinction automatique</string>
    <string name="prefs_wena3_home_icon_name_edy">Balance Edy</string>
    <string name="prefs_wena3_vibration_warning">Avertissement</string>
    <string name="prefs_wena3_smart_alarm_margin_item">Marge de l\'alarme intelligente</string>
    <string name="prefs_wena3_item_rich_design">Utiliser Rich Design</string>
    <string name="prefs_wena3_day_start_hour_item">Le jour commence à</string>
    <string name="prefs_wena3_notification_per_app_settings_title">Réglages de notification par app</string>
    <string name="prefs_wena3_vibration_none">Aucune vibration</string>
    <string name="purple">Pourpre</string>
    <string name="prefs_wena3_vibration_strength_item_strong">Fort</string>
    <string name="prefs_wena3_vibration_triple">Triple</string>
    <string name="blue">Bleu</string>
    <string name="prefs_wena3_button_action_name_activity_screen">Écran d\'activité</string>
    <string name="prefs_wena3_notification_settings_title">Réglages de notification</string>
    <string name="devicetype_sony_wf_1000xm5">Sony WF-1000XM5</string>
    <string name="common_symbols">Symboles communs</string>
    <string name="pref_title_notifications_ignore_work_profile">Ignorer les notifications en profil travail</string>
    <string name="pref_summary_notifications_ignore_work_profile">Ne pas envoyer les notifications des apps dans le profil travail à la montre</string>
    <string name="zepp_os_watchface_pure_white">Blanc pur</string>
    <string name="call_rejection_method_ignore">Ignorer (silence)</string>
    <string name="avgStrokeRate">Rythme moyen de course</string>
    <string name="zepp_os_watchface_the_ultima">L\'ultima</string>
    <string name="zepp_os_watchface_city_of_speed">Vitesse urbaine</string>
    <string name="menuitem_headphone">Écouteur</string>
    <string name="femometer_measurement_mode_normal">Mode normal (60s - 90s)</string>
    <string name="call_rejection_method_reject">Rejet</string>
    <string name="zepp_os_watchface_free_combination">Combinaison libre</string>
    <string name="menuitem_body_composition">Composition corporelle</string>
    <string name="menuitem_zepp_pay">Zepp Pay</string>
    <string name="pref_call_rejection_method_title">Méthode de rejet d\'appel</string>
    <string name="busy_task_fetch_statistics">Récupération des statistiques</string>
    <string name="femometer_measurement_mode_quick">Mode Rapide (30s)</string>
    <string name="zepp_os_watchface_starry_sky">Ciel étoilé</string>
    <string name="devicetype_amazfit_balance">Balance Amazfit</string>
    <string name="fossil_hr_nav_app_not_installed_notify_text">La navigation a démarrée mais pas d\'app de navigation installée dans la montre. Merci d\'en installer une depuis le Gestionnaire d\'App.</string>
    <string name="yard">yard</string>
    <string name="strokes_minute">str/min</string>
    <string name="femometer_measurement_mode_title">Méthode de mesure</string>
    <string name="pref_call_rejection_method_summary">Quelle action à faire quand un appel entrant est rejeté depuis la montre</string>
    <string name="devicetype_amazfit_active_edge">Amazfit Active Edge</string>
    <string name="busy_task_fetch_temperature">Récupération des données de température</string>
    <string name="femometer_measurement_mode_precise">Mode Précis (3 min)</string>
    <string name="zepp_os_watchface_vast_sky">Ciel clair</string>
    <string name="menuitem_workout_shortcuts">Raccourcis Exercice</string>
    <string name="maxStrokeRate">Vitesse maximale de course</string>
    <string name="zepp_os_watchface_lightning_flash">Flash lumineux</string>
    <string name="laneLength">Longueur de ligne</string>
    <string name="charts_legend_spo2_average">Moyenne de l\'oxygène dans le sang</string>
    <string name="strokes">Vitesse totale</string>
    <string name="menuitem_apps_shortcuts">Raccourcis Apps</string>
    <string name="zepp_os_watchface_guider">Guide</string>
    <string name="menuitem_readiness">Préparation</string>
    <string name="devicetype_amazfit_active">Amazfit Active</string>
    <string name="menuitem_thermometer">Thermomètre</string>
    <string name="devicetype_femometer_vinca2">Femometer Vinca II</string>
    <string name="fossil_hr_nav_app_not_installed_notify_title">App de navigation non installée sur le téléphone</string>
    <string name="pref_title_casio_alert_other">Alerte pour les autres notifications</string>
    <string name="pref_title_casio_alert_calendar">Alerte pour les notifications du calendrier</string>
    <string name="pref_summary_casio_alert_call">Alerte (vibre/bipe) pour les appels entrants</string>
    <string name="pref_title_casio_alert_call">Alerte pour les appels entrants</string>
    <string name="pref_title_casio_alert_email">Alerte pour les notifications d\'email</string>
    <string name="pref_summary_casio_alert_email">Alerte (vibre/bipe) pour les notifications d\'email</string>
    <string name="pref_summary_casio_alert_sms">Alerte (vibre/bipe) pour les notifications SMS (message texte)</string>
    <string name="pref_title_preview_message_in_title">Montrer un aperçu du message dans le titre</string>
    <string name="pref_summary_casio_alert_calendar">Alerte (vibre/bipe) pour les notifications du calendrier</string>
    <string name="pref_summary_casio_alert_other">Alerte (vibre/bipe) pour les notifications de la catégorie autre</string>
    <string name="pref_title_prefix_notification_with_app">Nom de l\'app dans la notification</string>
    <string name="pref_title_casio_alert_sms">Alerte pour les notifications SMS</string>
    <string name="devicetype_mi_watch_color_sport">Mi Watch Color Sport</string>
    <string name="pref_title_navigation_apps">Applications de navigation</string>
    <string name="devicetype_miband8">Xiaomi Smart Band 8</string>
    <string name="menuitem_running">Course à pieds</string>
    <string name="pref_sleep_mode_schedule_title">Planification de l\'heure de coucher</string>
    <string name="bedtime">Heure du coucher</string>
    <string name="devicetype_pixoo">Pixoo</string>
    <string name="pref_title_navigation_prefs">Préférences de navigation</string>
    <string name="menuitem_focus">Focus</string>
    <string name="pref_navigation_app_gmaps">Google Maps</string>
    <string name="pref_summary_prefix_notification_with_app">Ajouter un préfixe au titre de la notification avec le nom de l\'application source</string>
    <string name="devicetype_redmiwatch3active">Redmi Watch 3 Active</string>
    <string name="serial_number">Numéro de série</string>
    <string name="danish">Danois</string>
    <string name="pref_summary_osmand_packagename">Utilisé pour sélectionner la version d\'OsmAnd à laquelle se connecter</string>
    <string name="wake_up_time">Réveil</string>
    <string name="devicetype_miband7pro">Xiaomi Smart Band 7 Pro</string>
    <string name="menuitem_stats">Stats</string>
    <string name="devicetype_xiaomi_watch_lite">Xiaomi Watch Lite</string>
    <string name="pref_summary_preview_message_in_title">Afficher un aperçu du message dans le titre de la notification comme permis par l\'appareil</string>
    <string name="pref_title_osmand_packagename">nom du paquet OsmAnd</string>
    <string name="pref_navigation_app_osmand">OsmAnd(+)</string>
    <string name="pref_sleep_mode_schedule_summary">Envoyer un rappel et se mettre en veille à l\'heure du coucher. A l\'heure prévue de réveil, l\'alarme de réveil sonnera.</string>
    <string name="menuitem_alerts">Alertes</string>
    <string name="devicetype_xiaomi_watch_s1_active">Xiaomi Watch S1 Active</string>
    <string name="pref_device_action_dnd_on">Ne pas déranger - Actif</string>
    <string name="pref_title_goal_secondary">Objectif secondaire</string>
    <string name="pref_vitality_score_7_day_summary">Envoyer une notification quand votre score de vitalité atteint 30, 60 ou 100 sur les 7 derniers jours</string>
    <string name="pref_vitality_score_title">Score Vitalité</string>
    <string name="pref_device_action_dnd_alarms">Ne pas déranger - Alarmes uniquement</string>
    <string name="pref_vitality_score_daily_summary">Envoyer une notification lorsque vous atteignez le maximum de points quotidiens de vitalité</string>
    <string name="pref_summary_send_app_notifications">Envoyer les notifications de l\'application à l\'appareil</string>
    <string name="pref_device_action_dnd_priority">Ne pas déranger - Prioritaire uniquement</string>
    <string name="not_set">Non configuré</string>
    <string name="standing_time">Temps de veille</string>
    <string name="active_time">Temps actif</string>
    <string name="pref_title_send_app_notifications">Envoyer des notifications</string>
    <string name="pref_vitality_score_daily_title">Progrès quotidien</string>
    <string name="pref_vitality_score_7_day_title">Progrès sur 7 jours</string>
    <string name="pref_device_action_dnd_off">Ne pas déranger - Off</string>
    <string name="wearmode_necklace">Collier (tour de cou)</string>
    <string name="prefs_wearmode">Mode de port</string>
    <string name="alarm_smart_wakeup_interval">Intervalle de réveil intelligent :</string>
    <string name="prefs_disconnect_notification_summary">Notification sur l\'appareil quand il est déconnecté du BT.</string>
    <string name="prefs_phone_silent_mode">Mode silencieux sur le téléphone</string>
    <string name="silent_mode_normal_vibrate">Normal/Vibreur</string>
    <string name="silent_mode_normal_silent">Normal / Silencieux</string>
    <string name="prefs_device_name">Nom de l\'appareil</string>
    <string name="pref_summary_debug">Envoyer une demande de diagnostic à l\'appareil Huawei</string>
    <string name="devicetype_mijia_lywsd03">Mijia Temperature and Humidity Sensor 2</string>
    <string name="devicetype_honor_band7">Honor Band 7</string>
    <string name="devicetype_redmi_smart_band_pro">Redmi Smart Band Pro</string>
    <string name="devicetype_nothingearstick">Nothing Ear (Stick)</string>
    <string name="devicetype_nothing_cmf_watch_pro">CMF Watch Pro</string>
    <string name="huawei_trusleep_summary_light">Surveillance du sommeil amélioré</string>
    <string name="devicetype_xiaomi_watch_s1">Xiaomi Watch S1</string>
    <string name="activity_type_trekking">Randonnée</string>
    <string name="activity_type_trail_run">Trail</string>
    <string name="activity_type_wrestling">Lutte</string>
    <string name="widget">Widget</string>
    <string name="widget_screen">Écran du widget</string>
    <string name="prefs_active_noise_cancelling_transparency">Transparence</string>
    <string name="sony_protocol_v3">Version 3</string>
    <string name="huawei_alarm_smart_description">Ne pas désactiver l\'option réveil intelligent.</string>
    <string name="huawei_trusleep_title">HUAWEI TruSleep ™</string>
    <string name="huawei_trusleep_summary">Surveiller la qualité de votre sommeil et de votre respiration en temps réel.
\nAnalyser votre mode de sommeil afin de diagnostiquer efficacement 6 types de problèmes de sommeil.</string>
    <string name="pref_enable_call_accept">Autoriser les appels</string>
    <string name="pref_enable_call_reject_summary">Permettre le rejet des appels depuis l\'appareil</string>
    <string name="pref_heartrate_automatic_enable">Permettre la mesure automatique du rythme cardiaque</string>
    <string name="pref_force_options">Forcer les options</string>
    <string name="pref_title_debug">Demande de dépannage</string>
    <string name="devicetype_xiaomi_watch_s3">Xiaomi Watch S3</string>
    <string name="pref_title_fossil_hr_nav_vibrate">Vibrer lors d\'une nouvelle instruction</string>
    <string name="pref_force_connection_type_title">Forcer le type de connexion</string>
    <string name="pref_force_connection_type_description">Vous pouvez essayer de forcer le type de connexion dans le cas où votre appareil ne répond pas à Gadgetbridge</string>
    <string name="pref_force_connection_type_ble">Bluetooth LE</string>
    <string name="pref_force_connection_type_bt_classic">Bluetooth Classic</string>
    <string name="activity_info">Info d\'activité</string>
    <string name="warning_missing_notification_permission">N\'a pas pu envoyer les notifications en cours en raison d\'autorisations manquantes</string>
    <string name="widget_layout_single">1 widget</string>
    <string name="pref_summary_fossil_hr_nav_vibrate">Si la montre doit vibrer à chaque nouvelle ou modifiée instruction de navigation (seulement quand l\'app est au premier plan)</string>
    <string name="widget_screen_delete_confirm_title">Supprimer un widget d\'écran</string>
    <string name="widget_layout">Disposition du widget</string>
    <string name="widget_subtype">Sous-type de widget</string>
    <string name="widget_screen_x">Écran %s</string>
    <string name="widget_move_down">Déplacer vers le bas</string>
    <string name="widget_missing_parts">Merci de sélectionner tous les widgets</string>
    <string name="widget_unknown_workout">Exercice inconnu - %s</string>
    <string name="pref_test_features_title">Fonctions</string>
    <string name="pref_test_features_summary">Activer des fonctions pour cet appareil de test</string>
    <string name="devicetype_nothingear2">Nothing Ear (2)</string>
    <string name="widget_screen_min_screens">Il doit y avoir un minimum de %1$s écrans</string>
    <string name="pref_title_general_reconnectonlytoconnected">Reconnexion uniquement aux appareils connectés</string>
    <string name="prefs_password_4_digits_0_to_9_summary">Le mot de passe doit comporter 4 chiffres, et uniquement des chiffres</string>
    <string name="devicetype_huawei_band_aw70">Huawei Band (AW70)</string>
    <string name="devicetype_huawei_watchgt2e">Huawei Watch GT 2e</string>
    <string name="prefs_workmode">Mode de fonctionnement</string>
    <string name="huawei_reparse_workout_data_description">Cela fera quelque chose uniquement après certaines mises à jour</string>
    <string name="widget_screen_delete_confirm_description">Êtes-vous sûr de vouloir effacer \'%1$s\'?</string>
    <string name="widget_screen_no_free_slots_description">Cet appareil n\'a plus d\'emplacement libre pour un widget d\'écran (nombre de widgets: %1$s)</string>
    <string name="devicetype_colacao23">ColaCao 2023</string>
    <string name="widget_layout_top_1_bot_2">1 haut, 2 bas</string>
    <string name="widget_layout_top_2_bot_1">2 hauts, 1 bas</string>
    <string name="widget_layout_top_2_bot_2">2 hauts, 2 bas</string>
    <string name="menuitem_buzzer_intensity">Intensité du buzzer</string>
    <string name="pref_spo_automatic_enable">Permettre la mesure automatique du SpO2</string>
    <string name="devicetype_huawei_watchgt3">Huawei Watch GT 3 (Pro)</string>
    <string name="devicetype_redmi_smart_band_2">Redmi Smart Band 2</string>
    <string name="flatDistance">Distance à plat</string>
    <string name="huawei_alarm_event_description">Ne pas vérifier l\'option réveil intelligent.</string>
    <string name="wearmode_pebble">Pebble (boucle de chaussure)</string>
    <string name="wearmode_band">Bracelet (poignet)</string>
    <string name="alarm_smart_wakeup_interval_default">5 minutes</string>
    <string name="prefs_heartrate_alert_active_high_threshold">Seuil d\'alerte pour fréquence cardiaque élevée</string>
    <string name="updatefirmwareoperation_updateproblem_low_battery">La batterie de l\'appareil est trop faible</string>
    <string name="hydration_dnd_summary">Désactiver les alertes d\'hydratation durant un moment</string>
    <string name="silent_mode_vibrate_silent">Vibreur / Silencieux</string>
    <string name="do_not_disturb_lift_wrist_summary">Uniquement si l\'activation de l\'écran sur mouvement est activé</string>
    <string name="pref_do_not_disturb_not_wear">Ne pas déranger si non porté</string>
    <string name="manual">Manuel</string>
    <string name="dnd_all_day">Toute la journée</string>
    <string name="activity_type_indoor_running">Course en intérieur</string>
    <string name="activity_type_mountain_hike">Randonnée en montagne</string>
    <string name="activity_type_cross_trainer">Vélo elliptique</string>
    <string name="activity_type_free_training">Entrainement libre</string>
    <string name="activity_type_rower">Rameur</string>
    <string name="activity_type_dynamic_cycle">Vélo dynamique</string>
    <string name="activity_type_stair_stepper">Escaliers (Stepper)</string>
    <string name="activity_type_fitness_exercises">Exercices de Fitness</string>
    <string name="activity_type_crossfit">Crossfit</string>
    <string name="activity_type_functional_training">Entrainement fonctionnel</string>
    <string name="activity_type_physical_training">Entrainement physique</string>
    <string name="activity_type_taekwondo">Taekwondo</string>
    <string name="activity_type_cross_country_running">Course de cross-country</string>
    <string name="activity_type_karate">Karaté</string>
    <string name="activity_type_fencing">Escrime</string>
    <string name="activity_type_kendo">Kendo</string>
    <string name="activity_type_horizontal_bar">Barres horizontales</string>
    <string name="activity_type_parallel_bar">Barres parallèles</string>
    <string name="activity_type_cooldown">Temps de récupération</string>
    <string name="activity_type_cross_training">Entrainement croisé</string>
    <string name="activity_type_sit_ups">Relevé de buste</string>
    <string name="activity_type_fitness_gaming">Jeux de fitness</string>
    <string name="activity_type_aerobic_exercise">Exercices d\'aérobic</string>
    <string name="activity_type_rolling">Rollers</string>
    <string name="activity_type_flexibility">Souplesse</string>
    <string name="activity_type_track_and_field">Athlétisme</string>
    <string name="activity_type_push_ups">Pompes</string>
    <string name="activity_type_battle_rope">Traction à la corde</string>
    <string name="activity_type_smith_machine">Smith machine</string>
    <string name="activity_type_pull_ups">Tractions</string>
    <string name="activity_type_plank">Planche</string>
    <string name="activity_type_javelin">Javelot</string>
    <string name="activity_type_long_jump">Saut en longueur</string>
    <string name="activity_type_high_jump">Saut en hauteur</string>
    <string name="activity_type_trampoline">Trampoline</string>
    <string name="activity_type_dumbbell">Haltères</string>
    <string name="activity_type_belly_dance">Danse du ventre</string>
    <string name="activity_type_jazz_dance">Danse Jazz</string>
    <string name="activity_type_latin_dance">Dance latine</string>
    <string name="activity_type_ballet">Ballet</string>
    <string name="activity_type_other_dance">Autres danses</string>
    <string name="activity_type_roller_skating">Patins à roulettes</string>
    <string name="activity_type_martial_arts">Arts martiaux</string>
    <string name="activity_type_tai_chi">Tai chi</string>
    <string name="activity_type_hula_hooping">Cerceaux</string>
    <string name="activity_type_disc_sports">Lancer de disque</string>
    <string name="activity_type_darts">Fléchettes</string>
    <string name="activity_type_archery">Tir à l\'arc</string>
    <string name="activity_type_horse_riding">Course de cheval</string>
    <string name="activity_type_kite_flying">Kite surf</string>
    <string name="activity_type_swing">Balançoire</string>
    <string name="activity_type_stairs">Escaliers</string>
    <string name="activity_type_fishing">Pêche</string>
    <string name="activity_type_hand_cycling">Vélo classique</string>
    <string name="activity_type_mind_and_body">Esprit et corps</string>
    <string name="activity_type_kabaddi">Kabaddi</string>
    <string name="activity_type_karting">Course de mini-voitures</string>
    <string name="activity_type_billiards">Billard</string>
    <string name="activity_type_shuttlecock">Badminton</string>
    <string name="activity_type_softball">Softball</string>
    <string name="activity_type_dodgeball">Dodgeball</string>
    <string name="activity_type_australian_football">Football australien</string>
    <string name="activity_type_pickleball">Pickleball</string>
    <string name="activity_type_lacross">Lacrosse</string>
    <string name="activity_type_shot">Tir</string>
    <string name="activity_type_sailing">Voile</string>
    <string name="activity_type_jet_skiing">Jet Ski</string>
    <string name="activity_type_skating">Patinage</string>
    <string name="activity_type_ice_hockey">Hockey sur glace</string>
    <string name="activity_type_curling">Curling</string>
    <string name="activity_type_cross_country_skiing">Ski de randonnée</string>
    <string name="activity_type_snow_sports">Sports d\'hiver</string>
    <string name="activity_type_skateboarding">Planche à roulettes</string>
    <string name="activity_type_rock_climbing">Escalade</string>
    <string name="activity_type_hunting">Chasse</string>
    <string name="activity_type_outdoor_walking">Marche en extérieur</string>
    <string name="devicetype_sony_wi_sp600n">Sony WI-SP600N</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_huawei_band6">Huawei Band 6</string>
    <string name="devicetype_redmiwatch3">Redmi Watch 3</string>
    <string name="devicetype_redmi_watch_2">Redmi Watch 2</string>
    <string name="prefs_active_noise_cancelling_light">Témoin lumineux de suppression du bruit</string>
    <string name="sony_protocol_v1">Version 1</string>
    <string name="sony_protocol_v2">Version 2</string>
    <string name="protocol_version">Version de protocole</string>
    <string name="pref_enable_call_reject">Permettre le rejet des appels</string>
    <string name="pref_disable_find_phone_with_dnd">Désactiver la localisation du téléphone lorsque le mode Ne pas déranger est actif</string>
    <string name="notification_channel_connection_status_name">État de la connexion</string>
    <string name="uploading_watchface">Envoi d\'un thème…</string>
    <string name="uploadwatchfaceoperation_in_progress">Envoi d\'un thème</string>
    <string name="uploadwatchfaceoperation_complete">Installation du thème terminé</string>
    <string name="uploadwatchfaceoperation_failed">Installation du thème échouée</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="devicetype_honor_magicwatch2">Honor MagicWatch 2</string>
    <string name="devicetype_huawei_band7">Huawei Band 7</string>
    <string name="devicetype_huawei_band8">Huawei Band 8</string>
    <string name="devicetype_huawei_watch_gt">Huawei Watch GT</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_talk_band_b6">Huawei Talk Band B6</string>
    <string name="pref_enable_call_accept_summary">Autoriser les appels depuis l\'appareil</string>
    <string name="devicetype_miband8pro">Xiaomi Smart Band 8 Pro</string>
    <string name="devicetype_mijia_mho_c303">Mijia MHO-C303</string>
    <string name="devicetype_colacao21">ColaCao 2021</string>
    <string name="widget_move_up">Déplacer vers le haut</string>
    <string name="pref_force_connection_type_auto">Automatique</string>
    <string name="devicetype_redmi_watch_2_lite">Redmi Watch 2 Lite</string>
    <string name="devicetype_huawei_watchfit">Huawei Watch Fit</string>
    <string name="pref_force_options_summary">Certains appareils prétendent à tort ne pas prendre en charge certaines options. Ces réglages peuvent être utilisés pour les activer malgré tout.
\nÀ UTILISER À VOS RISQUES ET PÉRILS
\nLire le wiki</string>
    <string name="pref_force_smart_alarm">Forcer l\'alarme intelligente</string>
    <string name="pref_force_smart_alarm_summary">Forcer la gestion des alarmes intelligentes
\nUTILISER À VOS RISQUES ET PÉRILS</string>
    <string name="pref_force_wear_location">Forcer la localisation</string>
    <string name="huawei_ignore_wakeup_status_end_description">Peut aider pour une bonne détection du sommeil. Visible immédiatement dans la vue des activités quotidiennes.</string>
    <string name="pref_force_wear_location_summary">Forcer la gestion de l\'emplacement
\nUTILISER À VOS RISQUES ET PÉRILS</string>
    <string name="pref_force_dnd_support">Forcer la gestion du mode Ne pas déranger</string>
    <string name="pref_force_dnd_support_summary">Forcer la gestion du mode Ne pas déranger
\nUTILISER À VOS RISQUES ET PÉRILS</string>
    <string name="huawei_ignore_wakeup_status_start">Ignorer le statut à l\'allumage</string>
    <string name="huawei_ignore_wakeup_status_start_description">Peut aider pour une détection correcte du sommeil. Visible immédiatement dans la vue des activités quotidiennes.</string>
    <string name="huawei_ignore_wakeup_status_end">Ignorer l\'état de réveil</string>
    <string name="huawei_reparse_workout_data">Retraiter les données d\'exercice</string>
    <string name="devicetype_xiaomi_watch_s1_pro">Xiaomi Watch S1 Pro</string>
    <string name="widget_layout_two">2 widgets</string>
    <string name="pref_title_fossil_hr_navigation_instructions">Instructions de navigation</string>
    <string name="pref_summary_fossil_hr_navigation_instructions">Configurer sur la montre le comportement de la navigation</string>
    <string name="pref_title_fossil_hr_nav_foreground">Venir au premier plan</string>
    <string name="pref_summary_fossil_hr_nav_foreground">Si l\'application de navigation doit automatiquement passer au premier plan quand elle reçoit une instruction de navigation</string>
    <string name="pref_summary_general_reconnectonlytoconnected">Reconnecte uniquement aux appareils connectés, au lieu de reconnecter à tous les appareils</string>
    <string name="clap_hands_to_wakeup_device">Frapper des mains pour allumer l\'écran</string>
    <string name="clap_hands_to_wakeup_device_summary">Frapper des mains à nouveau éteindra l\'écran</string>
    <string name="pixoo_power_saving_summary">L\'écran s\'éteindra lorsque le microphone aura détecté un long silence</string>
    <string name="weekstepschart_steps_a_week_or_month">Pas par semaine/mois</string>
    <string name="weeksleepchart_sleep_a_week_or_month">Sommeil par semaine/mois</string>
    <string name="busy_task_fetch_sports_details_interrupted">La récupération des détails sportifs a été interrompue</string>
    <string name="pref_header_audio">Audio</string>
    <string name="pref_header_generic">Générique</string>
    <string name="devicetype_miband8active">Xiaomi Smart Band 8 Active</string>
    <string name="pref_title_notification_wake_on_open">Réveil et déverrouillage automatiques</string>
    <string name="pref_summary_notification_wake_on_open">Réveille et déverrouille l\'appareil Android lorsque le gadget renvoie une réponse OPEN. Doit être dans un état de confiance.</string>
    <string name="fw_upgrade_notice_amazfitbip3">Vous êtes sur le point d\'installer le micrologiciel %s sur votre Amazfit Bip 3.
\n
\nAssurez-vous d\'installer le fichier .fw, puis le fichier .res. Votre montre redémarrera après avoir installé le fichier .fw.
\n
\nRemarque : vous n\'êtes pas obligé d\'installer .res s\'il est exactement le même que celui précédemment installé.
\n
\nPROCÉDEZ À VOS PROPRES RISQUES !</string>
    <string name="serbian">Serbe</string>
    <string name="armenian">Arménien</string>
    <string name="pref_touch_tone_summary">Émet une tonalité lorsque l\'écouteur est touché</string>
    <string name="pref_wearing_tone_summary">Émet une tonalité lorsque l\'écouteur est inséré</string>
    <string name="pref_touch_tone">Tonalité tactile</string>
    <string name="pref_wearing_tone">Tonalité lors du port</string>
    <string name="devicetype_soundcore_liberty3_pro">Soundcore Liberty 3 Pro</string>
    <string name="devicetype_huawei_watchfit2">Huawei Watch Fit 2</string>
    <string name="scan_scanning_multiple_devices">Scan de %d appareils</string>
    <string name="prompt_restart_gadgetbridge">Merci de redémarrer GB pour que cela soit effectif.</string>
    <string name="notification_channel_scan_service_name">Service de scan</string>
    <string name="fmtPaceTypeAverage">Type de moyenne %d de rythme</string>
    <string name="unknownDataEncountered">Données inconnues reçues</string>
    <string name="cyclingPowerAverage">Puissance moyenne de pédalage</string>
    <string name="cyclingPowerMin">Puissance minimum de pédalage</string>
    <string name="cyclingPowerMax">Puissance maximale de pédalage</string>
    <string name="milliseconds">millisecondes</string>
    <string name="widget_name_untitled">Widget sans titre (%1$s)</string>
    <string name="auto_reconnect_ble_scan_title">Reconnexion par un scan BLE</string>
    <string name="auto_reconnect_ble_scan_summary">Attendre le scan d\'appareil au lieu d\'essayer de reconnecter à l\'aveugle</string>
    <string name="unbind_before_pair_title">Déjà lié</string>
    <string name="unbind_before_pair_message">Cet appareil est déjà lié dans les réglages Android, ce qui peut rendre le pairage impossible pour certains appareils.
\n
\nSi l\'ajout de l\'appareil échoue, merci de le supprimer des réglages Android et essayer de nouveau.</string>
    <string name="devicetype_scannable">Appareil scannable</string>
    <string name="pref_header_sony_sound_control">Contrôle audio</string>
    <string name="companion_pairing_request_title">Appareil compagnon</string>
    <string name="pref_force_enable_heartrate_support_summary">Forcer la prise en charge du rythme cardiaque
\nUTILISER À VOS RISQUES ET PÉRILS</string>
    <string name="pref_force_enable_spo2_support">Forcer la prise en charge du SpO2</string>
    <string name="device_state_waiting_scan">En attente du scan des appareils</string>
    <string name="devicetype_amazfit_bip3">Amazfit Bip 3</string>
    <string name="devicetype_huawei_watchultimate">Huawei Watch Ultimate</string>
    <string name="waiting_for_bluetooth">En attente du Bluetooth…</string>
    <string name="error_scan_failed">Scan échoué : %d</string>
    <string name="scan_not_scanning">Scan non actif</string>
    <string name="scan_scanning_all_devices">Scan de tous les appareils</string>
    <string name="devicetype_sony_linkbuds">Sony LinkBuds</string>
    <string name="pref_adaptive_volume_control_title">Contrôle du volume adaptatif</string>
    <string name="devicetype_huawei_band9">Huawei Band 9</string>
    <string name="devicetype_huawei_watchgt4">Huawei Watch GT 4</string>
    <string name="devicetype_huawei_watchfit3">Huawei Watch Fit 3</string>
    <string name="devicetype_huawei_watch4pro">Huawei Watch 4 (Pro)</string>
    <string name="devicetype_redmi_watch_4">Redmi Watch 4</string>
    <string name="preferences_qhybrid_settings_summary">Anciens réglages pour les montres Q Hybrid</string>
    <string name="Pace">Rythme</string>
    <string name="RunningForm">Départ depuis</string>
    <string name="pref_wide_area_tap_summary">Distinguer entre les taps sur les joues et sur les oreilles</string>
    <string name="pref_wide_area_tap_title">Zone de tape large</string>
    <string name="pref_adaptive_volume_control_summary">Augmenter le volume automatiquement quand le bruit ambiant est important</string>
    <string name="pref_adaptive_noise_cancelling_title">ANC adaptatif</string>
    <string name="pref_adaptive_noise_cancelling_summary">Régler la forte de l\'ANC automatiquement selon le niveau de bruit ambiant</string>
    <string name="huawei_trusleep_warning">Avertissement : activer cette option fera apparaitre tous les sommeils comme sommeil léger dans GadgetBridge ! Cliquer ici pour plus de détails.</string>
    <string name="pref_force_enable_heartrate_support">Forcer la prise en charge du rythme cardiaque</string>
    <string name="pref_force_enable_spo2_support_summary">Forcer la prise en charge du SpO2
\nUTILISER À VOS RISQUES ET PÉRILS</string>
    <string name="widget_name_colored_tile">%1$s (tuile colorée)</string>
    <string name="scan_scanning_single_device">Scan d\'un appareil</string>
    <string name="companion_pairing_request_description">Pairer cet appareil comme compagnon ?
\n
\nCela est conseillé pour certaines fonctions comme retrouver son appareil, et apporte une meilleure connexion.</string>
    <string name="state_scanned">Scanné</string>
    <string name="swolfAvg">Swolf moyen</string>
    <string name="swolfMax">Swolf maximum</string>
    <string name="swolfMin">Swolf minimum</string>
    <string name="degrees">degrés</string>
    <string name="pref_sleepasandroid_feat_spo2">SPO2</string>
    <string name="bottom_nav_devices">Appareils</string>
    <string name="pref_dashboard_widget_settings">Réglages des widgets</string>
    <string name="pref_dashboard_widget_show_legend_title">Afficher la légende</string>
    <string name="pref_dashboard_all_devices_summary">Combiner l\'activité de tous les appareils ajoutées pour les totaux du tableau de bord</string>
    <string name="pref_dashboard_select_devices_summary">Combines les données d\'activité des appareils choisis pour les totaux sur le tableau de bord</string>
    <string name="pref_dashboard_widget_show_legend_summary">Afficher la légende sous le widget expliquant les couleurs</string>
    <string name="error_showing_changelog">Erreur lors de l\'affichage du Changelog</string>
    <string name="dashboard_settings">Réglages du Tableau de bord</string>
    <string name="activity_type_worn">Porté</string>
    <string name="pref_dashboard_widget_today_hr_interval_title">intervalle de rythme cardiaque</string>
    <string name="pref_sleepasandroid_features_title">Fonctionnalités</string>
    <string name="bottom_nav_dashboard">Tableau de bord</string>
    <string name="pref_dashboard_widget_double_size_title">Taille double</string>
    <string name="pref_auto_reply_calls_summary">Le téléphone décrochera automatiquement les appels entrants</string>
    <string name="pref_sleepasandroid_feat_heartrate">Rythme cardiaque</string>
    <string name="pref_sleepasandroid_feat_oximetry">Oximétrie</string>
    <string name="widget_layout_top_wide_bot_large">Large au dessus, grand en dessous</string>
    <string name="pref_dashboard_cards_title">Afficher les widgets sur les cartes</string>
    <string name="pref_dashboard_widget_today_title">Tableau d\'activité</string>
    <string name="pref_dashboard_widget_today_24h_title">mode 24h</string>
    <string name="pref_dashboard_widget_goals_chart_title">Tableau des objectifs</string>
    <string name="pref_dashboard_widgets_order_summary">Choisir quels widgets sont activés et l\'ordre dans lequel ils sont affichés sur le tableau de bord</string>
    <string name="sleepasandroid_settings">Sleep as Android</string>
    <string name="pref_dashboard_widget_double_size_summary">Autoriser le widget à occuper jusqu\'à 2 colonnes sur le tableau de bord</string>
    <string name="pref_sleepasandroid_feat_alarms">Alarmes</string>
    <string name="pref_sleepasandroid_slot_summary">Quel emplacement d\'alarme utiliser lors de la configuration des alarmes</string>
    <string name="pref_sleepasandroid_feat_notifications">Notifications</string>
    <string name="pref_sleepasandroid_feat_movement">Accéléromètre</string>
    <string name="watchface_resolution_doesnt_match">La résolution du thème d\'écran ne correspond pas à la résolution de l\'appareil. Le thème d\'écran est %1$s l\'écran de l\'appareil est %2$s</string>
    <string name="device_name_cycling_sensor">Capteur cyclisme</string>
    <string name="devicetype_cycling_sensor">Capteur de vitesse pour vélo</string>
    <string name="pref_summary_wheel_diameter">Diamètre de la roue en pouces. Habituellement 29, 27,5 or 26.</string>
    <string name="open_camera">Open Camera</string>
    <string name="toast_camera_photo_taken">La photo a été prise et sauvegardée dans %s</string>
    <string name="pref_auto_reply_calls_title">Répond automatiquement aux appels téléphoniques</string>
    <string name="pref_dashboard_widget_today_hr_interval_summary">Le temps en minutes pendant lequel le graphique affiche \"porté\" après chaque mesure du rythme cardiaque</string>
    <string name="devicesetting_scannable_rssi">Seuil RSSI minimum</string>
    <string name="devicesetting_scannable_minimum_unseen_summary">Une fois scanné, l\'appareil sera invisible pour cette durée avant de pouvoir être enregistré de nouveau</string>
    <string name="devicesetting_scannable_rssi_summary">Seuil minimum de RSSI pour la détection</string>
    <string name="pref_speak_notifications_aloud_title">Annoncer les notifications</string>
    <string name="pref_auto_reply_calls_delay_title">Délai de réponse automatique</string>
    <string name="pref_header_calls_and_notifications">Appels et notifications</string>
    <string name="pref_speak_notifications_focus_exclusive_title">Mettre en pause l\'audio des autres applications</string>
    <string name="pref_speak_notifications_focus_exclusive_summary_on">La lecture des autres applications sera suspendue le temps que la notification soit jouée</string>
    <string name="pref_summary_bottom_navigation_bar_on">Basculer entre les écrans principaux en utilisant la barre de navigation ou un balayage horizontal</string>
    <string name="pref_speak_notifications_focus_exclusive_summary_off">Le volume de lecture des autres applications sera réduit pendant la lecture de la notification</string>
    <string name="pref_summary_bottom_navigation_bar_off">Basculer entre les écrans principaux en utilisant uniquement le balayage horizontal</string>
    <string name="chart_cycling_point_label_speed">%.1f km/h</string>
    <string name="pref_summary_cycling_persistence_interval">Intervalle en seconde pour l\'écriture des données de pédalage dans la base de données</string>
    <string name="pref_title_cycling_persistence_interval">Intervalle persistant</string>
    <string name="pref_title_bottom_navigation_bar">Barre de navigation en bas</string>
    <string name="pref_dashboard_widget_today_upside_down_title">Minuit en bas</string>
    <string name="pref_sleepasandroid_device_title">Fournisseur de l\'appareil</string>
    <string name="pref_sleepasandroid_device_summary">Choisir l\'appareil fournisseur de données Sleep as Android</string>
    <string name="pref_dashboard_widget_today_upside_down_summary">Dans le mode 24h, minuit est en bas de l\'écran et la mi-journée au sommet du graphique</string>
    <string name="pref_sleepasandroid_enable_summary">Permettre l\'intégration Sleep as Android</string>
    <string name="pref_sleepasandroid_features_summary">Le support varie selon les appareils</string>
    <string name="pref_title_huawei_account">Compte Huawei</string>
    <string name="pref_summary_huawei_account">Compte Huawei utilisé pour le processus de pairage. Le configurer permet un pairage sans réinitialisation.</string>
    <string name="device_name_bicycle_sensor">Capteur vélo</string>
    <string name="title_cycling">Cyclisme</string>
    <string name="pref_title_wheel_diameter">Diamètre de la roue</string>
    <string name="chart_cycling_point_label_distance">Aujourd\'hui : %.1f km
\nTotal : %.1f km</string>
    <string name="toast_setting_requires_reconnect">Ce réglage prendra effet à la prochaine reconnexion</string>
    <string name="toast_camera_permission_required">La permission Appareil Photo est nécessaire pour cette fonction.</string>
    <string name="toast_camera_support_required">Le support de la Caméra est nécessaire pour cette fonction.</string>
    <string name="devicetype_amazfit_bip5_unity">Amazfit Bip 5 Unity</string>
    <string name="pref_dashboard_first_summary">Montrer le tableau de bord lors du démarrage de Gadgetbridge, au lieu de l\'écran des appareils</string>
    <string name="pref_dashboard_cards_summary">Dessiner les cartes autour des widgets sur le tableau de bord</string>
    <string name="pref_dashboard_all_devices_title">Tous les appareils</string>
    <string name="pref_dashboard_devices_to_include">Appareils à inclure</string>
    <string name="pref_dashboard_widget_today_24h_summary">Afficher l\'activité dans un unique cercle de 24h au lieu d\'un double cercle de 12h</string>
    <string name="pref_speak_notifications_aloud_summary">Les notifications seront lues à haute voix dans les écouteurs</string>
    <string name="pref_sleepasandroid_slot_title">Emplacement d\'alarmes</string>
    <string name="alarm_slot_reset">L\'emplacement d\'alarme a été configuré à sa valeur par défaut</string>
    <string name="widget_layout_top_large_bot_wide">Grand au-dessus, large en dessous</string>
    <string name="pref_dashboard_select_devices_title">Choisir les appareils...</string>
    <string name="pref_auto_reply_calls_delay_summary">Temps en seconde après lequel l\'appel est décroché automatiquement</string>
    <string name="devicesetting_scannable_minimum_unseen">Temps invisible minimum (secondes)</string>
    <string name="devicesetting_scannable_debounce">Délai d\'attente de la redondance de scan (secondes)</string>
    <string name="devicesetting_scannable_debounce_summary">Une fois scanné, l\'appareil restera comme scanné et sera ignoré pendant le temps spécifié</string>
    <string name="pref_dashboard_first_title">Afficher le tableau de bord en premier</string>
    <string name="stepRateSum">Somme des rythmes de marche</string>
    <string name="stepRateAvg">Vitesse moyenne de marche</string>
    <string name="stepLengthAvg">Longueur moyenne du pas</string>
    <string name="groundContactTimeAvg">Temps de contact moyen avec le sol</string>
    <string name="impactAvg">Impact moyen</string>
    <string name="impactMax">Impact maximum</string>
    <string name="foreFootLandings">Appui de l\'avant-pied</string>
    <string name="midFootLandings">Appui du milieu du pied</string>
    <string name="backFootLandings">Appui du talon</string>
    <string name="eversionAngleAvg">Angle moyen d\'éversion</string>
    <string name="eversionAngleMax">Angle maximum d\'éversion</string>
    <string name="fmtPaceDistance">rythme %d distance</string>
    <string name="fmtPacePace">Rythme %d rythme</string>
    <string name="fmtPaceCorrection">Correction %d du rythme</string>
    <string name="fmtPaceType">Rythme %d genre</string>
    <string name="swingAngleAvg">Angle d\'oscillation moyen</string>
    <plurals name="amount_of_days">
        <item quantity="one">%d jour</item>
        <item quantity="many">%d jours</item>
        <item quantity="other">%d jours</item>
    </plurals>
    <string name="battery_full_notify_enabled">Notifier quand batterie pleine</string>
    <string name="battery_full_threshold">Seuil de batterie pleine</string>
    <string name="pref_fetch_unknown_files_title">Récupérer les fichiers inconnus</string>
    <string name="pref_fetch_unknown_files_summary">Récupérer les fichiers d’activité inconnus de la montre. Ils ne seront pas traités, mais seront enregistrés dans le téléphone.</string>
    <string name="default_percentage">Défaut (%1$d%%)</string>
    <string name="devicetype_garmin_epix_pro">Garmin Epix Pro</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_vivosmart_5">Garmin Vívosmart 5</string>
    <string name="dashboard_calendar_month_goals_reached_title">% de l\'objectif de pas atteint</string>
    <string name="loading">Chargement…</string>
    <string name="battery_low_threshold">Seuil de batterie faible</string>
    <string name="pref_title_garmin_default_reply_suffix">Utiliser un suffixe de réponse prédéfini</string>
    <string name="pref_garmin_agps_help">La liste ci-dessous contient toutes les URLs demandées par la montre pour la mise à jour de l\'AGPS. Vous pouvez sélectionner un fichier depuis le téléphone qui sera envoyé à la montre quand une demande de mise à jour sera faite.</string>
    <string name="copied_to_clipboard">Copier dans le presse-papier</string>
    <string name="devicetype_garmin_fenix_6_sapphire">Garmin Fenix 6 Sapphire</string>
    <string name="devicetype_garmin_instinct">Garmin Instinct</string>
    <string name="devicetype_garmin_instinct_crossover">Garmin Instinct Crossover</string>
    <string name="devicetype_garmin_forerunner_245">Garmin Forerunner 245</string>
    <string name="devicetype_garmin_swim_2">Garmin Swim 2</string>
    <string name="devicetype_garmin_vivoactive_5">Garmin Vívoactive 5</string>
    <string name="devicetype_garmin_forerunner_265">Garmin Forerunner 265</string>
    <string name="notification_channel_full_battery_name">Batterie pleine</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_forerunner_255s">Garmin Forerunner 255S</string>
    <string name="devicetype_hama_fit6900">Hama Fit6900</string>
    <string name="battery_i">Batterie %d</string>
    <string name="devicetype_garmin_venu_3s">Garmin Venu 3S</string>
    <string name="none">Aucune</string>
    <string name="battery_percentage_str">%1$s%%</string>
    <string name="share_debug_info">Partager les infos de débogage</string>
    <string name="realtime_settings">Paramètres en temps réel</string>
    <string name="show_in_notification">Afficher dans les notifications</string>
    <string name="unsupported">non pris en charge</string>
    <string name="min_val">Minimum : %d</string>
    <string name="max_val">Maximum : %d</string>
    <string name="battery_low_notify_enabled">Notifier quand batterie faible</string>
    <string name="notif_battery_full_title">Batterie pleine !</string>
    <string name="notif_battery_full">%1$s batterie pleine</string>
    <string name="garmin_agps_url_i">URL AGPS %1$d</string>
    <string name="no_folder_selected">Pas de dossier sélectionné</string>
    <string name="folder_is_empty">Dossier vide</string>
    <string name="folder">Dossier</string>
    <string name="url">URL</string>
    <string name="garmin_agps_local_file">Fichier local</string>
    <string name="devicetype_garmin_fenix_7s">Garmin Fenix 7S</string>
    <string name="devicetype_garmin_fenix_7_pro">Garmin Fenix 7 Pro</string>
    <string name="authentication_failed_check_key">Échec de l’authentification, vérifier la clé d’authentification</string>
    <string name="toggle_debug_mode">Activer le mode débogage</string>
    <string name="devicetype_garmin_forerunner_255">Garmin Forerunner 255</string>
    <string name="pref_agps_status">Statut AGPS</string>
    <string name="agps_status_missing">Manquant</string>
    <string name="agps_status_pending">En attente</string>
    <string name="agps_status_current">Actuel</string>
    <string name="agps_status_error">Erreur</string>
    <string name="devicetype_garmin_vivomove_hr">Garmin Vivomove HR</string>
    <string name="devicetype_garmin_vivomove_style">Garmin Vivomove Style</string>
    <string name="devicetype_garmin_venu_2">Garmin Venu 2</string>
    <string name="devicetype_garmin_instinct_2s">Garmin Instinct 2S</string>
    <string name="devicetype_garmin_instinct_2_solar">Garmin Instinct 2 Solar</string>
    <string name="devicetype_garmin_venu_2_plus">Garmin Venu 2 Plus</string>
    <string name="devicetype_garmin_venu_3">Garmin Venu 3</string>
    <string name="devicetype_garmin_instinct_solar">Garmin Instinct Solar</string>
    <string name="devicetype_garmin_instinct_2_soltac">Garmin Instinct 2 SolTac</string>
    <string name="sleep_colored_stats_light_avg">Léger moy</string>
    <string name="sleep_colored_stats_rem_avg">REM moy</string>
    <string name="stats_empty_value">-</string>
    <string name="stats_lowest_hr">FC la plus basse</string>
    <string name="stats_highest_hr">FC la plus haute</string>
    <string name="sleep_colored_stats_light">Léger</string>
    <string name="sleep_colored_stats_deep_avg">Profond moy</string>
    <string name="hrv_status">Statut VFC</string>
    <string name="hrv_status_balanced">Equilibré</string>
    <string name="sleep_colored_stats_deep">Profond</string>
    <string name="hrv_status_low">bas</string>
    <string name="hrv_status_unbalanced">Déséquilibré</string>
    <string name="pref_header_hrv_status">Statut VFC</string>
    <string name="devicetype_garmin_fenix_5">Garmin Fenix 5</string>
    <string name="devicetype_garmin_fenix_6">Garmin Fenix 6</string>
    <string name="proprietary_app_warning">Cette fonctionnalité nécessite l’installation d’une application propriétaire</string>
    <string name="devicetype_garmin_vivomove_trend">Garmin Vívomove Trend</string>
    <string name="devicetype_garmin_vivoactive_3">Garmin Vívoactive 3</string>
    <string name="devicetype_garmin_forerunner_255_music">Garmin Forerunner 255 Music</string>
    <string name="devicetype_garmin_forerunner_255s_music">Garmin Forerunner 255S Music</string>
    <string name="sleep_colored_stats_rem">REM</string>
    <string name="abstract_chart_fragment_kind_awake_sleep">Eveillé</string>
    <string name="hrv_status_poor">Mauvais</string>
    <string name="devicetype_garmin_vivosport">Garmin Vívosport</string>
    <string name="pref_title_notification_times_enabled">Horaires des notifications</string>
    <string name="pref_summary_notification_times_enabled">N\'envoyer les notifications que pendant ces horaires</string>
    <string name="pref_battery_polling_interval_format">toutes les %1$s minutes</string>
    <string name="minutes_20">20 minutes</string>
    <string name="minutes_60">60 minutes</string>
    <string name="hrv_status_day_avg">Moyenne journalière</string>
    <string name="body_energy_lost">Dépensée</string>
    <string name="body_energy_gained">Gagnée</string>
    <string name="body_energy_legend_level">Niveau de réserve d\'énergie</string>
    <string name="body_energy">Réserve d\'énergie</string>
    <string name="find_my_phone_companion_warning">Association comme compagnon est requis pour trouver le téléphone. Cliquez ici pour plus d\'informations.</string>
    <string name="hrv_status_last_night">Nuit dernière</string>
    <string name="hrv_status_day_avg_legend">Moyenne journalière (ms)</string>
    <string name="hrv_status_seven_days_avg">Moyenne sur 7 jours</string>
    <string name="hrv_status_seven_days_avg_status">Statut</string>
    <string name="hrv_status_seven_days_avg_long">Moyenne sur 7 jours</string>
    <string name="hrv_status_baseline_label">Ligne de base</string>
    <string name="gps_glonass">GPS + GLONASS</string>
    <string name="activity_prefs_height_inches">Taille en pouces</string>
    <string name="activity_type_tae_bo">Tae Bo</string>
    <string name="transition">Transition</string>
    <string name="activity_type_beach_soccer">Beach Soccer</string>
    <string name="activity_type_beach_volleyball">Beach-volley</string>
    <string name="activity_type_gateball">Gateball</string>
    <string name="activity_type_sepak_takraw">Sepak Takraw</string>
    <string name="activity_type_parachuting">Parachutisme</string>
    <string name="activity_type_auto_racing">Course automobile</string>
    <string name="activity_type_luge">Luge</string>
    <string name="activity_type_parkour">Parkour</string>
    <string name="activity_type_navigate">Naviguer</string>
    <string name="activity_type_indoor_track">Circuit intérieur</string>
    <string name="activity_type_handcycling">Vélo à main</string>
    <string name="activity_type_handcycling_indoor">Vélo à main en intérieur</string>
    <string name="activity_type_transition">Transition</string>
    <string name="activity_type_fitness_equipment">Equipement fitness</string>
    <string name="activity_type_platform_tennis">Paddle-tennis</string>
    <string name="activity_type_training">Entrainement</string>
    <string name="activity_type_breathwork">Ex. respiration</string>
    <string name="activity_type_xc_classic_ski">Ski de rando</string>
    <string name="activity_type_mountaineering">Alpinisme</string>
    <string name="activity_type_multisport">Multisport</string>
    <string name="activity_type_flying">Vol</string>
    <string name="activity_type_boating">Bateau</string>
    <string name="activity_type_driving">Conduite</string>
    <string name="activity_type_hang_gliding">Deltaplane</string>
    <string name="activity_type_inline_skating">Roller</string>
    <string name="activity_type_climb_indoor">Escalade en intérieur</string>
    <string name="activity_type_bouldering">Escalade Bloc</string>
    <string name="activity_type_e_bike">Vélo électrique</string>
    <string name="activity_type_bike_commute">Traj. Quot. Vélo</string>
    <string name="activity_type_american_football">Football américain</string>
    <string name="activity_type_cardio">Cardio</string>
    <string name="activity_type_motorcycling">Moto</string>
    <string name="activity_type_sail_race">Régate</string>
    <string name="activity_type_snowmobiling">Motoneige</string>
    <string name="activity_type_stand_up_paddleboarding">Standup paddle</string>
    <string name="activity_type_wakeboarding">Wakeboard</string>
    <string name="activity_type_rafting">Rafting</string>
    <string name="activity_type_tactical">Tactique</string>
    <string name="activity_type_jumpmaster">Jumpmaster</string>
    <string name="activity_type_floor_climbing">Montée d\'étages</string>
    <string name="activity_type_softball_slow_pitch">Softball</string>
    <string name="activity_type_sail_expedition">Expéd. voilier</string>
    <string name="activity_type_ice_skating">Patins à glace</string>
    <string name="activity_type_sky_diving">Parachutisme</string>
    <string name="activity_type_snowshoe">Raquet. neige</string>
    <string name="activity_type_kayaking">Kayak</string>
    <string name="activity_type_water_skiing">Ski nautique</string>
    <string name="activity_type_winter_sport">Sport d\'hiver</string>
    <string name="activity_type_grinding">Grinding</string>
    <string name="activity_type_health_snapshot">Aperçu santé</string>
    <string name="activity_type_marine">Nautique</string>
    <string name="activity_type_video_gaming">Jeux vidéo</string>
    <string name="activity_type_racket">Raquette</string>
    <string name="activity_type_padel">Padel</string>
    <string name="activity_type_racquetball">Racquetball</string>
    <string name="activity_type_meditation">Méditation</string>
    <string name="activity_type_disc_golf">Disc Golf</string>
    <string name="activity_type_ultimate_disc">UItimate frisbee</string>
    <string name="activity_type_water_tubing">Bouée gonflable</string>
    <string name="activity_type_wakesurfing">Wakesurf</string>
    <string name="activity_type_mixed_martial_arts">MMA</string>
    <string name="activity_type_aerobics">Aérobic</string>
    <string name="activity_type_artistic_swimming">Natation synchronisée</string>
    <string name="activity_type_ballroom_dance">Danse de salon</string>
    <string name="activity_type_bmx">BMX</string>
    <string name="activity_type_board_game">Jeu de société</string>
    <string name="activity_type_bocce">Pétanque</string>
    <string name="activity_type_breaking">Breakdance</string>
    <string name="activity_type_chess">Echecs</string>
    <string name="activity_type_esports">Esport</string>
    <string name="activity_type_frisbee">Frisbee</string>
    <string name="activity_type_futsal">Futsal</string>
    <string name="activity_type_hip_hop">Hip-hop</string>
    <string name="activity_type_jujitsu">Ju-jitsu</string>
    <string name="activity_type_parallel_bars">Barres parallèles</string>
    <string name="activity_type_pole_dance">Pole dance</string>
    <string name="activity_type_snorkeling">Tuba</string>
    <string name="activity_type_shuffleboard">Shuffleboard</string>
    <string name="activity_type_square_dance">Square dance</string>
    <string name="activity_type_weiqi">Jeu de go</string>
    <string name="activity_type_shooting">Tir</string>
    <string name="activity_type_team_sport">Sport collectif</string>
    <string name="activity_type_lacrosse">Lacrosse</string>
    <string name="activity_type_hula_hoop">Hula hoop</string>
    <string name="activity_type_judo">Judo</string>
    <string name="activity_type_dragon_boat">Bateau-dragon</string>
    <string name="activity_type_tug_of_war">Tir à la corde</string>
    <string name="activity_type_muay_thai">Muay thai</string>
    <string name="activity_type_water_polo">Water-polo</string>
    <string name="activity_type_paddling">Sport à pagaie</string>
    <string name="activity_type_para_sport">Handisport</string>
    <string name="activity_type_air_walker">Déambulateur aérien</string>
    <string name="activity_type_bridge">Bridge</string>
    <string name="activity_type_cardio_combat">Cardio combat</string>
    <string name="activity_type_checkers">Dames</string>
    <string name="activity_type_finswimming">Nage avec palmes</string>
    <string name="activity_type_flowriding">Flowriding</string>
    <string name="activity_type_folk_dance">Danse traditionnelle</string>
    <string name="activity_type_hacky_sack">Footbag</string>
    <string name="activity_type_jai_alai">Pelote basque</string>
    <string name="activity_type_mass_gymnastics">Massue (gymnastique)</string>
    <string name="activity_type_modern_dance">Danse moderne</string>
    <string name="activity_type_race_walking">Marche athlétique</string>
    <string name="activity_type_somatosensory_game">Jeux de Somesthésie</string>
    <string name="activity_type_spinning">Spinning</string>
    <string name="activity_type_stair_climber">Montée de marches</string>
    <string name="activity_type_table_football">Baby-foot</string>
    <string name="moondrop_touch_action_play_pause">Jouer/Pause</string>
    <string name="moondrop_touch_trigger_long_press_3s">Appui long (3s)</string>
    <string name="moondrop_touch_action_anc_mode">Activer le mode de suppression du bruit</string>
    <string name="hrv_status_unit">%1$d ms</string>
    <string name="hrv_status_baseline">%1$d-%2$d ms</string>
    <string name="soundcore_equalizer_custom_title">Personnaliser…</string>
    <string name="soundcore_equalizer_custom_summary">Configurer l’égaliseur paramétrique</string>
    <string name="soundcore_equalizer_direction">Direction du périphérique</string>
    <string name="moondrop_equalizer_preset_monitor">Moniteur</string>
    <string name="moondrop_touch_earbud">Ecouteur</string>
    <string name="moondrop_touch_earbud_both">Les deux</string>
    <string name="moondrop_touch_trigger">Déclencheur</string>
    <string name="activity_type_push_walk_speed">Poussée - Vitesse de marche</string>
    <string name="activity_type_indoor_push_walk_speed">Poussée en intérieur - Vitesse de marche</string>
    <string name="activity_type_push_run_speed">Poussée - vitesse de course</string>
    <string name="activity_type_indoor_push_run_speed">Poussée en intérieur - vitesse de course</string>
    <string name="activity_type_aerobic_combo">Aérobic combiné</string>
    <string name="activity_type_wall_ball">Wall ball</string>
    <string name="soundcore_equalizer_preset_signature">Signature soundcore</string>
    <string name="soundcore_equalizer_preset_xtra_bass">Xtra Bass</string>
    <string name="soundcore_equalizer_preset_voice">voix</string>
    <string name="soundcore_equalizer_frequency">Fréquence</string>
    <string name="soundcore_equalizer_band5">Bande 5</string>
    <string name="soundcore_equalizer_value">Valeur</string>
    <string name="pref_summary_garmin_default_reply_suffix">Ajouté en plus du suffixe défini dans Gadgetbridge</string>
    <string name="pref_battery_polling_enable">Activer l\'interrogation de la batterie</string>
    <string name="devicetype_soundcore_motion300">Soundcore Motion 300</string>
    <string name="soundcore_equalizer_preset">Prérégler</string>
    <string name="soundcore_equalizer_direction_hanging">Suspendu</string>
    <string name="soundcore_equalizer_reset_title">Réinitialiser les paramètres par défaut</string>
    <string name="soundcore_equalizer_band6">Bande 6</string>
    <string name="soundcore_equalizer_band8">Bande 8</string>
    <string name="soundcore_equalizer_band9">Bande 9</string>
    <string name="soundcore_equalizer_band7">Bande 7</string>
    <string name="pref_battery_polling_interval">Intervalle de l\'interrogation de la batterie</string>
    <string name="activity_type_body_combat">Body combat</string>
    <string name="activity_type_biathlon">Biathlon</string>
    <string name="activity_type_bungee_jumping">Saut à l\'élastique</string>
    <string name="activity_type_orienteering">Course d\'orientation</string>
    <string name="devicetype_garmin_fenix_5_plus">Garmin Fenix 5 Plus</string>
    <string name="devicetype_garmin_forerunner_965">Garmin Forerunner 965</string>
    <string name="devicetype_moondrop_space_travel">Moondrop Space Travel</string>
    <string name="devicetype_huawei_watchgtrunner">Huawei Watch GT Runner</string>
    <string name="soundcore_voice_prompts">Annonces vocales</string>
    <string name="soundcore_button_brightness_low">Faible</string>
    <string name="soundcore_button_brightness_high">Elevé</string>
    <string name="soundcore_ldac_mode_title">Mode LDAC</string>
    <string name="soundcore_ldac_mode_summary">Activer le LDAC réduira la durée de vie de la batterie et pourrait entraîner une instabilité de connexion</string>
    <string name="soundcore_equalizer_band1">Bande 1</string>
    <string name="soundcore_equalizer_band2">Bande 2</string>
    <string name="soundcore_equalizer_band3">Bande 3</string>
    <string name="soundcore_equalizer_band4">Bande 4</string>
    <string name="soundcore_equalizer_direction_standing">Debout</string>
    <string name="soundcore_equalizer_direction_lying">Couché</string>
    <string name="soundcore_equalizer_reset_summary">Rétablir les paramètres par défaut de toutes les bandes de l’égaliseur</string>
    <string name="cannot_upload_watchface_too_many_watchfaces_installed">Impossible de charger le cadran, trop de cadrans installés</string>
    <string name="insufficient_space_for_upload">Espace insuffisant pour le chargement</string>
    <string name="pref_battery_polling_configuration">Configuration de l’interrogation de la batterie</string>
    <string name="battery_polling_failed_start">Échec du démarrage de l’interrogation de la batterie</string>
    <string name="activity_type_canoeing">Canoë-kayak</string>
    <string name="activity_type_water_scooter">Scooter des mers</string>
    <string name="activity_type_bobsleigh">Bobsleigh</string>
    <string name="activity_type_sledding">Luge</string>
    <string name="activity_type_free_sparring">Combat libre</string>
    <string name="activity_type_plaza_dancing">Danse de place</string>
    <string name="activity_type_obstacle_race">Course d\'obstacles</string>
    <string name="activity_type_laser_tag">Laser game</string>
    <string name="activity_type_billiard_pool">Billard américain</string>
    <string name="soundcore_button_brightness">Luminosité des boutons</string>
    <string name="soundcore_button_brightness_medium">Moyen</string>
    <string name="soundcore_equalizer_preset_balanced">Equilibré</string>
    <string name="soundcore_adaptive_direction_title">Direction adaptative</string>
    <string name="soundcore_adaptive_direction_summary">Ajuster le préréglage de l’égaliseur automatiquement en fonction de la direction du périphérique</string>
    <string name="intent_api_broadcast_activity_sync_title">Transfert de la synchronisation des activités terminé</string>
    <string name="pref_battery_polling_summary">C\'est le meilleur effort, et risque d\'être retardé pour plusieurs raisons</string>
    <string name="moondrop_touch_action_call_start">Appeler</string>
    <string name="devicetype_huawei_watch3">Huawei Watch 3 (Pro)</string>
    <string name="moondrop_touch_action_assistant">Déclencher l\'assistant vocal</string>
    <string name="moondrop_touch_trigger_long_press_1s">Appui long (1s)</string>
    <string name="devicetype_nothing_cmf_watch_pro_2">CMF Watch Pro 2</string>
    <string name="devicetype_nothing_cmf_buds_pro_2">CMF Buds Pro 2</string>
    <string name="moondrop_equalizer_preset_reference">Référence</string>
    <string name="moondrop_equalizer_preset_basshead">Basshead</string>
    <string name="moondrop_touch_action_call_pick_hang">Décrocher/Suspendre appel</string>
    <string name="intent_api_broadcast_activity_sync_summary">Envoyer une notification lorsque la synchronisation des activités est terminée pour tout les appareils</string>
    <string name="hrv_status_last_night_highest_5">Nuit dernière moy. max. de 5 min</string>
    <string name="devicetype_vivitar_hr_bp_monitor_activity_tracker">Vivitar HR &amp; BP Monitor Activity Tracker</string>
    <string name="devicetype_garmin_venu">Garmin Venu</string>
    <string name="authentication_failed_negotiation">Échec de la négociation de la clé d\'authentification</string>
    <string name="devicetype_garmin_venu_2s">Garmin Venu 2S</string>
    <string name="hrv">VFC</string>
    <string name="devicetype_micompositionscale">Mi Body Composition Scale 2</string>
    <string name="miscale_weight_unit_imperial">Impérial (lb)</string>
    <string name="miscale_weight_unit_chinese">Chinois (jin)</string>
    <string name="miscale_small_objects_title">Petits objets</string>
    <string name="miscale_small_objects_summary">Stocker le poids des objets plus légers que 10 kg</string>
    <string name="devicetype_mismartscale">Mi Smart Scale 2</string>
    <string name="estimatedSweatLoss">Estimation de la transpiration</string>
    <string name="miscale_weight_unit_title">Unité de poids</string>
    <string name="miscale_weight_unit_summary">Définir l’unité de poids pour les mesures affichées</string>
    <string name="miscale_weight_unit_metric">Métrique (kg)</string>
    <string name="steps_distance_unit">%1$,.2f km</string>
    <string name="steps_total">Pas total</string>
    <string name="distance_total">Distance totale</string>
    <string name="steps_avg">Moy. de pas</string>
    <string name="distance_avg">Distance moy.</string>
    <string name="pref_time_sync">Synchronisation automatique de l’heure</string>
    <string name="minutes_15">15 minutes</string>
    <string name="minutes_45">45 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="minutes_3">3 minutes</string>
    <string name="minutes_4">4 minutes</string>
    <string name="pref_app_connection_duration">Durée de connexion à l’application</string>
    <string name="user_feedback_set_settings_ok">Paramètres envoyés à l’appareil.</string>
    <string name="minutes_2">2 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="dateformat_day_month">Jour, Mois</string>
    <string name="dateformat_month_day">Mois, Jour</string>
    <string name="prefs_light_duration_longer">Durée plus longue de la lumière</string>
    <string name="busy_task_fetch_sleep_data">Obtenir les données de sommeil</string>
    <string name="devicetype_colmi_r02">Colmi R02</string>
    <string name="smart_ring_measurement_error_worn_incorrectly">Erreur de mesure. Les capteurs de l\'anneau sont-ils correctement orientés ?</string>
    <string name="devicetype_colmi_r03">Colmi R03</string>
    <string name="devicetype_colmi_r06">Colmi R06</string>
    <string name="smart_ring_measurement_error_unknown">Erreur de mesure inconnue %d reçue de l\'anneau</string>
    <string name="stress_average">Moyen</string>
    <string name="devicetype_mijia_xmwsdj04">Mijia Temperature and Humidity Sensor 2 (E-ink)</string>
    <string name="devicetype_honor_watchgs3">Honor Watch GS 3</string>
    <string name="activity_type_rem_sleep">Sommeil REM</string>
    <string name="menuitem_weight">Poids</string>
    <string name="target">Cible</string>
    <string name="lactateThresholdHeartRate">Fréquence cardiaque du seuil de lactate</string>
    <string name="recoveryTime">Temps de récupération</string>
    <string name="sleep_colored_stats_awake_avg">Moy. éveillé</string>
    <string name="weight_lbs">%1$.2f lbs</string>
    <string name="weight_kg">%1$.2f kg</string>
    <string name="devicetype_garmin_fenix_5x_plus">Garmin Fenix 5X Plus</string>
    <string name="pref_description_developer_options">Logs, API d’intention</string>
    <string name="pref_header_sound">Son</string>
    <string name="workoutSets">Série</string>
    <string name="workout_set_i">Série %1d</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>
    <string name="choose_device">Choisissez un appareil</string>
    <string name="no_supported_devices_found">Aucun appareil pris en charge trouvé</string>
    <string name="search">Recherche</string>
    <string name="pref_header_deprecated_functionalities">Fonctionnalités obsolètes</string>
    <string name="pref_title_nagivation_apps">Applications de navigation</string>
    <string name="pref_header_external_integrations">Intégrations extérieures</string>
    <string name="pref_header_automations">Automatisations</string>
    <string name="pref_description_about_you">Date de naissance, sexe, taille, poids, objectifs</string>
    <string name="pref_description_notifications">Notifications d\'application, liste blanche/liste noire</string>
    <string name="menuitem_stress_breakdown">Stress (détaillé)</string>
    <string name="pref_header_deprecated_functionalities_warning">Les fonctionnalités suivantes sont obsolètes et seront bientôt supprimées du logiciel.
\nSi vous devez activer l\'un des paramètres suivants, prenez contacte avec l\'équipe du projet.</string>
    <string name="pref_deprecated_media_control_title">Contrôle des médias obsolètes</string>
    <string name="pref_deprecated_media_control_summary">Envoyez les commandes de contrôle des médias comme des événements clés au lieu du contrôleur des médias.</string>
    <string name="pref_description_dashboard">Widgets, dispositifs à inclure</string>
    <string name="pref_title_user_interface">Interface utilisateur</string>
    <string name="pref_description_general">Démarrage, langue, région, emplacement</string>
    <string name="activity_prefs_date_birth">Date de naissance</string>
    <string name="menuitem_stress_simple">Stress (simple)</string>
    <string name="pref_description_user_interface">Thème, écran principal</string>
    <string name="pref_description_automations">Export et récupération automatique</string>
    <string name="pref_description_deprecated_functionalities">Paramètres qui seront supprimés dans une version future</string>
    <string name="menuitem_stress_segmented">Stress (segmenté)</string>
    <string name="pref_header_main_screen">Écran principal</string>
    <string name="devicetype_soundcore_liberty4_nc">Soundcore Liberty 4 NC</string>
    <string name="devicetype_garmin_forerunner_165">Garmin Forerunner 165</string>
    <string name="pref_continuous_skin_temperature_measurement_title">Mesure continue de la température de la peau</string>
    <string name="prefs_title_gatt_client_api_package">Paquet API de BLE</string>
    <string name="backup_restore_abort_title">Abandonner</string>
    <string name="backup_restore_abort_export_confirmation">Abandonner l’exportation ? Le fichier Zip partiel sera supprimé.</string>
    <string name="backup_restore_restart_title">Redémarrage</string>
    <string name="devicetype_ble_gatt_client">Client générique BLE GATT</string>
    <string name="prefs_summary_gatt_client_notification_intents">Recevoir les changements de caractéristiques BLE par l’intermédiaire des Intents</string>
    <string name="prefs_summary_gatt_client_device_state_updates">Recevoir les changements d’état de connexion BLE via Intents</string>
    <string name="backup_restore_exporting_preferences">Exportation des préférences…</string>
    <string name="backup_restore_exporting_database">Exportation de la base de données…</string>
    <string name="backup_restore_exporting_files">Exportation de fichiers…</string>
    <string name="backup_restore_exporting_files_i_of_n">Exportation des fichiers... %1d de %2d</string>
    <string name="backup_restore_do_not_exit">%s Veuillez garder cet écran ouvert jusqu’à ce que l’opération soit terminée.</string>
    <string name="backup_restore_importing_database">Importation de la base de données…</string>
    <string name="backup_restore_restart_summary">%1s va redémarrer.</string>
    <string name="devicetype_amazfit_trex_3">Amazfit T-Rex 3</string>
    <string name="prefs_title_ble_intent_api">API Intent BLE</string>
    <string name="activity_db_management_backup_restore_label">Sauvegarder et restaurer</string>
    <string name="activity_db_management_export_to_zip">Exporter Zip</string>
    <string name="activity_db_management_import_from_zip">Importer Zip</string>
    <string name="backup_restore_exporting">Exportation vers Zip…</string>
    <string name="backup_restore_error_export">Exportation vers Zip échouée</string>
    <string name="backup_restore_error_import">Importation depuis Zip échouée</string>
    <string name="backup_restore_abort_import_confirmation">Abandonner l’importation ? Cela peut entraîner une base de données corrompue ou incohérente.</string>
    <string name="menuitem_night_display">Affichage de nuit</string>
    <string name="devicetype_honor_watchgspro">Honor Watch GS Pro</string>
    <string name="menuitem_map">Carte</string>
    <string name="pref_continuous_skin_temperature_measurement_description">La récupération de température n’est pas prise en charge actuellement. Ce paramètre permet uniquement une mesure continue sur l’appareil</string>
    <string name="prefs_title_gatt_client_notification_intents">Diffuser les intentions de notification GATT par l’intermédiaire de l’API Intent BLE</string>
    <string name="prefs_title_gatt_client_allow_gatt_interactions">Permettre l’interaction GATT par l’intermédiaire de l’API Intent BLE</string>
    <string name="prefs_summary_gatt_client_allow_gatt_interactions">Autoriser l’envoi de commandes de lecture/écriture et de connexion des caractéristiques BLE</string>
    <string name="prefs_summary_gatt_client_api_package">Restreindre la communication API d’intention BLE à ce paquet</string>
    <string name="backup_restore_importing_files_i_of_n">Importation de fichiers... %1d de %2d</string>
    <string name="activity_db_management_backup_restore_explanation">Les opérations d’importation/exportation vous permettent de migrer ou de sauvegarder tous les paramètres, périphériques et données de Gadgetbridge vers et à partir d’un fichier Zip.
\n
\nImporter un fichier supprimera toutes les données, les périphériques et les préférences existants, en les remplaçant complètement par la sauvegarde.</string>
    <string name="backup_restore_importing_loading">Chargement du fichier…</string>
    <string name="backup_restore_importing_preferences">Importation des préférences…</string>
    <string name="backup_restore_exporting_finishing">Finition exportation…</string>
    <string name="backup_restore_importing">Importation à partir de Zip…</string>
    <string name="backup_restore_importing_validating">Validation du fichier…</string>
    <string name="backup_restore_export_complete">Exportation accomplie</string>
    <string name="backup_restore_warning_files">%1d fichiers échoués à être restaurés :
\n %2s</string>
    <string name="backup_restore_import_complete">Importation accomplie</string>
    <string name="label_distance_trip">Distance parcourue : %.1f km</string>
    <string name="label_distance_total">Total : %.1f km</string>
    <string name="error_no_cycling_sensor_found">aucun capteur de cyclisme trouvé</string>
    <string name="hr_resting">Au repos</string>
    <string name="hr_maximum">Maximum</string>
    <string name="hr_minimum">Minimum</string>
    <string name="hr_average">Moyenne</string>
    <string name="devicetype_garmin_forerunner_245_music">Garmin Forerunner 245 Music</string>
    <string name="devicetype_sony_wf_c500">Sony WF-C500</string>
    <string name="menuitem_heart_rate_push">Pulsation fréquence cardiaque</string>
    <string name="devicetype_garmin_enduro_3">Garmin Enduro 3</string>
    <string name="devicetype_garmin_forerunner_955">Garmin Forerunner 955</string>
    <string name="bpm_value_unit">%1$d bpm</string>
    <string name="label_distance_trip_mph">Voyage : %.1f mi</string>
    <string name="label_distance_total_mph">Total : %.1f mi</string>
    <string name="devicetype_miband9">Xiaomi Smart Band 9</string>
    <string name="devicetype_garmin_forerunner_265s">Garmin Forerunner 265S</string>
    <string name="devicetype_redmi_watch_5_active">Redmi Watch 5 Active</string>
    <string name="devicetype_huawei_watchgt5">Huawei Watch GT 5 (Pro)</string>
    <string name="vo2max_running">VO₂ Max en course</string>
    <string name="vo2max_cycling">VO₂ Max en cyclisme</string>
    <string name="thirty_days_timeline">Timeline 30 jours</string>
    <string name="devicetype_huawei_watchd2">Huawei Watch D2</string>
    <string name="max_respiration_rate">Fréquence respiratoire max</string>
    <string name="devicetype_idasen">IKEA Idasen Desk</string>
    <string name="devicetype_colmi_r10">Colmi R10</string>
    <string name="average_respiration_rate">Fréquence respiratoire</string>
    <string name="min_respiration_rate">Fréquence respiratoire min</string>
    <string name="hrv_sdrr">VFC SDRR</string>
    <string name="milliseconds_ms">ms</string>
    <string name="idasen_pref_mid_height">Hauteur de la position moyenne (en centimètres)</string>
    <string name="idasen_pref_sit_height">Hauteur de la position assise (en centimètres)</string>
    <string name="idasen_pref_stand_height">Hauteur de la position du support (en centimètres)</string>
    <string name="idasen_pref_value_warning">La valeur doit être comprise entre 62 - 126 cm</string>
    <string name="pref_dashboard_widget_today_time_indicator_summary">Afficher un indicateur à l’heure actuelle, pour séparer visuellement les données d’hier et d’aujourd’hui</string>
    <string name="pref_dnd_follow_phone_title">Suivre le réglage NPD du téléphone</string>
    <string name="pref_dnd_follow_phone_summary">Lorsque le mode NPD est activé ou désactivé sur le téléphone, il bascule automatiquement sur l’appareil également</string>
    <string name="inactivity_warnings_minimum_steps_title">Nombre minimal de pas</string>
    <string name="prefs_hrv_monitoring_title">Surveillance de la VFC</string>
    <string name="date_placeholders__start_time__end_time">%1s - %2s</string>
    <string name="date_placeholders__date__time">%1s, %1s</string>
    <string name="mijia_lywsd_comfort_temperature_title">Temperature (°C)</string>
    <string name="mijia_lywsd_comfort_temperature_summary">Plage recommandée : 19 - 27</string>
    <string name="mijia_lywsd_comfort_level_title">Niveau confort</string>
    <string name="mijia_lywsd_comfort_humidity_title">Humidité (%)</string>
    <string name="mijia_lywsd_comfort_level_summary">Configurer les limites de température et d’humidité pour l’affihage d\'emoji</string>
    <string name="mijia_lywsd_comfort_lower">limite inférieure</string>
    <string name="mijia_lywsd_comfort_upper">Limite supérieure</string>
    <string name="mijia_lywsd_comfort_humidity_summary">Plage recommandée : 20 - 85</string>
    <string name="pref_summary_sync_birthdays">Synchroniser les anniversaires de contact avec les événements du calendrier</string>
    <string name="pref_title_sync_birthdays">Synchroniser les anniversaires</string>
    <string name="devicetype_sony_wf_c700n">Sony WF-C700N</string>
    <string name="birthdays">Anniversaires</string>
    <string name="busy_task_fetch_hrv_data">Récupération des données VFC</string>
    <string name="pref_crash_notification_title">Notifier en cas d\'erreur</string>
    <string name="pref_crash_notification_summary">Quand l\'application plante, afficher une notification avec l\'erreur</string>
    <string name="fmtPaceAverage">Rythme moyen</string>
    <string name="hrv_rmssd">VFC RMSSD</string>
    <string name="breaths_per_min">inspirations/min</string>
    <string name="prefs_hrv_monitoring_description">Surveiller automatiquement la variabilité de la fréquence cardiaque tout au long de la journée</string>
    <string name="pref_dashboard_widget_today_yesterday_data_summary">Afficher les données d’hier qui sont entre l’heure actuelle et minuit</string>
    <string name="pref_title_calendar_lookahead">Nombre de jours à venir</string>
    <string name="pref_summary_calendar_lookahead">Synchroniser jusqu’à %1s jours d’événements du calendrier</string>
    <string name="app_crash_notification_title">%1s a planté</string>
    <string name="app_crash_share_stacktrace">Partager l\'erreur</string>
    <string name="hrZoneMaximum">Maximum</string>
    <string name="hrZoneThreshold">Seuil</string>
    <string name="workout_set_reps">Répétitions</string>
    <string name="devicetype_garmin_venu_sq_2">Garmin Venu Sq 2</string>
    <string name="devicetype_garmin_fenix_6s_sapphire">Garmin Fenix 6S Sapphire</string>
    <string name="devicetype_huawei_watchgtcyber">Huawei Watch GT Cyber</string>
    <string name="pref_dashboard_widget_today_time_indicator_title">indicateur d\'instant présent</string>
    <string name="pref_dashboard_widget_today_yesterday_data_title">Données d\'hier</string>
    <string name="activity_detail_share_json_details">Partager les détails JSON</string>
    <string name="number_selected_items">%1d sélectionné</string>
    <string name="contact_birthday">Anniversaire de %1s</string>
    <string name="paceCorrection">Correction</string>
    <string name="devicetype_garmin_venu_sq">Garmin Venu Sq</string>
    <string name="devicetype_garmin_fenix_8">Garmin Fenix 8</string>
    <string name="hrZoneEasy">Facile</string>
    <string name="idasen_control_button_sit">Assis</string>
    <string name="idasen_control_button_stand">Debout</string>
    <string name="idasen_control_button_mid">Moyen</string>
    <string name="inactivity_warnings_minimum_steps_summary">Nombre minimal de pas à prendre en compte pour le seuil de minutes</string>
    <string name="devicetype_garmin_fenix_6s_pro">Garmin Fenix 6S Pro</string>
    <string name="devicetype_bandw_pseries">Bowers and Wilkins P series</string>
    <string name="devicetype_garmin_forerunner_55">Garmin Forerunner 55</string>
    <string name="devicetype_garmin_forerunner_620">Garmin Forerunner 620</string>
    <string name="devicetype_huawei_band3pro">Huawei Band 3 (Pro)</string>
    <string name="pref_voice_passthrough_enabled">Passthrough</string>
    <string name="pref_voice_passthrough_enabled_summary">Laissez les sons externes passer à vos oreilles</string>
    <string name="pref_voice_passthrough_level">Niveau de passthrough</string>
    <string name="music_upload_info">Vous êtes sur le point de charger la musique suivante :\n\n%1$s\nTitre : %2$s\nAlbum : %3$s\n</string>
    <string name="devicetype_garmin_fenix_7">Garmin Fenix 7</string>
    <string name="pref_wear_sensor_title">Capteur d\'usure</string>
    <string name="devicetype_oppo_enco_air">Oppo Enco Air</string>
    <string name="pref_wear_sensor_summary">Détecter lorsque l’appareil n’est pas porté</string>
    <string name="devicetype_garmin_forerunner_235">Garmin Forerunner 235</string>
    <string name="devicetype_sony_wi_c100">Sony WI-C100</string>
    <string name="file_already_exists">Fichier existant</string>
    <string name="active_calories_short">Active</string>
    <string name="active_calories">Calories actives</string>
    <string name="active_calories_goal">Objectif actif</string>
    <string name="total_calories_burnt">Total brûlé</string>
    <string name="activity_prefs_goal_active_calories_burnt">Objectif quotidien : calories actives brûlées</string>
    <string name="devicetype_garmin_instinct_2">Garmin Instinct 2</string>
    <string name="title_activity_musicmanager">gestionnaire de musique</string>
    <string name="pref_music_management_summary">Gérer la musique sur la montre</string>
    <string name="music_huawei_device_info">Formats pris en charge : %1$s\nStockage de la montre : %2$d MB</string>
    <string name="permission_bluetooth_title">Bluetooth</string>
    <string name="permission_bluetooth_admin_summary">Découvrir et appairer des appareils Bluetooth</string>
    <string name="permission_bluetooth_scan_title">Scan Bluetooth</string>
    <string name="permission_post_notification_title">Notifications de publication</string>
    <string name="menuitem_calories_segmented">Calories (segmentées)</string>
    <string name="menuitem_calories_active_goal">Objectif en calories (actif)</string>
    <string name="pref_music_management_title">Gérer la musique</string>
    <string name="redmi_buds_5_pro_equalizer_preset_bass">Améliorer les basses</string>
    <string name="redmi_buds_5_pro_equalizer_preset_voice">Améliorer la voix</string>
    <string name="redmi_buds_5_pro_equalizer_preset_custom">Personnalisé</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_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_band_500">500 Hz</string>
    <string name="redmi_buds_5_pro_equalizer_band_1k">1 kHz</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_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_6">6 dB</string>
    <string name="devicetype_miband9pro">Xiaomi Smart Band 9 Pro</string>
    <string name="devicetype_oppo_enco_air2">Oppo Enco Air2</string>
    <string name="redmi_buds_5_pro_anc_deep">Profond</string>
    <string name="music_delete_confirm_description">Êtes-vous sûr de vouloir supprimer \'%1$s\' ?</string>
    <string name="music_rename_playlist">Renommer la playlist</string>
    <string name="first_start_overview_dashboard">Le tableau de bord vous permet d’avoir une idée rapide de comment vous allez aujourd\'hui. L’affichage du calendrier indique l’état de vos objectifs sur un mois entier.</string>
    <string name="permission_fine_location_summary">Rechercher les appareils Bluetooth</string>
    <string name="permission_background_location_title">Localisation en arrière-plan</string>
    <string name="first_start_get_started_title">Commencer</string>
    <string name="first_start_get_started_desc">Pour commencer, ajoutez votre premier appareil directement à partir de cet écran, restaurez une sauvegarde ou commencez avec une base de données propre.</string>
    <string name="first_start_get_started_add_first_device_button">Ajouter le premier appareil</string>
    <string name="first_start_get_started_restore_button">Restaurer la sauvegarde</string>
    <string name="first_start_open_source_text">Gadgetbridge est une application open source. Elle est développée par la communauté, pour la communauté.\n\nToute personne est invitée à contribuer via le code, la documentation, les tests et les dons.\n\nGadgetbridge ne contient aucune publicité ni aucun suivi. Il conserve vos données localement sur votre appareil Android, donc il est 100% respectueux de la vie privée.\n\nVisitez notre site web pour plus d’informations, de documentation et des liens vers nos canaux de communication.</string>
    <string name="first_start_permissions_title">Permissions</string>
    <string name="first_start_permissions_desc">Gadgetbridge a besoin de beaucoup de permissions pour exécuter toutes ses fonctions. Passez en revue les permissions et leurs objectifs ci-dessous.</string>
    <string name="first_start_permissions_request_all_button">Demander toutes les permissions</string>
    <string name="first_start_permissions_request_button">Demande</string>
    <string name="first_start_get_started_go_to_app_button">Aller à l’application</string>
    <string name="first_start_welcome_title">Bienvenue</string>
    <string name="lowest">Plus bas</string>
    <string name="redmi_buds_5_pro_double_connection">Double connexion</string>
    <string name="redmi_buds_5_pro_equalizer_preset_standard">Standard</string>
    <string name="redmi_buds_5_pro_equalizer_preset_treble">Améliorer les aigus</string>
    <string name="redmi_buds_5_pro_equalizer_3">3 dB</string>
    <string name="redmi_buds_5_pro_equalizer_5">5 dB</string>
    <string name="music_error">Une erreur s\'est produite</string>
    <string name="first_start_open_source_title">Open Source</string>
    <string name="permission_manage_dnd_title">Gérer Ne pas déranger</string>
    <string name="permission_bluetooth_summary">Connexion aux appareils Bluetooth</string>
    <string name="permission_bluetooth_scan_summary">Recherche de nouveaux appareils Bluetooth</string>
    <string name="permission_bluetooth_connect_title">Connexion Bluetooth</string>
    <string name="permission_bluetooth_connect_summary">Connexion à des appareils Bluetooth déjà appariés</string>
    <string name="permission_internet_access_title">Accès Internet</string>
    <string name="permission_internet_access_summary">Synchronisation avec les ressources en ligne</string>
    <string name="permission_contacts_title">Contacts</string>
    <string name="respiratoryrate">Rythme respiratoire</string>
    <string name="devicetype_redmi_buds_5_pro">Redmi Buds 5 Pro</string>
    <string name="highest">Plus haut</string>
    <string name="redmi_buds_5_pro_anc_balanced">Equilibré</string>
    <string name="redmi_buds_5_pro_double_connection_description">Permettre aux écouteurs de se connecter à deux appareils en même temps</string>
    <string name="redmi_buds_5_pro_anc_light">Léger</string>
    <string name="redmi_buds_5_pro_transparency_voice">Améliorer les voix</string>
    <string name="redmi_buds_5_pro_transparency_ambient">Améliorer les sons ambiants</string>
    <string name="redmi_buds_5_pro_adaptive_sound_description">Ajuste le son en fonction de la forme de l’oreille et de l’environnement</string>
    <string name="first_start_overview_title">Aperçu</string>
    <string name="redmi_buds_5_pro_equalizer_2">2 dB</string>
    <string name="first_start_overview_desc">Gadgetbridge a deux vues principales, chacune avec son propre but.</string>
    <string name="redmi_buds_5_pro_equalizer_4">4 dB</string>
    <string name="music_delete_multiple_confirm_description">Êtes-vous sûr de vouloir supprimer \'%1$d\' chansons ?</string>
    <string name="first_start_overview_devices">La vue des appareils affiche tous les appareils que vous avez configurés et leur statut, et donne accès à des fonctions spécifiques aux appareils telles que des graphiques détaillés, des paramètres, des applications et des alarmes.</string>
    <string name="permission_notifications_summary">Transfert des notifications vers les gadgets connectés</string>
    <string name="permission_displayover_title">Afficher par-dessus d\'autres applications</string>
    <string name="permission_displayover_summary">Utilisé par Bangle.js pour démarrer des applications et d’autres fonctionnalités sur votre téléphone</string>
    <string name="permission_background_location_summary">Recherche des périphériques Bluetooth en arrière-plan et envoi de l’emplacement à certains gadgets</string>
    <string name="pref_developer_add_test_activities_summary">Remplir la base de données avec des activités de test factices</string>
    <string name="pref_developer_add_test_activities_title">Ajouter des activités de test</string>
    <string name="devicetype_realme_buds_t110">Realme Buds T110</string>
    <string name="music_add_to_playlist">Ajouter à la playlist</string>
    <string name="music_delete_from_playlist">Supprimer de la liste de lecture</string>
    <string name="music_delete">Supprimer la chanson</string>
    <string name="music_all_songs">Toutes les chansons</string>
    <string name="music_new_playlist">Nouvelle playlist</string>
    <string name="permission_calendar_title">Calendrier</string>
    <string name="permission_calendar_summary">Envoi de calendrier aux gadgets</string>
    <string name="permission_receive_sms_title">Recevoir des SMS</string>
    <string name="permission_send_sms_title">Envoyer des SMS</string>
    <string name="permission_send_sms_summary">Envoi de SMS (réponse préremplie) à partir des gadgets</string>
    <string name="permission_read_call_log_title">Lire le journal des appels</string>
    <string name="permission_call_phone_title">Appel téléphonique</string>
    <string name="permission_call_phone_summary">Lancer des appels téléphoniques à partir des gadgets</string>
    <string name="permission_process_outgoing_calls_title">Traiter les appels sortants</string>
    <string name="permission_answer_phone_calls_title">Répondre aux appels téléphoniques</string>
    <string name="permission_external_storage_title">Stockage externe</string>
    <string name="permission_contacts_summary">Envoi de contacts vers les gadgets</string>
    <string name="permission_receive_sms_summary">Transfert de messages SMS vers les gadgets</string>
    <string name="permission_read_phone_state_title">Lire l\'état du téléphone</string>
    <string name="permission_answer_phone_calls_summary">Répondre aux appels téléphoniques à partir des gadgets</string>
    <string name="permission_read_call_log_summary">Transfert du journal des appels aux gadgets</string>
    <string name="permission_process_outgoing_calls_summary">Lecture du numéro d’un appel sortant pour l’afficher sur un gadget</string>
    <string name="permission_query_all_packages_title">Interroger tous les paquets</string>
    <string name="permission_external_storage_summary">Utilisation d’images, de sonneries, de fichiers d’applications et plus encore</string>
    <string name="permission_query_all_packages_summary">Lecture des noms et icônes de toutes les applications installées</string>
</resources>