forked from ibsh/is_KeyFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathis_keyfinder_en_GB.ts
1005 lines (1005 loc) · 42.9 KB
/
is_keyfinder_en_GB.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_GB">
<context>
<name>AboutDialog</name>
<message>
<location filename="../source/guiabout.cpp" line="28"/>
<source>About %1</source>
<extracomment>The title of the About window; includes the app name at %1</extracomment>
<translation>About %1</translation>
</message>
<message>
<location filename="../source/guiabout.cpp" line="35"/>
<source>Copyright %1</source>
<extracomment>The copyright notice in the About window; includes the year and author name at %1</extracomment>
<translation>Copyright %1</translation>
</message>
<message>
<location filename="../source/guiabout.cpp" line="40"/>
<source>The %1 icon was designed by %2.</source>
<extracomment>Icon citation on the About window; includes the app name at %1 and the designer name at %2</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/guiabout.cpp" line="46"/>
<source>%1 includes library code from:</source>
<extracomment>Library list header on the About window; includes the app name at %1</extracomment>
<translation>%1 includes library code from:</translation>
</message>
</context>
<context>
<name>BatchWindow</name>
<message>
<location filename="../forms/batchwindow.ui" line="50"/>
<source>Library</source>
<translation>Library</translation>
</message>
<message>
<source>Audio File Name</source>
<translation type="obsolete">Audio File Name</translation>
</message>
<message>
<source>Artist Tag</source>
<translation type="obsolete">Artist Tag</translation>
</message>
<message>
<source>Title Tag</source>
<translation type="obsolete">Title Tag</translation>
</message>
<message>
<source>Album Tag</source>
<translation type="obsolete">Album Tag</translation>
</message>
<message>
<source>Comment Tag</source>
<translation type="obsolete">Comment Tag</translation>
</message>
<message>
<source>Grouping Tag</source>
<translation type="obsolete">Grouping Tag</translation>
</message>
<message>
<source>Key Tag</source>
<translation type="obsolete">Key Tag</translation>
</message>
<message>
<source>Detected Key</source>
<translation type="obsolete">Detected Key</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="85"/>
<source>Filename</source>
<translation type="unfinished">Filename</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="90"/>
<source>Title tag</source>
<translation type="unfinished">Title tag</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="95"/>
<source>Artist tag</source>
<translation type="unfinished">Artist tag</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="100"/>
<source>Album tag</source>
<translation type="unfinished">Album tag</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="105"/>
<source>Comment tag</source>
<translation type="unfinished">Comment tag</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="110"/>
<source>Grouping tag</source>
<translation type="unfinished">Grouping tag</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="115"/>
<source>Key tag</source>
<translation type="unfinished">Key tag</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="120"/>
<source>Detected key</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="146"/>
<location filename="../source/guibatch.cpp" line="179"/>
<source>Ready</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Ready</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="166"/>
<source>Run Batch Analysis</source>
<translation>Run Batch Analysis</translation>
</message>
<message>
<location filename="../forms/batchwindow.ui" line="176"/>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="45"/>
<location filename="../source/guibatch.cpp" line="263"/>
<location filename="../source/guibatch.cpp" line="397"/>
<source>Batch Analysis</source>
<extracomment>The title of the Batch window</extracomment>
<translation>Batch Analysis</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="78"/>
<source>%1 drag and drop</source>
<extracomment>The name of the drag-and-drop playlist; includes the app name at %1</extracomment>
<translation>%1 drag and drop</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="98"/>
<source>Drag audio files here</source>
<extracomment>The initial help label on the Batch window</extracomment>
<translation>Drag audio files here</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="117"/>
<source>Copy</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Copy</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="122"/>
<source>Write key to file</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Write key to file</translation>
</message>
<message>
<source>Run detailed analysis</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation type="vanished">Run detailed analysis</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="127"/>
<source>Delete selected rows</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Delete selected rows</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="132"/>
<source>Clear detected keys</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Clear detected keys</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="247"/>
<source>The drag and drop list will not be saved.</source>
<extracomment>An alert message in the Batch window; first line</extracomment>
<translation>The drag and drop list will not be saved.</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="249"/>
<source>Are you sure you want to view another playlist?</source>
<extracomment>An alert message in the Batch window; second line</extracomment>
<translation>Are you sure you want to view another playlist?</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="271"/>
<source>Loading playlist...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Loading playlist...</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="292"/>
<location filename="../source/guibatch.cpp" line="724"/>
<source>Cannot change an external playlist from %1</source>
<extracomment>An alert message in the Batch window</extracomment>
<translation>Cannot change an external playlist from %1</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="306"/>
<source>Loading files...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Loading files...</translation>
</message>
<message numerus="yes">
<location filename="../source/guibatch.cpp" line="400"/>
<source>%n file(s)</source>
<translation>
<numerusform>%n file</numerusform>
<numerusform>%n files</numerusform>
</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="446"/>
<source>Reading tags...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Reading tags...</translation>
</message>
<message numerus="yes">
<location filename="../source/guibatch.cpp" line="483"/>
<source>Analysing (%n thread(s))...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>
<numerusform>Analysing (%n thread)...</numerusform>
<numerusform>Analysing (%n threads)...</numerusform>
</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="551"/>
<source>Skipped</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Skipped</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="582"/>
<source>Cancelling...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Cancelling...</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="605"/>
<source>Exception: %1</source>
<extracomment>Status of an individual file in the Batch window; includes an exception message at %1</extracomment>
<translation>Exception: %1</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="624"/>
<source>Writing to files...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Writing to files...</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="649"/>
<source>Data written to %1 and %2</source>
<extracomment>An alert message in the Batch window; contains "N tags" at %1 and "N filenames" at %2</extracomment>
<translation>Data written to %1 and %2</translation>
</message>
<message numerus="yes">
<location filename="../source/guibatch.cpp" line="651"/>
<source>%n tag(s)</source>
<translation>
<numerusform>%n tag</numerusform>
<numerusform>%n tags</numerusform>
</translation>
</message>
<message numerus="yes">
<location filename="../source/guibatch.cpp" line="653"/>
<source>%n filename(s)</source>
<translation>
<numerusform>%n filename</numerusform>
<numerusform>%n filenames</numerusform>
</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="701"/>
<source>Clearing data...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Clearing data...</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="729"/>
<source>Deleting rows...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Deleting rows...</translation>
</message>
<message>
<source>Please select a single row for detailed analysis</source>
<extracomment>An alert message in the Batch window</extracomment>
<translation type="vanished">Please select a single row for detailed analysis</translation>
</message>
<message>
<location filename="../source/guibatch.cpp" line="834"/>
<source>A new version, %1, is available on <a href='%2'>the %3 website</a>!</source>
<extracomment>An alert message in the Batch window; includes a version number at %1, a URL at %2, and the app name at %3</extracomment>
<translation>A new version, %1, is available on <a href='%2'>the %3 website</a>!</translation>
</message>
</context>
<context>
<name>DetailWindow</name>
<message>
<source>CHROMAGRAM COLOURS</source>
<oldsource> CHROMAGRAM COLOURS</oldsource>
<translation type="vanished">CHROMAGRAM COLOURS</translation>
</message>
<message>
<source>Run analysis</source>
<translation type="vanished">Run analysis</translation>
</message>
<message>
<source>Drag an audio file onto the window</source>
<translation type="vanished">Drag an audio file onto the window</translation>
</message>
<message>
<source>Detailed Analysis</source>
<extracomment>The title of the Detail window</extracomment>
<translation type="vanished">Detailed Analysis</translation>
</message>
<message>
<source>Choose the colour scheme for the chromagram. Some provide higher contrast than others.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">Choose the colour scheme for the chromagram. Some provide higher contrast than others.</translation>
</message>
<message>
<source>This is the colour scale of the current chromagram. You can change the colour scheme using the dropdown below.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">This is the colour scale of the current chromagram. You can change the colour scheme using the dropdown below.</translation>
</message>
<message>
<source>This chromagram spans %1. The vertical axis represents musical frequencies as indicated by the piano keyboard. The horizontal axis splits the track into analysis windows of a few seconds each. The brighter the colour, the higher the energy found at that frequency during that window.</source>
<oldsource>This chromagram spans %1. The vertical axis represents musical frequencies as indicated by the piano keyboard. The horizontal axis splits the track into analysis windows of about %1 seconds each. The brighter the colour, the higher the energy found at that frequency during that window.</oldsource>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">This chromagram spans %1. The vertical axis represents musical frequencies as indicated by the piano keyboard. The horizontal axis splits the track into analysis windows of a few seconds each. The brighter the colour, the higher the energy found at that frequency during that window.</translation>
</message>
<message numerus="yes">
<source>%n octave(s)</source>
<translation type="vanished">
<numerusform>%n octave</numerusform>
<numerusform>%n octaves</numerusform>
</translation>
</message>
<message>
<source>Analysing... </source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation type="vanished">Analysing... </translation>
</message>
<message>
<source>This is the same chromagram data, reduced to a single octave.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">This is the same chromagram data, reduced to a single octave.</translation>
</message>
<message>
<source>This row shows the key estimate for the unsegmented chromagram.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">This row shows the key estimate for the unsegmented chromagram.</translation>
</message>
<message>
<source>This row shows the key estimates for the arbitrary segments.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">This row shows the key estimates for the arbitrary segments.</translation>
</message>
<message>
<source>This row shows the key estimates for the segments between peak harmonic changes.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation type="vanished">This row shows the key estimates for the segments between peak harmonic changes.</translation>
</message>
<message>
<source>Key estimate: %1</source>
<extracomment>Text in the Batch window status bar; includes a key code at %1</extracomment>
<translation type="vanished">Key estimate: %1</translation>
</message>
<message>
<source>Drag an audio file onto the window.</source>
<extracomment>The initial help tooltip on the Detail window</extracomment>
<translation type="vanished">Drag an audio file onto the window.</translation>
</message>
</context>
<context>
<name>GuiStrings</name>
<message>
<location filename="../source/strings.cpp" line="46"/>
<source>N/A</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>N/A</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="62"/>
<source>Library</source>
<extracomment>Name of the main iTunes library (to exclude from the Batch window)</extracomment>
<translation>Library</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="64"/>
<source>Music</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Music</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="66"/>
<source>Movies</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Movies</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="68"/>
<source>Films</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Films</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="70"/>
<source>TV Shows</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>TV Shows</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="72"/>
<source>TV Programmes</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>TV Programmes</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="74"/>
<source>Podcasts</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Podcasts</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="76"/>
<source>Books</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Books</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="78"/>
<source>Purchased</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Purchased</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="80"/>
<source>Genius</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Genius</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="82"/>
<source>iTunes DJ</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>iTunes DJ</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="84"/>
<source>Audiobooks</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="86"/>
<source>Music Videos</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="88"/>
<source>Rentals</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="90"/>
<source>Home Videos</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="92"/>
<source>iTunes U</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="94"/>
<source>PDFs</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="103"/>
<source>_LOOPS</source>
<extracomment>Name of a default Traktor playlist (to exclude from the Batch window)</extracomment>
<translation>_LOOPS</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="105"/>
<source>_RECORDINGS</source>
<extracomment>Name of a default Traktor playlist (to exclude from the Batch window)</extracomment>
<translation>_RECORDINGS</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="107"/>
<source>Preparation</source>
<extracomment>Name of a default Traktor playlist (to exclude from the Batch window)</extracomment>
<translation>Preparation</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="113"/>
<source>SmartCrates</source>
<extracomment>Name of the Smart Crates subdirectory in Serato</extracomment>
<translation>SmartCrates</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="118"/>
<source>Subcrates</source>
<extracomment>Name of the Subcrates subdirectory in Serato</extracomment>
<translation>Subcrates</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="123"/>
<source>Error in LibSRC sample rate conversion</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Error in LibSRC sample rate conversion</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="128"/>
<source>Could not open audio file (%1)</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Could not open audio file (%1)</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="133"/>
<source>Could not find stream information</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Could not find stream information</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="138"/>
<source>Could not find an audio stream</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Could not find an audio stream</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="143"/>
<source>Audio stream has unsupported codec</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Audio stream has unsupported codec</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="148"/>
<source>Could not open audio codec %1 (%2)</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Could not open audio codec %1 (%2)</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="153"/>
<source>Could not create ReSampleContext</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Could not create ReSampleContext</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="158"/>
<source>Could not resample</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Could not resample</translation>
</message>
<message numerus="yes">
<location filename="../source/strings.cpp" line="163"/>
<source>%n bad packet(s)</source>
<oldsource>%1 bad packets</oldsource>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>
<numerusform>%n bad packet</numerusform>
<numerusform>%n bad packets</numerusform>
</translation>
</message>
<message>
<location filename="../source/strings.cpp" line="168"/>
<source>Duration (%1:%2) exceeds specified maximum (%3:00)</source>
<extracomment>Status of an individual file in the Batch window; includes minutes and seconds at %1:%2, and the max number of minutes at %3</extracomment>
<translation>Duration (%1:%2) exceeds specified maximum (%3:00)</translation>
</message>
</context>
<context>
<name>MAC_APPLICATION_MENU</name>
<message>
<location filename="../source/strings.cpp" line="51"/>
<source>Preferences...</source>
<extracomment>Main menu option</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/strings.cpp" line="56"/>
<source>About %1</source>
<extracomment>Main menu option and title of About window, contains the app name at %1</extracomment>
<translation type="unfinished">About %1</translation>
</message>
</context>
<context>
<name>MainMenuHandler</name>
<message>
<source>New Detail Window</source>
<extracomment>An action on the menu bar</extracomment>
<translation type="vanished">New Detail Window</translation>
</message>
<message>
<location filename="../source/guimenuhandler.cpp" line="53"/>
<source>New Batch Window</source>
<extracomment>An action on the menu bar</extracomment>
<translation>New Batch Window</translation>
</message>
<message>
<location filename="../source/guimenuhandler.cpp" line="56"/>
<source>Close Window</source>
<extracomment>An action on the menu bar</extracomment>
<translation>Close Window</translation>
</message>
<message>
<source>Preferences</source>
<extracomment>An action on the menu bar
----------
An action on the menu bar</extracomment>
<translation type="obsolete">Preferences</translation>
</message>
<message>
<source>About</source>
<extracomment>An action on the menu bar
----------
An action on the menu bar</extracomment>
<translation type="obsolete">About</translation>
</message>
</context>
<context>
<name>PrefsDialog</name>
<message>
<location filename="../forms/prefsdialog.ui" line="17"/>
<source>Preferences</source>
<translation>Preferences</translation>
</message>
<message>
<source>Basic</source>
<translation type="vanished">Basic</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="31"/>
<source>Parallelise batch jobs (faster, but higher CPU load)</source>
<translation>Parallelise batch jobs (faster, but higher CPU load)</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="45"/>
<source>Skip files that already have key metadata</source>
<translation>Skip files that already have key metadata</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="80"/>
<source>Write to tags/filenames automatically during batch jobs</source>
<translation>Write to tags/filenames automatically during batch jobs</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="71"/>
<source>minutes</source>
<translation>minutes</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="52"/>
<source>Skip files longer than</source>
<translation>Skip files longer than</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="179"/>
<source>iTunes XML</source>
<translation>iTunes XML</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="105"/>
<location filename="../forms/prefsdialog.ui" line="132"/>
<location filename="../forms/prefsdialog.ui" line="172"/>
<source>Browse</source>
<translation>Browse</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="112"/>
<source>Traktor NML</source>
<translation>Traktor NML</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="139"/>
<source>Serato database</source>
<translation>Serato database</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="450"/>
<source>Tagging</source>
<translation>Tagging</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="443"/>
<source>What to write</source>
<translation>What to write</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="425"/>
<source>Keys</source>
<translation>Keys</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="430"/>
<source>Custom codes</source>
<translation>Custom codes</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="435"/>
<source>Both</source>
<translation>Both</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="407"/>
<source>Comment tag</source>
<translation>Comment tag</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="207"/>
<source>Delimiter</source>
<translation>Delimiter</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="414"/>
<source>Where to write</source>
<translation>Where to write</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="376"/>
<source>Grouping tag</source>
<translation>Grouping tag</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="345"/>
<source>Key tag</source>
<translation>Key tag</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="317"/>
<source>Filename</source>
<translation>Filename</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="228"/>
<location filename="../forms/prefsdialog.ui" line="254"/>
<location filename="../forms/prefsdialog.ui" line="280"/>
<location filename="../forms/prefsdialog.ui" line="299"/>
<location filename="../forms/prefsdialog.ui" line="332"/>
<location filename="../forms/prefsdialog.ui" line="353"/>
<location filename="../forms/prefsdialog.ui" line="384"/>
<source>No</source>
<translation>No</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="233"/>
<location filename="../forms/prefsdialog.ui" line="259"/>
<location filename="../forms/prefsdialog.ui" line="285"/>
<location filename="../forms/prefsdialog.ui" line="304"/>
<location filename="../forms/prefsdialog.ui" line="358"/>
<location filename="../forms/prefsdialog.ui" line="389"/>
<source>Prepend</source>
<translation>Prepend</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="238"/>
<location filename="../forms/prefsdialog.ui" line="264"/>
<location filename="../forms/prefsdialog.ui" line="290"/>
<location filename="../forms/prefsdialog.ui" line="309"/>
<location filename="../forms/prefsdialog.ui" line="363"/>
<location filename="../forms/prefsdialog.ui" line="394"/>
<source>Append</source>
<translation>Append</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="246"/>
<source>Album tag</source>
<translation>Album tag</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="272"/>
<source>Artist tag</source>
<translation>Artist tag</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="324"/>
<source>Title tag</source>
<translation>Title tag</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="337"/>
<location filename="../forms/prefsdialog.ui" line="368"/>
<location filename="../forms/prefsdialog.ui" line="399"/>
<source>Overwrite</source>
<translation>Overwrite</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="489"/>
<source>File extension filter during batch jobs</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="508"/>
<source>Filter files by extension</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="515"/>
<source>Extensions (comma separated)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="534"/>
<source>Custom key codes</source>
<translation>Custom key codes</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="565"/>
<source>None</source>
<translation>None</translation>
</message>
<message>
<source>Advanced</source>
<translation type="vanished">Advanced</translation>
</message>
<message>
<source>Reset to defaults</source>
<translation type="vanished">Reset to defaults</translation>
</message>
<message>
<source>Musical range</source>
<translation type="vanished">Musical range</translation>
</message>
<message>
<source>Starting frequency (Hz)</source>
<translation type="vanished">Starting frequency (Hz)</translation>
</message>
<message>
<source>Number of octaves</source>
<translation type="vanished">Number of octaves</translation>
</message>
<message>
<source>Offset to C</source>
<translation type="vanished">Offset to C</translation>
</message>
<message>
<source>Bands per semitone</source>
<translation type="vanished">Bands per semitone</translation>
</message>
<message>
<source>Spectral analysis</source>
<translation type="vanished">Spectral analysis</translation>
</message>
<message>
<source>Temporal window</source>
<translation type="vanished">Temporal window</translation>
</message>
<message>
<source>FFT frame size</source>
<translation type="vanished">FFT frame size</translation>
</message>
<message>
<source>Direct SK stretch</source>
<translation type="vanished">Direct SK stretch</translation>
</message>
<message>
<source>Tuning method</source>
<translation type="vanished">Tuning method</translation>
</message>
<message>
<source>Detuned band weighting</source>
<translation type="vanished">Detuned band weighting</translation>
</message>
<message>
<source>Segmentation</source>
<translation type="vanished">Segmentation</translation>
</message>
<message>
<source>Cosine similarity CDF</source>
<translation type="vanished">Cosine similarity CDF</translation>
</message>
<message>
<source>Arbitrary segmentation</source>
<translation type="vanished">Arbitrary segmentation</translation>
</message>
<message>
<source>Smoothing Gaussian size</source>
<translation type="vanished">Smoothing Gaussian size</translation>
</message>
<message>
<source>Smoothing Gaussian sigma</source>
<translation type="vanished">Smoothing Gaussian sigma</translation>
</message>
<message>
<source>Peak-picking threshold</source>
<translation type="vanished">Peak-picking threshold</translation>
</message>
<message>
<source>Number of arbitrary segments</source>
<translation type="vanished">Number of arbitrary segments</translation>
</message>
<message>
<source>Classification</source>
<translation type="vanished">Classification</translation>
</message>
<message>
<source>Tone profiles</source>
<translation type="vanished">Tone profiles</translation>
</message>
<message>
<source>Custom</source>
<translation type="vanished">Custom</translation>
</message>
<message>
<source>Similarity measure</source>
<translation type="vanished">Similarity measure</translation>
</message>
<message>
<source>Cosine</source>
<translation type="vanished">Cosine</translation>
</message>
<message>
<source>Correlation</source>
<translation type="vanished">Correlation</translation>
</message>
<message>
<source>Custom profile major</source>
<translation type="vanished">Custom profile major</translation>
</message>
<message>
<source>Tuning</source>
<translation type="vanished">Tuning</translation>
</message>
<message>
<source>Custom profile minor</source>
<translation type="vanished">Custom profile minor</translation>
</message>
<message>
<source>Hops per frame</source>
<translation type="vanished">Hops per frame</translation>
</message>
<message>
<source>Band adaptive</source>
<translation type="vanished">Band adaptive</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="1292"/>
<source>Changes will not affect running batch jobs</source>
<translation>Changes will not affect running batch jobs</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="1312"/>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
<message>
<location filename="../forms/prefsdialog.ui" line="1319"/>
<source>Save Preferences</source>
<translation>Save Preferences</translation>
</message>
<message>
<source>Changing these preferences may severely affect %1's accuracy. This is recommended for expert users only.</source>
<extracomment>The warning text on the Advanced Preferences tab; includes the app name at %1</extracomment>
<translation type="vanished">Changing these preferences may severely affect %1's accuracy. This is recommended for expert users only.</translation>
</message>
<message>
<location filename="../source/guiprefs.cpp" line="218"/>
<source>Choose iTunes Library XML</source>
<extracomment>File browse dialog launched from the Preferences window Title of file browse dialog launched from the Preferences window</extracomment>
<translation>Choose iTunes Library XML</translation>
</message>
<message>
<location filename="../source/guiprefs.cpp" line="221"/>
<source>iTunes XML (*.xml)</source>
<extracomment>Filetype in file browse dialog launched from the Preferences window</extracomment>
<translation>iTunes XML (*.xml)</translation>
</message>
<message>
<location filename="../source/guiprefs.cpp" line="239"/>
<source>Choose Traktor Library NML</source>
<extracomment>Title of file browse dialog launched from the Preferences window</extracomment>
<translation>Choose Traktor Library NML</translation>
</message>
<message>
<location filename="../source/guiprefs.cpp" line="242"/>
<source>Traktor NML (*.nml)</source>
<extracomment>Filetype in file browse dialog launched from the Preferences window</extracomment>
<translation>Traktor NML (*.nml)</translation>
</message>
<message>
<location filename="../source/guiprefs.cpp" line="260"/>
<source>Choose Serato database</source>
<extracomment>Title of file browse dialog launched from the Preferences window</extracomment>
<translation>Choose Serato database</translation>
</message>
<message>
<location filename="../source/guiprefs.cpp" line="263"/>
<source>Serato database (*)</source>