~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
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-07-11 11:39+0200\n"
"PO-Revision-Date: 2016-01-04 18:35+0000\n"
"Last-Translator: Launchpad Translations Administrators <Unknown>\n"
"Language-Team: LANGUAGE <LL@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-07-12 06:33+0000\n"
"X-Generator: Launchpad (build 18115)\n"

#: ../core/LibrariesManager.vala:143
msgid "Importing <b>$NAME</b> by <b>$ARTIST</b> to library…"
msgstr ""

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

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

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

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

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

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

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

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

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

#: ../core/GStreamer/Equalizer.vala:77
msgid "Full Treble"
msgstr ""

#: ../core/GStreamer/Equalizer.vala:78
msgid "Full Bass + Treble"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#. / 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 ""

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

#: ../core/Utils/PlaylistsUtils.vala:236
msgid "New playlist"
msgstr ""

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

#: ../core/Utils/PlaylistsUtils.vala:274
msgid "Export Playlist"
msgstr ""

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

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

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

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

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

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

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

#: ../core/Utils/PlaylistsUtils.vala:402
msgid "Unrecognized playlist file. Import failed."
msgstr ""

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

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

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

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

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

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

#: ../src/Widgets/PresetList.vala:47
msgid "Delete Current"
msgstr ""

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

#: ../src/Widgets/StatusBar.vala:64
msgid "Enable Repeat"
msgstr ""

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

#: ../src/Widgets/StatusBar.vala:65
msgid "Repeat Song"
msgstr ""

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

#: ../src/Widgets/StatusBar.vala:66
msgid "Repeat Album"
msgstr ""

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

#: ../src/Widgets/StatusBar.vala:67
msgid "Repeat Artist"
msgstr ""

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

#: ../src/Widgets/StatusBar.vala:68
msgid "Disable Repeat"
msgstr ""

#: ../src/Widgets/StatusBar.vala:94
msgid "Enable Shuffle"
msgstr ""

#: ../src/Widgets/StatusBar.vala:95
msgid "Disable Shuffle"
msgstr ""

#: ../src/Widgets/StatusBar.vala:128 ../src/Widgets/StatusBar.vala:139
msgid "Add Playlist"
msgstr ""

#: ../src/Widgets/StatusBar.vala:140
msgid "Add Smart Playlist"
msgstr ""

#. / 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 ""

#: ../src/Widgets/StatusBar.vala:199
msgid "Show Info Panel"
msgstr ""

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

#: ../src/Widgets/StatusBar.vala:200
msgid "Hide Info Panel"
msgstr ""

#: ../src/Widgets/EqualizerPopover.vala:163
msgid "Save preset"
msgstr ""

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

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

#: ../src/Widgets/EqualizerPopover.vala:431
msgid "Custom Preset"
msgstr ""

#: ../src/Widgets/EqualizerPopover.vala:433
msgid "Custom Preset %i"
msgstr ""

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

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

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

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

#: ../src/Widgets/SourceListView.vala:88
msgid "Save as Playlist"
msgstr ""

#: ../src/Widgets/SourceListView.vala:148
#: ../src/Views/ListView/Lists/MusicListView.vala:124
msgid "Import to Library"
msgstr ""

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

#: ../src/Widgets/SourceListView.vala:161
#: ../src/Widgets/SourceListView.vala:201
msgid "New Playlist"
msgstr ""

#: ../src/Widgets/SourceListView.vala:166
#: ../src/Widgets/SourceListView.vala:202
msgid "New Smart Playlist"
msgstr ""

#: ../src/Widgets/SourceListView.vala:203
msgid "Import Playlists"
msgstr ""

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

#: ../src/Widgets/SourceListView.vala:314
msgid "Devices"
msgstr ""

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

#: ../src/Widgets/SourceListView.vala:316 ../plugins/MPRIS/MPRIS.vala:639
msgid "Playlists"
msgstr ""

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

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

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

#: ../src/Noise.vala:65
msgid "translator-credits"
msgstr ""

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

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

#: ../src/LibraryWindow.vala:250
msgid "Import to Library…"
msgstr ""

#: ../src/LibraryWindow.vala:253 ../src/Dialogs/PreferencesWindow.vala:86
msgid "Preferences"
msgstr ""

#: ../src/LibraryWindow.vala:270
msgid "Previous"
msgstr ""

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

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

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

#: ../src/LibraryWindow.vala:640 ../src/LibraryWindow.vala:744
#: ../src/Views/DeviceSummaryWidget.vala:99
msgid "Music"
msgstr ""

#: ../src/LibraryWindow.vala:812
msgid "No songs in Queue"
msgstr ""

#: ../src/LibraryWindow.vala:812
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 ""

#: ../src/LibraryWindow.vala:815
msgid "No songs in History"
msgstr ""

#: ../src/LibraryWindow.vala:815
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 ""

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

#: ../src/LibraryWindow.vala:1045
#: ../src/Views/Wrappers/MusicViewWrapper.vala:54
msgid "Import Music"
msgstr ""

#: ../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 ""

#: ../src/Dialogs/FileNotFoundDialog.vala:53
msgid "File not found"
msgstr ""

#: ../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 ""

#: ../src/Dialogs/FileNotFoundDialog.vala:86
#: ../src/Views/ListView/Lists/MusicListView.vala:123
msgid "Remove Song"
msgstr ""

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

#: ../src/Dialogs/FileNotFoundDialog.vala:124
#: ../src/Dialogs/SetMusicFolderConfirmation.vala:107
msgid "Choose Music Folder"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:46
msgid "Select Music Folder…"
msgstr ""

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

#: ../src/Dialogs/PreferencesWindow.vala:131
msgid "General"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:137
msgid "Music Folder Location"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:145
msgid "Library Management"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:152
msgid "Keep Music folder organized:"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:156
msgid "Write metadata to file:"
msgstr ""

#: ../src/Dialogs/PreferencesWindow.vala:160
msgid "Copy imported files to Library:"
msgstr ""

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

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

#: ../src/Dialogs/TransferFromDeviceDialog.vala:53
msgid "Import from Device"
msgstr ""

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

#: ../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 ""

#: ../src/Dialogs/TransferFromDeviceDialog.vala:72
msgid "Import all media"
msgstr ""

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

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

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

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

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

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

#: ../src/Dialogs/TransferFromDeviceDialog.vala:170
msgid "Select individual media to import:"
msgstr ""

#: ../src/Dialogs/TransferFromDeviceDialog.vala:188
msgid "Check Item"
msgstr ""

#: ../src/Dialogs/TransferFromDeviceDialog.vala:189
msgid "Check Album"
msgstr ""

#: ../src/Dialogs/TransferFromDeviceDialog.vala:190
msgid "Check Artist"
msgstr ""

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

#: ../src/Dialogs/TransferFromDeviceDialog.vala:287
msgid ""
"Noise is already doing file operations. Please wait until those finish to "
"import from %d"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:72
msgid "Title:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:74
msgid "Artist:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:76
msgid "Album Artist:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:78
msgid "Album:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:80
msgid "Genre:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:82
msgid "Composer:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:84
msgid "Grouping:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:86
msgid "Comment:"
msgstr ""

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

#: ../src/Dialogs/MediaEditor.vala:90
msgid "Disk:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:92
msgid "Year:"
msgstr ""

#: ../src/Dialogs/MediaEditor.vala:94
msgid "Rating:"
msgstr ""

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:59
msgid "Export Playlists"
msgstr ""

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:60
msgid "Set Music Folder"
msgstr ""

#: ../src/Dialogs/SetMusicFolderConfirmation.vala:67
msgid "Set Music Folder?"
msgstr ""

#: ../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 ""

#: ../src/Dialogs/RemoveFilesDialog.vala:50
#: ../src/Dialogs/NotImportedWindow.vala:64
msgid "Move to Trash"
msgstr ""

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

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

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

#: ../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] ""
msgstr[1] ""

#: ../src/Dialogs/SyncWarningDialog.vala:57
msgid "Import media to Library"
msgstr ""

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

#: ../src/Dialogs/SyncWarningDialog.vala:59
msgid "Stop Syncing"
msgstr ""

#: ../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 ""

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

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

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

#: ../src/Dialogs/NotImportedWindow.vala:56
msgid "%s was unable to import %d items. The files may be damaged."
msgstr ""

#: ../src/Dialogs/NotImportedWindow.vala:59
msgid "Move all corrupted files to trash"
msgstr ""

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

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

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

#: ../src/Dialogs/NotImportedWindow.vala:101
msgid "Select individual files to move to trash:"
msgstr ""

#: ../src/Dialogs/SmartPlaylistEditor.vala:36
msgid "Smart Playlist Editor"
msgstr ""

#: ../src/Dialogs/SmartPlaylistEditor.vala:48
#: ../src/Dialogs/SmartPlaylistEditor.vala:56
msgid "Name of Playlist"
msgstr ""

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

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

#: ../src/Dialogs/SmartPlaylistEditor.vala:62
msgid "Playlist Title"
msgstr ""

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

#: ../src/Dialogs/SmartPlaylistEditor.vala:70
msgid "any"
msgstr ""

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

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

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

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

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

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

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

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

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

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

#: ../src/Dialogs/SmartPlaylistEditor.vala:270
msgid "Grouping"
msgstr ""

#: ../src/Dialogs/SmartPlaylistEditor.vala:271
msgid "Last Played"
msgstr ""

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

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

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

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

#: ../src/Dialogs/SmartPlaylistEditor.vala:277
msgid "Year"
msgstr ""

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

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

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

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

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

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

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

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

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

#: ../src/Dialogs/SmartPlaylistEditor.vala:410
msgid "days ago"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/Views/ListView/Lists/MusicListView.vala:84
msgid "Remove from Library"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:91
msgid "Remove from Queue"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:101
msgid "Remove from Device"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:114
msgid "Scroll to Current Song"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:118
msgid "Edit Song Info"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:119
msgid "Show in File Browser"
msgstr ""

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

#: ../src/Views/ListView/Lists/MusicListView.vala:121
msgctxt "Action item (verb)"
msgid "Queue"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:122
msgid "Add to Playlist"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:187
msgid "New Playlist…"
msgstr ""

#: ../src/Views/ListView/Lists/MusicListView.vala:227
msgid "Import %i of %i selected songs"
msgstr ""

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

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

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

#. / 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:671
msgid "Sample List String"
msgstr ""

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

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

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

#: ../src/Views/ListView/ColumnBrowser/ColumnBrowser.vala:400
msgid "Unrated"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:237
msgid "All Years"
msgstr ""

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:239
msgid "All %i Years"
msgstr ""

#: ../src/Views/ListView/ColumnBrowser/BrowserColumnModel.vala:241
msgid "No Years"
msgstr ""

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

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

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

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

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

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

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

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

#: ../src/Views/ListView/ListView.vala:86
msgid "No Songs Found."
msgstr ""

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

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

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

#: ../src/Views/GridView/PopupListView.vala:59
msgid "Set new album cover"
msgstr ""

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

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

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

#: ../src/Views/GridView/PopupListView.vala:259
msgid "Image files"
msgstr ""

#: ../src/Views/GridView/GridView.vala:44
msgid "No Albums Found."
msgstr ""

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

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

#: ../src/Views/DeviceView.vala:38
msgid "Device operation has been cancelled and will stop after this media."
msgstr ""

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

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

#: ../src/Views/DeviceView.vala:100
msgid ""
"There were no songs found on this device that are not in your library."
msgstr ""

#: ../src/Views/DeviceSummaryWidget.vala:73
msgid "Device Name:"
msgstr ""

#: ../src/Views/DeviceSummaryWidget.vala:77
msgid "Device Name"
msgstr ""

#: ../src/Views/DeviceSummaryWidget.vala:79
msgid "Automatically sync when plugged in:"
msgstr ""

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

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

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

#: ../src/Views/DeviceSummaryWidget.vala:308
msgid "Sync Failed"
msgstr ""

#: ../src/Views/DeviceSummaryWidget.vala:308
msgid ""
"The playlist named %s is used to sync device %s, but could not be found."
msgstr ""

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

#: ../src/Views/DeviceSummaryWidget.vala:320
msgid ""
"Cannot sync device with selected sync settings. Not enough space on disk"
msgstr ""

#: ../src/Views/DeviceSummaryWidget.vala:322
msgid "Device is already doing an operation."
msgstr ""

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

#: ../src/Views/Wrappers/ViewWrapper.vala:442
msgid "No media"
msgstr ""

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

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:47
msgid "Updating playlist. Please wait."
msgstr ""

#: ../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 ""

#: ../src/Views/Wrappers/PlaylistViewWrapper.vala:55
msgid "Edit Smart Playlist"
msgstr ""

#: ../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 ""

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

#: ../src/Views/Wrappers/MusicViewWrapper.vala:52
msgid "Add music to your library."
msgstr ""

#: ../src/Views/Wrappers/MusicViewWrapper.vala:55
msgid "Import music from a source into your library."
msgstr ""

#: ../src/Views/Wrappers/MusicViewWrapper.vala:57
msgid "Change Music Folder"
msgstr ""

#: ../src/Views/Wrappers/MusicViewWrapper.vala:58
msgid "Load music from a folder, a network or an external disk."
msgstr ""

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

#: ../src/Views/Wrappers/MusicViewWrapper.vala:103
#: ../src/Views/Wrappers/MusicViewWrapper.vala:119
msgid "Import all your Music from %s into your library."
msgstr ""

#: ../src/Views/Wrappers/MusicViewWrapper.vala:129
msgid "Select Music Folder"
msgstr ""

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

#: ../src/LocalBackend/LocalSmartPlaylist.vala:226
msgid "Recently Added"
msgstr ""

#: ../src/LocalBackend/LocalSmartPlaylist.vala:234
msgid "Recent Favorites"
msgstr ""

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

#: ../src/LocalBackend/LocalSmartPlaylist.vala:250
msgid "Over Played"
msgstr ""

#: ../src/LocalBackend/LocalSmartPlaylist.vala:258
msgid "Not Recently Played"
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:182
msgid "Importing music from %s…"
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:210
msgid "Adding files to library…"
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:225
msgid "<b>Importing</b> music to library…"
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:249
msgid "All music files are already in your library"
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:249
msgid "No files were imported."
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:254
msgid "Rescanning music for changes. This may take a while…"
msgstr ""

#: ../src/LocalBackend/LocalLibrary.vala:328
msgid "Added to your queue:"
msgstr ""

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

#: ../src/FileOperator.vala:307
msgid "Import Complete"
msgstr ""

#: ../src/FileOperator.vala:307
msgid "%s has imported your library."
msgstr ""

#: ../src/FileOperator.vala:320
msgid "<b>Copying</b> files to <b>Music Folder</b>…"
msgstr ""

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

#: ../plugins/LastFM/SimilarMediaView.vala:47
msgid "Similar Media"
msgstr ""

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

#: ../plugins/LastFM/LastFM.vala:101
msgid "No similar songs found"
msgstr ""

#: ../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 ""

#: ../plugins/Devices/iPod/iPodDevice.vala:59
#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:99
msgid "Empty device!"
msgstr ""

#: ../plugins/Devices/iPod/iPodDevice.vala:63
#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:103
msgid "This device does not contain any music."
msgstr ""

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

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

#: ../plugins/Devices/iPod/iPodLibrary.vala:221
#: ../plugins/Devices/iPod/iPodLibrary.vala:377
msgid "Finishing sync process…"
msgstr ""

#: ../plugins/Devices/iPod/iPodLibrary.vala:233
#: ../plugins/Devices/iPod/iPodLibrary.vala:389
msgid "Cancelling Sync…"
msgstr ""

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

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

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

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

#: ../plugins/Devices/CDRom/CDRomDevice.vala:241
msgid "Could not find Music Folder"
msgstr ""

#: ../plugins/Devices/CDRom/CDRomDevice.vala:241
msgid ""
"Please make sure that your music folder is accessible and mounted before "
"importing the CD."
msgstr ""

#: ../plugins/Devices/CDRom/CDRomDevice.vala:247
msgid ""
"The Application could not find any songs on the CD. No songs can be imported"
msgstr ""

#: ../plugins/Devices/CDRom/CDRomDevice.vala:348
msgid "Importation of a song from Audio CD finished."
msgstr ""

#: ../plugins/Devices/CDRom/CDRomDevice.vala:348
msgid "Importation of %i songs from Audio CD finished."
msgstr ""

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

#: ../plugins/Devices/CDRom/CDRomDevice.vala:358
msgid "CD import will be <b>cancelled</b> after current import."
msgstr ""

#: ../plugins/Devices/CDRom/CDRomDevice.vala:377
msgid "An error occured during the Import of this CD"
msgstr ""

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

#: ../plugins/Devices/CDRom/CDViewWrapper.vala:33
msgid "There was an error while loading this Audio CD."
msgstr ""

#: ../plugins/Devices/AudioPlayers/AudioPlayerDevice.vala:147
msgid "Android Phone"
msgstr ""

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