~philip.scott/noise/MPRIS-id

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
# French (Canada) translation for noise
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the noise package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: noise\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-04 11:14+0100\n"
"PO-Revision-Date: 2015-12-21 13:44+0000\n"
"Last-Translator: Daniel Fore <Unknown>\n"
"Language-Team: French (Canada) <fr_CA@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2016-05-07 04:54+0000\n"
"X-Generator: Launchpad (build 18025)\n"
"Language: \n"

#: ../core/Utils/TimeUtils.vala:51
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d seconde"
msgstr[1] "%d secondes"

#: ../core/Utils/TimeUtils.vala:57 ../core/Utils/TimeUtils.vala:75
msgid "%u minute"
msgid_plural "%u minutes"
msgstr[0] "%u minute"
msgstr[1] "%u minutes"

#: ../core/Utils/TimeUtils.vala:60
msgid "%u second"
msgid_plural "%u seconds"
msgstr[0] "%u seconde"
msgstr[1] "%u secondes"

#. / Minutes and seconds
#: ../core/Utils/TimeUtils.vala:62
msgctxt "minutes and seconds"
msgid "%s and %s"
msgstr "%s et %s"

#: ../core/Utils/TimeUtils.vala:69
msgid "%u day"
msgid_plural "%u days"
msgstr[0] "%u jour"
msgstr[1] "%u jours"

#: ../core/Utils/TimeUtils.vala:72
msgid "%u hour"
msgid_plural "%u hours"
msgstr[0] "%u heure"
msgstr[1] "%u heures"

#. / days, hours and minutes
#: ../core/Utils/TimeUtils.vala:83
msgctxt "days, hours and minutes"
msgid "%s, %s and %s"
msgstr "%s, %s et %s"

#. / days and hours
#: ../core/Utils/TimeUtils.vala:86
msgctxt "days and hours"
msgid "%s and %s"
msgstr "%s et %s"

#. / days and minutes
#: ../core/Utils/TimeUtils.vala:91
msgctxt "days and minutes"
msgid "%s and %s"
msgstr "%s et %s"

#. / hours and minutes
#: ../core/Utils/TimeUtils.vala:100
msgctxt "hours and minutes"
msgid "%s and %s"
msgstr "%s et %s"

#. / Format of date strings. See reference documentation of g_date_time_format()
#. / for more details.
#: ../core/Utils/TimeUtils.vala:159
msgid "%m/%e/%Y %l:%M %p"
msgstr "%e/%m/%Y %k:%M"

#: ../core/Utils/FileUtils.vala:294
msgid " (%d)"
msgstr " (%d)"

#: ../core/Utils/PlaylistsUtils.vala:96
msgid "%s (%d)"
msgstr "%s (%d)"

#: ../core/Utils/PlaylistsUtils.vala:236
msgid "New playlist"
msgstr "Nouvelle liste de lecture"

#: ../core/Utils/PlaylistsUtils.vala:247
msgid "%s (%i)"
msgstr "%s (%i)"

#: ../core/Utils/PlaylistsUtils.vala:274
msgid "Export Playlist"
msgstr "Exporter la liste de lecture"

#: ../core/Utils/PlaylistsUtils.vala:276 ../core/Utils/PlaylistsUtils.vala:370
#: ../src/Views/Wrappers/MusicViewWrapper.vala:131
#: ../src/Widgets/TopDisplay.vala:90 ../src/LibraryWindow.vala:1088
#: ../src/Dialogs/InstallGstreamerPluginsDialog.vala:63
#: ../src/Dialogs/RemoveFilesDialog.vala:52
#: ../src/Dialogs/FileNotFoundDialog.vala:87
#: ../src/Dialogs/FileNotFoundDialog.vala:126
#: ../src/Dialogs/SetMusicFolderConfirmation.vala:61
#: ../src/Dialogs/SetMusicFolderConfirmation.vala:109
#: ../src/Dialogs/SmartPlaylistEditor.vala:118
msgid "Cancel"
msgstr "Annuler"

#: ../core/Utils/PlaylistsUtils.vala:277 ../src/Dialogs/MediaEditor.vala:91
#: ../src/Dialogs/SmartPlaylistEditor.vala:116
msgid "Save"
msgstr "Enregistrer"

#: ../core/Utils/PlaylistsUtils.vala:282 ../core/Utils/PlaylistsUtils.vala:377
msgid "MPEG Version 3.0 Extended (*.m3u)"
msgstr "MPEG Version 3.0 (*.m3u)"

#: ../core/Utils/PlaylistsUtils.vala:287 ../core/Utils/PlaylistsUtils.vala:382
msgid "Shoutcast Playlist Version 2.0 (*.pls)"
msgstr "Liste de lecture Shoutcast Version 2.0 (*.pls)"

#: ../core/Utils/PlaylistsUtils.vala:362
msgid "Playlist"
msgstr "Liste de lecture"

#: ../core/Utils/PlaylistsUtils.vala:368
msgid "Import %s"
msgstr "Importer %s"

#: ../core/Utils/PlaylistsUtils.vala:371
#: ../src/Views/Wrappers/MusicViewWrapper.vala:133
#: ../src/Views/GridView/PopupListView.vala:247 ../src/LibraryWindow.vala:1089
#: ../src/Dialogs/FileNotFoundDialog.vala:127
#: ../src/Dialogs/SetMusicFolderConfirmation.vala:110
msgid "Open"
msgstr "Ouvrir"

#: ../core/Utils/PlaylistsUtils.vala:402
msgid "Unrecognized playlist file. Import failed."
msgstr "Format de liste de lecture inconnu. Échec de l'importation."

#: ../core/GStreamer/Equalizer.vala:72
msgid "Flat"
msgstr "Plat"

#: ../core/GStreamer/Equalizer.vala:73
msgid "Classical"
msgstr "Classique"

#: ../core/GStreamer/Equalizer.vala:74
msgid "Club"
msgstr "Club"

#: ../core/GStreamer/Equalizer.vala:75
msgid "Dance"
msgstr "Dance"

#: ../core/GStreamer/Equalizer.vala:76
msgid "Full Bass"
msgstr "Amplification des basses"

#: ../core/GStreamer/Equalizer.vala:77
msgid "Full Treble"
msgstr "Amplification des aiguës"

#: ../core/GStreamer/Equalizer.vala:78
msgid "Full Bass + Treble"
msgstr "Amplification des aiguës + basses"

#: ../core/GStreamer/Equalizer.vala:79
msgid "Headphones"
msgstr "Écouteurs"

#: ../core/GStreamer/Equalizer.vala:80
msgid "Large Hall"
msgstr "Grande salle"

#: ../core/GStreamer/Equalizer.vala:81
msgid "Live"
msgstr "En direct"

#: ../core/GStreamer/Equalizer.vala:82
msgid "Party"
msgstr "Soirée"

#: ../core/GStreamer/Equalizer.vala:83
msgid "Pop"
msgstr "Pop"

#: ../core/GStreamer/Equalizer.vala:84
msgid "Reggae"
msgstr "Reggae"

#: ../core/GStreamer/Equalizer.vala:85
msgid "Rock"
msgstr "Rock"

#: ../core/GStreamer/Equalizer.vala:86
msgid "Soft"
msgstr "Soft"

#: ../core/GStreamer/Equalizer.vala:87
msgid "Ska"
msgstr "Ska"

#: ../core/GStreamer/Equalizer.vala:88
msgid "Soft Rock"
msgstr "Soft Rock"

#: ../core/GStreamer/Equalizer.vala:89
msgid "Techno"
msgstr "Techno"

#: ../core/LibrariesManager.vala:143
msgid "Importing <b>$NAME</b> by <b>$ARTIST</b> to library…"
msgstr "Importation de <b>$NAME</b> par <b>$ARTIST</b> dans la bibliothèque…"

#. / Used for unknown titles, artists, or album names.
#: ../core/Media.vala:34
msgid "Unknown"
msgstr "Inconnu"

#. / Please keep $NAME and $ALBUM, they will be replaced by their values
#: ../core/Media.vala:180
msgid "$NAME on $ALBUM"
msgstr "$NAME dans $ALBUM"

#. / Please keep $NAME and $ARTIST, they will be replaced by their values
#: ../core/Media.vala:183
msgid "$NAME by $ARTIST"
msgstr "$NAME par $ARTIST"

#. / Please keep $NAME, $ARTIST and $ALBUM, they will be replaced by their values
#: ../core/Media.vala:189
msgid "$NAME by $ARTIST on $ALBUM"
msgstr "$NAME par $ARTIST dans $ALBUM"

#: ../src/PlaybackManager.vala:96
msgctxt "Name of the playlist"
msgid "Queue"
msgstr "File d'attente"

#: ../src/Views/DeviceView.vala:38
msgid "Cancelling…"
msgstr "Annulation…"

#: ../src/Views/DeviceView.vala:38
msgid "Device operation has been cancelled and will stop after this media."
msgstr ""
"L'opération de l'appareil a été annulée et sera arrêtée après ce média."

#: ../src/Views/DeviceView.vala:59
msgid "OK"
msgstr "OK"

#: ../src/Views/DeviceView.vala:100
msgid "No External Songs"
msgstr "Aucune chanson externe"

#: ../src/Views/DeviceView.vala:100
msgid ""
"There were no songs found on this device that are not in your library."
msgstr ""
"Aucune chanson que vous ne possédez pas dans votre bibliothèque n'a été "
"trouvée."

#: ../src/Views/DeviceSummaryWidget.vala:73
msgid "Device Name:"
msgstr "Nom du périphérique:"

#: ../src/Views/DeviceSummaryWidget.vala:77
msgid "Device Name"
msgstr "Nom du périphérique"

#: ../src/Views/DeviceSummaryWidget.vala:79
msgid "Automatically sync when plugged in:"
msgstr "Synchroniser automatiquement lorsque branché:"

#: ../src/Views/DeviceSummaryWidget.vala:86
msgid "Sync:"
msgstr "Syncrhoniser:"

#: ../src/Views/DeviceSummaryWidget.vala:98
msgid "Other Files"
msgstr "Autres fichiers"

#: ../src/Views/DeviceSummaryWidget.vala:99 ../src/LibraryWindow.vala:681
#: ../src/LibraryWindow.vala:785
msgid "Music"
msgstr "Musique"

#: ../src/Views/DeviceSummaryWidget.vala:253
msgid "All Music"
msgstr "Toute la musique"

#: ../src/Views/DeviceSummaryWidget.vala:308
msgid "Sync Failed"
msgstr "Échec de la synchronisation"

#: ../src/Views/DeviceSummaryWidget.vala:308
msgid ""
"The playlist named %s is used to sync device %s, but could not be found."
msgstr ""
"La liste musicale %s est utilisée pour synchroniser le périphérique %s, mais "
"n'a pas pu être trouvée."

#: ../src/Views/DeviceSummaryWidget.vala:320
#: ../src/Views/DeviceSummaryWidget.vala:322
msgid "Cannot Sync"
msgstr "Impossible de synchroniser"

#: ../src/Views/DeviceSummaryWidget.vala:320
msgid ""
"Cannot sync device with selected sync settings. Not enough space on disk"
msgstr ""
"Impossible de synchroniser le périphérique avec les paramètres sélectionnés. "
"Pas assez d'espace sur le disque dur."

#: ../src/Views/DeviceSummaryWidget.vala:322
msgid "Device is already doing an operation."
msgstr "L'appareil est déjà occupé."

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:46
#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:50
#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:66
msgid "No Songs"
msgstr "Pas de chansons"

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:47
msgid "Updating playlist. Please wait."
msgstr "Mise à jour de la liste de lecture. Veuillez patienter."

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:51
msgid ""
"To add songs to this playlist, use the <b>secondary click</b> on an item and "
"choose <b>Add to Playlist</b>."
msgstr ""
"Pour ajouter des chansons à cette liste de lecture, utilisez le <b>clic "
"droit</b> sur un élément et choisissez <b>Ajouter à la liste de lecture</b>."

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:55
msgid "Edit Smart Playlist"
msgstr "Modifier la liste de lecture intelligente"

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:67
msgid ""
"This playlist will be automatically populated with songs that match its "
"rules. To modify these rules, use the <b>secondary click</b> on it in the "
"sidebar and click on <b>Edit</b>. Optionally, you can click on the button "
"below."
msgstr ""
"Cette liste de lecture sera automatiquement complétée de titres vérifiant "
"ses règles. Pour modifier ces règles, utilisez le <b>clic secondaire</b> sur "
"la liste dans le panneau latéral, puis cliquez sur <b>Modifier</b>. Vous "
"pouvez aussi cliquer sur le bouton ci-dessous."

#: ../src/Views/Wrappers/ViewWrapper.vala:444
msgid "No media"
msgstr "Aucun média"

#: ../src/Views/Wrappers/MusicViewWrapper.vala:51
msgid "Get Some Tunes"
msgstr "Obtenez de la musique"

#: ../src/Views/Wrappers/MusicViewWrapper.vala:52
msgid "Add music to your library."
msgstr "Ajouter de la musique dans votre bibliothèque."

#: ../src/Views/Wrappers/MusicViewWrapper.vala:54
#: ../src/LibraryWindow.vala:1086
msgid "Import Music"
msgstr "Importer de la musique"

#: ../src/Views/Wrappers/MusicViewWrapper.vala:55
msgid "Import music from a source into your library."
msgstr "Importer de la musique dans votre bibliothèque depuis une source"

#: ../src/Views/Wrappers/MusicViewWrapper.vala:57
msgid "Change Music Folder"
msgstr "Changer le dossier de musique"

#: ../src/Views/Wrappers/MusicViewWrapper.vala:58
msgid "Load music from a folder, a network or an external disk."
msgstr ""
"Charger de la musique depuis un dossier, un réseau ou un disque externe."

#: ../src/Views/Wrappers/MusicViewWrapper.vala:103
#: ../src/Views/Wrappers/MusicViewWrapper.vala:119
msgid "Import your Music"
msgstr "Importer de la musique"

#: ../src/Views/Wrappers/MusicViewWrapper.vala:103
#: ../src/Views/Wrappers/MusicViewWrapper.vala:119
msgid "Import all your Music from %s into your library."
msgstr "Importer toute la musique contenue dans %s vers votre bibliothèque."

#: ../src/Views/Wrappers/MusicViewWrapper.vala:129
msgid "Select Music Folder"
msgstr "Sélectionner le dossier Musique"

#: ../src/Views/ListView/ListView.vala:86
msgid "No Songs Found."
msgstr "Aucune chanson n'a été trouvée."

#: ../src/Views/ListView/ListView.vala:357
msgid "%i track"
msgid_plural "%i tracks"
msgstr[0] "%i piste"
msgstr[1] "%i pistes"

#: ../src/Views/ListView/ListView.vala:359
msgid "%u song"
msgid_plural "%u songs"
msgstr[0] "%u chanson"
msgstr[1] "%u chansons"

#: ../src/Views/ListView/ListView.vala:367
msgctxt "Format used on statusbar: $description, $total_duration"
msgid "%s, %s"
msgstr "%s, %s"

#: ../src/Views/ListView/Lists/CellDataFunctionHelper.vala:124
msgid "%i kbps"
msgstr "%i kbps"

#: ../src/Views/ListView/Lists/CellDataFunctionHelper.vala:149
#: ../src/Views/ListView/Lists/MusicListView.vala:627
msgid "Never"
msgstr "Jamais"

#: ../src/Views/ListView/Lists/GenericList.vala:118
msgid "Autosize Columns"
msgstr "Taille des colonnes automatique"

#: ../src/Views/ListView/Lists/ListColumn.vala:59
msgctxt "List column title"
msgid "#"
msgstr "n°"

#: ../src/Views/ListView/Lists/ListColumn.vala:62
msgctxt "List column title"
msgid "Track"
msgstr "Piste"

#: ../src/Views/ListView/Lists/ListColumn.vala:65
msgctxt "List column title"
msgid "Title"
msgstr "Titre"

#: ../src/Views/ListView/Lists/ListColumn.vala:68
msgctxt "List column title"
msgid "Length"
msgstr "Durée"

#: ../src/Views/ListView/Lists/ListColumn.vala:71
msgctxt "List column title"
msgid "Artist"
msgstr "Artiste"

#: ../src/Views/ListView/Lists/ListColumn.vala:74
msgctxt "List column title"
msgid "Album"
msgstr "Album"

#: ../src/Views/ListView/Lists/ListColumn.vala:77
msgctxt "List column title"
msgid "Album Artist"
msgstr "Artiste de l'album"

#: ../src/Views/ListView/Lists/ListColumn.vala:80
msgctxt "List column title"
msgid "Composer"
msgstr "Compositeur"

#: ../src/Views/ListView/Lists/ListColumn.vala:83
msgctxt "List column title"
msgid "Genre"
msgstr "Genre"

#: ../src/Views/ListView/Lists/ListColumn.vala:86
msgctxt "List column title"
msgid "Year"
msgstr "Année"

#: ../src/Views/ListView/Lists/ListColumn.vala:89
msgctxt "List column title"
msgid "Grouping"
msgstr "Groupement"

#: ../src/Views/ListView/Lists/ListColumn.vala:92
msgctxt "List column title"
msgid "Bitrate"
msgstr "Débit"

#: ../src/Views/ListView/Lists/ListColumn.vala:95
msgctxt "List column title"
msgid "Rating"
msgstr "Classement"

#: ../src/Views/ListView/Lists/ListColumn.vala:98
msgctxt "List column title"
msgid "Plays"
msgstr "Joué"

#: ../src/Views/ListView/Lists/ListColumn.vala:101
msgctxt "List column title"
msgid "Skips"
msgstr "Passé"

#: ../src/Views/ListView/Lists/ListColumn.vala:104
msgctxt "List column title"
msgid "Date Added"
msgstr "Date d'ajout"

#: ../src/Views/ListView/Lists/ListColumn.vala:107
msgctxt "List column title"
msgid "Last Played"
msgstr "Dernière lecture"

#: ../src/Views/ListView/Lists/ListColumn.vala:110
msgctxt "List column title (beats per minute)"
msgid "BPM"
msgstr "BPM"

#: ../src/Views/ListView/Lists/ListColumn.vala:113
msgctxt "List column title (file location)"
msgid "Location"
msgstr "Emplacement"

#: ../src/Views/ListView/Lists/ListColumn.vala:116
msgctxt "List column title"
msgid "File Size"
msgstr "Taille du fichier"

#: ../src/Views/ListView/Lists/MusicListView.vala:84
msgid "Remove from Library"
msgstr "Supprimer de la bibliothèque"

#: ../src/Views/ListView/Lists/MusicListView.vala:91
msgid "Remove from Queue"
msgstr "Supprimer de la file d'attente"

#: ../src/Views/ListView/Lists/MusicListView.vala:101
msgid "Remove from Device"
msgstr "Supprimer du périphérique"

#: ../src/Views/ListView/Lists/MusicListView.vala:114
msgid "Scroll to Current Song"
msgstr "Aller au titre en cours"

#: ../src/Views/ListView/Lists/MusicListView.vala:117
msgid "Edit Song Info"
msgstr "Éditer les informations du morceau"

#: ../src/Views/ListView/Lists/MusicListView.vala:118
msgid "Show in File Browser"
msgstr "Afficher dans le gestionnaire de fichiers"

#: ../src/Views/ListView/Lists/MusicListView.vala:119
msgid "Other actions"
msgstr "Autres actions"

#: ../src/Views/ListView/Lists/MusicListView.vala:120
msgctxt "Action item (verb)"
msgid "Queue"
msgstr "File d'attente"

#: ../src/Views/ListView/Lists/MusicListView.vala:121
msgid "Add to Playlist"
msgstr "Ajouter à la liste de lecture"

#: ../src/Views/ListView/Lists/MusicListView.vala:122
#: ../src/Dialogs/FileNotFoundDialog.vala:86
msgid "Remove Song"
msgstr "Supprimer le morceau"

#: ../src/Views/ListView/Lists/MusicListView.vala:123
#: ../src/Widgets/SourceListView.vala:148
msgid "Import to Library"
msgstr "Importer dans la bibliothèque"

#: ../src/Views/ListView/Lists/MusicListView.vala:178
msgid "New Playlist…"
msgstr "Nouvelle liste de lecture…"

#: ../src/Views/ListView/Lists/MusicListView.vala:218
msgid "Import %i of %i selected songs"
msgstr "Importation de %i chansons parmi les %i sélectionnés"

#: ../src/Views/ListView/Lists/MusicListView.vala:220
msgid "Import %i song"
msgid_plural "Import %i songs"
msgstr[0] "Importer %i chanson"
msgstr[1] "Importer %i chansons"

#: ../src/Views/ListView/Lists/MusicListView.vala:612
msgid "1234 kbps"
msgstr "1234 kbps"

#. / Sample string used to measure the ideal size of the Title, Artist,
#. / Album, Album Artist, Composer, Genre, and Grouping columns in the
#. / list view. It's *never* displayed in the user interface. The translated
#. / string should have a reasonable length, similar to the average length
#. / of a song title or artist name in your language. The automatic column
#. / width will depend on the length of this string and the space needed
#. / by the column's title header.
#: ../src/Views/ListView/Lists/MusicListView.vala:683
msgid "Sample List String"
msgstr "Exemple de liste"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:53
msgid "Genres"
msgstr "Genres"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:55
msgid "Artists"
msgstr "Artistes"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:57
msgid "Albums"
msgstr "Albums"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:59
msgid "Years"
msgstr "Années"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:61
msgid "Ratings"
msgstr "Classements"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:63
msgid "Composers"
msgstr "Compositeurs"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumn.vala:65
msgid "Groupings"
msgstr "Groupements"

#: ../src/Views/ListView/ColumnBrowser/ColumnBrowser.vala:147
#: ../src/Widgets/PresetList.vala:46 ../src/Widgets/EqualizerPopover.vala:335
msgid "Automatic"
msgstr "Automatique"

#: ../src/Views/ListView/ColumnBrowser/ColumnBrowser.vala:149
msgid "On Left"
msgstr "À Gauche"

#: ../src/Views/ListView/ColumnBrowser/ColumnBrowser.vala:151
msgid "On Top"
msgstr "En Haut"

#: ../src/Views/ListView/ColumnBrowser/ColumnBrowser.vala:400
msgid "Unrated"
msgstr "Pas encore évalué"

#: ../src/Views/ListView/ColumnBrowser/ColumnBrowser.vala:402
msgid "%i Star"
msgid_plural "%i Stars"
msgstr[0] "%i étoile"
msgstr[1] "%i étoiles"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:210
msgid "All Genres"
msgstr "Tous les genres"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:212
msgid "All %i Genres"
msgstr "Tous %i les genres"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:214
msgid "No Genres"
msgstr "Pas de genres"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:219
msgid "All Artists"
msgstr "Tous les artistes"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:221
msgid "All %i Artists"
msgstr "Tous %i les artistes"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:223
msgid "No Artists"
msgstr "Pas d'artistes"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:228
msgid "All Albums"
msgstr "Tous les albums"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:230
msgid "All %i Albums"
msgstr "Tous %i les albums"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:232
msgid "No Albums"
msgstr "Pas d'albums"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:237
msgid "All Years"
msgstr "Toutes les années"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:239
msgid "All %i Years"
msgstr "Toutes %i les années"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:241
msgid "No Years"
msgstr "Pas d'années"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:246
msgid "All Ratings"
msgstr "Tous les classements"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:248
msgid "No Ratings"
msgstr "Pas de classements"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:253
msgid "All Groupings"
msgstr "Tous les groupements"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:255
msgid "All %i Groupings"
msgstr "Tous les %i groupements"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:257
msgid "No Groupings"
msgstr "Aucun groupement"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:262
msgid "All Composers"
msgstr "Tous les compositeurs"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:264
msgid "All %i Composers"
msgstr "Tous les %i compositeurs"

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:266
msgid "No Composers"
msgstr "Aucun compositeur"

#: ../src/Views/ContentView.vala:21
msgctxt ""
"Format used on statusbar: $description, $total_duration, $total_file_size"
msgid "%s, %s, %s"
msgstr "%s, %s, %s"

#: ../src/Views/GridView/PopupListView.vala:58
msgid "Set new album cover"
msgstr "Définir une nouvelle pochette d'album"

#: ../src/Views/GridView/PopupListView.vala:152
msgctxt "Title format used on Album View Popup: $ALBUM by $ARTIST"
msgid "%s by %s"
msgstr "%s par %s"

#: ../src/Views/GridView/PopupListView.vala:248
msgid "_Cancel"
msgstr "_Annuler"

#: ../src/Views/GridView/PopupListView.vala:248
msgid "_Open"
msgstr "_Ouvrir"

#: ../src/Views/GridView/PopupListView.vala:251
msgid "Image files"
msgstr "Fichiers d'images"

#: ../src/Views/GridView/GridView.vala:54
msgid "No Albums Found."
msgstr "Aucun album n'a été trouvé"

#: ../src/Views/GridView/GridView.vala:132
msgid "%u album"
msgid_plural "%u albums"
msgstr[0] "%u album"
msgstr[1] "%u albums"

#: ../src/Widgets/SourceListView.vala:59 ../src/Widgets/SourceListView.vala:72
msgid "Rename"
msgstr "Renommer"

#: ../src/Widgets/SourceListView.vala:60 ../src/Widgets/SourceListView.vala:74
#: ../src/Dialogs/SmartPlaylistEditor.vala:260
msgid "Remove"
msgstr "Retirer"

#: ../src/Widgets/SourceListView.vala:61 ../src/Widgets/SourceListView.vala:75
#: ../src/Widgets/SourceListView.vala:90
msgid "Export…"
msgstr "Exporter…"

#: ../src/Widgets/SourceListView.vala:73
msgid "Edit…"
msgstr "Modifier…"

#: ../src/Widgets/SourceListView.vala:88
msgid "Save as Playlist"
msgstr "Enregistrer en tant que liste de lecture"

#: ../src/Widgets/SourceListView.vala:156
msgid "Eject"
msgstr "Éjecter"

#: ../src/Widgets/SourceListView.vala:161
#: ../src/Widgets/SourceListView.vala:201
msgid "New Playlist"
msgstr "Nouvelle liste de lecture"

#: ../src/Widgets/SourceListView.vala:166
#: ../src/Widgets/SourceListView.vala:202
msgid "New Smart Playlist"
msgstr "Nouvelle liste de lecture intelligente"

#: ../src/Widgets/SourceListView.vala:171 ../src/Widgets/SpaceWidget.vala:237
msgid "Sync"
msgstr "Synchroniser"

#: ../src/Widgets/SourceListView.vala:203
msgid "Import Playlists"
msgstr "Importer des listes de lecture"

#: ../src/Widgets/SourceListView.vala:313
msgid "Library"
msgstr "Bibliothèque"

#: ../src/Widgets/SourceListView.vala:314
msgid "Devices"
msgstr "Périphériques"

#: ../src/Widgets/SourceListView.vala:315
msgid "Network"
msgstr "Réseau"

#: ../src/Widgets/SourceListView.vala:316 ../plugins/MPRIS/MPRIS.vala:640
msgid "Playlists"
msgstr "Listes de lecture"

#: ../src/Widgets/PresetList.vala:47
msgid "Delete Current"
msgstr "Supprimer celle en cours"

#: ../src/Widgets/StatusBar.vala:64 ../src/Widgets/StatusBar.vala:94
#: ../src/Widgets/EqualizerPopover.vala:339
msgid "Off"
msgstr "Désactivé"

#: ../src/Widgets/StatusBar.vala:64
msgid "Enable Repeat"
msgstr "Activer la répétition"

#: ../src/Widgets/StatusBar.vala:65
msgid "Song"
msgstr "Pièce"

#: ../src/Widgets/StatusBar.vala:65
msgid "Repeat Song"
msgstr "Répéter la pièce"

#: ../src/Widgets/StatusBar.vala:66 ../src/Dialogs/MediaEditor.vala:194
#: ../src/Dialogs/TransferFromDeviceDialog.vala:121
#: ../src/Dialogs/SmartPlaylistEditor.vala:263
msgid "Album"
msgstr "Album"

#: ../src/Widgets/StatusBar.vala:66
msgid "Repeat Album"
msgstr "Répéter l'album"

#: ../src/Widgets/StatusBar.vala:67 ../src/Dialogs/MediaEditor.vala:192
#: ../src/Dialogs/TransferFromDeviceDialog.vala:120
#: ../src/Dialogs/SmartPlaylistEditor.vala:264
msgid "Artist"
msgstr "Artiste"

#: ../src/Widgets/StatusBar.vala:67
msgid "Repeat Artist"
msgstr "Répéter l'artiste"

#: ../src/Widgets/StatusBar.vala:68 ../src/Widgets/StatusBar.vala:95
msgid "All"
msgstr "Tout"

#: ../src/Widgets/StatusBar.vala:68
msgid "Disable Repeat"
msgstr "Désactiver Répétition"

#: ../src/Widgets/StatusBar.vala:94
msgid "Enable Shuffle"
msgstr "Activer la lecture aléatoire"

#: ../src/Widgets/StatusBar.vala:95
msgid "Disable Shuffle"
msgstr "Désactiver la lecture aléatoire"

#: ../src/Widgets/StatusBar.vala:128 ../src/Widgets/StatusBar.vala:139
msgid "Add Playlist"
msgstr "Ajouter une liste de lecture"

#: ../src/Widgets/StatusBar.vala:140
msgid "Add Smart Playlist"
msgstr "Ajouter une liste de lecture intelligente"

#. / Do not remove '%s'. It's a placeholder for selected equalizer preset name.
#: ../src/Widgets/StatusBar.vala:189
msgid "Equalizer: %s"
msgstr ""

#: ../src/Widgets/StatusBar.vala:199
msgid "Hide"
msgstr "Masquer"

#: ../src/Widgets/StatusBar.vala:199
msgid "Show Info Panel"
msgstr "Afficher le panneau d'information"

#: ../src/Widgets/StatusBar.vala:200
msgid "Show"
msgstr "Afficher"

#: ../src/Widgets/StatusBar.vala:200
msgid "Hide Info Panel"
msgstr "Masquer le panneau d'information"

#: ../src/Widgets/EqualizerPopover.vala:163
msgid "Save preset"
msgstr "Enregistrer les pré-réglages"

#: ../src/Widgets/EqualizerPopover.vala:426
msgid "%s (Custom)"
msgstr "%s (Personnalisé)"

#: ../src/Widgets/EqualizerPopover.vala:428
msgid "%s (Custom %i)"
msgstr "%s (Personnalisé %i)"

#: ../src/Widgets/EqualizerPopover.vala:431
msgid "Custom Preset"
msgstr "Pré-réglages personnalisés"

#: ../src/Widgets/EqualizerPopover.vala:433
msgid "Custom Preset %i"
msgstr "Pré-réglages personnalisés %i"

#: ../src/Widgets/ViewSelector.vala:68
msgid "View as Albums"
msgstr "Vue par albums"

#: ../src/Widgets/ViewSelector.vala:72
msgid "View as List"
msgstr "Vue par liste"

#: ../src/Widgets/ViewSelector.vala:76
msgid "View in Columns"
msgstr "Vue par colonne"

#: ../src/Widgets/SpaceWidget.vala:266
msgid "Free"
msgstr "Libre"

#: ../src/Widgets/SpaceWidget.vala:383
msgid "Using %s of %s (%.2f%)"
msgstr "%s sur %s utilisés (%.2f %)"

#: ../src/LibraryWindow.vala:250
msgid "Import to Library…"
msgstr "Importer dans la bibliothèque…"

#: ../src/LibraryWindow.vala:253 ../src/Dialogs/PreferencesWindow.vala:86
msgid "Preferences"
msgstr "Préférences"

#: ../src/LibraryWindow.vala:270
msgid "Previous"
msgstr "Précédent"

#: ../src/LibraryWindow.vala:272 ../src/LibraryWindow.vala:1013
msgid "Play"
msgstr "Lecture"

#: ../src/LibraryWindow.vala:274
msgid "Next"
msgstr "Suivant"

#: ../src/LibraryWindow.vala:278
msgid "Search Music"
msgstr "Rechercher une musique"

#: ../src/LibraryWindow.vala:853
msgid "No songs in Queue"
msgstr "Aucune chanson dans la file"

#: ../src/LibraryWindow.vala:853
msgid ""
"To add songs to the queue, use the <b>secondary click</b> on an item and "
"choose <b>Queue</b>. When a song finishes, the queued songs will be played "
"first before the next song in the currently playing list."
msgstr ""
"Pour ajouter des chansons à la file d'attente, utilisez le <b>clic droit</b> "
"sur un élément et choisissez <b>File d'attente</b>, Lorsqu'une chanson se "
"termine, les chansons de la file seront lues en premier avant la prochaine "
"chanson de la liste de lecture en cours."

#: ../src/LibraryWindow.vala:856
msgid "No songs in History"
msgstr "Aucune chanson dans l'historique"

#: ../src/LibraryWindow.vala:856
msgid ""
"After a part of a song has been played, it is added to the history list.\n"
"You can use this list to see all the songs you have played during the "
"current session."
msgstr ""
"Après la lecture d'une partie d'une chanson, celle-ci est ajoutée à "
"l'historique.\n"
"Vous pouvez utiliser cette liste pour voir toutes les chansons lues durant "
"la session courante."

#: ../src/LibraryWindow.vala:1007
msgid "Pause"
msgstr "Pause"

#: ../src/LocalBackend/LocalLibrary.vala:184
msgid "Importing music from %s…"
msgstr "Importation de musiques de %s…"

#: ../src/LocalBackend/LocalLibrary.vala:212
msgid "Adding files to library…"
msgstr "Ajout de fichiers dans la bibliothèque…"

#: ../src/LocalBackend/LocalLibrary.vala:227
msgid "<b>Importing</b> music to library…"
msgstr "<b>Importation</b> de musique dans la bibliothèque…"

#: ../src/LocalBackend/LocalLibrary.vala:251
msgid "All music files are already in your library"
msgstr "Tous les fichiers musicaux sont déjà dans votre bibliothèque"

#: ../src/LocalBackend/LocalLibrary.vala:251
msgid "No files were imported."
msgstr "Aucun fichier importé"

#: ../src/LocalBackend/LocalLibrary.vala:256
msgid "Rescanning music for changes. This may take a while…"
msgstr "Recherche de changements. Ceci peut prendre du temps…"

#: ../src/LocalBackend/LocalLibrary.vala:330
msgid "Added to your queue:"
msgstr "Ajouté à la file d'attente :"

#: ../src/LocalBackend/LocalLibrary.vala:341
msgid "%d Track"
msgid_plural "%d Tracks"
msgstr[0] ""
msgstr[1] ""

#: ../src/LocalBackend/LocalSmartPlaylist.vala:218
msgid "Favorite Songs"
msgstr "Morceaux favoris"

#: ../src/LocalBackend/LocalSmartPlaylist.vala:226
msgid "Recently Added"
msgstr "Récemment ajoutés"

#: ../src/LocalBackend/LocalSmartPlaylist.vala:234
msgid "Recent Favorites"
msgstr "Favoris récents"

#: ../src/LocalBackend/LocalSmartPlaylist.vala:242
msgid "Never Played"
msgstr "Jamais écouté"

#: ../src/LocalBackend/LocalSmartPlaylist.vala:250
msgid "Over Played"
msgstr "Les plus écoutés"

#: ../src/LocalBackend/LocalSmartPlaylist.vala:258
msgid "Not Recently Played"
msgstr "Non écoutés récemment"

#: ../src/Objects/LyricFetcher.vala:141
msgid "Lyrics fetched from www.lyricsmania.com"
msgstr "Paroles provenant de www.lyricsmania.com"

#: ../src/Objects/HistoryPlaylist.vala:40
msgid "History"
msgstr "Historique"

#: ../src/Noise.vala:65
msgid "translator-credits"
msgstr ""
"Launchpad Contributions:\n"
"  Brendan William https://launchpad.net/~mamemame187\n"
"  Daniel Fore https://launchpad.net/~danrabbit\n"
"  Guillaume Pomerleau https://launchpad.net/~gupom7\n"
"  Marc Boisvert-Dupras https://launchpad.net/~bladetecltd\n"
"  Nicolas Boivin https://launchpad.net/~nakilio\n"
"  Pascal Laprade https://launchpad.net/~laprade-p\n"
"  Simon https://launchpad.net/~nowis74\n"
"  Xavier L. https://launchpad.net/~xav0989\n"
"  londumas https://launchpad.net/~helion331990"

#: ../src/FileOperator.vala:309
msgid "Import Complete"
msgstr "Importation terminée"

#: ../src/FileOperator.vala:309
msgid "%s has imported your library."
msgstr "%s a importé la bibliothèque."

#: ../src/FileOperator.vala:322
msgid "<b>Copying</b> files to <b>Music Folder</b>…"
msgstr "<b>Copie</b> des fichiers dans le <b>Dossier Musique</b>…"

#: ../src/Dialogs/MediaEditor.vala:83
msgid "Details"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:85 ../src/Dialogs/MediaEditor.vala:369
msgid "Lyrics"
msgstr "Paroles"

#: ../src/Dialogs/MediaEditor.vala:94 ../src/Dialogs/PreferencesWindow.vala:99
msgid "Close"
msgstr "Fermer"

#: ../src/Dialogs/MediaEditor.vala:180 ../src/Dialogs/MediaEditor.vala:343
msgid "Editing $NAME by $ARTIST"
msgstr "Modification de $NAME par $ARTIST"

#: ../src/Dialogs/MediaEditor.vala:182 ../src/Dialogs/MediaEditor.vala:345
msgid "Editing %s"
msgstr "Modification de %s"

#: ../src/Dialogs/MediaEditor.vala:185 ../src/Dialogs/MediaEditor.vala:348
msgid "Editing %i songs"
msgstr "Modification de %i chansons"

#: ../src/Dialogs/MediaEditor.vala:191
#: ../src/Dialogs/TransferFromDeviceDialog.vala:119
#: ../src/Dialogs/SmartPlaylistEditor.vala:276
msgid "Title"
msgstr "Titre"

#: ../src/Dialogs/MediaEditor.vala:193
msgid "Album Artist"
msgstr "Artiste de l'album"

#: ../src/Dialogs/MediaEditor.vala:195 ../src/Dialogs/MediaEditor.vala:463
#: ../src/Dialogs/SmartPlaylistEditor.vala:269
msgid "Genre"
msgstr "Genre"

#: ../src/Dialogs/MediaEditor.vala:196
#: ../src/Dialogs/SmartPlaylistEditor.vala:267
msgid "Composer"
msgstr "Compositeur"

#: ../src/Dialogs/MediaEditor.vala:197 ../src/Dialogs/MediaEditor.vala:463
#: ../src/Dialogs/SmartPlaylistEditor.vala:270
msgid "Grouping"
msgstr "Groupement"

#: ../src/Dialogs/MediaEditor.vala:198
#: ../src/Dialogs/SmartPlaylistEditor.vala:266
msgid "Comment"
msgstr "Commentaire"

#: ../src/Dialogs/MediaEditor.vala:199
msgid "Track"
msgstr "Piste"

#: ../src/Dialogs/MediaEditor.vala:200
msgid "Disc"
msgstr "Disque"

#: ../src/Dialogs/MediaEditor.vala:201
#: ../src/Dialogs/SmartPlaylistEditor.vala:277
msgid "Year"
msgstr "Année"

#: ../src/Dialogs/MediaEditor.vala:202
#: ../src/Dialogs/SmartPlaylistEditor.vala:274
msgid "Rating"
msgstr "Classement"

#: ../src/Dialogs/MediaEditor.vala:292
msgid "Lyrics not found for %s"
msgstr "Paroles introuvables pour %s"

#: ../src/Dialogs/MediaEditor.vala:629
msgid "Reset"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:633
msgid "<b>Stats</b>"
msgstr ""

#: ../src/Dialogs/SyncWarningDialog.vala:57
msgid "Import media to Library"
msgstr "Importer le média dans la Bibliothèque."

#: ../src/Dialogs/SyncWarningDialog.vala:58
msgid "Continue Syncing"
msgstr "Continuer la synchronisation"

#: ../src/Dialogs/SyncWarningDialog.vala:59
msgid "Stop Syncing"
msgstr "Arrêter la synchronisation"

#: ../src/Dialogs/SyncWarningDialog.vala:66
msgid ""
"If you continue to sync, media will be removed from %s since they are not on "
"the sync list. Would you like to import them to your library first?"
msgstr ""
"Si vous poursuivez la synchronisation, des fichiers seront supprimés de %s "
"car il ne sont pas dans la liste à synchroniser. Voulez-vous les importer "
"tout d'abord dans votre bibliothèque ?"

#: ../src/Dialogs/SyncWarningDialog.vala:72
msgid "Sync will remove %i items from %s"
msgstr "La synchronisation supprimera %i items de %s"

#: ../src/Dialogs/SyncWarningDialog.vala:75
msgid "Sync will remove 1 item from %s"
msgstr "La synchronisation supprimera 1 item de %s"

#: ../src/Dialogs/InstallGstreamerPluginsDialog.vala:44
msgid "Would you like to install the %s plugin?\n"
msgstr ""

#: ../src/Dialogs/InstallGstreamerPluginsDialog.vala:45
msgid ""
"\n"
"This song cannot be played. The %s plugin is required to play the song."
msgstr ""

#: ../src/Dialogs/InstallGstreamerPluginsDialog.vala:64
msgid "Install Plugin"
msgstr "Installer l'extension"

#: ../src/Dialogs/RemoveFilesDialog.vala:50
#: ../src/Dialogs/NotImportedWindow.vala:64
msgid "Move to Trash"
msgstr "Déplacer dans la corbeille"

#: ../src/Dialogs/RemoveFilesDialog.vala:51
msgid "Remove from %s"
msgstr "Supprimer de %s"

#: ../src/Dialogs/RemoveFilesDialog.vala:61
msgid "Remove %d Songs From %s?"
msgstr "Supprimer %d musiques de %s?"

#: ../src/Dialogs/RemoveFilesDialog.vala:64
msgid "Remove \"%s\" From %s?"
msgstr "Supprimer \"%s\" de %s?"

#: ../src/Dialogs/RemoveFilesDialog.vala:73
msgid ""
"This will remove the song from your library and from any device that "
"automatically syncs with %s."
msgid_plural ""
"This will remove the songs from your library and from any device that "
"automatically syncs with %s."
msgstr[0] ""
"Ceci supprimera la musique de votre bibliothèque et de tout périphérique qui "
"se synchronise automatiquement avec %s."
msgstr[1] ""
"Ceci supprimera les musiques de votre bibliothèque et de tout périphérique "
"qui se synchronise automatiquement avec %s."

#: ../src/Dialogs/FileNotFoundDialog.vala:53
msgid "File not found"
msgstr "Fichier non trouvé"

#: ../src/Dialogs/FileNotFoundDialog.vala:59
msgid "The music file for <b>%s</b> by <b>%s</b> could not be found."
msgstr ""

#: ../src/Dialogs/FileNotFoundDialog.vala:62
msgid "%i music files could not be found?"
msgstr ""

#: ../src/Dialogs/FileNotFoundDialog.vala:85
msgid "Rescan Library"
msgstr "Rescanner la bibliothèque"

#: ../src/Dialogs/FileNotFoundDialog.vala:88
msgid "Find Song"
msgstr ""

#: ../src/Dialogs/FileNotFoundDialog.vala:124
#: ../src/Dialogs/SetMusicFolderConfirmation.vala:107
msgid "Choose Music Folder"
msgstr "Choisir votre dossier de musique"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:53
msgid "Import from Device"
msgstr "Importer depuis le périphérique"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:70
msgid "Import media from %s"
msgstr "Importer des fichiers de %s"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:71
msgid ""
"The following files were found on %s, but are not in your library. Check all "
"the files you would like to import."
msgstr ""
"Les fichiers suivant ont été trouvés sur %s, mais ne sont pas présents dans "
"votre bibliothèque. Veuillez spécifier ceux que vous voulez importer."

#: ../src/Dialogs/TransferFromDeviceDialog.vala:72
msgid "Import all media"
msgstr "Importer tous les médias"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:77
#: ../plugins/Devices/CDRom/CDView.vala:90
msgid "Import"
msgstr "Importer"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:78
msgid "Don't Import"
msgstr "Ne pas importer"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:86
msgid "Import %i items from %s"
msgstr "Importation de %i fichiers de %s"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:90
msgid "Import %s from %s"
msgstr "Importation de %s venant de %s"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:118
msgid "ID"
msgstr "ID"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:170
msgid "Select individual media to import:"
msgstr "Définir les médias à importer:"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:188
msgid "Check Item"
msgstr "Vérifier l'élément"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:189
msgid "Check Album"
msgstr "Vérifier l'album"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:190
msgid "Check Artist"
msgstr "Vérifier l'artiste"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:287
msgid "Cannot Import"
msgstr "Importation impossible"

#: ../src/Dialogs/TransferFromDeviceDialog.vala:287
msgid ""
"Noise is already doing file operations. Please wait until those finish to "
"import from %d"
msgstr ""
"Noise effectue déjà une opération. Veuillez attendre la fin de l'importation "
"de %d"

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:59
msgid "Export Playlists"
msgstr "Exporter des listes de lecture"

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:60
msgid "Set Music Folder"
msgstr "Définir le dossier de Musique"

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:67
msgid "Set Music Folder?"
msgstr "Définir le dossier de Musique ?"

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:70
msgid ""
"Are you sure you want to set the music folder to %s? This will reset your "
"library and remove your playlists."
msgstr ""
"Voulez-vous vraiment définir le dossier de musique dans %s ? Ceci "
"réinitialisera votre bibliothèque et supprimera vos listes de lecture."

#: ../src/Dialogs/SmartPlaylistEditor.vala:36
msgid "Smart Playlist Editor"
msgstr "Éditeur de liste de lectures intelligentes"

#: ../src/Dialogs/SmartPlaylistEditor.vala:48
#: ../src/Dialogs/SmartPlaylistEditor.vala:56
msgid "Name of Playlist"
msgstr "Nom de la liste de lecture"

#: ../src/Dialogs/SmartPlaylistEditor.vala:49
#: ../src/Dialogs/SmartPlaylistEditor.vala:57
msgid "Rules"
msgstr "Règles"

#: ../src/Dialogs/SmartPlaylistEditor.vala:50
#: ../src/Dialogs/SmartPlaylistEditor.vala:58
msgid "Options"
msgstr "Paramètres"

#: ../src/Dialogs/SmartPlaylistEditor.vala:62
msgid "Playlist Title"
msgstr "Titre de la liste de lecture"

#: ../src/Dialogs/SmartPlaylistEditor.vala:68
msgid "Match"
msgstr "Correspondance"

#: ../src/Dialogs/SmartPlaylistEditor.vala:70
msgid "any"
msgstr "n'importe quelle"

#: ../src/Dialogs/SmartPlaylistEditor.vala:71
msgid "all"
msgstr "toutes"

#: ../src/Dialogs/SmartPlaylistEditor.vala:77
msgid "of the following:"
msgstr "parmi les suivantes:"

#: ../src/Dialogs/SmartPlaylistEditor.vala:89
msgid "Add"
msgstr "Ajouter"

#: ../src/Dialogs/SmartPlaylistEditor.vala:94
msgid "Limit to"
msgstr "Limiter à"

#: ../src/Dialogs/SmartPlaylistEditor.vala:96
msgid "items"
msgstr "éléments"

#: ../src/Dialogs/SmartPlaylistEditor.vala:265
msgid "Bitrate"
msgstr "Débit"

#: ../src/Dialogs/SmartPlaylistEditor.vala:268
msgid "Date Added"
msgstr "Date d'ajout"

#: ../src/Dialogs/SmartPlaylistEditor.vala:271
msgid "Last Played"
msgstr "Dernière lecture"

#: ../src/Dialogs/SmartPlaylistEditor.vala:272
#: ../src/Dialogs/SmartPlaylistEditor.vala:406
msgid "Length"
msgstr "Durée"

#: ../src/Dialogs/SmartPlaylistEditor.vala:273
msgid "Playcount"
msgstr "Nombre de lectures"

#: ../src/Dialogs/SmartPlaylistEditor.vala:275
msgid "Skipcount"
msgstr "Nombre de sauts"

#: ../src/Dialogs/SmartPlaylistEditor.vala:341
msgid "is"
msgstr "est"

#: ../src/Dialogs/SmartPlaylistEditor.vala:342
msgid "contains"
msgstr "contient"

#: ../src/Dialogs/SmartPlaylistEditor.vala:343
msgid "does not contain"
msgstr "ne contient pas"

#: ../src/Dialogs/SmartPlaylistEditor.vala:369
#: ../src/Dialogs/SmartPlaylistEditor.vala:383
msgid "is exactly"
msgstr "est exactement"

#: ../src/Dialogs/SmartPlaylistEditor.vala:370
msgid "is at most"
msgstr "est au plus"

#: ../src/Dialogs/SmartPlaylistEditor.vala:371
msgid "is at least"
msgstr "est au moins"

#: ../src/Dialogs/SmartPlaylistEditor.vala:384
msgid "is within"
msgstr "est dans"

#: ../src/Dialogs/SmartPlaylistEditor.vala:385
msgid "is before"
msgstr "est avant"

#: ../src/Dialogs/SmartPlaylistEditor.vala:407
msgid "seconds"
msgstr "secondes"

#: ../src/Dialogs/SmartPlaylistEditor.vala:410
msgid "days ago"
msgstr "jours avant aujourd'hui"

#: ../src/Dialogs/SmartPlaylistEditor.vala:413
msgid "kbps"
msgstr "ko/s"

#: ../src/Dialogs/PreferencesWindow.vala:46
msgid "Select Music Folder…"
msgstr "Sélectionner le Dossier Musique"

#: ../src/Dialogs/PreferencesWindow.vala:131
msgid "General"
msgstr "Général"

#: ../src/Dialogs/PreferencesWindow.vala:137
msgid "Music Folder Location"
msgstr "Emplacement du dossier musique"

#: ../src/Dialogs/PreferencesWindow.vala:145
msgid "Library Management"
msgstr "Gestion de la bibliothèque"

#: ../src/Dialogs/PreferencesWindow.vala:152
msgid "Keep Music folder organized:"
msgstr "Réorganiser le dossier Musique :"

#: ../src/Dialogs/PreferencesWindow.vala:156
msgid "Write metadata to file:"
msgstr "Écrire les méta-données dans le fichier :"

#: ../src/Dialogs/PreferencesWindow.vala:160
msgid "Copy imported files to Library:"
msgstr "Importer des médias dans la bibliothèque :"

#: ../src/Dialogs/PreferencesWindow.vala:162
msgid "Desktop Integration"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:167
msgid "Continue playback when closed:"
msgstr ""

#: ../src/Dialogs/NotImportedWindow.vala:52
#: ../src/Dialogs/NotImportedWindow.vala:55
msgid "Unable to import %d items from %s"
msgstr "Impossible d'importer %d fichiers de %s"

#: ../src/Dialogs/NotImportedWindow.vala:56
msgid "%s was unable to import %d items. The files may be damaged."
msgstr ""
"%s n'a pas réussi à importer %d fichiers, ceux-ci sont peut-être endommagés."

#: ../src/Dialogs/NotImportedWindow.vala:59
msgid "Move all corrupted files to trash"
msgstr "Déplacer tous les fichiers corrompus dans la corbeille"

#: ../src/Dialogs/NotImportedWindow.vala:66
msgid "Ignore"
msgstr "Ignorer"

#: ../src/Dialogs/NotImportedWindow.vala:81
msgid "del"
msgstr "suppr"

#: ../src/Dialogs/NotImportedWindow.vala:86
msgid "File Location"
msgstr "Emplacement du fichier"

#: ../src/Dialogs/NotImportedWindow.vala:101
msgid "Select individual files to move to trash:"
msgstr ""
"Sélectionner individuellement des fichiers à déplacer dans la corbeille"

#: ../plugins/Devices/iPod/iPodDevice.vala:59
#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:99
msgid "Empty device!"
msgstr "Périphérique vide !"

#: ../plugins/Devices/iPod/iPodDevice.vala:63
#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:103
msgid "This device does not contain any music."
msgstr "Ce périphérique ne contient aucune musique."

#: ../plugins/Devices/iPod/iPodLibrary.vala:144
#: ../plugins/Devices/AudioPlayers/AudioPlayerLibrary.vala:140
msgid "Adding <b>$NAME</b> by <b>$ARTIST</b> to $DEVICE"
msgstr "Ajout de <b>$NAME</b> par <b>$ARTIST</b> dans $DEVICE..."

#: ../plugins/Devices/iPod/iPodLibrary.vala:192
#: ../plugins/Devices/AudioPlayers/AudioPlayerLibrary.vala:164
msgid "Syncing <b>%s</b>…"
msgstr "Synchronisation de <b>%s</b>"

#: ../plugins/Devices/iPod/iPodLibrary.vala:214
#: ../plugins/Devices/iPod/iPodLibrary.vala:370
msgid "Finishing sync process…"
msgstr "Fin de la synchronisation…"

#: ../plugins/Devices/iPod/iPodLibrary.vala:226
#: ../plugins/Devices/iPod/iPodLibrary.vala:382
msgid "Cancelling Sync…"
msgstr "Annulation de la synchronisation..."

#: ../plugins/Devices/iPod/iPodLibrary.vala:333
#: ../plugins/Devices/AudioPlayers/AudioPlayerLibrary.vala:300
msgid "Removing from <b>%s</b>…"
msgstr "Suppression de <b>%s</b>…"

#: ../plugins/Devices/iPod/iPodLibrary.vala:526
#: ../plugins/Devices/AudioPlayers/AudioPlayerLibrary.vala:269
msgid "Removing <b>$NAME</b> by <b>$ARTIST</b> from $DEVICE"
msgstr "Suppression de <b>$NAME</b> par <b>$ARTIST</b> de $DEVICE"

#: ../plugins/Devices/CDRom/CDViewWrapper.vala:32
msgid "An Error Occured"
msgstr "Une erreur est survenue."

#: ../plugins/Devices/CDRom/CDViewWrapper.vala:33
msgid "There was an error while loading this Audio CD."
msgstr "Le chargement du CD audio a échoué."

#: ../plugins/Devices/CDRom/CDRomDevice.vala:85
msgid "Audio CD Invalid"
msgstr "CD audio invalide"

#: ../plugins/Devices/CDRom/CDRomDevice.vala:89
msgid "Impossible to read the contents of this Audio CD"
msgstr "Impossible de lire le contenu de ce CD Audio"

#: ../plugins/Devices/CDRom/CDRomDevice.vala:241
msgid "Could not find Music Folder"
msgstr "Impossible de trouver le dossier de musique"

#: ../plugins/Devices/CDRom/CDRomDevice.vala:241
msgid ""
"Please make sure that your music folder is accessible and mounted before "
"importing the CD."
msgstr ""
"Veuillez vérifier que votre dossier de musique est accessible et monté avant "
"d'importer le CD."

#: ../plugins/Devices/CDRom/CDRomDevice.vala:247
msgid ""
"The Application could not find any songs on the CD. No songs can be imported"
msgstr ""
"L'application ne trouve aucune musique sur ce CD. Aucune chanson ne peut "
"être importée"

#: ../plugins/Devices/CDRom/CDRomDevice.vala:348
msgid "Importation of a song from Audio CD finished."
msgstr "Importation d'un titre depuis un CD Audio terminée."

#: ../plugins/Devices/CDRom/CDRomDevice.vala:348
msgid "Importation of %i songs from Audio CD finished."
msgstr "Importation de %i titres depuis un CD Audio terminée."

#: ../plugins/Devices/CDRom/CDRomDevice.vala:353
msgid "Importing track %i: %s"
msgstr "Importation de la piste %i: %s"

#: ../plugins/Devices/CDRom/CDRomDevice.vala:358
msgid "CD import will be <b>cancelled</b> after current import."
msgstr ""
"L'importation du CD sera <b>annulée</b> après l'importation en cours."

#: ../plugins/Devices/CDRom/CDRomDevice.vala:377
msgid "An error occured during the Import of this CD"
msgstr "Une erreur est survenue lors de l'importation du CD."

#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:147
msgid "Android Phone"
msgstr "Téléphone Android"

#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:149
msgid "Audio Player"
msgstr "Lecteur audio"

#: ../plugins/LastFM/SimilarMediaView.vala:41
msgid "media"
msgstr "média"

#: ../plugins/LastFM/SimilarMediaView.vala:47
msgid "Similar Media"
msgstr "Média similaire"

#: ../plugins/LastFM/LastFM.vala:101
msgid "No similar songs found"
msgstr "Aucune pièce similaire trouvée"

#: ../plugins/LastFM/LastFM.vala:101
msgid ""
"There are no songs similar to the current song in your library. Make sure "
"all song info is correct and you are connected to the Internet. Some songs "
"may not have matches."
msgstr ""
"Il n'y a aucune musique similaire à celle en lecture. Vérifiez que toutes "
"les informations sont correctes et que vous êtes connecté à internet. Malgré "
"tout, certaines musiques n'obtiennent aucun résultat."

#: ../plugins/LastFM/SimilarMedia.vala:37
msgid "Similar"
msgstr "Similaire"

#~ msgid "Done"
#~ msgstr "Terminé"

#~ msgid "is not"
#~ msgstr "n'est pas"

#~ msgid "Add Podcast"
#~ msgstr "Ajouter un Podcast"

#~ msgid "Podcast"
#~ msgstr "Podcast"

#~ msgid "Download new Episodes"
#~ msgstr "Télécharger de nouveaux épisodes"

#~ msgid "Import Stations"
#~ msgstr "Importer des stations"

#~ msgid "Edit"
#~ msgstr "Modifier"

#~ msgid "Export..."
#~ msgstr "Exporter..."

#~ msgid "Podcasts"
#~ msgstr "Podcasts"

#, c-format
#~ msgid "%s Stars"
#~ msgstr "%s Étoiles"

#, c-format
#~ msgid "All %i Ratings"
#~ msgstr "Tous %i les classements"

#~ msgid "#"
#~ msgstr "#"

#, c-format
#~ msgid "Similar to %s"
#~ msgstr "Semblable à %s"

#~ msgid "Skips"
#~ msgstr "Sauts"

#~ msgid "Plays"
#~ msgstr "Lectures"

#~ msgid "BPM"
#~ msgstr "BPM"

#~ msgid "All Podcasts"
#~ msgstr "Tous les podcasts"

#~ msgid "Device is already being synced."
#~ msgstr "L'appareil est déjà en cours de synchronisation"

#~ msgid "Rescan Music Folder"
#~ msgstr "Scanner à nouveau le dossier Musique"

#~ msgid "Change your music folder."
#~ msgstr "Changer votre dossier musique."

#~ msgid "Locate"
#~ msgstr "Localiser"

#~ msgid "Unknown Album"
#~ msgstr "Album inconnu"

#~ msgid " on "
#~ msgstr " sur "

#, c-format
#~ msgid "<b>Importing</b> music from <b>%s</b> to library."
#~ msgstr "<b>Importation</b> de musique depuis <b>%s</b> dans la bibliothèque."

#~ msgid "Rescanning music folder for changes"
#~ msgstr "Scan des changements dans le dossier Musique"

#~ msgid " by "
#~ msgstr " par "

#~ msgid "Unknown Artist"
#~ msgstr "Artiste inconnu"

#~ msgid "Queue"
#~ msgstr "File d'attente"

#~ msgid "Import songs from audio CD"
#~ msgstr "Importer des chansons depuis un CD audio"

#~ msgid "Please make sure that your music folder is accessible and mounted."
#~ msgstr ""
#~ "Veuillez vous assurer que votre dossier de musique est accessible et monté."

#~ msgid "Import media from device"
#~ msgstr "Importer des médias depuis un périphérique"

#, c-format
#~ msgid "Importing music from %s..."
#~ msgstr "Importation de la musique de %s..."

#~ msgid "Adding files to library..."
#~ msgstr "Ajout des fichiers à la bibliothèque..."

#, c-format
#~ msgid "%s is already doing an import"
#~ msgstr "%s est déjà en importation"

#, c-format
#~ msgid "%s could not find any songs on the CD. No songs can be imported"
#~ msgstr ""
#~ "%s ne trouve aucune chanson sur ce CD. Aucune chanson ne peut être importée"

#~ msgid "CD Import Complete"
#~ msgstr "Importation du CD terminé"

#, c-format
#~ msgid ""
#~ "Please wait until %s is finished with the current import before importing "
#~ "the CD."
#~ msgstr ""
#~ "Veuillez attendre que %s ait terminé avec l'importation en cours avant "
#~ "d'importer le CD."

#~ msgid "No songs on CD"
#~ msgstr "Aucune chanson dans le CD"

#, c-format
#~ msgid "Adding music from %s to library..."
#~ msgstr "Ajout à la bibliothèque de musique venant de %s..."

#~ msgid "Ripping track 1"
#~ msgstr "Extraction de la piste 1"

#, c-format
#~ msgid "Importing track %i"
#~ msgstr "Importation de la piste %i"

#, c-format
#~ msgid "%s has finished importing %i songs from Audio CD."
#~ msgstr "%s a fini d'importer %i chansons depuis le CD audio."

#, c-format
#~ msgid "%s has finished importing a song from Audio CD."
#~ msgstr "%s a fini d'importer une chanson depuis le CD audio."

#~ msgid "Unknown Title"
#~ msgstr "Titre inconnu"

#~ msgid "Radio Station"
#~ msgstr "Sation de radio"

#~ msgid "Not Imported Files"
#~ msgstr "Fichiers non importés"

#~ msgid "Metadata"
#~ msgstr "Méta-données"

#~ msgid ""
#~ "The plugin for media type %s is not installed.\n"
#~ "What would you like to do?"
#~ msgstr ""
#~ "L'extension pour le type %s n'est pas installé.\n"
#~ "Que voulez-vous faire ?"

#~ msgid "Required GStreamer plugin not installed"
#~ msgstr "L'extension GStreamer requise n'est pas installée"

#~ msgid "Do Nothing"
#~ msgstr "Ne rien faire"

#, c-format
#~ msgid "Editing %s by %s"
#~ msgstr "Modification de %s par %s"

#~ msgid "Media Type"
#~ msgstr "Type de média"

#~ msgid "Try again"
#~ msgstr "Réessayer"

#~ msgid "Music Folder"
#~ msgstr "Dossier Musique"

#, c-format
#~ msgid "Lyrics not found for \"%s\" by \"%s\""
#~ msgstr "Impossible de trouver des paroles pour \"%s\" par \"%s\""

#~ msgid "Date Released"
#~ msgstr "Date de sortie"

#~ msgid ""
#~ "You must wait until previous file operations finish before setting your "
#~ "music folder"
#~ msgstr ""
#~ "Veuillez attendre que l'opération précédente se termine avant de définir "
#~ "votre dossier musique"

#~ msgid "Audiobook"
#~ msgstr "Livres audio"

#, c-format
#~ msgid ""
#~ "The music file for %s by %s could not be found. What would you like to do?"
#~ msgstr ""
#~ "Le fichier de musique %s par %s n'a pas été trouvé. Que voulez-vous faire ?"

#, c-format
#~ msgid "The name %s is already in use"
#~ msgstr "Le nom %s est déjà utilisé"

#~ msgid "%i media files could not be found. What would you like to do?"
#~ msgstr "%i pistes n'ont pas été trouvées. Que voulez-vous faire ?"

#~ msgid "Station"
#~ msgstr "Station"

#, c-format
#~ msgid "Remove %d %s from %s?"
#~ msgstr "Supprimer %d %s de %s?"

#, c-format
#~ msgid ""
#~ "This will remove the %s from your library and from any device that "
#~ "automatically syncs with %s."
#~ msgstr ""
#~ "Cela supprimera %s de votre bibliothèque et de chaque périphérique "
#~ "automatiquement synchronisé avec %s."

#, c-format
#~ msgid "%s by %s"
#~ msgstr "%s par %s"

#, c-format
#~ msgid "%i albums"
#~ msgstr "%i albums"

#~ msgid "All the songs in this device are already in your library."
#~ msgstr ""
#~ "Toutes les chansons de ce périphérique sont déjà dans votre bibliothèque."

#, c-format
#~ msgid "%i songs"
#~ msgstr "%i chansons"

#, c-format
#~ msgid "%s can't seem to find your music."
#~ msgstr "%s n'arrive pas à trouver votre musique."

#~ msgid "1 album"
#~ msgstr "1 album"

#~ msgid "1 song"
#~ msgstr "1 chanson"

#, c-format
#~ msgid "%s could not read the contents of this Audio CD"
#~ msgstr "%s ne peut pas lire le contenu de ce CD Audio"

#~ msgid "Device Sync has been cancelled. Operation will stop after this media."
#~ msgstr ""
#~ "La synchronisation du périphérique a été annulée. L'opération s'arrêtera "
#~ "après ce titre."

#~ msgid ""
#~ "Import from device has been cancelled. Operation will stop after this media."
#~ msgstr ""
#~ "L'importation du périphérique a été annulée. L'opération s'arrêtera après ce "
#~ "titre."

#~ msgid "Episode"
#~ msgstr "Épisode"

#~ msgid "Cancelling Sync"
#~ msgstr "Annulation de la synchronisation"

#~ msgid "Cancelling Import"
#~ msgstr "Annulation de l'importation"

#, c-format
#~ msgid "%s and %s"
#~ msgstr "%s et %s"

#, c-format
#~ msgid "%s, %s and %s"
#~ msgstr "%s, %s et %s"

#~ msgid "Unknown Track"
#~ msgstr "Piste inconnue"

#~ msgid "Rescanning music for changes. This may take a while..."
#~ msgstr ""
#~ "Recherche de changements dans la musique. Ceci peut prendre du temps..."

#~ msgid "Show Equalizer"
#~ msgstr "Afficher l'égaliseur"

#~ msgid "Hide Equalizer"
#~ msgstr "Cacher l'égaliseur"

#~ msgid "Equalizer"
#~ msgstr "Égaliseur"

#~ msgid "Similar Song View"
#~ msgstr "Affichage de pièces similaires"

#, c-format
#~ msgid ""
#~ "%s could not find songs similar to %s by %s in your library. Make sure all "
#~ "song info is correct and you are connected to the Internet. Some songs may "
#~ "not have matches."
#~ msgstr ""
#~ "%s n'a pas trouvé de pièce similaire à %s par %s dans votre bibliothèque. "
#~ "Vérifiez que toutes les informations sont correctes et que vous êtes "
#~ "connecté à internet. Malgré tout, certaines pièces pourraient n'obtenir "
#~ "aucun résultat."

#, c-format
#~ msgid ""
#~ "In this view, %s will automatically find songs similar to the one you're "
#~ "playing. You can then start playing those songs, or save them as a playlist "
#~ "for later."
#~ msgstr ""
#~ "Dans cet affichage, %s recherchera automatiquement des pièces similaires à "
#~ "celle que vous lirez. Vous pourrez alors lire ces pièces ou les enregistrer "
#~ "dans une liste de lecture."

#~ msgid "Unsuccessful. Click To Try Again."
#~ msgstr "Échec. Cliquer pour tenter de nouveau."

#~ msgid "Scrobbling Already Enabled"
#~ msgstr "Scrobbling déjà activé"

#~ msgid "Complete Login"
#~ msgstr "Compléter la connexion"

#~ msgid "Success!"
#~ msgstr "Réussite!"

#~ msgid "Click to redo the Last.fm login process"
#~ msgstr "Cliquer pour se reconnecter à Last.fm"

#~ msgid "Last.fm"
#~ msgstr "Last.fm"

#~ msgid "Last.fm Integration"
#~ msgstr "Intégration avec Last.fm"

#, c-format
#~ msgid "Finding songs similar to %s by %s"
#~ msgstr "Recherche de pièces similaires à %s par %s"

#~ msgid "Fetching similar songs"
#~ msgstr "Rechercher des pièces similaires"

#~ msgid "Music Player"
#~ msgstr "Lecteur de musique"

#~ msgid "Listen to music"
#~ msgstr "Écouter de la musique"

#~ msgid ""
#~ "To allow for Last.fm integration, you must give permission to %s. You only "
#~ "need to do this once."
#~ msgstr ""
#~ "Pour autoriser l'intégration de Last.fm, vous devez donner l'autorisation à "
#~ "%s. Vous avez besoin de faire cela qu'une seule fois."

#~ msgid "Complete login"
#~ msgstr "Terminer la connexion"

#~ msgid "Unsuccessful. Click to try again."
#~ msgstr "Échec, cliquez pour réessayer."

#~ msgid "Copy files to music folder when added to library"
#~ msgstr ""
#~ "Copier les fichiers dans le dossier musique lors de l'ajout dans la "
#~ "bibliothèque"

#~ msgid "Automatically download new podcast episodes"
#~ msgstr "Télécharger automatiquement les nouveaux épisodes des podcasts"

#~ msgid "Keep music folder organized"
#~ msgstr "Garder le dossier musique organisé"

#~ msgid "Write metadata to file"
#~ msgstr "Écrire les méta-données dans le fichier"

#~ msgid "Click to redo the Last.fm Login Process"
#~ msgstr "Cliquez pour recommencer le processus de connexion à Last.fm"

#, c-format
#~ msgid "%i items"
#~ msgstr "%i éléments"

#~ msgid "1 item"
#~ msgstr "1 élément"

#~ msgid "Display Album Art"
#~ msgstr "Afficher la couverture de l'album"

#~ msgid "Library Management:"
#~ msgstr "Gestion de la bibliothèque :"

#~ msgid "Music Folder Location:"
#~ msgstr "Emplacement du dossier Musique :"

#~ msgid "Desktop Integration:"
#~ msgstr "Intégration dans le bureau :"

#~ msgid "Could not find media file"
#~ msgstr "Impossible de trouver de la musique"

#~ msgid "Locate Media"
#~ msgstr "Spécifier l'emplacement de la musique"

#~ msgid "Remove Media"
#~ msgstr "Supprimer le fichier"

#~ msgid "There is not enough space on Device to complete the Sync…"
#~ msgstr ""
#~ "Il n'y a pas assez d'espace sur le périphérique pour terminer la "
#~ "synchronisation…"

#~ msgid "Noise;Audio;Player;MP3;iPod;Play;Playlist;Media;CD;Phone;Songs;"
#~ msgstr ""
#~ "Noise;Audio;Lecteur;MP3;iPod;Lire;Playlist;Liste de "
#~ "lecture;Média;CD;Téléphone;Musique;Chanson;"

#~ msgid "Give %s Permission"
#~ msgstr "Donner la permission à %s"

#~ msgid "About Noise"
#~ msgstr "À propos de Noise"

#~ msgid "About Music"
#~ msgstr "À propos de Musique"