~mshinke/nvdajp/betterBraille

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
# Traduction française de NVDA
# Copyright (C) 2006-2011 NVDA Contributors <http://www.nvda-project.org/>
# Michael Curran <mick@kulgan.net> 2006
#
msgid ""
msgstr ""
"Project-Id-Version: 4723\n"
"POT-Creation-Date: 2007-03-10 23:05+0200\n"
"PO-Revision-Date: 2011-10-12 11:00+0200\n"
"Last-Translator: Michel Such <michel.such@free.fr>\n"
"Language-Team: fra <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Poedit-Language: French\n"
"X-Poedit-Country: FRANCE\n"
"X-Poedit-SourceCharset: utf-8\n"

#: IAccessibleHandler.py:695
msgid "Secure Desktop"
msgstr "bureau sécurisé"

#: NVDAHelper.py:113
msgid "unknown layout"
msgstr "disposition inconnue"

#: NVDAHelper.py:114
msgid "layout %s"
msgstr "disposition %s"

#: NVDAObjects\IAccessible\__init__.py:1472
msgid "Taskbar"
msgstr "Barre de tâches"

#: NVDAObjects\IAccessible\sysTreeView32.py:202
msgid "%s items"
msgstr "%s éléments"

#: NVDAObjects\UIA\__init__.py:486
msgid "invoke"
msgstr "invoquer"

#: NVDAObjects\behaviors.py:53 globalCommands.py:809
msgid "%d percent"
msgstr "%d pourcent"

#: NVDAObjects\window\__init__.py:369
msgid "Desktop"
msgstr "bureau"

#: NVDAObjects\window\edit.py:260 NVDAObjects\window\edit.py:261
msgid "default color"
msgstr "couleur par défaut"

#: NVDAObjects\window\edit.py:611 controlTypes.py:246
msgid "embedded object"
msgstr "objet embarqué"

#: NVDAObjects\window\excel.py:189
msgid "has formula"
msgstr "contient une formule"

#: NVDAObjects\window\excel.py:228
msgid "%s %s through %s %s"
msgstr "De %s %s à %s %s"

#: NVDAObjects\window\winword.py:378 NVDAObjects\window\winword.py:390
#: NVDAObjects\window\winword.py:402 NVDAObjects\window\winword.py:414
msgid "not in table"
msgstr "hors du tableau"

#: NVDAObjects\window\winword.py:385 NVDAObjects\window\winword.py:397
#: NVDAObjects\window\winword.py:409 NVDAObjects\window\winword.py:421
#: virtualBuffers\__init__.py:1230
msgid "edge of table"
msgstr "limite du tableau"

#: appModuleHandler.py:137
msgid "Error in appModule %s"
msgstr "Erreur dans appModule %s"

#: appModules\calc.py:30
msgid "Display"
msgstr "Affichage"

#: appModules\explorer.py:35
msgid "Start"
msgstr "début"

#: appModules\foobar2000.py:44
msgid "No track playing"
msgstr "Pas de piste en cours"

#: appModules\foobar2000.py:50
msgid "Reports the remaining time of the currently playing track, if any"
msgstr "Annonce le temps restant dans la piste en cours"

#: appModules\miranda32.py:117
msgid "No message yet"
msgstr "pas encore de message"

#: appModules\miranda32.py:118
msgid "Displays one of the recent messages"
msgstr "Affiche l'un des messages récents"

#: appModules\msimn.py:20
msgid "Attachments"
msgstr "pièces jointes"

#: appModules\msimn.py:21
msgid "To:"
msgstr "À :"

#: appModules\msimn.py:22
msgid "Newsgroup:"
msgstr "Groupe de discussion :"

#: appModules\msimn.py:23
msgid "CC:"
msgstr "CC :"

#: appModules\msimn.py:24
msgid "Subject:"
msgstr "Objet :"

#: appModules\msimn.py:25 appModules\msimn.py:33
msgid "From:"
msgstr "De :"

#: appModules\msimn.py:26
msgid "Date:"
msgstr "Date :"

#: appModules\msimn.py:27
msgid "Forward to:"
msgstr "Transférer à :"

#: appModules\msimn.py:28
msgid "Answer to:"
msgstr "Répondre à :"

#: appModules\msimn.py:29
msgid "Organisation:"
msgstr "Organisation :"

#: appModules\msimn.py:30
msgid "Distribution:"
msgstr "Distribution :"

#: appModules\msimn.py:31
msgid "Key words:"
msgstr "Mots clés :"

#: appModules\msimn.py:32
msgid "BCC:"
msgstr "CCI :"

#: appModules\msimn.py:95 appModules\outlook.py:28
msgid "unread"
msgstr "non lu"

#: appModules\outlook.py:23 appModules\outlook.py:36
msgid "subject: %s"
msgstr "Objet : %s"

#: appModules\outlook.py:24
msgid "received: %s"
msgstr "reçu : %s"

#: appModules\outlook.py:30
msgid "attachment"
msgstr "pièce jointe"

#: appModules\outlook.py:37
msgid "sent: %s"
msgstr "envoyé: %s"

#: appModules\sndrec32.py:11
msgid "Rewind"
msgstr "Rembobiner"

#: appModules\sndrec32.py:12
msgid "Fast forward"
msgstr "Avance rapide"

#: appModules\sndrec32.py:13
msgid "Play"
msgstr "Lecture"

#: appModules\sndrec32.py:14
msgid "Stop"
msgstr "Arrêt"

#: appModules\sndrec32.py:15
msgid "Record"
msgstr "Enregistrer"

#: appModules\totalcmd.py:35 globalCommands.py:510 globalCommands.py:522
msgid "left"
msgstr "gauche"

#: appModules\totalcmd.py:37 globalCommands.py:557 globalCommands.py:574
msgid "right"
msgstr "droite"

#: appModules\winamp.py:77 appModules\winamp.py:87 globalCommands.py:43
#: globalCommands.py:171 globalCommands.py:181 globalCommands.py:191
#: globalCommands.py:711 globalCommands.py:772 globalCommands.py:782
#: globalCommands.py:792 gui\settingsDialogs.py:876 keyboardHandler.py:297
#: synthSettingsRing.py:74 virtualBuffers\__init__.py:775
msgid "on"
msgstr "activé"

#: appModules\winamp.py:79 appModules\winamp.py:89 globalCommands.py:43
#: globalCommands.py:168 globalCommands.py:178 globalCommands.py:188
#: globalCommands.py:583 globalCommands.py:708 globalCommands.py:769
#: globalCommands.py:779 globalCommands.py:789 gui\settingsDialogs.py:628
#: gui\settingsDialogs.py:876 keyboardHandler.py:297 synthSettingsRing.py:74
#: virtualBuffers\__init__.py:775
msgid "off"
msgstr "désactivé"

#: aria.py:69
msgid "banner"
msgstr "bannière"

#: aria.py:70
msgid "complementary"
msgstr "Complémentaire"

#: aria.py:71
msgid "content info"
msgstr "information sur le contenu"

#: aria.py:72
msgid "main"
msgstr "principal"

#: aria.py:73
msgid "navigation"
msgstr "navigation"

#: aria.py:74
msgid "search"
msgstr "recherche"

#: braille.py:28
msgid "Arabic grade 1"
msgstr "Arabe grade 1"

#: braille.py:29
msgid "Bulgarian 8 dot computer braille"
msgstr "Bulgare: Braille informatique 8 points"

#: braille.py:30
msgid "Welsh grade 1"
msgstr "Galois grade 1"

#: braille.py:31
msgid "Welsh grade 2"
msgstr "Galois grade 2"

#: braille.py:32
msgid "Czech grade 1"
msgstr "Tchèque grade 1"

#: braille.py:33
msgid "Danish grade 1"
msgstr "Danois grade 1"

#: braille.py:34
msgid "German 8 dot computer braille"
msgstr "Allemand: Braille informatique 8 points"

#: braille.py:35
msgid "German grade 0"
msgstr "Allemand grade 0"

#: braille.py:36
msgid "German grade 1"
msgstr "Allemand grade 1"

#: braille.py:37
msgid "German grade 2"
msgstr "Allemand grade 2"

#: braille.py:38
msgid "English (U.K.) grade 1"
msgstr "Anglais (U.K.) grade 1"

#: braille.py:39
msgid "English (U.K.) grade 2"
msgstr "Anglais (U.K.) grade 2"

#: braille.py:40
msgid "English (U.S.) 6 dot computer braille"
msgstr "Anglais américain: Braille informatique 6 points"

#: braille.py:41
msgid "English (U.S.) 8 dot computer braille"
msgstr "Anglais américain: Braille informatique 8 points"

#: braille.py:42
msgid "English (U.S.) grade 1"
msgstr "Anglais américain: grade 1"

#: braille.py:43
msgid "English (U.S.) grade 2"
msgstr "Anglais américain: grade 2"

#: braille.py:44
msgid "Spanish grade 1"
msgstr "Espagnol grade 1"

#: braille.py:45
msgid "Finnish 8 dot computer braille"
msgstr "Finnois: Braille informatique 8 points"

#: braille.py:46
msgid "French (Canada) grade 1"
msgstr "Français canadien grade 1"

#: braille.py:47
msgid "French (Canada) grade 2"
msgstr "Français canadien grade 2"

#: braille.py:48
msgid "French (unified) 6 dot computer braille"
msgstr "Français unifié: Braille littéraire 6 points"

#: braille.py:49
msgid "French (unified) 8 dot computer braille"
msgstr "Français unifié: Braille informatique 8 points"

#: braille.py:50
msgid "French (unified) Grade 2"
msgstr "Français (France) abrégé"

#: braille.py:51
msgid "Greek (Greece) grade 1"
msgstr "Grec (Grèce) grade 1"

#: braille.py:52
msgid "Ethiopic grade 1"
msgstr "Éthiopien grade 1"

#: braille.py:53
msgid "Hebrew 8 dot computer braille"
msgstr "Hébreux: Braille informatique 8 points"

#: braille.py:54
msgid "Hindi grade 1"
msgstr "Hindi grade 1"

#: braille.py:55
msgid "Croatian 8 dot computer braille"
msgstr "Croate: Braille informatique 8 points"

#: braille.py:56
msgid "Hungarian 8 dot computer braille"
msgstr "Hongrois: Braille informatique 8 points"

#: braille.py:57
msgid "Italian grade 1"
msgstr "Italien grade 1"

#: braille.py:58
msgid "Latvian grade 1"
msgstr "Latvian grade 1"

#: braille.py:59
msgid "Dutch (Belgium) grade 1"
msgstr "Néerlandais (Belgique) grade 1"

#: braille.py:60
msgid "Dutch (netherlands) grade 1"
msgstr "Néerlandais (Pays-Bas) grade 1"

#: braille.py:61
msgid "Norwegian 8 dot computer braille"
msgstr "Norvégien: Braille informatique 8 points"

#: braille.py:62
msgid "Norwegian grade 0"
msgstr "Norvégien grade 0"

#: braille.py:63
msgid "Norwegian grade 1"
msgstr "Norvégien grade 1"

#: braille.py:64
msgid "Norwegian grade 2"
msgstr "Norvégien grade 2"

#: braille.py:65
msgid "Norwegian grade 3"
msgstr "Norvégien grade 3"

#: braille.py:66
msgid "Polish grade 1"
msgstr "Polonais grade 1"

#: braille.py:67
msgid "Portuguese grade 1"
msgstr "Portugais grade 1"

#: braille.py:68
msgid "Russian grade 1"
msgstr "Russe grade 1"

#: braille.py:69
msgid "Swedish grade 1"
msgstr "Suédois grade 1"

#: braille.py:70
msgid "Slovak"
msgstr "Slovaque"

#: braille.py:71
msgid "Slovene grade 1"
msgstr "Slovène grade 1"

#: braille.py:72
msgid "Serbian grade 1"
msgstr "Serbe grade 1"

#: braille.py:73
msgid "Turkish grade 1"
msgstr "Turc grade 1"

#: braille.py:74
msgid "Unified English Braille Code grade 1"
msgstr "Braille anglais unifié grade 1"

#: braille.py:75
msgid "Unified English Braille Code grade 2"
msgstr "Braille anglais unifié grade 2"

#: braille.py:76
msgid "Chinese (Hong Kong, Cantonese)"
msgstr "Chinois (Hong Kong, Cantonais)"

#: braille.py:77
msgid "Chinese (Taiwan, Mandarin)"
msgstr "Chinois (Taiwan, Mandarin)"

#: braille.py:81
msgid "edt"
msgstr "éd"

#: braille.py:82
msgid "lst"
msgstr "lst"

#: braille.py:83
msgid "mnubar"
msgstr "bmnu"

#: braille.py:84
msgid "mnu"
msgstr "mnu"

#: braille.py:85
msgid "btn"
msgstr "btn"

#: braille.py:86
msgid "chk"
msgstr "chk"

#: braille.py:87
msgid "rbtn"
msgstr "btnr"

#: braille.py:88
msgid "cbo"
msgstr "LstDér"

#: braille.py:89
msgid "lnk"
msgstr "ln"

#: braille.py:90
msgid "dlg"
msgstr "dlg"

#: braille.py:91
msgid "tv"
msgstr "arb"

#: braille.py:92
msgid "tb"
msgstr "tb"

#: braille.py:97
msgid "(x)"
msgstr "(x)"

#: braille.py:99
msgid "(-)"
msgstr "( )"

#: braille.py:101
msgid "sel"
msgstr "sél"

#: braille.py:103
msgid "submnu"
msgstr "smnu"

#: braille.py:105
msgid "..."
msgstr "..."

#: braille.py:107
msgid "-"
msgstr "-"

#: braille.py:109
msgid "+"
msgstr "+"

#: braille.py:111
msgid "ro"
msgstr "ln"

#: braille.py:115
msgid "( )"
msgstr "( )"

#: braille.py:249 speech.py:764
msgid "not %s"
msgstr "non %s"

#: braille.py:263 speech.py:772
msgid "%s of %s"
msgstr "%s sur %s"

#: braille.py:268
msgid "lv %s"
msgstr "nv %s"

#: brailleDisplayDrivers\alvaBC6.py:44
msgid "ALVA BC640/680 series"
msgstr "ALVA séries BC640/680"

#: brailleDisplayDrivers\baum.py:87
msgid "Baum/HumanWare/APH braille displays"
msgstr "Terminaux braille Baum/HumanWare/APH"

#: brailleDisplayDrivers\freedomScientific.py:90
msgid "Freedom Scientific Focus/PAC Mate series"
msgstr "Freedom Scientific séries Focus/PAC Mate"

#: brailleDisplayDrivers\freedomScientific.py:97
msgid "display scroll"
msgstr "défilement affichage"

#: brailleDisplayDrivers\freedomScientific.py:98
msgid "line scroll"
msgstr "défilement ligne"

#: brailleDisplayDrivers\handyTech.py:47
msgid "Handy Tech braille displays"
msgstr "Terminaux braille Handy Tech"

#: brailleDisplayDrivers\handyTech.py:84
msgid "Show the Handy Tech driver configuration window."
msgstr "Afficher la fenêtre de configuration du pilote Handy Tech."

#: brailleDisplayDrivers\lilli.py:43
msgid "MDV Lilli"
msgstr "MDV Lilli"

#: brailleDisplayDrivers\noBraille.py:13
msgid "No braille"
msgstr "pas de braille"

#: characterProcessing.py:125 synthDrivers\_espeak.py:309
msgid "none"
msgstr "aucun"

#: characterProcessing.py:126
msgid "some"
msgstr "quelques-uns"

#: characterProcessing.py:127
msgid "most"
msgstr "la plupart"

#: characterProcessing.py:128
msgid "all"
msgstr "tous"

#: characterProcessing.py:129 controlTypes.py:275 textInfos\__init__.py:136
msgid "character"
msgstr "caractère"

#: colors.py:75
msgid "unknown color"
msgstr "couleur inconnue"

#: colors.py:88
msgid "black"
msgstr "noir"

#: colors.py:89
msgid "green"
msgstr "vert"

#: colors.py:90
msgid "light grey"
msgstr "gris clair"

#: colors.py:91
msgid "lime"
msgstr "citron"

#: colors.py:92
msgid "grey"
msgstr "gris"

#: colors.py:93
msgid "olive"
msgstr "vert olive"

#: colors.py:94
msgid "white"
msgstr "blanc"

#: colors.py:95
msgid "yellow"
msgstr "jaune"

#: colors.py:96
msgid "dark red"
msgstr "rouge foncé"

#: colors.py:97
msgid "navy blue"
msgstr "bleu marine"

#: colors.py:98
msgid "red"
msgstr "rouge"

#: colors.py:99
msgid "blue"
msgstr "bleu"

#: colors.py:100
msgid "purple"
msgstr "violet"

#: colors.py:101
msgid "teal"
msgstr "sarcelle"

#: colors.py:102
msgid "fuchsia"
msgstr "fuchia"

#: colors.py:103
msgid "aqua"
msgstr "bleu-vert"

#: colors.py:105
msgid "orange"
msgstr "orange"

#: compoundDocuments.py:401 globalCommands.py:119 speech.py:287 speech.py:429
#: speech.py:442 virtualBuffers\__init__.py:682
msgid "selected %s"
msgstr "sélectionné %s"

#: config\__init__.py:21
msgid "Badly formed configuration file"
msgstr "Fichier de configuration %s mal formaté"

#: config\__init__.py:36
msgid "%s: %s, defaulting to %s"
msgstr "%s: %s, valeur par défaut %s"

#: config\__init__.py:187
msgid "Error parsing configuration file: %s"
msgstr "Erreur dans le fichier de configuration: %s"

#: config\__init__.py:194
msgid ""
"Errors in configuration file '%s':\n"
"%s"
msgstr ""
"Erreurs dans le fichier de configuration '%s':\n"
"%s"

#: controlTypes.py:182
msgid "unknown"
msgstr "inconnu"

#: controlTypes.py:183
msgid "window"
msgstr "fenêtre"

#: controlTypes.py:184
msgid "title bar"
msgstr "barre de titre"

#: controlTypes.py:185
msgid "pane"
msgstr "sous-fenêtre"

#: controlTypes.py:186
msgid "dialog"
msgstr "dialogue"

#: controlTypes.py:187
msgid "check box"
msgstr "case à cocher"

#: controlTypes.py:188
msgid "radio button"
msgstr "bouton radio"

#: controlTypes.py:189
msgid "text"
msgstr "texte"

#: controlTypes.py:190
msgid "edit"
msgstr "édition"

#: controlTypes.py:191
msgid "button"
msgstr "bouton"

#: controlTypes.py:192
msgid "menu bar"
msgstr "barre de menu"

#: controlTypes.py:193
msgid "menu item"
msgstr "élément de menu"

#: controlTypes.py:194 controlTypes.py:301
msgid "menu"
msgstr "menu"

#: controlTypes.py:195
msgid "combo box"
msgstr "liste déroulante"

#: controlTypes.py:196
msgid "list"
msgstr "liste"

#: controlTypes.py:197
msgid "list item"
msgstr "élément de liste"

#: controlTypes.py:198
msgid "graphic"
msgstr "graphique"

#: controlTypes.py:199
msgid "help balloon"
msgstr "bulle d'aide"

#: controlTypes.py:200
msgid "tool tip"
msgstr "suggestion"

#: controlTypes.py:201 speech.py:1069
msgid "link"
msgstr "lien"

#: controlTypes.py:202
msgid "tree view"
msgstr "Arborescence"

#: controlTypes.py:203
msgid "tree view item"
msgstr "élément d'Arborescence"

#: controlTypes.py:204
msgid "tab"
msgstr "onglet"

#: controlTypes.py:205
msgid "tab control"
msgstr "onglet"

#: controlTypes.py:206
msgid "slider"
msgstr "Potentiomètre"

#: controlTypes.py:207
msgid "progress bar"
msgstr "barre de progression"

#: controlTypes.py:208
msgid "scroll bar"
msgstr "barre de défilement"

#: controlTypes.py:209
msgid "status bar"
msgstr "barre d'état"

#: controlTypes.py:210
msgid "table"
msgstr "tableau"

#: controlTypes.py:211
msgid "cell"
msgstr "cellule"

#: controlTypes.py:212
msgid "column"
msgstr "colonne"

#: controlTypes.py:213
msgid "row"
msgstr "ligne"

#: controlTypes.py:214
msgid "frame"
msgstr "cadre"

#: controlTypes.py:215
msgid "tool bar"
msgstr "barre d'outils"

#: controlTypes.py:216
msgid "column header"
msgstr "titre de colonne"

#: controlTypes.py:217
msgid "row header"
msgstr "titre de ligne"

#: controlTypes.py:218
msgid "drop down button"
msgstr "bouton poussoir"

#: controlTypes.py:219
msgid "clock"
msgstr "horloge"

#: controlTypes.py:220
msgid "separator"
msgstr "séparateur"

#: controlTypes.py:221
msgid "form"
msgstr "formulaire"

#: controlTypes.py:222
msgid "heading"
msgstr "titre"

#: controlTypes.py:223
msgid "heading 1"
msgstr "titre de niveau 1 "

#: controlTypes.py:224
msgid "heading 2"
msgstr "titre de niveau 2 "

#: controlTypes.py:225
msgid "heading 3"
msgstr "titre de niveau 3 "

#: controlTypes.py:226
msgid "heading 4"
msgstr "titre de niveau 4 "

#: controlTypes.py:227
msgid "heading 5"
msgstr "titre de niveau 5 "

#: controlTypes.py:228
msgid "heading 6"
msgstr "titre de niveau 6 "

#: controlTypes.py:229 textInfos\__init__.py:139
msgid "paragraph"
msgstr "paragraphe"

#: controlTypes.py:230
msgid "block quote"
msgstr "balise de citation"

#: controlTypes.py:231
msgid "table header"
msgstr "titre de tableau"

#: controlTypes.py:232
msgid "table body"
msgstr "corps de tableau"

#: controlTypes.py:233
msgid "table footer"
msgstr "pied de tableau"

#: controlTypes.py:234
msgid "document"
msgstr "document"

#: controlTypes.py:235
msgid "animation"
msgstr "animation"

#: controlTypes.py:236
msgid "application"
msgstr "application"

#: controlTypes.py:237
msgid "box"
msgstr "boîte"

#: controlTypes.py:238
msgid "grouping"
msgstr "groupage"

#: controlTypes.py:239
msgid "property page"
msgstr "Propriétés"

#: controlTypes.py:240
msgid "canvas"
msgstr "Cannevas"

#: controlTypes.py:241
msgid "caption"
msgstr "légende"

#: controlTypes.py:242
msgid "check menu item"
msgstr "élément de menu a cocher"

#: controlTypes.py:243
msgid "date edit"
msgstr "champ date"

#: controlTypes.py:244
msgid "icon"
msgstr "icône"

#: controlTypes.py:245
msgid "directory pane"
msgstr "sous-fenêtre de répertoire"

#: controlTypes.py:247
msgid "end note"
msgstr "note de fin"

#: controlTypes.py:248
msgid "footer"
msgstr "titre en bas de page"

#: controlTypes.py:249
msgid "foot note"
msgstr "note de bas de page"

#: controlTypes.py:250
msgid "glass pane"
msgstr "sous-fenêtre miroir"

#: controlTypes.py:251
msgid "header"
msgstr "titre"

#: controlTypes.py:252
msgid "image map"
msgstr "image"

#: controlTypes.py:253
msgid "input window"
msgstr "Fenêtre de saisie"

#: controlTypes.py:254
msgid "label"
msgstr "étiquette"

#: controlTypes.py:255
msgid "note"
msgstr "note"

#: controlTypes.py:256
msgid "page"
msgstr "page"

#: controlTypes.py:257
msgid "radio menu item"
msgstr "élément de menu radio"

#: controlTypes.py:258
msgid "layered pane"
msgstr "sous-fenêtre en couches"

#: controlTypes.py:259
msgid "redundant object"
msgstr "objet redondant"

#: controlTypes.py:260
msgid "root pane"
msgstr "fenêtre racine"

#: controlTypes.py:261
msgid "edit bar"
msgstr "barre d'édition"

#: controlTypes.py:262
msgid "terminal"
msgstr "terminal"

#: controlTypes.py:263
msgid "rich edit"
msgstr "édition riche"

#: controlTypes.py:264
msgid "ruler"
msgstr "règle de format"

#: controlTypes.py:265
msgid "scroll pane"
msgstr "fenêtre de défilement"

#: controlTypes.py:266
msgid "section"
msgstr "section"

#: controlTypes.py:267
msgid "shape"
msgstr "forme"

#: controlTypes.py:268
msgid "split pane"
msgstr "panneau de séparation"

#: controlTypes.py:269
msgid "view port"
msgstr "fenêtre"

#: controlTypes.py:270
msgid "tear off menu"
msgstr "menu détachable"

#: controlTypes.py:271
msgid "text frame"
msgstr "cadre de texte"

#: controlTypes.py:272
msgid "toggle button"
msgstr "bascule"

#: controlTypes.py:273
msgid "border"
msgstr "bordure"

#: controlTypes.py:274
msgid "caret"
msgstr "curseur"

#: controlTypes.py:276
msgid "chart"
msgstr "diagramme"

#: controlTypes.py:277
msgid "cursor"
msgstr "curseur"

#: controlTypes.py:278
msgid "diagram"
msgstr "diagramme"

#: controlTypes.py:279
msgid "dial"
msgstr "cadran"

#: controlTypes.py:280
msgid "drop list"
msgstr "liste déroulante"

#: controlTypes.py:281
msgid "split button"
msgstr "bouton"

#: controlTypes.py:282
msgid "menu button"
msgstr "bouton de menu"

#: controlTypes.py:283
msgid "drop down button grid"
msgstr "grille de boutons poussoirs"

#: controlTypes.py:284
msgid "equation"
msgstr "équation"

#: controlTypes.py:285
msgid "grip"
msgstr "poignée"

#: controlTypes.py:286
msgid "hot key field"
msgstr "champ de saisie rapide"

#: controlTypes.py:287
msgid "indicator"
msgstr "indicateur"

#: controlTypes.py:288
msgid "spin button"
msgstr "bouton rotatif"

#: controlTypes.py:289
msgid "sound"
msgstr "son"

#: controlTypes.py:290
msgid "white space"
msgstr "espace blanc"

#: controlTypes.py:291
msgid "tree view button"
msgstr "bouton d'Arborescence"

#: controlTypes.py:292
msgid "IP address"
msgstr "Adresse I P"

#: controlTypes.py:293
msgid "desktop icon"
msgstr "icône du bureau"

#: controlTypes.py:294 controlTypes.py:318
msgid "alert"
msgstr "alerte"

#: controlTypes.py:295
msgid "IFrame"
msgstr "cadre interne"

#: controlTypes.py:296
msgid "desktop pane"
msgstr "sous-fenêtre du bureau"

#: controlTypes.py:297
msgid "option pane"
msgstr "sous-fenêtre d'options"

#: controlTypes.py:298
msgid "color chooser"
msgstr "sélecteur de couleur"

#: controlTypes.py:299
msgid "file chooser"
msgstr "sélecteur de fichiers"

#: controlTypes.py:300
msgid "filler"
msgstr "remplissage"

#: controlTypes.py:302
msgid "panel"
msgstr "panneau"

#: controlTypes.py:303
msgid "password edit"
msgstr "édition du mot de passe"

#: controlTypes.py:304
msgid "font chooser"
msgstr "sélecteur de police"

#: controlTypes.py:305 textInfos\__init__.py:138
msgid "line"
msgstr "souligné"

#: controlTypes.py:306
msgid "font name"
msgstr "nom de la police"

#: controlTypes.py:307
msgid "font size"
msgstr "taille de la police"

#: controlTypes.py:308 speech.py:1021
msgid "bold"
msgstr "gras"

#: controlTypes.py:309
msgid "ITALIC"
msgstr "italique"

#: controlTypes.py:310
msgid "underline"
msgstr "souligné"

#: controlTypes.py:311
msgid "foreground color"
msgstr "couleur d'avant-plan"

#: controlTypes.py:312
msgid "background color"
msgstr "couleur d'arrière-plan"

#: controlTypes.py:313 speech.py:1043
msgid "superscript"
msgstr "exposant"

#: controlTypes.py:314 speech.py:1045
msgid "subscript"
msgstr "indice"

#: controlTypes.py:315
msgid "style"
msgstr "style"

#: controlTypes.py:316
msgid "indent"
msgstr "indentation"

#: controlTypes.py:317
msgid "alignment"
msgstr "alignement"

#: controlTypes.py:319
msgid "data grid"
msgstr "grille de données"

#: controlTypes.py:320
msgid "data item"
msgstr "élément de données"

#: controlTypes.py:321
msgid "header item"
msgstr "élément de titre"

#: controlTypes.py:322
msgid "thumb control"
msgstr "molette"

#: controlTypes.py:323
msgid "calendar"
msgstr "calendrier"

#: controlTypes.py:327
msgid "unavailable"
msgstr "non disponible"

#: controlTypes.py:328
msgid "focused"
msgstr "focalisé"

#: controlTypes.py:329
msgid "selected"
msgstr "sélectionné"

#: controlTypes.py:330
msgid "busy"
msgstr "occupé"

#: controlTypes.py:331
msgid "pressed"
msgstr "enfoncé"

#: controlTypes.py:332
msgid "checked"
msgstr "coché"

#: controlTypes.py:333
msgid "half checked"
msgstr "semi-coché"

#: controlTypes.py:334
msgid "read only"
msgstr "en lecture seule"

#: controlTypes.py:335
msgid "expanded"
msgstr "développé"

#: controlTypes.py:336
msgid "collapsed"
msgstr "réduit"

#: controlTypes.py:337
msgid "invisible"
msgstr "invisible"

#: controlTypes.py:338
msgid "visited"
msgstr "visité"

#: controlTypes.py:339
msgid "linked"
msgstr "attaché"

#: controlTypes.py:340
msgid "subMenu"
msgstr "sous-menu"

#: controlTypes.py:341
msgid "protected"
msgstr "protégé"

#: controlTypes.py:342
msgid "required"
msgstr "obligatoire"

#: controlTypes.py:343
msgid "defunct"
msgstr "défunt"

#: controlTypes.py:344
msgid "invalid entry"
msgstr "saisie incorrecte"

#: controlTypes.py:345
msgid "modal"
msgstr "modal"

#: controlTypes.py:346
msgid "has auto complete"
msgstr "avec autocomplétion"

#: controlTypes.py:347
msgid "multi line"
msgstr "multiligne"

#: controlTypes.py:348
msgid "iconified"
msgstr "iconisé"

#: controlTypes.py:349
msgid "off screen"
msgstr "hors écran"

#: controlTypes.py:350
msgid "selectable"
msgstr "sélectionnable"

#: controlTypes.py:351
msgid "focusable"
msgstr "focalisable"

#: controlTypes.py:352
msgid "clickable"
msgstr "cliquable"

#: controlTypes.py:353
msgid "editable"
msgstr "éditable"

#: controlTypes.py:354
msgid "checkable"
msgstr "cochable"

#: controlTypes.py:355
msgid "draggable"
msgstr "glissable"

#: controlTypes.py:356
msgid "dragging"
msgstr "glissage en cours"

#: controlTypes.py:357
msgid "drop target"
msgstr "déposer"

#: controlTypes.py:358
msgid "sorted"
msgstr "trié"

#: controlTypes.py:359
msgid "sorted ascending"
msgstr "Trié par ordre croissant"

#: controlTypes.py:360
msgid "sorted descending"
msgstr "trié par ordre décroissant"

#: core.py:84
msgid ""
"Your gesture map file contains errors.\n"
"More details about the errors can be found in the log file."
msgstr ""
"Votre fichier de définition de gestes contient des erreurs.\n"
"Vous trouverez plus de détails sur les erreurs dans le fichier journal"

#: core.py:86
msgid "gesture map File Error"
msgstr "Erreur dans le fichier de définition de gestes"

#: core.py:175
msgid "Loading NVDA. Please wait..."
msgstr "Chargement de NVDA. veuillez patienter..."

#: core.py:268
msgid "NVDA started"
msgstr "NVDA démarré"

#: cursorManager.py:80
msgid "Find"
msgstr "Recherche"

#: cursorManager.py:80
msgid "Type the text you wish to find"
msgstr "Entrez le texte à rechercher"

#: cursorManager.py:98
msgid "Find Error"
msgstr "Erreur de recherche"

#: cursorManager.py:98
msgid "text \"%s\" not found"
msgstr "Texte \"%s\" non trouvé"

#: cursorManager.py:103
msgid "find a text string from the current cursor position"
msgstr "trouver un texte à partir de la position courante du curseur"

#: cursorManager.py:110
msgid ""
"find the next occurrence of the previously entered text string from the "
"current cursor's position"
msgstr ""
"trouver l'occurrence suivante du texte recherché à partir de la position "
"courante du curseur"

#: cursorManager.py:117
msgid ""
"find the previous occurrence of the previously entered text string from the "
"current cursor's position"
msgstr ""
"trouver l'occurrence précédente du texte recherché à partir de la "
"position courante du curseur"

#: cursorManager.py:244 globalCommands.py:117
msgid "no selection"
msgstr "aucune sélection"

#: cursorManager.py:247
msgid "copied to clipboard"
msgstr "copié dans le presse-papier"

#: globalCommands.py:44
msgid "input help %s"
msgstr "aide des commandes %s"

#: globalCommands.py:45
msgid ""
"Turns input help on or off. When on, any input such as pressing a key on the "
"keyboard will tell you what script is associated with that input, if any."
msgstr ""
"Bascule de l'aide des commandes. Quand l'aide est activée, l'appui sur une "
"touche annonce le script associé s'il existe."

#: globalCommands.py:52
msgid "Sleep mode off"
msgstr "Mode veille désactivée"

#: globalCommands.py:57
msgid "Sleep mode on"
msgstr "Mode veille activée"

#: globalCommands.py:58
msgid "Toggles  sleep mode on and off for  the active application."
msgstr "Bascule de la mise en veille pour l'application en cours."

#: globalCommands.py:75
msgid ""
"Reports the current line under the application cursor. Pressing this key "
"twice will spell the current line"
msgstr ""
"Annonce la ligne courante sous le curseur d'application. Si cette touche est "
"pressée deux fois, la ligne sera épelée"

#: globalCommands.py:78
msgid "left click"
msgstr "click gauche"

#: globalCommands.py:81
msgid "Clicks the left mouse button once at the current mouse position"
msgstr "simple click gauche de la souris à sa position courante"

#: globalCommands.py:84
msgid "right click"
msgstr "click droit"

#: globalCommands.py:87
msgid "Clicks the right mouse button once at the current mouse position"
msgstr "simple click droit de la souris à sa position courante"

#: globalCommands.py:91
msgid "left mouse button unlock"
msgstr "Déverrouillage du bouton gauche de la souris"

#: globalCommands.py:94
msgid "left mouse button lock"
msgstr "Verrouillage du bouton gauche de la souris"

#: globalCommands.py:96
msgid "Locks or unlocks the left mouse button"
msgstr "Verrouillage ou déverrouillage du bouton gauche de la souris"

#: globalCommands.py:100
msgid "right mouse button unlock"
msgstr "Déverrouillage du bouton droit de la souris"

#: globalCommands.py:103
msgid "right mouse button lock"
msgstr "Verrouillage du bouton droit de la souris"

#: globalCommands.py:105
msgid "Locks or unlocks the right mouse button"
msgstr "Verrouillage ou déverrouillage du bouton droit de la souris"

#: globalCommands.py:120
msgid ""
"Announces the current selection in edit controls and documents. If there is "
"no selection it says so."
msgstr ""
"Annonce la sélection en cours dans une zone d'édition ou un document. "
"Indique également s'il n'y a aucune sélection."

#: globalCommands.py:128
msgid ""
"If pressed once, reports the current time. If pressed twice, reports the "
"current date"
msgstr ""
"Une simple pression sur cette touche annonce l'heure, une double pression "
"annonce la date"

#: globalCommands.py:133 globalCommands.py:142 globalCommands.py:151
#: globalCommands.py:160
msgid "No settings"
msgstr "Pas de paramètres"

#: globalCommands.py:137
msgid "Increases the currently active setting in the synth settings ring"
msgstr ""
"augmente le paramètre courant dans la liste des paramètres synthétiseur"

#: globalCommands.py:146
msgid "Decreases the currently active setting in the synth settings ring"
msgstr ""
"diminue le paramètre courant dans la liste des paramètres synthétiseur"

#: globalCommands.py:155
msgid "Moves to the next available setting in the synth settings ring"
msgstr "Va au paramètre suivant dans la liste des paramètres synthétiseur"

#: globalCommands.py:164
msgid "Moves to the previous available setting in the synth settings ring"
msgstr ""
"Va au paramètre précédent dans la liste des paramètres synthétiseur"

#: globalCommands.py:173
msgid "speak typed characters"
msgstr "écho clavier par caractère"

#: globalCommands.py:174
msgid "Toggles on and off the speaking of typed characters"
msgstr "Bascule de l'éco clavier par caractère"

#: globalCommands.py:183
msgid "speak typed words"
msgstr "écho clavier par mot"

#: globalCommands.py:184
msgid "Toggles on and off the speaking of typed words"
msgstr "Bascule de l'écho clavier par mot"

#: globalCommands.py:193
msgid "speak command keys"
msgstr "écho des touches de commande"

#: globalCommands.py:194
msgid ""
"Toggles on and off the speaking of typed keys, that are not specifically "
"characters"
msgstr "Bascule de l'écho clavier des touches qui ne sont pas des caractères"

#: globalCommands.py:205
msgid "symbol level %s"
msgstr "niveau de symbole %s"

#: globalCommands.py:206
msgid ""
"Cycles through speech symbol levels which determine what symbols are spoken"
msgstr ""
"Bascule du niveau d'annonce des symboles pour déterminer quels symboles "
"seront annoncés"

#: globalCommands.py:221
msgid "object has no location"
msgstr "L'objet n'a pas de position"

#: globalCommands.py:227
msgid "Moves the mouse pointer to the current navigator object"
msgstr "Déplace le pointeur de la souris vers l'objet courant"

#: globalCommands.py:230
msgid "Move navigator object to mouse"
msgstr "Déplace l'objet navigateur vers la souris"

#: globalCommands.py:234
msgid ""
"Sets the navigator object to the current object under the mouse pointer and "
"speaks it"
msgstr ""
"Amène l'objet navigateur à l'objet actuellement sous le pointeur de la "
"souris et le lit"

#: globalCommands.py:247
msgid "No flat review for this object"
msgstr "pas de revue à plat pour cet objet"

#: globalCommands.py:248
msgid ""
"Moves to flat review for the screen (or document if currently inside one) "
"and positions the review cursor at the location of the current object"
msgstr ""
"Active le mode revue à plat pour l'écran ou le document dans lequel on se "
"trouve et positionne le curseur de revue sur l'objet courant"

#: globalCommands.py:260
msgid "No object at flat review position"
msgstr "Aucun objet à la position de revue à plat"

#: globalCommands.py:261
msgid ""
"Moves to the object represented by the text at the position of the review "
"cursor within flat review"
msgstr ""
"Va à l'objet correspondant au texte à la position du curseur de revue en "
"mode revue à plat"

#: globalCommands.py:266 globalCommands.py:300 globalCommands.py:349
#: globalCommands.py:363 globalCommands.py:377 globalCommands.py:391
#: globalCommands.py:405
msgid "no navigator object"
msgstr "pas d'objet navigateur"

#: globalCommands.py:292 globalCommands.py:730
msgid "%s copied to clipboard"
msgstr "%s copié dans le presse-papier"

#: globalCommands.py:295
msgid ""
"Reports the current navigator object. Pressing twice spells this information,"
"and pressing three times Copies name and value of this  object to the "
"clipboard"
msgstr ""
"annnonce l'objet navigateur courant. Deux pression épellent l'information, "
"trois pressions copient le nom et le contenu de l'objet dans le presse-papier"

#: globalCommands.py:303
msgid "No location information for navigator object"
msgstr "pas d'information de position pour l'objet navigateur"

#: globalCommands.py:307
msgid "No location information for screen"
msgstr "pas d'information de position pour cet écran"

#: globalCommands.py:313
msgid ""
"Object edges positioned %.1f per cent from left edge of screen, %.1f per "
"cent from top edge of screen, width is %.1f per cent of screen, height is %."
"1f per cent of screen"
msgstr ""
"Limites de l'objet positionnées %.1f pour cent de la gauche de l'écran, %."
"1f pour cent du haut de l'écran, sa largeur est de %.1f pour cent de l'é"
"cran, sa hauteur est de %.1f pour cent de l'écran"

#: globalCommands.py:314
msgid "Reports the hight, width and position of the current navigator object"
msgstr "Annonce la hauteur, largeur et position de l'objet navigateur courant"

#: globalCommands.py:323
msgid "move to focus"
msgstr "aller au focus"

#: globalCommands.py:325
msgid ""
"Sets the navigator object to the current focus, and the review cursor to the "
"position of the caret inside it, if possible."
msgstr ""
"Amène l'objet navigateur au focus courant et le curseur de revue au curseur "
"système si possible"

#: globalCommands.py:330 globalCommands.py:677
msgid "no focus"
msgstr "pas de focus"

#: globalCommands.py:332
msgid "move focus"
msgstr "déplacer le focus"

#: globalCommands.py:339
msgid "no caret"
msgstr "pas de curseur"

#: globalCommands.py:344
msgid ""
"Pressed once Sets the keyboard focus to the navigator object, pressed twice "
"sets the system caret to the position of the review cursor"
msgstr ""
"Une pression amène le focus clavier à l'objet navigateur courant, deux "
"pressions amènent le curseur système au curseur de revue."

#: globalCommands.py:357
msgid "No parents"
msgstr "pas d'objet  parent"

#: globalCommands.py:358
msgid "Moves the navigator object to the object containing it"
msgstr "Déplace l'objet navigateur vers l'objet le contenant"

#: globalCommands.py:371
msgid "No next"
msgstr "pas d'objet suivant"

#: globalCommands.py:372
msgid "Moves the navigator object to the next object"
msgstr "Déplace l'objet navigateur vers l'objet suivant"

#: globalCommands.py:385
msgid "No previous"
msgstr "pas d'objet précédent"

#: globalCommands.py:386
msgid "Moves the navigator object to the previous object"
msgstr "Déplace l'objet navigateur vers l'objet précédent"

#: globalCommands.py:399
msgid "No children"
msgstr "pas d'objet enfant"

#: globalCommands.py:400
msgid "Moves the navigator object to the first object it contains"
msgstr "Déplace l'objet navigateur vers le premier objet qu'il contient"

#: globalCommands.py:410
msgid "No default action"
msgstr "Pas d'action par défaut"

#: globalCommands.py:415
msgid "default action failed"
msgstr "L'action par défaut a échoué"

#: globalCommands.py:418
msgid ""
"Performs the default action on the current navigator object (example: "
"presses it if it is a button)."
msgstr ""
"Exécute l'action par défaut sur l'objet navigateur courant. Par exemple: "
"appuie s'il s'agit d'un bouton"

#: globalCommands.py:424 globalCommands.py:436 globalCommands.py:478
msgid "top"
msgstr "haut"

#: globalCommands.py:426
msgid ""
"Moves the review cursor to the top line of the current navigator object and "
"speaks it"
msgstr ""
"déplace le curseur de revue en haut de l'objet navigateur courant et le lit"

#: globalCommands.py:438
msgid ""
"Moves the review cursor to the previous line of the current navigator object "
"and speaks it"
msgstr ""
"Déplace le curseur de revue sur la ligne précédente de l'objet navigateur "
"courant et la lit"

#: globalCommands.py:448
msgid ""
"Reports the line of the current navigator object where the review cursor is "
"situated. If this key is pressed twice, the current line will be spelled. "
"Pressing three times will spell the line using character descriptions."
msgstr ""
"annonce la ligne de l'objet navigateur courant sur laquelle se trouve le "
"curseur de revue. Si cette touche est pressée deux fois, la ligne est "
"épelée. Si elle est pressée trois fois, la ligne est épelée en code "
"international."

#: globalCommands.py:458 globalCommands.py:466 globalCommands.py:500
msgid "bottom"
msgstr "bas"

#: globalCommands.py:460
msgid ""
"Moves the review cursor to the next line of the current navigator object and "
"speaks it"
msgstr ""
"Déplace le curseur de revue vers la ligne suivante de l'objet navigateur "
"courant et la lit"

#: globalCommands.py:468
msgid ""
"Moves the review cursor to the bottom line of the current navigator object "
"and speaks it"
msgstr ""
"déplace le curseur de revue à la dernière ligne de l'objet navigateur "
"courant et la lit"

#: globalCommands.py:480
msgid ""
"Moves the review cursor to the previous word of the current navigator object "
"and speaks it"
msgstr ""
"déplace le curseur de revue vers le mot précédent de l'objet navigateur "
"courant et le lit"

#: globalCommands.py:490
msgid ""
"Speaks the word of the current navigator object where the review cursor is "
"situated. Pressing twice spells the word. Pressing three times spells the "
"word using character descriptions"
msgstr ""
"annonce le mot de l'objet navigateur courant sur laquelle se trouve le "
"curseur de revue. Si cette touche est pressée deux fois, la ligne est "
"épelée. Si elle est pressée trois fois, la ligne est épelée en code "
"international."

#: globalCommands.py:502
msgid ""
"Moves the review cursor to the next word of the current navigator object and "
"speaks it"
msgstr ""
"déplace le curseur de revue vers le mot suivant de l'objet navigateur "
"courant et le lit"

#: globalCommands.py:512
msgid ""
"Moves the review cursor to the first character of the line where it is "
"situated in the current navigator object and speaks it"
msgstr ""
"Déplace le curseur de revue au premier caractère de la ligne sur laquelle "
"il se trouve dans l'objet navigateur courant et le lit"

#: globalCommands.py:530
msgid ""
"Moves the review cursor to the previous character of the current navigator "
"object and speaks it"
msgstr ""
"déplace le curseur de revue vers le caractère précédent de l'objet "
"navigateur courant et le lit"

#: globalCommands.py:547
msgid ""
"Reports the character of the current navigator object where the review "
"cursor is situated. Pressing twice reports a description or example of that "
"character. Pressing three times reports the numeric value of the character "
"in decimal and hexadecimal"
msgstr ""
"Annonce le caractère de l'objet navigateur courant à la position du "
"curseur de revue. Une double pression donne une description ou un exemple de "
"ce caractère. Une triple pression en donne la valeur numérique."

#: globalCommands.py:565
msgid ""
"Moves the review cursor to the next character of the current navigator "
"object and speaks it"
msgstr ""
"Déplace le curseur de revue vers le caractère suivant de l'objet "
"navigateur courant et le lit"

#: globalCommands.py:576
msgid ""
"Moves the review cursor to the last character of the line where it is "
"situated in the current navigator object and speaks it"
msgstr ""
"Déplace le curseur de revue au dernier caractère de la ligne sur laquelle "
"il se trouve dans l'objet navigateur courant et le lit"

#: globalCommands.py:585
msgid "beeps"
msgstr "bip"

#: globalCommands.py:587
msgid "talk"
msgstr "parole"

#: globalCommands.py:589
msgid "speech mode %s"
msgstr "mode de parole %s"

#: globalCommands.py:591
msgid ""
"Toggles between the speech modes of off, beep and talk. When set to off NVDA "
"will not speak anything. If beeps then NVDA will simply beep each time it "
"its supposed to speak something. If talk then NVDA wil just speak normally."
msgstr ""
"Bascule entre les modes muet, bip et parole.Mode muet: Nvda ne dit rien.Mode "
"bip: Nvda émet des bips au lieu de parler. Mode parole: Nvda parle "
"normalement"

#: globalCommands.py:608
msgid "Moves the focus to the next closest document that contains the focus"
msgstr "Amène le focus au prochain document contenant le focus"

#: globalCommands.py:620
msgid ""
"Toggles between browse mode and focus mode. When in focus mode, keys will "
"pass straight through to the application, allowing you to interact directly "
"with a control. When in browse mode, you can navigate the document with the "
"cursor, quick navigation keys, etc."
msgstr ""
"Bascule entre le mode navigation et le mode formulaire. En mode formulaire, "
"les touches sont passées directement à l'application, vous permettant "
"d'interagir avec elle. En mode navigation, vous pouvez naviguer dans le "
"document avec le curseur, les touches de navigation rapide etc"

#: globalCommands.py:624
msgid "Quits NVDA!"
msgstr "quitter NVDA !"

#: globalCommands.py:628
msgid "Shows the NVDA menu"
msgstr "Affiche le menu NVDA"

#: globalCommands.py:633
msgid ""
"reads from the review cursor  up to end of current text, moving the review "
"cursor as it goes"
msgstr ""
"Lit à partir du curseur de revue jusqu'à la fin du texte en faisant suivre "
"le curseur de revue"

#: globalCommands.py:645
msgid ""
"reads from the system caret up to the end of the text, moving the caret as "
"it goes"
msgstr ""
"lit en partant du curseur système jusqu'à la fin du texteen faisant suivre "
"le curseur système"

#: globalCommands.py:664
msgid "No formatting information"
msgstr "Pas d'information de mise en forme"

#: globalCommands.py:667
msgid ""
"Reports formatting info for the current review cursor position within a "
"document"
msgstr ""
"Annonce les informations de mise en forme à la position actuelle du curseur "
"de revue dans un document"

#: globalCommands.py:678
msgid "reports the object with focus"
msgstr "annonce l'objet ayant le focus"

#: globalCommands.py:698
msgid "No status line found"
msgstr "ligne d'état non trouvée"

#: globalCommands.py:704
msgid "reads the current application status bar and moves the navigator to it"
msgstr ""
"lit la barre d'état de l'application courante et y amène l'objet navigateur"

#: globalCommands.py:713
msgid "Mouse tracking"
msgstr "suivi de la souris"

#: globalCommands.py:714
msgid "Toggles the reporting of information as the mouse moves"
msgstr "Bascule de l'annonce des informations quand la souris se déplace"

#: globalCommands.py:722
msgid "no title"
msgstr "pas de titre"

#: globalCommands.py:731
msgid ""
"Reports the title of the current application or foreground window. If "
"pressed twice, spells the title. If pressed thrice, copies the title to the "
"clipboard"
msgstr ""
"Annonce le titre de l'application en cours ou de la fenêtre en avant-plan. "
"Deux appuis épelle le titre, trois appuis copie le titre dans le presse-"
"papier."

#: globalCommands.py:737
msgid "speaks the current foreground object"
msgstr "Dit l'objet en avant-plan"

#: globalCommands.py:748
msgid ""
"Logs information about the current navigator object which is useful to "
"developers and activates the log viewer so the information can be examined."
msgstr ""
"récupère, pour les développeurs, les informations concernant l'objet "
"navigateur courant puis active la visionneuse de journal pour que "
"l'information puisse être examinée."

#: globalCommands.py:754
msgid "no progress bar updates"
msgstr "aucune mise à jour de barre de progression"

#: globalCommands.py:757
msgid "speak progress bar updates"
msgstr "Suivi vocal des barres de progression"

#: globalCommands.py:760
msgid "beep for progress bar updates"
msgstr "Suivi des barres de progression par des bips"

#: globalCommands.py:763
msgid "beep and speak progress bar updates"
msgstr "Suivi des barres de progression par des bips et vocalement"

#: globalCommands.py:765
msgid ""
"Toggles between beeps, speech, beeps and speech, and off, for reporting "
"progress bar updates"
msgstr ""
"Bascule entre bips, parole, bips et parole, silence pour l'annonce des mises "
"à jour des barres de progression"

#: globalCommands.py:774
msgid "report dynamic content changes"
msgstr "annonce les changements dynamiques de contenu"

#: globalCommands.py:775
msgid ""
"Toggles on and off the reporting of dynamic content changes, such as new "
"text in dos console windows"
msgstr ""
"Bascule de l'annonce de changement dynamique de contenu,tel qu'un nouveau "
"texte dans une fenêtre DOS"

#: globalCommands.py:784
msgid "caret moves review cursor"
msgstr "Le curseur de revue suit le curseur applicatif"

#: globalCommands.py:785
msgid ""
"Toggles on and off the movement of the review cursor due to the caret moving."
msgstr ""
"active ou désactive le suivi du curseur applicatif par le curseur de revue"

#: globalCommands.py:794
msgid "focus moves navigator object"
msgstr "Le focus déplace l'objet navigateur"

#: globalCommands.py:795
msgid ""
"Toggles on and off the movement of the navigator object due to focus changes"
msgstr ""
"bascule du mouvement de l'objet navigateur lié au changement de focus"

#: globalCommands.py:807
msgid "no system battery"
msgstr "Pas de batterie sur cette machine"

#: globalCommands.py:810
msgid "AC power on"
msgstr "Alimentation connectée"

#: globalCommands.py:812
msgid "%d hours and %d minutes remaining"
msgstr "%d heures et %d minutes restantes"

#: globalCommands.py:814
msgid "reports battery status and time remaining if AC is not plugged in"
msgstr ""
"Annonce l'état de la batterie et le temps restant si l'alimentation n'est "
"pas connectée"

#: globalCommands.py:818
msgid "Pass next key through"
msgstr "Passe la touche suivante directement à l'application"

#: globalCommands.py:819
msgid ""
"The next key that is pressed will not be handled at all by NVDA, it will be "
"passed directly through to Windows."
msgstr ""
"La touche suivante ne sera pas traitée par NVDA,elle sera passée "
"directement à Windows"

#: globalCommands.py:824
msgid "Currently running application is %s"
msgstr "l'application en cours d'exécution est %s."

#: globalCommands.py:827
msgid " and currently loaded module is %s"
msgstr "et le module en cours est %s"

#: globalCommands.py:829
msgid ""
"Speaks the filename of the active application along with the name of the "
"currently loaded appModule"
msgstr ""
"Annonce le nom de fichier de l'application en cours ainsi que le script en "
"cours"

#: globalCommands.py:833
msgid "Shows the NVDA general settings dialog"
msgstr "Affiche le dialogue  Paramètres généraux de NVDA"

#: globalCommands.py:837
msgid "Shows the NVDA synthesizer dialog"
msgstr "Affiche le dialogue synthétiseurs de NVDA"

#: globalCommands.py:841
msgid "Shows the NVDA voice settings dialog"
msgstr "Affiche le dialogue paramètres vocaux de NVDA"

#: globalCommands.py:845
msgid "Shows the NVDA keyboard settings dialog"
msgstr "Affiche le dialogue Paramètres du clavier de NVDA"

#: globalCommands.py:849
msgid "Shows the NVDA mouse settings dialog"
msgstr "Affiche le dialogue paramètres de la souris de NVDA"

#: globalCommands.py:853
msgid "Shows the NVDA object presentation settings dialog"
msgstr "Affiche le dialogue présentation des objets de NVDA"

#: globalCommands.py:857
msgid "Shows the NVDA browse mode settings dialog"
msgstr "Affiche le dialogue paramètres du mode navigation de NVDA"

#: globalCommands.py:861
msgid "Shows the NVDA document formatting settings dialog"
msgstr "Affiche le dialogue mise en forme des documents de NVDA"

#: globalCommands.py:865
msgid "Saves the current NVDA configuration"
msgstr "sauvegarde la configuration courante de NVDA"

#: globalCommands.py:869
msgid "loads the saved NVDA configuration, overriding current changes"
msgstr ""
"Recharge la configuration sauvegardée de NVDA, annulant les changements en "
"cours"

#: globalCommands.py:879
msgid "Activates the NVDA Python Console, primarily useful for development"
msgstr ""
"Active la console Python de NVDA, essentiellement utile pour les "
"développeurs"

#: globalCommands.py:884 gui\settingsDialogs.py:1010
msgid "review"
msgstr "revue"

#: globalCommands.py:887 gui\settingsDialogs.py:1010
msgid "focus"
msgstr "focus"

#: globalCommands.py:888
msgid "Braille tethered to %s"
msgstr "Braille suit %s"

#: globalCommands.py:889
msgid "Toggle tethering of braille between the focus and the review position"
msgstr ""
"bascule du suivi braille entre suivi du focus et suivi de curseur de revue"

#: globalCommands.py:897
msgid "There is no text on the clipboard"
msgstr "il n'y a pas de texte dans le presse-papier"

#: globalCommands.py:902
msgid ""
"The clipboard contains a large portion of text. It is %s characters long"
msgstr ""
"Le presse-papier contient une grande quantité de texte: %s caractères."

#: globalCommands.py:903
msgid "Reports the text on the Windows clipboard"
msgstr "Annonce le texte dans le presse-papier"

#: globalCommands.py:907
msgid "Start marked"
msgstr "début marqué"

#: globalCommands.py:908
msgid ""
"Marks the current position of the review cursor as the start of text to be "
"copied"
msgstr ""
"marque la position actuelle du curseur de revue d'écran comme début du "
"texte à copier"

#: globalCommands.py:912
msgid "No start marker set"
msgstr "pas de marque de début"

#: globalCommands.py:916
msgid "The start marker must reside within the same object"
msgstr "La marque de début doit être dans le même objet"

#: globalCommands.py:921
msgid "Review selection copied to clipboard"
msgstr "revue de la sélection copiée dans le presse-papier"

#: globalCommands.py:923
msgid "No text to copy"
msgstr "pas de texte à copier"

#: globalCommands.py:926
msgid ""
"Retrieves the text from the previously set start marker up to and including "
"the current position of the review cursor and copies it to the clipboard"
msgstr ""
"Prend le texte depuis la position de départ marquée précédemment "
"jusqu'à la position actuelle du curseur de revue et le copie dans le presse-"
"papier."

#: globalCommands.py:930
msgid "Scrolls the braille display back"
msgstr "Défilement arrière de l'afficheur braille"

#: globalCommands.py:935
msgid "Scrolls the braille display forward"
msgstr "Défilement avant de l'afficheur braille"

#: globalCommands.py:940
msgid "Routes the cursor to or activates the object under this braille cell"
msgstr ""
"Amène le curseur à cette cellule braille ou active l'objet sous cette "
"cellule braille"

#: globalCommands.py:945
msgid "Moves the braille display to the previous line"
msgstr "Amène l'afficheur braille à la ligne précédente"

#: globalCommands.py:950
msgid "Moves the braille display to the next line"
msgstr "Amène l'afficheur braille à la ligne suivante"

#: globalCommands.py:957
msgid "Plugins reloaded"
msgstr "Plugins rechargés"

#: globalCommands.py:958
msgid ""
"Reloads app modules and global plugins without restarting NVDA, which can be "
"Useful for developers"
msgstr ""
"Recharge les modules applicatifs et les plugins globaux sans redémarrer "
"NVDA, ce qui peut être utile pour les développeurs"

#: gui\__init__.py:125
msgid "configuration applied"
msgstr "Configuration appliquée"

#: gui\__init__.py:129
msgid "Cannot save configuration - NVDA in secure mode"
msgstr ""
"Impossible de sauvegarder la configuration - NVDA est en mode sécurisé"

#: gui\__init__.py:133
msgid "configuration saved"
msgstr "Configuration sauvegardée"

#: gui\__init__.py:135
msgid "Could not save configuration - probably read only file system"
msgstr ""
"Sauvegarde de la configuration impossible: système de fichiers probablement "
"protégé en écriture"

#: gui\__init__.py:135 gui\__init__.py:144 gui\logViewer.py:74
#: gui\settingsDialogs.py:184
msgid "Error"
msgstr "Erreur"

#: gui\__init__.py:144
msgid "Please close  the other NVDA settings dialog first"
msgstr "Veuillez d'abord fermer les autres dialogues de paramètres NVDA"

#: gui\__init__.py:148
msgid "Default dictionary"
msgstr "Dictionnaire par &défaut"

#: gui\__init__.py:151
msgid "Voice dictionary (%s)"
msgstr "Dictionnaire de la voix %s"

#: gui\__init__.py:154
msgid "Temporary dictionary"
msgstr "Dictionnaire temporaire"

#: gui\__init__.py:161
msgid "Are you sure you want to quit NVDA?"
msgstr "Êtes-vous sûr de vouloir quitter NVDA ?"

#: gui\__init__.py:161 gui\__init__.py:315
msgid "Exit NVDA"
msgstr "quitter NVDA"

#: gui\__init__.py:202 gui\__init__.py:301
msgid "About NVDA"
msgstr "À propos de NVDA"

#: gui\__init__.py:237
msgid "&General settings..."
msgstr "Paramètres &généraux..."

#: gui\__init__.py:237 gui\settingsDialogs.py:107
msgid "General settings"
msgstr "Paramètres généraux"

#: gui\__init__.py:239
msgid " the synthesizer to use"
msgstr "Le synthétiseur à utiliser"

#: gui\__init__.py:239
msgid "&Synthesizer..."
msgstr "&Synthétiseur..."

#: gui\__init__.py:241
msgid "&Voice settings..."
msgstr "Paramètres &vocaux..."

#: gui\__init__.py:241
msgid "Choose the voice, rate, pitch and volume  to use"
msgstr "Choisir la voix, le débit, la hauteur et le volume à utiliser"

#: gui\__init__.py:243
msgid "B&raille settings..."
msgstr "Paramètres &braille..."

#: gui\__init__.py:245
msgid "&Keyboard Settings..."
msgstr "Paramètres du &clavier..."

#: gui\__init__.py:245
msgid ""
"Configure keyboard layout, speaking of typed characters, words or command "
"keys"
msgstr ""
"Configurer la disposition du clavier, l'écho clavier (caractère, mot ou "
"touches de commande)"

#: gui\__init__.py:247
msgid "&Mouse settings..."
msgstr "Para&mètres de la souris..."

#: gui\__init__.py:247
msgid "Change reporting of mouse shape and object under mouse"
msgstr "Modifier l'annonce de la forme de la souris, de l'objet sous la souris"

#: gui\__init__.py:249
msgid "Configure how and when the review cursor moves"
msgstr "Configure quand et comment le curseur de revue se déplace"

#: gui\__init__.py:249
msgid "Review &cursor..."
msgstr "Curseur de &revue..."

#: gui\__init__.py:251
msgid "&Object presentation..."
msgstr "Présentation des &objets..."

#: gui\__init__.py:251
msgid "Change reporting of objects"
msgstr "Modifier l'annonce des objets"

#: gui\__init__.py:253
msgid "&Browse mode..."
msgstr "Mode &Navigation..."

#: gui\__init__.py:253
msgid "Change virtual buffers specific settings"
msgstr "Modifier les paramètres spécifiques des tampons virtuels"

#: gui\__init__.py:255
msgid "Change Settings of document properties"
msgstr "modifier l'annonce des propriétés d'un document"

#: gui\__init__.py:255
msgid "Document &formatting..."
msgstr "Mise en &forme des documents..."

#: gui\__init__.py:259
msgid "&Default dictionary..."
msgstr "Dictionnaire par &défaut..."

#: gui\__init__.py:259
msgid ""
"dialog where you can set default dictionary by adding dictionary entries to "
"the list"
msgstr ""
"Dialogue permettant d'enrichir le dictionnaire par défaut en ajoutant des "
"entrées dans la liste"

#: gui\__init__.py:261
msgid "&Voice dictionary..."
msgstr "Dictionnaire de la &voix..."

#: gui\__init__.py:261
msgid ""
"dialog where you can set voice-specific dictionary by adding dictionary "
"entries to the list"
msgstr ""
"Dialogue permettant d'enrichir le dictionnaire de la voix en ajoutant des "
"entrées dans la liste"

#: gui\__init__.py:263
msgid "&Temporary dictionary..."
msgstr "Dictionnaire &temporaire..."

#: gui\__init__.py:263
msgid ""
"dialog where you can set temporary dictionary by adding dictionary entries "
"to the edit box"
msgstr ""
"Dialogue permettant d'enrichir le dictionnaire temporaire en ajoutant des "
"entrées dans la zone d'édition"

#: gui\__init__.py:265
msgid "Speech &dictionaries"
msgstr "&Dictionnaire de prononciation"

#: gui\__init__.py:267
msgid "&Punctuation/symbol pronunciation..."
msgstr "&Annonce des symboles et ponctuations..."

#: gui\__init__.py:269
msgid "&Preferences"
msgstr "&Préférences"

#: gui\__init__.py:273
msgid "View log"
msgstr "Voir le &journal"

#: gui\__init__.py:275
msgid "Speech viewer"
msgstr "Visionneuse de &parole"

#: gui\__init__.py:278
msgid "Python console"
msgstr "Console Python"

#: gui\__init__.py:280
msgid "Reload plugins"
msgstr "Rechargement des plugins"

#: gui\__init__.py:282
msgid "Tools"
msgstr "Outils"

#: gui\__init__.py:286
msgid "User guide"
msgstr "Guide de l'utilisateur"

#: gui\__init__.py:288
msgid "Keyboard Command Quick Reference"
msgstr "Référence rapide des touches de commande"

#: gui\__init__.py:290
msgid "What's &new"
msgstr "Quoi de &neuf"

#: gui\__init__.py:292
msgid "Web site"
msgstr "Site Web"

#: gui\__init__.py:294
msgid "License"
msgstr "L&icence"

#: gui\__init__.py:296
msgid "Contributors"
msgstr "Contributeurs"

#: gui\__init__.py:298
msgid "We&lcome dialog"
msgstr "Dialogue de &bienvenue"

#: gui\__init__.py:301
msgid "About..."
msgstr "À propos..."

#: gui\__init__.py:303
msgid "&Help"
msgstr "&Aide"

#: gui\__init__.py:305
msgid "&Revert to saved configuration"
msgstr "&Retour à la configuration sauvegardée"

#: gui\__init__.py:305
msgid "Reset all settings to saved state"
msgstr "Remettre tous les paramètres à l'état sauvegardé"

#: gui\__init__.py:308
msgid "&Save configuration"
msgstr "&Sauvegarder la configuration"

#: gui\__init__.py:308
msgid "Write the current configuration to nvda.ini"
msgstr "Enregistrer la configuration courante dans nvda.ini"

#: gui\__init__.py:312
msgid "Donate"
msgstr "Faire un don"

#: gui\__init__.py:315 gui\logViewer.py:34
msgid "E&xit"
msgstr "&Quitter"

#: gui\__init__.py:397
msgid ""
"Welcome to NVDA!\n"
"Most commands for controlling NVDA require you to hold down the NVDA key "
"while pressing other keys.\n"
"By default, the numpad insert and main insert keys may both be used as the "
"NVDA key.\n"
"You can also configure NVDA to use the CapsLock as the NVDA key.\n"
"Press NVDA+n at any time to activate the NVDA menu.\n"
"From this menu, you can configure NVDA, get help and access other NVDA "
"functions.\n"
msgstr ""
"Bienvenue dans NVDA!\n"
"La plupart des commandes de NVDA nécessitent de maintenir la touche NVDA "
"enfoncée, en pressant d'autres touches.\n"
"Par défaut, les touches insertion du pavé numérique et du clavier étendu "
"peuvent être utilisées comme touche NVDA.\n"
"Vous pouvez aussi configurer  la touche de verrouillage majuscules comme "
"touche NVDA.\n"
"Appuyez sur NVDA+n à tout moment pour activer le menu NVDA.\n"
"Depuis ce menu, vous pouvez modifier la configuration, obtenir de l'aide et "
"accéder à d'autres fonctions de NVDA.\n"

#: gui\__init__.py:407
msgid "Welcome to NVDA"
msgstr "Bienvenue dans NVDA"

#: gui\__init__.py:411
msgid "Options"
msgstr "Options"

#: gui\__init__.py:412 gui\settingsDialogs.py:515
msgid "Use CapsLock as an NVDA modifier key"
msgstr "Utiliser verrouillage majuscules comme touche NVDA"

#: gui\__init__.py:415
msgid "Show this dialog when NVDA starts"
msgstr "Afficher ce dialogue au démarrage de NVDA"

#: gui\__init__.py:451
msgid ""
"Your configuration file contains errors. \n"
"Press 'Ok' to fix these errors, or press 'Cancel' if you wish to manually "
"edit your config file at a later stage to make corrections. More details "
"about the errors can be found in the log file.\n"
msgstr ""
"Votre fichier de configuration contient des erreurs. \n"
"Pressez 'Accepter' pour corriger ces erreurs, ou 'Annuler' si vous préfé"
"rez éditer mannuellement votre fichier de configuration plus tard pour "
"corriger. Vous trouverez plus de détails sur les erreurs dans le fichier "
"log. \n"

#: gui\__init__.py:456
msgid "Configuration File Error"
msgstr "Erreur dans le fichier de configuration"

#: gui\logViewer.py:17
msgid "NVDA Log Viewer"
msgstr "Affichage du journal de NVDA"

#: gui\logViewer.py:29
msgid "Refresh\tF5"
msgstr "réactualiser\tF5"

#: gui\logViewer.py:36
msgid "Log"
msgstr "Journal"

#: gui\logViewer.py:66
msgid "Save As"
msgstr "Sauvegarder sous"

#: gui\logViewer.py:74
msgid "Error saving log: %s"
msgstr "Erreur de sauvegarde du journal %s"

#: gui\settingsDialogs.py:109
msgid "info"
msgstr "info"

#: gui\settingsDialogs.py:110
msgid "debug warning"
msgstr "avertissement de débogage"

#: gui\settingsDialogs.py:111
msgid "input/output"
msgstr "entrée/sortie"

#: gui\settingsDialogs.py:112
msgid "debug"
msgstr "débogage"

#: gui\settingsDialogs.py:117
msgid "&Language (requires restart to fully take affect):"
msgstr "&Langue (Nécessite un redémarrage pour prendre pleinement effet):"

#: gui\settingsDialogs.py:121
msgid "Language"
msgstr "Langue"

#: gui\settingsDialogs.py:133
msgid "&Save configuration on exit"
msgstr "&Sauvegarder la configuration en quittant"

#: gui\settingsDialogs.py:138
msgid "&Warn before exiting NVDA"
msgstr "&Avertir avant de quitter NVDA"

#: gui\settingsDialogs.py:142
msgid "L&ogging level:"
msgstr "Niveau de &journalisation:"

#: gui\settingsDialogs.py:145
msgid "Log level"
msgstr "niveau de journalisation"

#: gui\settingsDialogs.py:155
msgid "&Automatically start NVDA after I log on to Windows"
msgstr "&Démarrer NVDA automatiquement après ma connexion à Windows"

#: gui\settingsDialogs.py:160
msgid ""
"Use NVDA on the Windows logon screen (requires administrator privileges)"
msgstr ""
"Utiliser NVDA sur l'écran de connexion à Windows (nécessite des privilè"
"ges administrateur)"

#: gui\settingsDialogs.py:165
msgid ""
"Use currently saved settings on the logon and other secure screens (requires "
"administrator privileges)"
msgstr ""
"Utiliser les paramètres NVDA actuellement sauvegardés pour l'écran de "
"connexion à Windows (nécessite des privilèges administrateur)"

#: gui\settingsDialogs.py:178
msgid ""
"Custom plugins were detected in your user settings directory. Copying these "
"to the system profile could be a security risk. Do you still wish to copy "
"your settings?"
msgstr ""
"Des plugins personnalisés ont été trouvés dans votre répertoire de "
"paramètres utilisateur. Les copier dans le profil système pourrait pré"
"senter un risque de sécurité. Voulez-vous quand-même copier vos paramè"
"tres ?"

#: gui\settingsDialogs.py:179
msgid "Warning"
msgstr "Avertissement"

#: gui\settingsDialogs.py:184
msgid "Error copying NVDA user settings"
msgstr "Erreur de copie des paramètres utilisateur NVDA"

#: gui\settingsDialogs.py:186
msgid "Success"
msgstr "Succès"

#: gui\settingsDialogs.py:186
msgid "Successfully copied NVDA user settings"
msgstr "Paramètres de NVDA copiés avec succès"

#: gui\settingsDialogs.py:195
msgid "Error in %s language file"
msgstr "Erreur dans le fichier de langue %s"

#: gui\settingsDialogs.py:195
msgid "Language Error"
msgstr "Erreur de langue"

#: gui\settingsDialogs.py:209
msgid "Insufficient Privileges"
msgstr "Privilèges insuffisants"

#: gui\settingsDialogs.py:209
msgid "This change requires administrator privileges."
msgstr "Ce changement nécessite des privilèges administrateur"

#: gui\settingsDialogs.py:212
msgid ""
"For the new language to take effect, the configuration must be saved and "
"NVDA must be restarted. Press enter to save and restart NVDA, or cancel to "
"manually save and exit at a later time."
msgstr ""
"Pour que la nouvelle langue prenne effet, la configuration doit être "
"sauvegardée et NVDA doit être redémarré. Appuyez sur Entrée pour "
"sauvegarder la configuration et redémarrer NVDA ou sur Annuler pour "
"sauvegarder manuellement et redémarrer NVDA plus tard."

#: gui\settingsDialogs.py:213
msgid "Language Configuration Change"
msgstr "Changement de configuration de langue"

#: gui\settingsDialogs.py:220
msgid "Synthesizer"
msgstr "Synthétiseur"

#: gui\settingsDialogs.py:224
msgid "&Synthesizer:"
msgstr "&Synthétiseur:"

#: gui\settingsDialogs.py:239
msgid "Output &device:"
msgstr "Sortie &audio:"

#: gui\settingsDialogs.py:259
msgid "Could not load the %s synthesizer."
msgstr "Impossible de charger le synthétiseur %s"

#: gui\settingsDialogs.py:259
msgid "Synthesizer Error"
msgstr "Erreur de synthétiseur"

#: gui\settingsDialogs.py:324
msgid "Voice settings"
msgstr "Paramètres vocaux"

#: gui\settingsDialogs.py:392
msgid "Automatic language switching (when supported)"
msgstr "Changement automatique de la langue quand le synthétiseur le permet"

#: gui\settingsDialogs.py:395
msgid "Automatic dialect switching (when supported)"
msgstr "Changement automatique du dialecte quand le synthétiseur le permet"

#: gui\settingsDialogs.py:399
msgid "Punctuation/symbol &level:"
msgstr "Niveau de symboles et &ponctuations :"

#: gui\settingsDialogs.py:406
msgid "Capital pitch change percentage"
msgstr "Pourcentage de changement de la hauteur pour indiquer les majuscules"

#: gui\settingsDialogs.py:411
msgid "Say &cap before capitals"
msgstr "Dire &maj avant les majuscules"

#: gui\settingsDialogs.py:414
msgid "&Beep for capitals"
msgstr "Émettre un &bip pour signaler les majuscules"

#: gui\settingsDialogs.py:417
msgid "Use &spelling functionality if supported"
msgstr "Utiliser la fonction d'&épellation si elle est supportée"

#: gui\settingsDialogs.py:498
msgid "Keyboard Settings"
msgstr "Paramètres du clavier"

#: gui\settingsDialogs.py:502
msgid "&Keyboard layout:"
msgstr "Disposition du &clavier:"

#: gui\settingsDialogs.py:507
msgid "Keyboard layout"
msgstr "Disposition du clavier"

#: gui\settingsDialogs.py:518
msgid "Use numpad Insert as an NVDA modifier key"
msgstr "Utiliser insert du pavé numérique comme touche NVDA"

#: gui\settingsDialogs.py:521
msgid "Use extended Insert as an NVDA modifier key"
msgstr "Utiliser insert du clavier étendu comme touche NVDA"

#: gui\settingsDialogs.py:524
msgid "Speak typed &characters"
msgstr "Écho clavier par &caractère"

#: gui\settingsDialogs.py:527
msgid "Speak typed &words"
msgstr "Écho clavier par &mot"

#: gui\settingsDialogs.py:530
msgid "Beep if typing lowercase letters when caps lock is on"
msgstr ""
"Émettre un bip à la frappe d'un caractère minuscule quand le verrouillage "
"majuscule est activé"

#: gui\settingsDialogs.py:533
msgid "Speak command &keys"
msgstr "Dire les &touches de commande"

#: gui\settingsDialogs.py:553
msgid "Mouse settings"
msgstr "Paramètres de la souris"

#: gui\settingsDialogs.py:556
msgid "Report mouse &shape changes"
msgstr "Annoncer les changements de &forme de la souris"

#: gui\settingsDialogs.py:559
msgid "Enable mouse &tracking"
msgstr "Activer le suivi de la &souris"

#: gui\settingsDialogs.py:563
msgid "Text &unit resolution:"
msgstr "Résolution d'&unités de texte:"

#: gui\settingsDialogs.py:567
msgid "text reporting unit"
msgstr "Unité d'annonce de texte"

#: gui\settingsDialogs.py:575
msgid "Report &role when mouse enters object"
msgstr "quand la souris entre dans un objet, annoncer son &type"

#: gui\settingsDialogs.py:578
msgid "play audio coordinates when mouse moves"
msgstr "&Sonoriser les coordonnées quand la souris se déplace"

#: gui\settingsDialogs.py:581
msgid "brightness controls audio coordinates volume"
msgstr "La &brillance modifie le volume des coordonnées audio"

#: gui\settingsDialogs.py:599
msgid "Review cursor settings"
msgstr "Paramètres du curseur de revue"

#: gui\settingsDialogs.py:602
msgid "Follow &keyboard focus"
msgstr "suivre le focus &clavier:"

#: gui\settingsDialogs.py:605
msgid "Follow System &Caret"
msgstr "Suivre le curseur &système"

#: gui\settingsDialogs.py:608
msgid "Follow &mouse cursor"
msgstr "suivre le curseur s&ouris"

#: gui\settingsDialogs.py:611
msgid "Simple review mode"
msgstr "&Mode de revue simple"

#: gui\settingsDialogs.py:626
msgid "Object presentation"
msgstr "Présentation des objets"

#: gui\settingsDialogs.py:629
msgid "Speak"
msgstr "Vocal"

#: gui\settingsDialogs.py:630
msgid "Beep"
msgstr "Par des Bips"

#: gui\settingsDialogs.py:631
msgid "Speak and beep"
msgstr "Vocal avec des bips"

#: gui\settingsDialogs.py:635
msgid "Report &tooltips"
msgstr "Annoncer les &suggestions"

#: gui\settingsDialogs.py:638
msgid "Report &help balloons"
msgstr "Annoncer les &infobulles"

#: gui\settingsDialogs.py:641
msgid "Report object shortcut &keys"
msgstr "Annoncer les touches de &raccourci des objets"

#: gui\settingsDialogs.py:644
msgid "Report object &position information"
msgstr "Annoncer le r&ang de l'objet dans une liste"

#: gui\settingsDialogs.py:647
msgid "Guess object &position information when unavailable"
msgstr ""
"Deviner l'information de &position de l'objet quand elle n'est pas disponible"

#: gui\settingsDialogs.py:650
msgid "Report object &descriptions"
msgstr "Annoncer la &description de l'objet"

#: gui\settingsDialogs.py:654
msgid "Progress &bar output:"
msgstr "Suivi des &barres de progression:"

#: gui\settingsDialogs.py:657
msgid "Progress bar output"
msgstr "Suivi des barres de progression"

#: gui\settingsDialogs.py:666
msgid "Report background progress bars"
msgstr "Suivre les barres de progression en arrière-plan"

#: gui\settingsDialogs.py:669
msgid "Report dynamic &content changes"
msgstr "annonce des changements dynamiques de &contenu"

#: gui\settingsDialogs.py:689
msgid "Browse mode"
msgstr "Mode navigation"

#: gui\settingsDialogs.py:692
msgid "&Maximum number of characters on one line"
msgstr "Nombre maximum de &caractères par ligne"

#: gui\settingsDialogs.py:697
msgid "&Number of lines per page"
msgstr "Nombre de &lignes par page"

#: gui\settingsDialogs.py:702
msgid "Use &screen layout (when supported)"
msgstr "utiliser la disposition telle qu'à l'&écran (quand c'est possible)"

#: gui\settingsDialogs.py:705
msgid "Automatic &Say All on page load"
msgstr "&Lecture automatique au chargement de la page"

#: gui\settingsDialogs.py:708
msgid "Report l&ayout tables"
msgstr "Annoncer les tables de &visualisation"

#: gui\settingsDialogs.py:712
msgid "Automatic focus mode for focus changes"
msgstr "Mode &formulaire automatique pour les changements de focus"

#: gui\settingsDialogs.py:715
msgid "Automatic focus mode for caret movement"
msgstr "Mode formulaire automatique pour les &déplacements du curseur"

#: gui\settingsDialogs.py:718
msgid "Audio indication of focus and browse modes"
msgstr "&Indication audio du mode formulaire ou navigation"

#: gui\settingsDialogs.py:747
msgid "Document formatting"
msgstr "Mise en forme des documents"

#: gui\settingsDialogs.py:750
msgid "Announce formatting changes after the cursor (can cause a lag)"
msgstr ""
"Annonce les changements de mise en forme après le curseur (peut dégrader "
"les performances)"

#: gui\settingsDialogs.py:753
msgid "Report font &name"
msgstr "annoncer le &nom de la police"

#: gui\settingsDialogs.py:756
msgid "Report font &size"
msgstr "annoncer la &taille de la police"

#: gui\settingsDialogs.py:759
msgid "Report font attri&butes"
msgstr "annoncer les &attributs de la police"

#: gui\settingsDialogs.py:762
msgid "Report &alignment"
msgstr "annoncer l'a&lignement"

#: gui\settingsDialogs.py:765
msgid "Report &colors"
msgstr "annoncer les &couleurs"

#: gui\settingsDialogs.py:768
msgid "Report st&yle"
msgstr "annoncer le st&yle"

#: gui\settingsDialogs.py:771
msgid "Report spelling errors"
msgstr "Annoncer les &fautes d'orthographe"

#: gui\settingsDialogs.py:774
msgid "Report &pages"
msgstr "annoncer la &page"

#: gui\settingsDialogs.py:777
msgid "Report &line numbers"
msgstr "annoncer le numéro de &ligne"

#: gui\settingsDialogs.py:780
msgid "Report &tables"
msgstr "Annoncer les ta&bleaux"

#: gui\settingsDialogs.py:783
msgid "Report table row/column h&eaders"
msgstr "annoncer le t&itre des lignes et colonnes d'un tableau"

#: gui\settingsDialogs.py:786
msgid "Report table cell c&oordinates"
msgstr "Annoncer les c&oordonnées des cellules dans un tableau"

#: gui\settingsDialogs.py:789
msgid "Report &links"
msgstr "annoncer les l&iens"

#: gui\settingsDialogs.py:792
msgid "Report &headings"
msgstr "Annoncer les &titres"

#: gui\settingsDialogs.py:795
msgid "Report l&ists"
msgstr "Annoncer les &listes"

#: gui\settingsDialogs.py:798
msgid "Report block &quotes"
msgstr "Annoncer les &balises de citation"

#: gui\settingsDialogs.py:801
msgid "Report lan&dmarks"
msgstr "Annoncer les &Repères"

#: gui\settingsDialogs.py:831
msgid "Edit dictionary entry"
msgstr "Éditer une entrée du dictionnaire"

#: gui\settingsDialogs.py:835
msgid "&Pattern"
msgstr "&Mot réel"

#: gui\settingsDialogs.py:838 gui\settingsDialogs.py:1074
msgid "&Replacement"
msgstr "&Remplacement"

#: gui\settingsDialogs.py:841
msgid "&Comment"
msgstr "&Commentaire"

#: gui\settingsDialogs.py:844
msgid "Case &sensitive"
msgstr "Tenir compte de la &casse"

#: gui\settingsDialogs.py:846
msgid "Regular &expression"
msgstr "&Expression régulière"

#: gui\settingsDialogs.py:868
msgid "&Dictionary entries"
msgstr "Entrées du &dictionnaire"

#: gui\settingsDialogs.py:871
msgid "Comment"
msgstr "Commentaire"

#: gui\settingsDialogs.py:872
msgid "Pattern"
msgstr "Mot réel"

#: gui\settingsDialogs.py:873 gui\settingsDialogs.py:1062
msgid "Replacement"
msgstr "Remplacement"

#: gui\settingsDialogs.py:874
msgid "case"
msgstr "casse"

#: gui\settingsDialogs.py:875
msgid "Regexp"
msgstr "Regexp"

#: gui\settingsDialogs.py:884
msgid "&Add"
msgstr "&Ajouter"

#: gui\settingsDialogs.py:887
msgid "&Edit"
msgstr "&Éditer"

#: gui\settingsDialogs.py:890
msgid "&Remove"
msgstr "&Supprimer"

#: gui\settingsDialogs.py:913
msgid "Add Dictionary Entry"
msgstr "Ajouter une entrée au dictionnaire"

#: gui\settingsDialogs.py:958
msgid "Braille Settings"
msgstr "Paramètres braille"

#: gui\settingsDialogs.py:962
msgid "Braille &display:"
msgstr "&Terminal braille:"

#: gui\settingsDialogs.py:976
msgid "Translation &table:"
msgstr "Table de &conversion:"

#: gui\settingsDialogs.py:988
msgid "E&xpand to computer braille for the word at the cursor"
msgstr "&Afficher le mot sous le curseur en braille informatique"

#: gui\settingsDialogs.py:993
msgid "Cursor blink rate (ms)"
msgstr "&Vitesse de clignotement du curseur (ms)"

#: gui\settingsDialogs.py:1001
msgid "Message timeout (sec)"
msgstr "&Durée d'affichage des messages (sec)"

#: gui\settingsDialogs.py:1009
msgid "Braille tethered to:"
msgstr "&Braille suit :"

#: gui\settingsDialogs.py:1028
msgid "Braille Display Error"
msgstr "Erreur d'affichage braille"

#: gui\settingsDialogs.py:1028
msgid "Could not load the %s display."
msgstr "Impossible de charger le terminal %s"

#: gui\settingsDialogs.py:1048
msgid "Symbol Pronunciation"
msgstr "Prononciation du symbole"

#: gui\settingsDialogs.py:1059
msgid "&Symbols"
msgstr "&Symboles"

#: gui\settingsDialogs.py:1061
msgid "Symbol"
msgstr "Symbole"

#: gui\settingsDialogs.py:1063
msgid "Level"
msgstr "Niveau"

#: gui\settingsDialogs.py:1072
msgid "Change symbol"
msgstr "Changer le symbole"

#: gui\settingsDialogs.py:1080
msgid "&Level"
msgstr "&Niveau"

#: keyLabels.py:8
msgid "back"
msgstr "arrière"

#: keyLabels.py:9
msgid "forward"
msgstr "avant"

#: keyLabels.py:10
msgid "refresh"
msgstr "réactualiser"

#: keyLabels.py:11
msgid "browser stop"
msgstr "arrêt du navigateur"

#: keyLabels.py:12
msgid "search page"
msgstr "page de recherche"

#: keyLabels.py:13
msgid "favorites"
msgstr "favoris"

#: keyLabels.py:14
msgid "home page"
msgstr "page d'accueil"

#: keyLabels.py:15
msgid "mute"
msgstr "muet"

#: keyLabels.py:16
msgid "volume down"
msgstr "baisse du volume"

#: keyLabels.py:17
msgid "volume up"
msgstr "hausse du volume"

#: keyLabels.py:18
msgid "next track"
msgstr "piste suivante"

#: keyLabels.py:19
msgid "previous track"
msgstr "piste précédente"

#: keyLabels.py:20
msgid "stop"
msgstr "stop"

#: keyLabels.py:21
msgid "play pause"
msgstr "jouer pause"

#: keyLabels.py:22
msgid "email"
msgstr "courriel"

#: keyLabels.py:23
msgid "media player"
msgstr "média player"

#: keyLabels.py:24
msgid "custom application 1"
msgstr "application spécifique 1"

#: keyLabels.py:25
msgid "custom application 2"
msgstr "application spécifique 2"

#: keyLabels.py:26
msgid "backspace"
msgstr "Retour arrière"

#: keyLabels.py:27
msgid "caps lock"
msgstr "verrouillage majuscules"

#: keyLabels.py:28
msgid "ctrl"
msgstr "contrôle"

#: keyLabels.py:29
msgid "alt"
msgstr "alt"

#: keyLabels.py:30
msgid "shift"
msgstr "majuscule"

#: keyLabels.py:31
msgid "windows"
msgstr "Windows"

#: keyLabels.py:32
msgid "enter"
msgstr "Entrer"

#: keyLabels.py:33
msgid "numpad enter"
msgstr "pavNum entrée"

#: keyLabels.py:34
msgid "escape"
msgstr "échap"

#: keyLabels.py:35
msgid "space"
msgstr "espace"

#: keyLabels.py:36
msgid "page up"
msgstr "page précédente"

#: keyLabels.py:37
msgid "page down"
msgstr "page suivante"

#: keyLabels.py:38
msgid "end"
msgstr "fin"

#: keyLabels.py:39
msgid "home"
msgstr "début"

#: keyLabels.py:40
msgid "delete"
msgstr "effacement"

#: keyLabels.py:41
msgid "numpad delete"
msgstr "pavNum effacement"

#: keyLabels.py:42
msgid "left arrow"
msgstr "flèche gauche"

#: keyLabels.py:43
msgid "right arrow"
msgstr "flèche droite"

#: keyLabels.py:44
msgid "up arrow"
msgstr "flèche haut"

#: keyLabels.py:45
msgid "down arrow"
msgstr "flèche bas"

#: keyLabels.py:46
msgid "applications"
msgstr "applications"

#: keyLabels.py:47
msgid "num lock"
msgstr "verrouillage numérique"

#: keyLabels.py:48
msgid "print screen"
msgstr "impression écran"

#: keyLabels.py:49
msgid "scroll lock"
msgstr "arrêt défilement"

#: keyLabels.py:50
msgid "numpad 4"
msgstr "pavNum 4"

#: keyLabels.py:51
msgid "numpad 6"
msgstr "pavNum 6"

#: keyLabels.py:52
msgid "numpad 8"
msgstr "pavNum 8"

#: keyLabels.py:53
msgid "numpad 2"
msgstr "pavNum 2"

#: keyLabels.py:54
msgid "numpad 9"
msgstr "pavNum 9"

#: keyLabels.py:55
msgid "numpad 3"
msgstr "pavNum 3"

#: keyLabels.py:56
msgid "numpad 1"
msgstr "pavNum 1"

#: keyLabels.py:57
msgid "numpad 7"
msgstr "pavNum 7"

#: keyLabels.py:58
msgid "numpad 5"
msgstr "pavNum 5"

#: keyLabels.py:59
msgid "numpad divide"
msgstr "pavNum divisé"

#: keyLabels.py:60
msgid "numpad multiply"
msgstr "pavNum multiplié"

#: keyLabels.py:61
msgid "numpad minus"
msgstr "pavNum moins"

#: keyLabels.py:62
msgid "numpad plus"
msgstr "pavNum plus"

#: keyLabels.py:63
msgid "left control"
msgstr "contrôle gauche"

#: keyLabels.py:64
msgid "right control"
msgstr "contrôle droit"

#: keyLabels.py:65
msgid "left windows"
msgstr "windows gauche"

#: keyLabels.py:66
msgid "left shift"
msgstr "majuscule gauche"

#: keyLabels.py:67
msgid "right shift"
msgstr "majuscule droite"

#: keyLabels.py:68
msgid "left alt"
msgstr "alt gauche"

#: keyLabels.py:69
msgid "right alt"
msgstr "alt droite"

#: keyLabels.py:70
msgid "right windows"
msgstr "windows droite"

#: keyLabels.py:71
msgid "break"
msgstr "break"

#: keyboardHandler.py:184
msgid "desktop"
msgstr "ordinateur de bureau"

#: keyboardHandler.py:185
msgid "laptop"
msgstr "ordinateur portable"

#: mouseHandler.py:136
msgid "%s cursor"
msgstr "curseur %s"

#: pythonConsole.py:24
msgid "Type help(object) to get help about object."
msgstr "Tapez help(object) pour obtenir de l'aide sur l'objet"

#: pythonConsole.py:43
msgid "Type exit() to exit the console"
msgstr "Tapez exit() pour quitter la console"

#: pythonConsole.py:96
msgid "NVDA Python Console"
msgstr "Console Python"

#: scriptHandler.py:33
msgid "Emulates pressing %s on the system keyboard"
msgstr "Émule l'appui de %s sur le clavier du système"

#: speech.py:155 speech.py:309 speech.py:713
msgid "blank"
msgstr "vide"

#: speech.py:181
msgid "cap %s"
msgstr "mage %s"

#: speech.py:372
msgid "%d characters"
msgstr "%d caractères"

#: speech.py:424
msgid "selecting %s"
msgstr "%s sélectionné"

#: speech.py:435
msgid "unselecting %s"
msgstr "%s  dessélectionné"

#: speech.py:437
msgid "selection removed"
msgstr "sélection supprimée"

#: speech.py:762
msgid "done dragging"
msgstr "glissage terminé"

#: speech.py:778 speech.py:781
msgid "level %s"
msgstr "niveau %s"

#: speech.py:794 speech.py:1114
msgid "row %s"
msgstr "ligne %s"

#: speech.py:801 speech.py:1110
msgid "column %s"
msgstr "colonne %s"

#: speech.py:806
msgid "with %s rows and %s columns"
msgstr "avec %s lignes et %s colonnes"

#: speech.py:808
msgid "with %s columns"
msgstr "avec %s colonnes"

#: speech.py:810
msgid "with %s rows"
msgstr "avec %s lignes"

#: speech.py:923
msgid "with %s items"
msgstr " de %s éléments"

#: speech.py:949 speech.py:1069
msgid "out of %s"
msgstr "hors de %s"

#: speech.py:973
msgid "page %s"
msgstr "page %s"

#: speech.py:980
msgid "style %s"
msgstr "style %s"

#: speech.py:982
msgid "default style"
msgstr "style par défaut"

#: speech.py:1010
msgid "on {backgroundColor}"
msgstr "sur {backgroundColor}"

#: speech.py:1015
msgid "line %s"
msgstr "ligne %s"

#: speech.py:1021
msgid "no bold"
msgstr "pas de caractère gras"

#: speech.py:1026
msgid "italic"
msgstr "italique"

#: speech.py:1026
msgid "no italic"
msgstr "pas d'italique"

#: speech.py:1031
msgid "no strikethrough"
msgstr "pas de biffure"

#: speech.py:1031
msgid "strikethrough"
msgstr "biffure"

#: speech.py:1036
msgid "not underlined"
msgstr "non souligné"

#: speech.py:1036
msgid "underlined"
msgstr "souligné"

#: speech.py:1047
msgid "baseline"
msgstr "ligne de base"

#: speech.py:1055
msgid "align left"
msgstr "alignement à gauche"

#: speech.py:1057
msgid "align center"
msgstr "alignement centré"

#: speech.py:1059
msgid "align right"
msgstr "alignement à droite"

#: speech.py:1061
msgid "align justify"
msgstr "alignement justifié"

#: speech.py:1063
msgid "align default"
msgstr "alignement par défaut"

#: speech.py:1076
msgid "spelling error"
msgstr "faute d'orthographe"

#: speech.py:1078
msgid "out of spelling error"
msgstr "hors de la faute d'orthographe"

#: speech.py:1096
msgid "out of table"
msgstr "hors du tableau"

#: speech.py:1105
msgid "table with %s columns and %s rows"
msgstr "tableau de %s colonnes et %s lignes"

#: speechViewer.py:13
msgid "NVDA Speech Viewer"
msgstr "Visionneuse de parole de NVDA"

#: synthDriverHandler.py:194
msgid "&Language"
msgstr "Langue"

#: synthDriverHandler.py:199
msgid "&Voice"
msgstr "&Voix"

#: synthDriverHandler.py:203
msgid "V&ariant"
msgstr "V&ariante"

#: synthDriverHandler.py:208
msgid "&Rate"
msgstr "&Débit"

#: synthDriverHandler.py:212
msgid "V&olume"
msgstr "V&olume"

#: synthDriverHandler.py:216
msgid "&Pitch"
msgstr "&Hauteur"

#: synthDriverHandler.py:221
msgid "&Inflection"
msgstr "&inflexion"

#: synthDrivers\espeak.py:26
msgid "Rate boos&t"
msgstr "tripler le débi&t"

#: synthDrivers\newfon.py:179
msgid "&Acceleration"
msgstr "&Accélération"

#: synthDrivers\newfon.py:190
msgid "female 1"
msgstr "femme 1"

#: synthDrivers\newfon.py:190
msgid "female 2"
msgstr "femme 2"

#: synthDrivers\newfon.py:190
msgid "male 1"
msgstr "homme 1"

#: synthDrivers\newfon.py:190
msgid "male 2"
msgstr "homme 2"

#: synthDrivers\silence.py:13
msgid "No speech"
msgstr "pas de parole"

#: textInfos\__init__.py:137
msgid "word"
msgstr "mot"

#: versionInfo.py:32
msgid "NonVisual Desktop Access"
msgstr "NonVisual Desktop Access"

#: versionInfo.py:39
msgid "A free and open source screen reader for Microsoft Windows"
msgstr "Une revue d'écran gratuite et open-source pour Microsoft Windows"

#: versionInfo.py:42
msgid "Copyright (C) {years} NVDA Contributors"
msgstr "Copyright (C) {years} NVDA Contributors"

#: versionInfo.py:44
msgid ""
"{longName} ({name})\n"
"Version: {version}\n"
"URL: {url}\n"
"{copyright}\n"
"\n"
"{name} is covered by the GNU General Public License (Version 2). You are "
"free to share or change this software in any way you like as long as it is "
"accompanied by the license and you make all source code available to anyone "
"who wants it. This applies to both original and modified copies of this "
"software, plus any derivative works.\n"
"For further details, you can view the license from the Help menu.\n"
"It can also be viewed online at: http://www.gnu.org/licenses/old-licenses/"
"gpl-2.0.html\n"
"\n"
"{name} is developed by NV Access, a non-profit organisation committed to "
"helping and promoting free and open source solutions for blind and vision "
"impaired people.\n"
"If you find NVDA useful and want it to continue to improve, please consider "
"donating to NV Access. You can do this by selecting Donate from the NVDA "
"menu."
msgstr ""
"{longName} ({name})\n"
"Version: {version}\n"
"URL: {url}\n"
"{copyright}\n"
"\n"
"%(name)s est couvert par la licence publique générale GNU (GPL Version 2). "
"Vous êtes libre de partager ou modifier ce logiciel à votre guise tant que "
"vous distribuez la licence avec le logiciel et laissez l'ensemble du code "
"source disponible à qui le veut. Ceci s'applique aux versions originales et "
"modifiées du logiciel, ainsi qu'à tout logiciel utilisant du code tiré de "
"ce logiciel.\n"
"Pour plus de détails, vous pouvez consulter la licence dans le menu "
"d'aide.\n"
"Vous pouvez également la consulter en ligne à : http://www.gnu.org/"
"licenses/old-licenses/gpl-2.0.html\n"
"\n"
"{name} est développé par NV Access, une organisation à but non lucratif "
"qui s'engage à éider et promouvoir les solutions libres et open-source "
"pour les personnes aveugles ou déficientes visuelles.\n"
"Si vous trouvez NVDA utile et voulez qu'il continue à s'améliorer, vous "
"pouvez envisager de faire un don à NVAccess. Cela peut se faire en sé"
"lectionnant Faire un don dans le menu NVDA."

#: virtualBuffers\__init__.py:219
msgid "%s landmark"
msgstr "repère %s"

#: virtualBuffers\__init__.py:237
msgid "Lin&ks"
msgstr "Lie&ns"

#: virtualBuffers\__init__.py:238
msgid "&Headings"
msgstr "&Titres"

#: virtualBuffers\__init__.py:239
msgid "Lan&dmarks"
msgstr "R&epères"

#: virtualBuffers\__init__.py:245
msgid "Elements List"
msgstr "liste d'éléments"

#: virtualBuffers\__init__.py:248
msgid "Type:"
msgstr "Type :"

#: virtualBuffers\__init__.py:259
msgid "&Filter by:"
msgstr "&Rechercher"

#: virtualBuffers\__init__.py:267
msgid "&Activate"
msgstr "A&ctiver"

#: virtualBuffers\__init__.py:270
msgid "&Move to"
msgstr "A&ller à"

#: virtualBuffers\__init__.py:582
msgid "Refreshed"
msgstr "réactualisé"

#: virtualBuffers\__init__.py:587
msgid "Loading document..."
msgstr "Chargement du document..."

#: virtualBuffers\__init__.py:763
msgid "activates the current object in the document"
msgstr "activer l'objet courant dans le document"

#: virtualBuffers\__init__.py:771
msgid "Refreshes the document content"
msgstr "Réactualise le contenu du document"

#: virtualBuffers\__init__.py:776
msgid "use screen layout %s"
msgstr "utiliser la disposition d'écran %s"

#: virtualBuffers\__init__.py:777
msgid ""
"Toggles on and off if the screen layout is preserved while rendering the "
"document content"
msgstr ""
"Activation/désactivation du mode d'affichage tel qu'à l'écran du contenu "
"du document"

#: virtualBuffers\__init__.py:860
msgid "Presents a list of links, headings or landmarks"
msgstr "Présente une liste de liens, titres ou repères"

#: virtualBuffers\__init__.py:1224
msgid "Not in a table cell"
msgstr "pas dans une cellule de tableau"

#: virtualBuffers\__init__.py:1240
msgid "moves to the next table row"
msgstr "aller à la ligne suivante du tableau"

#: virtualBuffers\__init__.py:1244
msgid "moves to the previous table row"
msgstr "aller à la ligne précédente du tableau"

#: virtualBuffers\__init__.py:1248
msgid "moves to the next table column"
msgstr "aller à la colonne suivante du tableau"

#: virtualBuffers\__init__.py:1252
msgid "moves to the previous table column"
msgstr "aller à la colonne précédente du tableau"

#: virtualBuffers\__init__.py:1339
msgid "moves to the next heading"
msgstr "aller au titre suivant"

#: virtualBuffers\__init__.py:1339
msgid "no next heading"
msgstr "plus de titre"

#: virtualBuffers\__init__.py:1340
msgid "moves to the previous heading"
msgstr "aller au titre précédent"

#: virtualBuffers\__init__.py:1340
msgid "no previous heading"
msgstr "plus de titre"

#: virtualBuffers\__init__.py:1341
msgid "moves to the next heading at level 1"
msgstr "aller au titre de niveau 1 suivant"

#: virtualBuffers\__init__.py:1341
msgid "no next heading at level 1"
msgstr "plus de titre de niveau 1"

#: virtualBuffers\__init__.py:1342
msgid "moves to the previous heading at level 1"
msgstr "aller au titre de niveau 1 précédent"

#: virtualBuffers\__init__.py:1342
msgid "no previous heading at level 1"
msgstr "plus de titre de niveau 1"

#: virtualBuffers\__init__.py:1343
msgid "moves to the next heading at level 2"
msgstr "aller au titre de niveau 2 suivant"

#: virtualBuffers\__init__.py:1343
msgid "no next heading at level 2"
msgstr "plus de titre de niveau 2"

#: virtualBuffers\__init__.py:1344
msgid "moves to the previous heading at level 2"
msgstr "aller au titre de niveau 2 précédent"

#: virtualBuffers\__init__.py:1344
msgid "no previous heading at level 2"
msgstr "plus de titre de niveau 2"

#: virtualBuffers\__init__.py:1345
msgid "moves to the next heading at level 3"
msgstr "aller au titre de niveau 3 suivant"

#: virtualBuffers\__init__.py:1345
msgid "no next heading at level 3"
msgstr "plus de titre de niveau 3"

#: virtualBuffers\__init__.py:1346
msgid "moves to the previous heading at level 3"
msgstr "aller au titre de niveau 3 précédent"

#: virtualBuffers\__init__.py:1346
msgid "no previous heading at level 3"
msgstr "plus de titre de niveau 3"

#: virtualBuffers\__init__.py:1347
msgid "moves to the next heading at level 4"
msgstr "aller au titre de niveau 4 suivant"

#: virtualBuffers\__init__.py:1347
msgid "no next heading at level 4"
msgstr "plus de titre de niveau 4"

#: virtualBuffers\__init__.py:1348
msgid "moves to the previous heading at level 4"
msgstr "aller au titre de niveau 4 précédent"

#: virtualBuffers\__init__.py:1348
msgid "no previous heading at level 4"
msgstr "plus de titre de niveau 4"

#: virtualBuffers\__init__.py:1349
msgid "moves to the next heading at level 5"
msgstr "aller au titre de niveau 5 suivant"

#: virtualBuffers\__init__.py:1349
msgid "no next heading at level 5"
msgstr "plus de titre de niveau 5"

#: virtualBuffers\__init__.py:1350
msgid "moves to the previous heading at level 5"
msgstr "aller au titre de niveau 5 précédent"

#: virtualBuffers\__init__.py:1350
msgid "no previous heading at level 5"
msgstr "plus de titre de niveau 5"

#: virtualBuffers\__init__.py:1351
msgid "moves to the next heading at level 6"
msgstr "aller au titre de niveau 6 suivant"

#: virtualBuffers\__init__.py:1351
msgid "no next heading at level 6"
msgstr "plus de titre de niveau 6"

#: virtualBuffers\__init__.py:1352
msgid "moves to the previous heading at level 6"
msgstr "aller au titre de niveau 6 précédent"

#: virtualBuffers\__init__.py:1352
msgid "no previous heading at level 6"
msgstr "plus de titre de niveau 6"

#: virtualBuffers\__init__.py:1353
msgid "moves to the next table"
msgstr "aller au tableau suivant"

#: virtualBuffers\__init__.py:1353
msgid "no next table"
msgstr "plus de tableau"

#: virtualBuffers\__init__.py:1354
msgid "moves to the previous table"
msgstr "aller au tableau précédent"

#: virtualBuffers\__init__.py:1354
msgid "no previous table"
msgstr "plus de tableau"

#: virtualBuffers\__init__.py:1355
msgid "moves to the next link"
msgstr "Aller au lien suivant"

#: virtualBuffers\__init__.py:1355
msgid "no next link"
msgstr "plus de lien"

#: virtualBuffers\__init__.py:1356
msgid "moves to the previous link"
msgstr "aller au lien précédent"

#: virtualBuffers\__init__.py:1356
msgid "no previous link"
msgstr "plus de lien"

#: virtualBuffers\__init__.py:1357
msgid "moves to the next visited link"
msgstr "Aller au lien visité suivant"

#: virtualBuffers\__init__.py:1357
msgid "no next visited link"
msgstr "plus de lien visité"

#: virtualBuffers\__init__.py:1358
msgid "moves to the previous visited link"
msgstr "aller au lien visité précédent"

#: virtualBuffers\__init__.py:1358
msgid "no previous visited link"
msgstr "Plus de lien visité"

#: virtualBuffers\__init__.py:1359
msgid "moves to the next unvisited link"
msgstr "Aller au lien non visité suivant"

#: virtualBuffers\__init__.py:1359
msgid "no next unvisited link"
msgstr "plus de lien non visité"

#: virtualBuffers\__init__.py:1360
msgid "moves to the previous unvisited link"
msgstr "aller au lien non visité précédent"

#: virtualBuffers\__init__.py:1360
msgid "no previous unvisited link"
msgstr "plus de lien non visité"

#: virtualBuffers\__init__.py:1361
msgid "moves to the next form field"
msgstr "Aller au champ de formulaire suivant"

#: virtualBuffers\__init__.py:1361
msgid "no next form field"
msgstr "plus de champ de formulaire"

#: virtualBuffers\__init__.py:1362
msgid "moves to the previous form field"
msgstr "aller au champ de formulaire précédent"

#: virtualBuffers\__init__.py:1362
msgid "no previous form field"
msgstr "plus de champ de formulaire"

#: virtualBuffers\__init__.py:1363
msgid "moves to the next list"
msgstr "aller à la liste suivante"

#: virtualBuffers\__init__.py:1363
msgid "no next list"
msgstr "plus de liste"

#: virtualBuffers\__init__.py:1364
msgid "moves to the previous list"
msgstr "aller à la liste précédente"

#: virtualBuffers\__init__.py:1364
msgid "no previous list"
msgstr "plus de liste"

#: virtualBuffers\__init__.py:1365
msgid "moves to the next list item"
msgstr "aller à l'élément de liste suivant"

#: virtualBuffers\__init__.py:1365
msgid "no next list item"
msgstr "plus d'élément de liste"

#: virtualBuffers\__init__.py:1366
msgid "moves to the previous list item"
msgstr "aller à l'élément de liste précédent"

#: virtualBuffers\__init__.py:1366
msgid "no previous list item"
msgstr "plus d'élément de liste"

#: virtualBuffers\__init__.py:1367
msgid "moves to the next button"
msgstr "Aller au bouton suivant"

#: virtualBuffers\__init__.py:1367
msgid "no next button"
msgstr "plus de bouton"

#: virtualBuffers\__init__.py:1368
msgid "moves to the previous button"
msgstr "aller au bouton précédent"

#: virtualBuffers\__init__.py:1368
msgid "no previous button"
msgstr "plus de bouton"

#: virtualBuffers\__init__.py:1369
msgid "moves to the next edit field"
msgstr "Aller à la zone d'édition suivante"

#: virtualBuffers\__init__.py:1369
msgid "no next edit field"
msgstr "plus de zone d'édition"

#: virtualBuffers\__init__.py:1370
msgid "moves to the previous edit field"
msgstr "aller à la zone d'édition précédente"

#: virtualBuffers\__init__.py:1370
msgid "no previous edit field"
msgstr "plus de zone d'édition"

#: virtualBuffers\__init__.py:1371
msgid "moves to the next frame"
msgstr "aller au cadre suivant"

#: virtualBuffers\__init__.py:1371
msgid "no next frame"
msgstr "plus de cadre"

#: virtualBuffers\__init__.py:1372
msgid "moves to the previous frame"
msgstr "aller au cadre précédent"

#: virtualBuffers\__init__.py:1372
msgid "no previous frame"
msgstr "plus de cadre"

#: virtualBuffers\__init__.py:1373
msgid "moves to the next separator"
msgstr "aller au séparateur suivant"

#: virtualBuffers\__init__.py:1373
msgid "no next separator"
msgstr "plus de séparateur"

#: virtualBuffers\__init__.py:1374
msgid "moves to the previous separator"
msgstr "aller au séparateur précédent"

#: virtualBuffers\__init__.py:1374
msgid "no previous separator"
msgstr "plus de séparateur"

#: virtualBuffers\__init__.py:1375
msgid "moves to the next radio button"
msgstr "Aller au bouton radio suivant"

#: virtualBuffers\__init__.py:1375
msgid "no next radio button"
msgstr "plus de bouton radio"

#: virtualBuffers\__init__.py:1376
msgid "moves to the previous radio button"
msgstr "aller au bouton radio précédent"

#: virtualBuffers\__init__.py:1376
msgid "no previous radio button"
msgstr "plus de bouton radio"

#: virtualBuffers\__init__.py:1377
msgid "moves to the next combo box"
msgstr "Aller à la liste déroulante  suivante"

#: virtualBuffers\__init__.py:1377
msgid "no next combo box"
msgstr "plus de liste déroulante"

#: virtualBuffers\__init__.py:1378
msgid "moves to the previous combo box"
msgstr "aller à la liste déroulante précédente"

#: virtualBuffers\__init__.py:1378
msgid "no previous combo box"
msgstr "plus de liste déroulante"

#: virtualBuffers\__init__.py:1379
msgid "moves to the next check box"
msgstr "Aller à la case à cocher suivante"

#: virtualBuffers\__init__.py:1379
msgid "no next check box"
msgstr "plus de case à cocher"

#: virtualBuffers\__init__.py:1380
msgid "moves to the previous check box"
msgstr "aller à la case à cocher précédente"

#: virtualBuffers\__init__.py:1380
msgid "no previous check box"
msgstr "plus de case à cocher"

#: virtualBuffers\__init__.py:1381
msgid "moves to the next graphic"
msgstr "aller au graphique suivant"

#: virtualBuffers\__init__.py:1381
msgid "no next graphic"
msgstr "plus de graphique"

#: virtualBuffers\__init__.py:1382
msgid "moves to the previous graphic"
msgstr "aller au graphique précédent"

#: virtualBuffers\__init__.py:1382
msgid "no previous graphic"
msgstr "plus de graphique"

#: virtualBuffers\__init__.py:1383
msgid "moves to the next block quote"
msgstr "aller à la balise de citation suivante"

#: virtualBuffers\__init__.py:1383
msgid "no next block quote"
msgstr "plus de balise de citation"

#: virtualBuffers\__init__.py:1384
msgid "moves to the previous block quote"
msgstr "aller à la balise de citation précédente"

#: virtualBuffers\__init__.py:1384
msgid "no previous block quote"
msgstr "plus de balise de citation"

#: virtualBuffers\__init__.py:1385
msgid "no more text after a block of links"
msgstr "Plus de texte après un bloc de liens"

#: virtualBuffers\__init__.py:1385
msgid "skips forward past a block of links"
msgstr "Saute après la fin d'un bloc de liens"

#: virtualBuffers\__init__.py:1386
msgid "no more text before a block of links"
msgstr "Plus de texte avant un bloc de liens"

#: virtualBuffers\__init__.py:1386
msgid "skips backward past a block of links"
msgstr "Remonte avant un bloc de liens"

#: virtualBuffers\__init__.py:1387
msgid "moves to the next landmark"
msgstr "Aller au repère suivant"

#: virtualBuffers\__init__.py:1387
msgid "no next landmark"
msgstr "plus de repère"

#: virtualBuffers\__init__.py:1388
msgid "moves to the previous landmark"
msgstr "aller au repère précédent"

#: virtualBuffers\__init__.py:1388
msgid "no previous landmark"
msgstr "plus de repère"

#: virtualBuffers\__init__.py:1389
msgid "moves to the next embedded object"
msgstr "Aller à l'objet embarqué suivant"

#: virtualBuffers\__init__.py:1389
msgid "no next embedded object"
msgstr "plus d'objet embarqué"

#: virtualBuffers\__init__.py:1390
msgid "moves to the previous embedded object"
msgstr "aller à l'objet embarqué précédent"

#: virtualBuffers\__init__.py:1390
msgid "no previous embedded object"
msgstr "plus d'objet embarqué"

#: virtualBuffers\__init__.py:1403
msgid "browse mode"
msgstr "Mode navigation"

#: virtualBuffers\__init__.py:1403
msgid "focus mode"
msgstr "mode formulaire"