forked from ibsh/is_KeyFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
is_keyfinder_sv.ts
964 lines (964 loc) · 40.2 KB
/
is_keyfinder_sv.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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="sv_SE">
<context>
<name>AboutDialog</name>
<message>
<location filename="guiabout.cpp" line="28"/>
<source>About %1</source>
<extracomment>The title of the About window; includes the app name at %1</extracomment>
<translation>Om %1</translation>
</message>
<message>
<location filename="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>Upphovsrätt %1</translation>
</message>
<message>
<location filename="guiabout.cpp" line="37"/>
<source>%1 includes library code from:</source>
<extracomment>The middle section of the About window; includes the app name at %1</extracomment>
<translation>%1 inkluderar kod från:</translation>
</message>
</context>
<context>
<name>BatchWindow</name>
<message>
<location filename="batchwindow.ui" line="55"/>
<source>Library</source>
<translation>Bibliotek</translation>
</message>
<message>
<location filename="batchwindow.ui" line="90"/>
<source>Audio File Name</source>
<translation>Ljudfilens Namn</translation>
</message>
<message>
<location filename="batchwindow.ui" line="95"/>
<source>Artist Tag</source>
<translation>Artist Tag</translation>
</message>
<message>
<location filename="batchwindow.ui" line="100"/>
<source>Title Tag</source>
<translation>Titel Tag</translation>
</message>
<message>
<location filename="batchwindow.ui" line="105"/>
<source>Comment Tag</source>
<translation>Kommantars Tag</translation>
</message>
<message>
<location filename="batchwindow.ui" line="110"/>
<source>Grouping Tag</source>
<translation>Grupp Tag</translation>
</message>
<message>
<location filename="batchwindow.ui" line="115"/>
<source>Key Tag</source>
<translation>Tonarts Tag</translation>
</message>
<message>
<location filename="batchwindow.ui" line="120"/>
<source>Detected Key</source>
<translation>Uppmätt Tonart</translation>
</message>
<message>
<location filename="batchwindow.ui" line="146"/>
<location filename="guibatch.cpp" line="182"/>
<source>Ready</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Redo</translation>
</message>
<message>
<location filename="batchwindow.ui" line="166"/>
<source>Run Batch Analysis</source>
<translation>Kör Analys</translation>
</message>
<message>
<location filename="batchwindow.ui" line="176"/>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<location filename="guibatch.cpp" line="62"/>
<location filename="guibatch.cpp" line="249"/>
<location filename="guibatch.cpp" line="348"/>
<source>Batch Analysis</source>
<extracomment>The title of the Batch window</extracomment>
<translation>Analys</translation>
</message>
<message>
<location filename="guibatch.cpp" line="92"/>
<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 och släpp</translation>
</message>
<message>
<location filename="guibatch.cpp" line="110"/>
<source>Drag audio files here</source>
<extracomment>The initial help label on the Batch window</extracomment>
<translation>Dra ljudfiler hit</translation>
</message>
<message>
<location filename="guibatch.cpp" line="129"/>
<source>Copy</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Kopiera</translation>
</message>
<message>
<location filename="guibatch.cpp" line="134"/>
<source>Write key to file</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Skriv tonart till fil</translation>
</message>
<message>
<location filename="guibatch.cpp" line="139"/>
<source>Run detailed analysis</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Kör detaljerad analys</translation>
</message>
<message>
<location filename="guibatch.cpp" line="144"/>
<source>Delete selected rows</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Radera vald rad</translation>
</message>
<message>
<location filename="guibatch.cpp" line="149"/>
<source>Clear detected keys</source>
<extracomment>An action in the Batch window context menu</extracomment>
<translation>Rensa uppmätt tonart</translation>
</message>
<message>
<location filename="guibatch.cpp" line="237"/>
<source>The drag and drop list will not be saved.</source>
<extracomment>An alert message in the Batch window; first line</extracomment>
<translation>Dra och släpp listan sparas inte.</translation>
</message>
<message>
<location filename="guibatch.cpp" line="239"/>
<source>Are you sure you want to view another playlist?</source>
<extracomment>An alert message in the Batch window; second line</extracomment>
<translation>Är du säker på att du vill se en annan spellista?</translation>
</message>
<message>
<location filename="guibatch.cpp" line="255"/>
<source>Loading playlist...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Laddar spellista...</translation>
</message>
<message>
<location filename="guibatch.cpp" line="280"/>
<location filename="guibatch.cpp" line="672"/>
<source>Cannot change an external playlist from %1</source>
<extracomment>An alert message in the Batch window</extracomment>
<translation>Kan inte ändra en extern spellista från %1</translation>
</message>
<message>
<location filename="guibatch.cpp" line="293"/>
<source>Loading files...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Laddar filer...</translation>
</message>
<message numerus="yes">
<location filename="guibatch.cpp" line="351"/>
<source>%n file(s)</source>
<extracomment>File count in the Batch window title bar</extracomment>
<translation>
<numerusform>%n fil</numerusform>
<numerusform>%n filer</numerusform>
</translation>
</message>
<message>
<location filename="guibatch.cpp" line="394"/>
<source>Reading tags...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Läser taggar...</translation>
</message>
<message numerus="yes">
<location filename="guibatch.cpp" line="436"/>
<source>Analysing (%n thread(s))...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>
<numerusform>Analyserar (%n tråd))...</numerusform>
<numerusform>Analyserar (%n trådar))...</numerusform>
</translation>
</message>
<message>
<location filename="guibatch.cpp" line="504"/>
<source>Skipped</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Överhoppad</translation>
</message>
<message>
<location filename="guibatch.cpp" line="529"/>
<source>Cancelling...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Avbryter...</translation>
</message>
<message>
<location filename="guibatch.cpp" line="548"/>
<source>Exception: %1</source>
<extracomment>Status of an individual file in the Batch window; includes an exception message at %1</extracomment>
<translation>Undantag: %1</translation>
</message>
<message>
<location filename="guibatch.cpp" line="565"/>
<source>Writing to files...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Skriver till filer...</translation>
</message>
<message>
<location filename="guibatch.cpp" line="588"/>
<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 skriven till %1 och %2</translation>
</message>
<message numerus="yes">
<location filename="guibatch.cpp" line="590"/>
<source>%n tag(s)</source>
<extracomment>Part of an alert message in the Batch window</extracomment>
<translation>
<numerusform>%n tag</numerusform>
<numerusform>%n taggar</numerusform>
</translation>
</message>
<message numerus="yes">
<location filename="guibatch.cpp" line="592"/>
<source>%n filename(s)</source>
<extracomment>Part of an alert message in the Batch window</extracomment>
<translation>
<numerusform>% filnamn</numerusform>
<numerusform>%n filnamn</numerusform>
</translation>
</message>
<message>
<location filename="guibatch.cpp" line="649"/>
<source>Clearing data...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Rensar data...</translation>
</message>
<message>
<location filename="guibatch.cpp" line="677"/>
<source>Deleting rows...</source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Raderar rader...</translation>
</message>
<message>
<location filename="guibatch.cpp" line="733"/>
<source>Please select a single row for detailed analysis</source>
<extracomment>An alert message in the Batch window</extracomment>
<translation>Vänligen välj en rad för detaljerad analys</translation>
</message>
<message>
<location filename="guibatch.cpp" line="792"/>
<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>
<translatorcomment>Måste testas...</translatorcomment>
<translation>En ny version, %1 är tillgänglig på <a href='%2'>%3 hemsida</a>!</translation>
</message>
</context>
<context>
<name>DetailWindow</name>
<message>
<location filename="detailwindow.ui" line="234"/>
<source>CHROMAGRAM COLOURS</source>
<oldsource> CHROMAGRAM COLOURS</oldsource>
<translatorcomment>Kolla om det inte finns någon bättre översättning</translatorcomment>
<translation>CHROMAGRAM FÄRGER</translation>
</message>
<message>
<location filename="detailwindow.ui" line="257"/>
<source>Izo</source>
<translation>Izo</translation>
</message>
<message>
<location filename="detailwindow.ui" line="262"/>
<source>Mono</source>
<translation>Mono</translation>
</message>
<message>
<location filename="detailwindow.ui" line="267"/>
<source>Pred</source>
<translation>Pred</translation>
</message>
<message>
<location filename="detailwindow.ui" line="272"/>
<source>Hack</source>
<translation>Hack</translation>
</message>
<message>
<location filename="detailwindow.ui" line="292"/>
<source>Run analysis</source>
<translation>kör analys</translation>
</message>
<message>
<location filename="detailwindow.ui" line="317"/>
<source>Drag an audio file onto the window</source>
<translation>Dra en ljudfil till fönstret</translation>
</message>
<message>
<location filename="guidetail.cpp" line="32"/>
<location filename="guidetail.cpp" line="118"/>
<source>Detailed Analysis</source>
<extracomment>The title of the Detail window</extracomment>
<translation>Detaljerad Analys</translation>
</message>
<message>
<location filename="guidetail.cpp" line="34"/>
<source>Choose the colour scheme for the chromagram. Some provide higher contrast than others.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Välj färgschema för Chromagram. Några ger högre kontrast.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="36"/>
<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>Det här är färgschemat för aktuellt Chromagram. Du kan ändra färgschema med dropplisten nedan.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="89"/>
<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 about %1 seconds each. The brighter the colour, the higher the energy found at that frequency during that window.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Detta Chromagram spänner över %1. Den vertikala axeln representerar musikfrekvens enligt pianots tangenter. Den horisontala axeln delar musikfilen i analysdelar om %1 sekunder var. Ljusare färg innebär högre uppmät energi för specifik frekvens och tillfälle.</translation>
</message>
<message numerus="yes">
<location filename="guidetail.cpp" line="91"/>
<source>%n octave(s)</source>
<extracomment>Part of a tooltip on the Detail window</extracomment>
<translation>
<numerusform>%n oktav</numerusform>
<numerusform>%n oktaver</numerusform>
</translation>
</message>
<message>
<location filename="guidetail.cpp" line="95"/>
<source>Analysing... </source>
<extracomment>Text in the Batch window status bar</extracomment>
<translation>Analyserar...</translation>
</message>
<message>
<location filename="guidetail.cpp" line="128"/>
<source>This is the same chromagram data, reduced to a single octave.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Det här är samma Chromagram data, förminskad till en enstaka oktav.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="144"/>
<source>You are not using segmentation, so there is no harmonic change data to display.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Du använder inte segmentering, så det finns ingen harmonisk data att visa.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="147"/>
<source>You are using arbitrary segmentation, so there is no harmonic change data to display.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Du använder uppdelade segment, så det är ingen ändring på den harmoniska datan att visa.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="150"/>
<source>This is the level of harmonic change detected in the chromagram over time. Peaks in this signal are used to segment the chromagram.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Detta är nivån på harmoniska förändringar som har upptäckts i Chromagramet äver tid. Toppar i sagnalen används för att segmentera Chromagramet.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="167"/>
<source>This row shows the key estimate for the unsegmented chromagram.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Denna rad visar den uppskattader tonarten för den icke segmenterade Chromagramet.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="170"/>
<source>This row shows the key estimates for the arbitrary segments.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Denna rad visar den uppskattade tonarten för segmentet.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="173"/>
<source>This row shows the key estimates for the segments between peak harmonic changes.</source>
<extracomment>A tooltip on the Detail window</extracomment>
<translation>Denna rad visar den uppskattade tonarten för segmenten mellan hamoniska förändringar.</translation>
</message>
<message>
<location filename="guidetail.cpp" line="180"/>
<source>Key estimate: %1</source>
<extracomment>Text in the Batch window status bar; includes a key code at %1</extracomment>
<translation>Uppskattad tonart: %1</translation>
</message>
<message>
<location filename="guidetail.cpp" line="268"/>
<location filename="guidetail.cpp" line="290"/>
<source>Drag an audio file onto the window.</source>
<extracomment>The initial help tooltip on the Detail window</extracomment>
<translation>Dra en ljudfil till fönstret.</translation>
</message>
</context>
<context>
<name>GuiStrings</name>
<message>
<location filename="strings.cpp" line="47"/>
<source>N/A</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translatorcomment>Inte Tillgängligt</translatorcomment>
<translation>I/T</translation>
</message>
<message>
<location filename="strings.cpp" line="53"/>
<source>Library</source>
<extracomment>Name of the main iTunes library (to exclude from the Batch window)</extracomment>
<translation>Bibliotek</translation>
</message>
<message>
<location filename="strings.cpp" line="55"/>
<source>Music</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Musik</translation>
</message>
<message>
<location filename="strings.cpp" line="57"/>
<source>Movies</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Filmer</translation>
</message>
<message>
<location filename="strings.cpp" line="59"/>
<source>Films</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Filmer</translation>
</message>
<message>
<location filename="strings.cpp" line="61"/>
<source>TV Shows</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>TV Program</translation>
</message>
<message>
<location filename="strings.cpp" line="63"/>
<source>TV Programmes</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>TV Program</translation>
</message>
<message>
<location filename="strings.cpp" line="65"/>
<source>Podcasts</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Podutsändningar</translation>
</message>
<message>
<location filename="strings.cpp" line="67"/>
<source>Books</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Böcker</translation>
</message>
<message>
<location filename="strings.cpp" line="69"/>
<source>Purchased</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Köpt</translation>
</message>
<message>
<location filename="strings.cpp" line="71"/>
<source>Genius</source>
<extracomment>Name of a default iTunes playlist (to exclude from the Batch window)</extracomment>
<translation>Genius</translation>
</message>
<message>
<location filename="strings.cpp" line="73"/>
<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="strings.cpp" line="80"/>
<source>_LOOPS</source>
<extracomment>Name of a default Traktor playlist (to exclude from the Batch window)</extracomment>
<translation>_Lopar</translation>
</message>
<message>
<location filename="strings.cpp" line="82"/>
<source>_RECORDINGS</source>
<extracomment>Name of a default Traktor playlist (to exclude from the Batch window)</extracomment>
<translation>_Inspelningar</translation>
</message>
<message>
<location filename="strings.cpp" line="84"/>
<source>Preparation</source>
<extracomment>Name of a default Traktor playlist (to exclude from the Batch window)</extracomment>
<translation>Förberedelser</translation>
</message>
<message>
<location filename="strings.cpp" line="90"/>
<source>SmartCrates</source>
<extracomment>Name of the Smart Crates subdirectory in Serato</extracomment>
<translation>Smarta Mappar</translation>
</message>
<message>
<location filename="strings.cpp" line="95"/>
<source>Subcrates</source>
<extracomment>Name of the Subcrates subdirectory in Serato</extracomment>
<translation>Undermapp</translation>
</message>
<message>
<location filename="strings.cpp" line="100"/>
<source>Error in LibSRC sample rate conversion</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Fel i LibSRC samplingsfrekvensen konverteringen</translation>
</message>
<message>
<location filename="strings.cpp" line="105"/>
<source>Could not open audio file (%1)</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Kan inte öppna ljudfil (%1)</translation>
</message>
<message>
<location filename="strings.cpp" line="110"/>
<source>Could not find stream information</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Kan inte hitta flödesinformation</translation>
</message>
<message>
<location filename="strings.cpp" line="115"/>
<source>Could not find an audio stream</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Kan inte hitta ljudströmsinformation</translation>
</message>
<message>
<location filename="strings.cpp" line="120"/>
<source>Audio stream has unsupported codec</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Ljudströmen har en kodning som inte stöds</translation>
</message>
<message>
<location filename="strings.cpp" line="125"/>
<source>Could not open audio codec %1 (%2)</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Kan inte öppna ljudkodning %1 (%2)</translation>
</message>
<message>
<location filename="strings.cpp" line="130"/>
<source>Could not create ReSampleContext</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Kan inte skapa det kodade innehållet</translation>
</message>
<message>
<location filename="strings.cpp" line="135"/>
<source>Could not resample</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>Kan inte omkoda</translation>
</message>
<message numerus="yes">
<location filename="strings.cpp" line="140"/>
<source>%n bad packet(s)</source>
<extracomment>Status of an individual file in the Batch window</extracomment>
<translation>
<numerusform>%n felaktigt paket</numerusform>
<numerusform>%n felaktiga paket</numerusform>
</translation>
</message>
<message>
<location filename="strings.cpp" line="145"/>
<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>Tiden (%1:%2) övertstigertillåtet max (%3:00)</translation>
</message>
</context>
<context>
<name>MainMenuHandler</name>
<message>
<location filename="guimenuhandler.cpp" line="58"/>
<source>New Detail Window</source>
<extracomment>An action on the menu bar</extracomment>
<translation>Nytt Detaljerat Fönster</translation>
</message>
<message>
<location filename="guimenuhandler.cpp" line="60"/>
<source>New Batch Window</source>
<extracomment>An action on the menu bar</extracomment>
<translation>Nytt Fönster för Omgång</translation>
</message>
<message>
<location filename="guimenuhandler.cpp" line="63"/>
<source>Close Window</source>
<extracomment>An action on the menu bar</extracomment>
<translation>Stäng Fönster</translation>
</message>
<message>
<location filename="guimenuhandler.cpp" line="67"/>
<location filename="guimenuhandler.cpp" line="72"/>
<source>Preferences</source>
<extracomment>An action on the menu bar</extracomment>
<translation>Inställningar</translation>
</message>
<message>
<location filename="guimenuhandler.cpp" line="70"/>
<location filename="guimenuhandler.cpp" line="73"/>
<source>About</source>
<extracomment>An action on the menu bar</extracomment>
<translation>Om</translation>
</message>
</context>
<context>
<name>PrefsDialog</name>
<message>
<location filename="prefsdialog.ui" line="17"/>
<source>Preferences</source>
<translation>Inställningar</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="30"/>
<source>Basic</source>
<translation>Grund</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="50"/>
<source>Parallelise batch jobs (faster, but higher CPU load)</source>
<translation>Parallella jobb (snabbare, men högre CPU belastning)</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="64"/>
<source>Skip files that already have key metadata</source>
<translation>Hoppa över filer som redan har tonarts data</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="78"/>
<source>Write to tags/filenames automatically during batch jobs</source>
<translation>Skriv automatiskt till tag/filnamn vid fler-jobb</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="104"/>
<source>minutes</source>
<translation>minuter</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="113"/>
<source>Skip files longer than</source>
<translation>Hoppa över filer längre än</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="124"/>
<source>iTunes XML</source>
<translation>iTunes XML</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="147"/>
<location filename="prefsdialog.ui" line="177"/>
<location filename="prefsdialog.ui" line="207"/>
<source>Browse</source>
<translation>Bläddra</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="154"/>
<source>Traktor NML</source>
<translation>Traktor NML</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="184"/>
<source>Serato database</source>
<translation>Serato databas</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="227"/>
<source>Tagging</source>
<translation>Taggning</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="245"/>
<source>What to write</source>
<translation>Skriver</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="253"/>
<source>Keys</source>
<translation>Tonart</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="258"/>
<source>Custom codes</source>
<translation>Egen tonarts kod</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="263"/>
<source>Both</source>
<translation>Båda</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="271"/>
<source>Comment tag</source>
<translation>Kommentars tag</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="278"/>
<source>Delimiter</source>
<translation>Avgränsare</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="298"/>
<source>Where to write</source>
<translation>Vart skall det skrivas</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="308"/>
<source>Grouping tag</source>
<translation>Grupp tag</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="315"/>
<source>Key tag</source>
<translation>Tonarts tag</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="322"/>
<source>Filename</source>
<translation>Filnamn</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="330"/>
<location filename="prefsdialog.ui" line="354"/>
<location filename="prefsdialog.ui" line="368"/>
<location filename="prefsdialog.ui" line="387"/>
<source>No</source>
<translation>Nej</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="335"/>
<location filename="prefsdialog.ui" line="373"/>
<location filename="prefsdialog.ui" line="392"/>
<source>Prepend</source>
<translation>Före</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="340"/>
<location filename="prefsdialog.ui" line="378"/>
<location filename="prefsdialog.ui" line="397"/>
<source>Append</source>
<translation>Efter</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="345"/>
<location filename="prefsdialog.ui" line="359"/>
<location filename="prefsdialog.ui" line="402"/>
<source>Overwrite</source>
<translation>Skriv över</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="439"/>
<source>Custom key codes</source>
<translation>Egen tonarts kod</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1166"/>
<location filename="prefsdialog.ui" line="1668"/>
<source>None</source>
<translation>Ingen</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1196"/>
<source>Advanced</source>
<translation>Avancerad</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1229"/>
<source>Musical range</source>
<translation>Musikaliskt omfång</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1239"/>
<source>Starting frequency (Hz)</source>
<translation>Startfrekvens (Hz)</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1283"/>
<source>Number of octaves</source>
<translation>Antal oktaver</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1306"/>
<source>Offset to C</source>
<translation>Offset till C</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1323"/>
<source>Bands per semitone</source>
<translation>Band per halvton</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1349"/>
<source>Downsample factor</source>
<translation>Reduserings faktor (frekvens)</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1379"/>
<source>Spectral analysis</source>
<translation>Spectrum analys</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1389"/>
<source>Hop size</source>
<translation>Omfångsstorlek</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1456"/>
<source>Temporal window</source>
<translation>Tillfälligt fönster</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1485"/>
<source>FFT frame size</source>
<translation>FFT ramstorlek</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1552"/>
<source>Direct SK stretch</source>
<translation>Direkt SK utökning</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1581"/>
<source>Tuning method</source>
<translation>Inställningsmetod</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1600"/>
<source>Bin-adaptive</source>
<translation>Del-adaptiv</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1608"/>
<source>Detuned band weighting</source>
<translation>Nerstämd bandavvägning</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1644"/>
<location filename="prefsdialog.ui" line="1654"/>
<source>Segmentation</source>
<translation>Segmentering</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1678"/>
<source>Cosine similarity CDF</source>
<translation>Cosinus likhet CDF</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1683"/>
<source>Arbitrary segmentation</source>
<translation>Godtycklig segmentering</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1691"/>
<source>Smoothing Gaussian size</source>
<translation>Utjämnad Gaussisk storlek</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1714"/>
<source>Smoothing Gaussian sigma</source>
<translation>Utjämnad Gaussisk sigma</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1740"/>
<source>Peak-picking threshold</source>
<translation>Gränsvärde topp</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1763"/>
<source>Number of arbitrary segments</source>
<translation>Antal godtyckliga segment</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1793"/>
<source>Classification</source>
<translation>Klassificering</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1803"/>
<source>Tone profiles</source>
<translation>Tonprofil</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1837"/>
<source>Custom</source>
<translation>Egen</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1845"/>
<source>Similarity measure</source>
<translation>Likvärdig mätning</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1859"/>
<source>Cosine</source>
<translation>Cosinus</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1864"/>
<source>Correlation</source>
<translation>Korrelation</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="1872"/>
<source>Custom profile major</source>
<translation>Egen profil dur</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="2452"/>
<source>Tuning</source>
<translation>Intonation</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="2462"/>
<source>Custom profile minor</source>
<translation>Egen profil moll</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="2481"/>
<source>Changes will not affect running batch jobs</source>
<translation>Ändringar påverkar inte pågående jobb</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="2501"/>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<location filename="prefsdialog.ui" line="2508"/>
<source>Save Preferences</source>
<translation>Spara Inställningar</translation>
</message>
<message>
<location filename="guiprefs.cpp" line="381"/>
<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>Välj iTunes Bibliotek XML</translation>
</message>
<message>
<location filename="guiprefs.cpp" line="384"/>
<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="guiprefs.cpp" line="401"/>
<source>Choose Traktor Library NML</source>
<extracomment>Title of file browse dialog launched from the Preferences window</extracomment>
<translation>Välj Traktor Bibliotek NML</translation>
</message>
<message>
<location filename="guiprefs.cpp" line="404"/>
<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="guiprefs.cpp" line="421"/>
<source>Choose Serato database</source>
<extracomment>Title of file browse dialog launched from the Preferences window</extracomment>
<translation>Välj Seratodatabas</translation>
</message>
<message>
<location filename="guiprefs.cpp" line="424"/>
<source>Serato database (*)</source>
<extracomment>Filetype in file browse dialog launched from the Preferences window</extracomment>
<translation>Serato databas (*)</translation>
</message>
</context>
</TS>