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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#: src/lib/util.cc:534 src/lib/util.cc:535
msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-27 20:36+0100\n"
"PO-Revision-Date: 2016-04-26 17:09+0100\n"
"Last-Translator: Adam Klotblixt <adam.klotblixt@gmail.com>\n"
"Language-Team: \n"
"Language: sv_SE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.4\n"
#: src/lib/video_content.cc:446
#, fuzzy, c-format
msgid ""
"\n"
"Content frame rate %.4f\n"
msgstr ""
"\n"
"Innehållets bildhastighet %.4f\n"
#: src/lib/video_content.cc:410
#, fuzzy
msgid ""
"\n"
"Cropped to %1x%2"
msgstr ""
"\n"
"Beskuren till %1x%2"
#: src/lib/video_content.cc:403
#, fuzzy, c-format
msgid ""
"\n"
"Display aspect ratio %.2f:1"
msgstr ""
"\n"
"Skärmens höjd/bredd-förhållande %.2f:1"
#: src/lib/video_content.cc:434
#, fuzzy
msgid ""
"\n"
"Padded with black to fit container %1 (%2x%3)"
msgstr ""
"\n"
"Svarta kanter tillagda för att passa %1 (%2x%3)"
#: src/lib/video_content.cc:424
#, fuzzy
msgid ""
"\n"
"Scaled to %1x%2"
msgstr ""
"\n"
"Skalad till %1x%2"
#: src/lib/video_content.cc:428 src/lib/video_content.cc:439
#, c-format
msgid " (%.2f:1)"
msgstr ""
#: src/lib/atmos_mxf_content.cc:78
#, fuzzy
msgid "%1 [Atmos]"
msgstr "%1 [Atmos]"
#: src/lib/dcp_content.cc:184
msgid "%1 [DCP]"
msgstr "%1 [DCP]"
#: src/lib/ffmpeg_content.cc:296
msgid "%1 [audio]"
msgstr "%1 [ljud]"
#: src/lib/ffmpeg_content.cc:292
msgid "%1 [movie]"
msgstr "%1 [film]"
#: src/lib/ffmpeg_content.cc:294 src/lib/video_mxf_content.cc:89
#, fuzzy
msgid "%1 [video]"
msgstr "%1 [film]"
#: src/lib/video_content.cc:398
#, fuzzy, c-format
msgid ", pixel aspect ratio %.2f:1"
msgstr ", pixlars höjd/bredd-förhållande %.2f:1"
#: src/lib/ratio.cc:36
msgid "1.19"
msgstr "1,19"
#: src/lib/ratio.cc:39
msgid "1.66"
msgstr "1,66"
#: src/lib/ratio.cc:40
msgid "16:9"
msgstr "16:9"
#: src/lib/ratio.cc:42
msgid "2.35"
msgstr "2.35"
#: src/lib/filter.cc:71
msgid "3D denoiser"
msgstr "3D brusreducering"
#: src/lib/ratio.cc:37
msgid "4:3"
msgstr "4:3"
#: src/lib/hints.cc:101
msgid ""
"A few projectors have problems playing back very high bit-rate DCPs. It is "
"a good idea to drop the JPEG2000 bandwidth down to about 200Mbit/s; this is "
"unlikely to have any visible effect on the image."
msgstr ""
#: src/lib/ffmpeg_content.cc:545
msgid "ARIB STD-B67 ('Hybrid log-gamma')"
msgstr ""
#: src/lib/ratio.cc:38
msgid "Academy"
msgstr "Academy"
#: src/lib/dcp_content_type.cc:55
msgid "Advertisement"
msgstr "Advertisement"
#: src/lib/hints.cc:93
msgid ""
"All of your content is at 1.85:1 or narrower but your DCP's container is "
"Scope (2.39:1). This will pillar-box your content inside a Flat (1.85:1) "
"frame. You may prefer to set your DCP's container to Flat (1.85:1) in the "
"\"DCP\" tab."
msgstr ""
#: src/lib/hints.cc:89
msgid ""
"All of your content is in Scope (2.39:1) but your DCP's container is Flat "
"(1.85:1). This will letter-box your content inside a Flat (1.85:1) frame. "
"You may prefer to set your DCP's container to Scope (2.39:1) in the \"DCP\" "
"tab."
msgstr ""
#: src/lib/job.cc:99
msgid "An error occurred whilst handling the file %1."
msgstr "Ett fel inträffade vid hantering av filen %1"
#: src/lib/analyse_audio_job.cc:84
msgid "Analyse audio"
msgstr "Analysera audio"
#: src/lib/audio_content.cc:258
msgid "Audio will be resampled from %1kHz to %2kHz"
msgstr "Audio kommer att samplas om från %1kHz till %2kHz"
#: src/lib/audio_content.cc:260
msgid "Audio will be resampled to %1kHz"
msgstr "Audio kommer att samplas om till %1kHz"
#: src/lib/audio_content.cc:249
msgid "Audio will not be resampled"
msgstr "Audio kommer inte att samplas om"
#: src/lib/ffmpeg_content.cc:539
msgid "BT1361 extended colour gamut"
msgstr "BT1361 utökat färgomfång"
#: src/lib/ffmpeg_content.cc:519
msgid "BT2020"
msgstr "BT2020"
#: src/lib/ffmpeg_content.cc:562
msgid "BT2020 constant luminance"
msgstr "BT2020 konstant luminans"
#: src/lib/ffmpeg_content.cc:541
msgid "BT2020 for a 10-bit system"
msgstr "BT2020 för ett 10-bitars system"
#: src/lib/ffmpeg_content.cc:542
msgid "BT2020 for a 12-bit system"
msgstr "BT2020 för ett 12-bitars system"
#: src/lib/ffmpeg_content.cc:561
msgid "BT2020 non-constant luminance"
msgstr "BT2020 icke-konstant luminans"
#: src/lib/ffmpeg_content.cc:515
msgid "BT470BG"
msgstr "BT470BG"
#: src/lib/ffmpeg_content.cc:557
msgid "BT470BG (BT601-6)"
msgstr "BT470BG (BT601-6)"
#: src/lib/ffmpeg_content.cc:514
msgid "BT470M"
msgstr "BT470M"
#: src/lib/ffmpeg_content.cc:511 src/lib/ffmpeg_content.cc:528
#: src/lib/ffmpeg_content.cc:553
msgid "BT709"
msgstr "BT709"
#: src/lib/ffmpeg_content.cc:569
msgid "Bits per pixel"
msgstr "Bitar per pixel"
#: src/lib/util.cc:530
msgid "BsL"
msgstr "BsV"
#: src/lib/util.cc:531
msgid "BsR"
msgstr "BsH"
#: src/lib/util.cc:522
msgid "C"
msgstr "C"
#: src/lib/job.cc:401
msgid "Cancelled"
msgstr "Avbruten"
#: src/lib/exceptions.cc:61
msgid "Cannot handle pixel format %1 during %2"
msgstr "Kan inte hantera pixelformat %1 under %2"
#: src/lib/util.cc:492
msgid "Centre"
msgstr "Center"
#: src/lib/audio_content.cc:306
msgid "Channels"
msgstr "Kanaler"
#: src/lib/reel_writer.cc:97
msgid "Checking existing image data"
msgstr "Kontrollerar befintligt bilddata"
#: src/lib/ffmpeg_content.cc:524
msgid "Colour primaries"
msgstr "Grundläggande färger"
#. / TRANSLATORS: this means that the range of pixel values used in this
#. / file is unknown (not specified in the file).
#. / TRANSLATORS: this means that the range of pixel values used in this
#. / file is full, so that all possible pixel values are valid.
#. / TRANSLATORS: this means that the range of pixel values used in this
#. / file is unknown (not specified in the file).
#. / TRANSLATORS: this means that the range of pixel values used in this
#. / file is limited, so that not all possible values are valid.
#. / TRANSLATORS: this means that the range of pixel values used in this
#. / file is full, so that all possible pixel values are valid.
#: src/lib/ffmpeg_content.cc:468 src/lib/ffmpeg_content.cc:475
#: src/lib/ffmpeg_content.cc:482 src/lib/ffmpeg_content.cc:492
#: src/lib/ffmpeg_content.cc:497 src/lib/ffmpeg_content.cc:502
msgid "Colour range"
msgstr "Färgomfång"
#: src/lib/ffmpeg_content.cc:549
msgid "Colour transfer characteristic"
msgstr "Färgöversättningskarakteristik"
#: src/lib/ffmpeg_content.cc:566
msgid "Colourspace"
msgstr "Färgrymd"
#: src/lib/content.cc:163
msgid "Computing digest"
msgstr "Beräknar sammanfattning"
#: src/lib/writer.cc:467
#, fuzzy
msgid "Computing digests"
msgstr "Beräknar sammanfattning"
#: src/lib/frame_rate_change.cc:67
msgid "Content and DCP have the same rate.\n"
msgstr "Innehåll och DCP har samma bildfrekvens.\n"
#: src/lib/audio_content.cc:307
#, fuzzy
msgid "Content audio sample rate"
msgstr "Innehållets ljudramshastighet"
#: src/lib/ffmpeg_content.cc:142
#, fuzzy
msgid "Content to be joined must all have or not have audio"
msgstr "Innehåll som ska sammanfogas måste använda samma audioförstärkning."
#: src/lib/ffmpeg_content.cc:145
#, fuzzy
msgid "Content to be joined must all have or not have subtitles"
msgstr ""
"Innehåll som ska sammanfogas måste använda samma X-skala på undertexten."
#: src/lib/ffmpeg_content.cc:139
#, fuzzy
msgid "Content to be joined must all have or not have video"
msgstr "Innehåll som ska sammanfogas måste använda samma intoning."
#: src/lib/subtitle_content.cc:175
msgid "Content to be joined must have the same 'burn subtitles' setting."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma inställning på 'bränn in "
"undertexter'."
#: src/lib/subtitle_content.cc:171
msgid "Content to be joined must have the same 'use subtitles' setting."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma inställning på 'använd "
"undertexter'."
#: src/lib/audio_content.cc:106
msgid "Content to be joined must have the same audio delay."
msgstr "Innehåll som ska sammanfogas måste använda samma audiofördröjning."
#: src/lib/audio_content.cc:102
msgid "Content to be joined must have the same audio gain."
msgstr "Innehåll som ska sammanfogas måste använda samma audioförstärkning."
#: src/lib/video_content.cc:186
msgid "Content to be joined must have the same colour conversion."
msgstr "Innehåll som ska sammanfogas måste använda samma färgkonvertering."
#: src/lib/video_content.cc:178
msgid "Content to be joined must have the same crop."
msgstr "Innehåll som ska sammanfogas måste använda samma beskärning."
#: src/lib/video_content.cc:190
msgid "Content to be joined must have the same fades."
msgstr "Innehåll som ska sammanfogas måste använda samma intoning."
#: src/lib/subtitle_content.cc:203
#, fuzzy
msgid "Content to be joined must have the same outline width."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma X-skala på undertexten."
#: src/lib/video_content.cc:170
msgid "Content to be joined must have the same picture size."
msgstr "Innehåll som ska sammanfogas måste använda samma bildstorlek."
#: src/lib/video_content.cc:182
msgid "Content to be joined must have the same scale setting."
msgstr "Innehåll som ska sammanfogas måste använda samma bildförhållande."
#: src/lib/subtitle_content.cc:179
msgid "Content to be joined must have the same subtitle X offset."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma X-förskjutning på "
"undertexten."
#: src/lib/subtitle_content.cc:187
msgid "Content to be joined must have the same subtitle X scale."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma X-skala på undertexten."
#: src/lib/subtitle_content.cc:183
msgid "Content to be joined must have the same subtitle Y offset."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma Y-förskjutning på "
"undertexten."
#: src/lib/subtitle_content.cc:191
msgid "Content to be joined must have the same subtitle Y scale."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma Y-skala på undertexten."
#: src/lib/subtitle_content.cc:199
#, fuzzy
msgid "Content to be joined must have the same subtitle fades."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma X-skala på undertexten."
#: src/lib/subtitle_content.cc:195
#, fuzzy
msgid "Content to be joined must have the same subtitle line spacing."
msgstr ""
"Innehåll som ska sammanfogas måste använda samma X-skala på undertexten."
#: src/lib/content.cc:127 src/lib/content.cc:131
#, fuzzy
msgid "Content to be joined must have the same video frame rate"
msgstr "Innehåll som ska sammanfogas måste använda samma videobildhastighet."
#: src/lib/video_content.cc:174
msgid "Content to be joined must have the same video frame type."
msgstr "Innehåll som ska sammanfogas måste använda samma videobildtyp."
#: src/lib/subtitle_content.cc:208 src/lib/subtitle_content.cc:216
msgid "Content to be joined must use the same fonts."
msgstr "Innehåll som ska sammanfogas måste använda samma typsnitt."
#: src/lib/ffmpeg_content.cc:166
msgid "Content to be joined must use the same subtitle stream."
msgstr "Innehåll som ska sammanfogas måste använda samma undertextström."
#: src/lib/video_content.cc:389
msgid "Content video is %1x%2"
msgstr "Original-videon är %1x%2"
#: src/lib/upload_job.cc:53
msgid "Copy DCP to TMS"
msgstr "Kopiera DCP till TMS"
#: src/lib/scp_uploader.cc:51
msgid "Could not connect to server %1 (%2)"
msgstr "Kunde inte ansluta till server %1 (%2)"
#: src/lib/scp_uploader.cc:88
msgid "Could not create remote directory %1 (%2)"
msgstr "Kunde inte skapa fjärrkatalog %1 (%2)"
#: src/lib/image_examiner.cc:64
msgid "Could not decode JPEG2000 file %1 (%2)"
msgstr "Kunde inte avkoda JPEG2000-fil %1 (%2)"
#: src/lib/magick_image_proxy.cc:102
msgid "Could not decode image file (%1)"
msgstr "Kunde inte avkoda bildfil (%1)"
#: src/lib/ffmpeg_examiner.cc:389
msgid "Could not find pixel format for video."
msgstr "Kunde inte hitta information om pixel-formatet för videon."
#: src/lib/encode_server_finder.cc:162
msgid ""
"Could not listen for remote encode servers. Perhaps another instance of DCP-"
"o-matic is running."
msgstr ""
"Kunde inte lyssna efter fjärranslutna kodningsservrar. Kanske en annan "
"instans av DCP-o-matic körs."
#: src/lib/job.cc:118 src/lib/job.cc:132
msgid "Could not open %1"
msgstr "Kunde inte öppna %1"
#: src/lib/curl_uploader.cc:86 src/lib/scp_uploader.cc:101
msgid "Could not open %1 to send"
msgstr "Kunde inte öppna %1 för att skicka"
#: src/lib/internet.cc:83
msgid "Could not open downloaded ZIP file"
msgstr "Kunde inte öppna hämtade ZIP-fil"
#: src/lib/dcp_subtitle.cc:55
#, fuzzy
msgid "Could not read subtitles (%1 / %2)"
msgstr "Kunde inte läsa undertexter"
#: src/lib/scp_uploader.cc:71
msgid "Could not start SCP session (%1)"
msgstr "Kunde inte starta SCP-session (%1)"
#: src/lib/curl_uploader.cc:49
msgid "Could not start transfer"
msgstr "Kunde inte starta överföring"
#: src/lib/curl_uploader.cc:93 src/lib/scp_uploader.cc:118
msgid "Could not write to remote file (%1)"
msgstr "Kunde inte skriva till fjärrfil (%1)"
#: src/lib/util.cc:502
msgid "D-BOX primary"
msgstr "D-BOX primär"
#: src/lib/util.cc:503
msgid "D-BOX secondary"
msgstr "D-BOX sekundär"
#: src/lib/util.cc:532
msgid "DBP"
msgstr "DBP"
#: src/lib/util.cc:533
msgid "DBPS"
msgstr ""
#: src/lib/dcp_subtitle_content.cc:100
msgid "DCP XML subtitles"
msgstr "DCP XML undertexter"
#: src/lib/audio_content.cc:327
#, fuzzy
msgid "DCP sample rate"
msgstr "DCP-bldhastighet"
#: src/lib/frame_rate_change.cc:79
msgid "DCP will run at %1%% of the content speed.\n"
msgstr "DCP kommer att köras på %1%% av källans hastighet.\n"
#: src/lib/frame_rate_change.cc:70
msgid "DCP will use every other frame of the content.\n"
msgstr "DCP kommer att använda varannan bild från källan.\n"
#: src/lib/job.cc:120 src/lib/job.cc:134
msgid ""
"DCP-o-matic could not open the file %1. Perhaps it does not exist or is in "
"an unexpected format."
msgstr ""
"DCP-o-matic kunde inte öppna filen %1. Saknas den, eller har den ett "
"oförväntat format?"
#: src/lib/ffmpeg_content.cc:103
msgid ""
"DCP-o-matic no longer supports the `%1' filter, so it has been turned off."
msgstr "DCP-o-matic stödjer inte längre '%1'-filter, så det har stängts av."
#: src/lib/filter.cc:66 src/lib/filter.cc:67 src/lib/filter.cc:68
msgid "De-interlacing"
msgstr "Avflätning"
#: src/lib/config.cc:530
msgid ""
"Dear Projectionist\n"
"\n"
"Please find attached KDMs for $CPL_NAME.\n"
"\n"
"Cinema: $CINEMA_NAME\n"
"Screen(s): $SCREENS\n"
"\n"
"The KDMs are valid from $START_TIME until $END_TIME.\n"
"\n"
"Best regards,\n"
"DCP-o-matic"
msgstr ""
"Kära maskinist\n"
"\n"
"Här kommer bifogade KDM:er för $CPL_NAME.\n"
"\n"
"Biograf: $CINEMA_NAME\n"
"Salong(er): $SCREENS\n"
"\n"
"KDM:erna är giltiga fr.o.m. $START_TIME t.o.m. $END_TIME.\n"
"\n"
"Vänliga hälsningar,\n"
"DCP-o-matic"
#: src/lib/dolby_cp750.cc:28
msgid "Dolby CP650 and CP750"
msgstr "Dolby CP650 och CP750"
#: src/lib/internet.cc:76
msgid "Download failed (%1/%2 error %3)"
msgstr "Nedladdning misslyckades (%1/%2 fel %3)"
#: src/lib/frame_rate_change.cc:72
msgid "Each content frame will be doubled in the DCP.\n"
msgstr "Varje bild från källan kommer att användas två gånger i DCPn.\n"
#: src/lib/frame_rate_change.cc:74
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr ""
"Varje bild från källan kommer att användas ytterligare %1 gång(er) i DCPn.\n"
#: src/lib/send_kdm_email_job.cc:56
msgid "Email KDMs"
msgstr "E-posta KDM:er"
#: src/lib/send_kdm_email_job.cc:59
msgid "Email KDMs for %1"
msgstr "E-posta KDM:er för %1"
#: src/lib/send_problem_report_job.cc:55
msgid "Email problem report"
msgstr "E-posta problemrapport"
#: src/lib/send_problem_report_job.cc:58
msgid "Email problem report for %1"
msgstr "E-posta problemrapport för %1"
#: src/lib/transcoder.cc:77
msgid "Encoding picture and sound"
msgstr ""
#: src/lib/exceptions.cc:67
msgid "Error in subtitle file: saw %1 while expecting %2"
msgstr "Fel i undertext-filen: såg %1 men förväntade %2"
#: src/lib/job.cc:399
msgid "Error: %1"
msgstr "Fel: %1"
#: src/lib/examine_content_job.cc:44
msgid "Examine content"
msgstr "Undersök innehållet"
#: src/lib/ffmpeg_content.cc:556
msgid "FCC"
msgstr "FCC"
#: src/lib/scp_uploader.cc:61
msgid "Failed to authenticate with server (%1)"
msgstr "Misslyckades att autentisera med server (%1)"
#: src/lib/emailer.cc:217
msgid "Failed to send email (%1)"
msgstr "Misslyckades att skicka epost (%1)"
#: src/lib/dcp_content_type.cc:46
msgid "Feature"
msgstr "Feature"
#: src/lib/content.cc:367
#, fuzzy
msgid "Filename"
msgstr "namn"
#: src/lib/ffmpeg_content.cc:518
msgid "Film"
msgstr "Film"
#: src/lib/ffmpeg_examiner.cc:100
#, fuzzy
msgid "Finding length"
msgstr "Videolängd"
#: src/lib/ffmpeg_examiner.cc:96
msgid "Finding length and subtitles"
msgstr "Söker längd och undertexter"
#: src/lib/ffmpeg_examiner.cc:98
msgid "Finding subtitles"
msgstr "Letar undertexter"
#: src/lib/ratio.cc:41
msgid "Flat"
msgstr "Flat"
#: src/lib/content.cc:374
msgid "Frame rate"
msgstr "Bildhastighet"
# Sammanhang?
#: src/lib/ffmpeg_content.cc:502
msgid "Full"
msgstr "Full"
# Sammanhang?
#: src/lib/ffmpeg_content.cc:482
msgid "Full (0-%1)"
msgstr "Full (0-%1)"
#: src/lib/ratio.cc:44
msgid "Full frame"
msgstr "Full frame"
#: src/lib/audio_content.cc:334
#, fuzzy
msgid "Full length in audio samples at DCP rate"
msgstr "Full längd i bilder med DCP-hastighet"
#: src/lib/audio_content.cc:321
#, fuzzy
msgid "Full length in audio samples at content rate"
msgstr "Full längd i audioramar med innehållets hastighet"
#: src/lib/audio_content.cc:328
msgid "Full length in video frames at DCP rate"
msgstr "Full längd i bilder med DCP-hastighet"
#: src/lib/audio_content.cc:314
msgid "Full length in video frames at content rate"
msgstr "Full längd i bilder med innehållets hastighet"
#: src/lib/ffmpeg_content.cc:531
msgid "Gamma 22 (BT470M)"
msgstr "Gamma 22 (BT470M)"
#: src/lib/ffmpeg_content.cc:532
msgid "Gamma 28 (BT470BG)"
msgstr "Gamma 28 (BT470BG)"
#: src/lib/filter.cc:69
msgid "Gradient debander"
msgstr "Gradientutjämnare"
# Sammanhang?
#: src/lib/util.cc:526
msgid "HI"
msgstr "HI"
#: src/lib/util.cc:496
msgid "Hearing impaired"
msgstr "Hörselskadad"
#: src/lib/filter.cc:72
msgid "High quality 3D denoiser"
msgstr "Högkvalitets 3D-brusreducering"
#: src/lib/audio_content.cc:307 src/lib/audio_content.cc:327
msgid "Hz"
msgstr "Hz"
#: src/lib/ffmpeg_content.cc:540
msgid "IEC61966-2-1 (sRGB or sYCC)"
msgstr "IEC61966-2-1 (sRGB eller sYCC)"
#: src/lib/ffmpeg_content.cc:538
msgid "IEC61966-2-4"
msgstr "IEC61966-2-4"
#: src/lib/job.cc:141 src/lib/job.cc:162 src/lib/job.cc:172
msgid "It is not known what caused this error."
msgstr "Det är inte känt vad som orsakade detta fel."
#: src/lib/config.cc:239 src/lib/config.cc:527
msgid "KDM delivery: $CPL_NAME"
msgstr "KDM-leverans: $CPL_NAME"
#: src/lib/filter.cc:67
msgid "Kernel deinterlacer"
msgstr "Kernel-avflätare"
#: src/lib/util.cc:520
msgid "L"
msgstr "V"
#: src/lib/util.cc:528
msgid "Lc"
msgstr "Vc"
#: src/lib/mid_side_decoder.cc:98 src/lib/util.cc:490
msgid "Left"
msgstr "Vänster"
#: src/lib/util.cc:498
msgid "Left centre"
msgstr "Vänster center"
#: src/lib/util.cc:500
msgid "Left rear surround"
msgstr "Vänster bakre surround"
#: src/lib/util.cc:494
msgid "Left surround"
msgstr "Vänster surround"
#: src/lib/video_content.cc:459
msgid "Length"
msgstr "Längd"
#: src/lib/util.cc:523
msgid "Lfe"
msgstr "Lfe"
#: src/lib/util.cc:493
msgid "Lfe (sub)"
msgstr "Lfe (sub)"
#: src/lib/ffmpeg_content.cc:497
msgid "Limited"
msgstr "Begränsad"
#: src/lib/ffmpeg_content.cc:475
msgid "Limited (%1-%2)"
msgstr "Begränsad (%1-%2)"
#: src/lib/ffmpeg_content.cc:535
msgid "Linear"
msgstr "Linjär"
#: src/lib/ffmpeg_content.cc:536
msgid "Logarithmic (100:1 range)"
msgstr "Logaritmisk (100:1 omfång)"
#: src/lib/ffmpeg_content.cc:537
msgid "Logarithmic (316:1 range)"
msgstr "Logaritmisk (316:1 omfång)"
#: src/lib/util.cc:524
msgid "Ls"
msgstr "Vs"
#: src/lib/mid_side_decoder.cc:35
msgid "Mid-side decoder"
msgstr "Mitt-sida avkodare"
#: src/lib/filter.cc:69 src/lib/filter.cc:70 src/lib/filter.cc:73
msgid "Misc"
msgstr "Diverse"
#: src/lib/dcp_examiner.cc:142
msgid "Mismatched audio channel counts in DCP"
msgstr "Icke-passande antal audiokanaler i DCP:n"
#: src/lib/dcp_examiner.cc:148
msgid "Mismatched audio sample rates in DCP"
msgstr "Icke överensstämmande audio-sampelhastighet i DCP:n"
#: src/lib/dcp_examiner.cc:117
msgid "Mismatched frame rates in DCP"
msgstr "Icke överensstämmande bildhastigheter i DCP:n"
#: src/lib/dcp_examiner.cc:124
msgid "Mismatched video sizes in DCP"
msgstr "Icke-passande videostorlekar i DCP:n"
#: src/lib/filter.cc:66
msgid "Motion compensating deinterlacer"
msgstr "Rörelsekompenserande avflätare"
#: src/lib/cinema_kdms.cc:151
msgid "No mail server configured in preferences"
msgstr "Ingen epostserver har konfigurerats i inställningar"
#: src/lib/video_content_scale.cc:105
msgid "No scale"
msgstr "Ingen skalning"
#: src/lib/video_content_scale.cc:102
msgid "No stretch"
msgstr "Ingen utsträckning"
#: src/lib/image_content.cc:57
msgid "No valid image files were found in the folder."
msgstr "Inga giltiga bildfiler hittades i foldern."
#: src/lib/filter.cc:71 src/lib/filter.cc:72 src/lib/filter.cc:74
msgid "Noise reduction"
msgstr "Brusreducering"
#: src/lib/job.cc:397
msgid "OK (ran for %1)"
msgstr "OK (kördes %1)"
#: src/lib/content.cc:116
msgid "Only the first piece of content to be joined can have a start trim."
msgstr ""
"Endast den första delen av innehållet som läggs ihop kan start-trimmas."
#: src/lib/content.cc:120
msgid "Only the last piece of content to be joined can have an end trim."
msgstr "Endast den sista delen av innehållet som läggs ihop kan slut-trimmas."
#: src/lib/job.cc:154
msgid "Out of memory"
msgstr "Minnet slut"
#: src/lib/filter.cc:74
msgid "Overcomplete wavelet denoiser"
msgstr "Överkomplett wavelet-brusreducering"
#: src/lib/colour_conversion.cc:268
msgid "P3"
msgstr "P3"
#: src/lib/dcp_content_type.cc:53
msgid "Policy"
msgstr "Policy"
#: src/lib/content.cc:383
msgid "Prepared for video frame rate"
msgstr ""
#: src/lib/exceptions.cc:79
msgid "Programming error at %1:%2"
msgstr "Programmeringsfel vid %1:%2"
#: src/lib/dcp_content_type.cc:54
msgid "Public Service Announcement"
msgstr "Public Service Announcement"
#: src/lib/util.cc:521
msgid "R"
msgstr "H"
#: src/lib/ffmpeg_content.cc:552
msgid "RGB / sRGB (IEC61966-2-1)"
msgstr "RGB / sRGB (IEC61966-2-1)"
#: src/lib/dcp_content_type.cc:51
msgid "Rating"
msgstr "Rating"
#: src/lib/util.cc:529
msgid "Rc"
msgstr "Hc"
#: src/lib/colour_conversion.cc:269
#, fuzzy
msgid "Rec. 1886"
msgstr "Rec. 601"
#: src/lib/colour_conversion.cc:270
#, fuzzy
msgid "Rec. 2020"
msgstr "Rec. 601"
#: src/lib/colour_conversion.cc:266
msgid "Rec. 601"
msgstr "Rec. 601"
#: src/lib/colour_conversion.cc:267
msgid "Rec. 709"
msgstr "Rec. 709"
#: src/lib/mid_side_decoder.cc:99 src/lib/util.cc:491
msgid "Right"
msgstr "Höger"
#: src/lib/util.cc:499
msgid "Right centre"
msgstr "Höger center"
#: src/lib/util.cc:501
msgid "Right rear surround"
msgstr "Höger bakre surround"
#: src/lib/util.cc:495
msgid "Right surround"
msgstr "Höger surround"
#: src/lib/util.cc:525
msgid "Rs"
msgstr "Hs"
#: src/lib/ffmpeg_content.cc:516 src/lib/ffmpeg_content.cc:533
msgid "SMPTE 170M (BT601)"
msgstr "SMPTE 170M (BT601)"
#: src/lib/ffmpeg_content.cc:558
msgid "SMPTE 170M (BT601-6)"
msgstr "SMPTE 170M (BT601-6)"
#: src/lib/ffmpeg_content.cc:517 src/lib/ffmpeg_content.cc:534
#: src/lib/ffmpeg_content.cc:559
msgid "SMPTE 240M"
msgstr "SMPTE 240M"
#: src/lib/ffmpeg_content.cc:543
msgid "SMPTE ST 2084 for 10, 12, 14 and 16 bit systems"
msgstr "SMPTE ST 2084 för 10-, 12-, 14- och 16-bitars system"
#: src/lib/ffmpeg_content.cc:544
msgid "SMPTE ST 428-1"
msgstr "SMPTE ST 428-1"
#: src/lib/ffmpeg_content.cc:520
msgid "SMPTE ST 428-1 (CIE 1931 XYZ)"
msgstr "SMPTE ST 428-1 (CIE 1931 XYZ)"
#: src/lib/scp_uploader.cc:56
msgid "SSH error (%1)"
msgstr "SSH fel (%1)"
#: src/lib/ratio.cc:43
msgid "Scope"
msgstr "Scope"
#: src/lib/send_problem_report_job.cc:70
msgid "Sending email"
msgstr "Skickar e-post"
#: src/lib/dcp_content_type.cc:47
msgid "Short"
msgstr "Short"
#: src/lib/video_content.cc:460
msgid "Size"
msgstr "Storlek"
#: src/lib/audio_content.cc:253
msgid "Some audio will be resampled to %1kHz"
msgstr "En del av audio kommer att samplas om till %1kHz"
#: src/lib/upmixer_a.cc:46
msgid "Stereo to 5.1 up-mixer A"
msgstr "Stereo till 5.1 uppmixning A"
#: src/lib/upmixer_b.cc:42
msgid "Stereo to 5.1 up-mixer B"
msgstr "Stereo till 5.1 uppmixning B"
#: src/lib/dcp_content_type.cc:52
msgid "Teaser"
msgstr "Teaser"
#: src/lib/filter.cc:73
msgid "Telecine filter"
msgstr "Telecine-filter"
#: src/lib/dcp_content_type.cc:49
msgid "Test"
msgstr "Test"
#: src/lib/text_subtitle_content.cc:74
msgid "Text subtitles"
msgstr "Undertexter"
#: src/lib/film.cc:1510
msgid ""
"The DCP %1 was being referred to by this film. This not now possible "
"because the reel sizes in the film no longer agree with those in the "
"imported DCP.\n"
"\n"
"Setting the 'Reel type' to 'split by video content' will probably help.\n"
"\n"
"After doing that you would need to re-tick the appropriate 'refer to "
"existing DCP' checkboxes."
msgstr ""
#: src/lib/dcp_content.cc:431
msgid "The DCP does not have sound in all reels."
msgstr "DCP:n har inte ljud i alla rullar."
#: src/lib/dcp_content.cc:445
msgid "The DCP does not have subtitles in all reels."
msgstr "DCP:n har inte undertexter i alla rullar."
#: src/lib/dcp_examiner.cc:186
msgid ""
"The KDM does not decrypt the DCP. Perhaps it is targeted at the wrong CPL."
msgstr "KDM:en dekrypterar inte DCP:n. Kanske är den gjord för fel CPL."
#: src/lib/exceptions.cc:73
msgid "The certificate chain for signing is invalid"
msgstr "Certifikatkedjan för att signera är ogiltigt"
#: src/lib/job.cc:105
msgid ""
"The drive that the film is stored on is low in disc space. Free some more "
"space and try again."
msgstr ""
"Enheten som filmen lagras på har för lite ledigt utrymme. Frigör utrymme och "
"försök igen."
#: src/lib/dcp_content.cc:394
msgid "The film is set to Interop and this DCP is SMPTE."
msgstr ""
#: src/lib/dcp_content.cc:391
msgid "The film is set to SMPTE and this DCP is Interop."
msgstr ""
#: src/lib/dcp_content.cc:405
#, fuzzy
msgid ""
"The reel lengths in the film differ from those in the DCP; set the reel mode "
"to 'split by video content'."
msgstr ""
"Rull-längder i projektet skiljer sig från DCP:n; sätt rull-läget till 'dela "
"upp enligt videoinnehåll'."
#: src/lib/dcp_content.cc:436
msgid "There is other audio content overlapping this DCP; remove it."
msgstr "Det finns annat audioinnehåll som överlappar denna DCP; ta bort det."
#: src/lib/dcp_content.cc:450
msgid "There is other subtitle content overlapping this DCP; remove it."
msgstr "Det finns annan undertext som överlappar denna DCP; ta bort den."
#: src/lib/dcp_content.cc:422
msgid "There is other video content overlapping this DCP; remove it."
msgstr "Det finns annat videoinnehåll som överlappar denna DCP; ta bort det."
#: src/lib/job.cc:154
msgid ""
"There was not enough memory to do this. If you are running a 32-bit "
"operating system try reducing the number of encoding threads in the General "
"tab of Preferences."
msgstr ""
"Det fanns för lite minne för att utföra detta. Om du kör på ett 32-bitars "
"operativsystem, försök att minska antalet kodnings-trådar i Generellt-fliken "
"under Inställningar."
#: src/lib/film.cc:414
msgid ""
"This film was created with a newer version of DCP-o-matic, and it cannot be "
"loaded into this version. Sorry!"
msgstr ""
"Denna film skapades i en nyare version av DCP-o-matic, och den kan inte "
"öppnas i denna version. Ledsen!"
#: src/lib/film.cc:403
msgid ""
"This film was created with an older version of DCP-o-matic, and "
"unfortunately it cannot be loaded into this version. You will need to "
"create a new Film, re-add your content and set it up again. Sorry!"
msgstr ""
"Denna film skapades i en äldre version av DCP-o-matic, och tyvärr kan den "
"inte öppnas i denna version. Du måste skapa en ny Film, lägga till ditt "
"innehåll och konfigurera allt igen. Ursäkta!"
#: src/lib/dcp_content_type.cc:48
msgid "Trailer"
msgstr "Trailer"
#: src/lib/transcode_job.cc:58
msgid "Transcode %1"
msgstr "Konvertera %1"
#: src/lib/dcp_content_type.cc:50
msgid "Transitional"
msgstr "Transitional"
#: src/lib/internet.cc:88
msgid "Unexpected ZIP file contents"
msgstr "Oväntat innehåll i ZIP-fil"
#: src/lib/image_proxy.cc:49
msgid "Unexpected image type received by server"
msgstr "Oväntad bildtyp mottogs av server"
#: src/lib/job.cc:171
msgid "Unknown error"
msgstr "Okänt fel"
#: src/lib/ffmpeg_decoder.cc:288
msgid "Unrecognised audio sample format (%1)"
msgstr "Okänt ljudformat (%1)"
#: src/lib/filter.cc:70
msgid "Unsharp mask and Gaussian blur"
msgstr "Oskärpemask och Gaussisk suddighet"
#: src/lib/ffmpeg_content.cc:468 src/lib/ffmpeg_content.cc:492
#: src/lib/ffmpeg_content.cc:510 src/lib/ffmpeg_content.cc:512
#: src/lib/ffmpeg_content.cc:513 src/lib/ffmpeg_content.cc:527
#: src/lib/ffmpeg_content.cc:529 src/lib/ffmpeg_content.cc:530
#: src/lib/ffmpeg_content.cc:554 src/lib/ffmpeg_content.cc:555
msgid "Unspecified"
msgstr "Ospecificerad"
#: src/lib/colour_conversion.cc:224
msgid "Untitled"
msgstr "Utan titel"
#: src/lib/util.cc:504 src/lib/util.cc:505
msgid "Unused"
msgstr "Oanvänt"
#: src/lib/upmixer_a.cc:127 src/lib/upmixer_b.cc:137
msgid "Upmix L"
msgstr "Uppmixa V"
#: src/lib/upmixer_a.cc:128 src/lib/upmixer_b.cc:138
msgid "Upmix R"
msgstr "Uppmixa H"
# Sammanhang?
#: src/lib/util.cc:527
msgid "VI"
msgstr "VI"
#: src/lib/util.cc:497
msgid "Visually impaired"
msgstr "Synskadade"
#: src/lib/upload_job.cc:45
msgid "Waiting"
msgstr "Väntar"
#: src/lib/ffmpeg_content.cc:560
msgid "YCOCG"
msgstr "YCOCG"
# Filtret heter så, ska ej översättas
#: src/lib/filter.cc:68
msgid "Yet Another Deinterlacing Filter"
msgstr "Yet Another Deinterlacing Filter"
#: src/lib/hints.cc:105
msgid ""
"You are set up for an Interop DCP at a frame rate which is not officially "
"supported. You are advised to make a SMPTE DCP instead."
msgstr ""
#: src/lib/hints.cc:127
msgid ""
"You are using 3D content but your DCP is set to 2D. Set the DCP to 3D if "
"you want to play it back on a 3D system (e.g. Real-D, MasterImage etc.)"
msgstr ""
#: src/lib/hints.cc:116
msgid ""
"You have %1 files that look like they are VOB files from DVD. You should "
"join them to ensure smooth joins between the files."
msgstr ""
#: src/lib/hints.cc:68
msgid ""
"You have specified a font file which is larger than 640kB. This is very "
"likely to cause problems on playback."
msgstr ""
#: src/lib/film.cc:312
msgid "You must add some content to the DCP before creating it"
msgstr "Du måste lägga till något innehåll till DCP:n innan du skapar den"
#: src/lib/hints.cc:97
msgid ""
"Your DCP frame rate (%1 fps) may cause problems in a few (mostly older) "
"projectors. Use 24 or 48 frames per second to be on the safe side."
msgstr ""
#: src/lib/hints.cc:72
msgid ""
"Your DCP has fewer than 6 audio channels. This may cause problems on some "
"projectors."
msgstr ""
#: src/lib/hints.cc:152
msgid ""
"Your audio level is very high (on %1). You should reduce the gain of your "
"audio content."
msgstr ""
#: src/lib/image_content.cc:81
msgid "[moving images]"
msgstr "[rörliga bilder]"
#: src/lib/image_content.cc:79
msgid "[still]"
msgstr "[stillbild]"
#: src/lib/dcp_subtitle_content.cc:94 src/lib/text_subtitle_content.cc:68
msgid "[subtitles]"
msgstr "[undertexter]"
#: src/lib/film.cc:287
msgid "cannot contain slashes"
msgstr "får inte innehålla snedstreck"
#: src/lib/dcpomatic_socket.cc:68
msgid "connect timed out"
msgstr "uppkopplingen tog för lång tid"
#: src/lib/uploader.cc:35
msgid "connecting"
msgstr "kopplar upp"
#: src/lib/film.cc:308
msgid "container"
msgstr "behållare"
#: src/lib/film.cc:316
msgid "content type"
msgstr "innehållstyp"
#: src/lib/uploader.cc:73
msgid "copying %1"
msgstr "kopierar %1"
#: src/lib/ffmpeg.cc:140
msgid "could not find stream information"
msgstr "kunde inte hitta information om strömmen"
#: src/lib/reel_writer.cc:306
msgid "could not move audio asset into the DCP (%1)"
msgstr "kunde inte flytta audio in i DCP:n (%1)"
#: src/lib/exceptions.cc:33
#, fuzzy
msgid "could not open file %1 for reading (%2)"
msgstr "kunde inte öppna fil för läsning"
#: src/lib/exceptions.cc:33
#, fuzzy
msgid "could not open file %1 for writing (%2)"
msgstr "kunde inte öppna fil för läsning"
#: src/lib/exceptions.cc:43
msgid "could not read from file %1 (%2)"
msgstr "kunde inte läsa från fil %1 (%2)"
#: src/lib/scp_uploader.cc:66
msgid "could not start SCP session (%1)"
msgstr "kunde inte starta SCP-session (%1)"
#: src/lib/scp_uploader.cc:41
msgid "could not start SSH session"
msgstr "kunde inte starta SSH-session"
#: src/lib/exceptions.cc:49
msgid "could not write to file %1 (%2)"
msgstr "kunde inte skriva till fil %1 (%2)"
#: src/lib/dcpomatic_socket.cc:64
msgid "error during async_connect (%1)"
msgstr "fel vid async_connect (%1)"
#: src/lib/dcpomatic_socket.cc:117
msgid "error during async_read (%1)"
msgstr "fel vid async_read (%1)"
#: src/lib/dcpomatic_socket.cc:89
msgid "error during async_write (%1)"
msgstr "fel vid async_write (%1)"
#: src/lib/content.cc:376 src/lib/content.cc:385
msgid "frames per second"
msgstr "bilder per sekund"
#. / TRANSLATORS: h here is an abbreviation for hours
#: src/lib/util.cc:146 src/lib/util.cc:149
msgid "h"
msgstr "h"
#. / TRANSLATORS: m here is an abbreviation for minutes
#: src/lib/util.cc:161 src/lib/util.cc:164
msgid "m"
msgstr "m"
#: src/lib/exceptions.cc:55
msgid "missing required setting %1"
msgstr "saknad nödvändig inställning %1"
# Sammanhang?
#: src/lib/image_content.cc:96
msgid "moving"
msgstr "rörlig"
#: src/lib/film.cc:287 src/lib/film.cc:320
msgid "name"
msgstr "namn"
#. / TRANSLATORS: remaining here follows an amount of time that is remaining
#. / on an operation.
#: src/lib/job.cc:394
msgid "remaining"
msgstr "återstående tid"
#. / TRANSLATORS: s here is an abbreviation for seconds
#: src/lib/util.cc:175
msgid "s"
msgstr "s"
#: src/lib/colour_conversion.cc:265
msgid "sRGB"
msgstr "sRGB"
#: src/lib/image_content.cc:94
msgid "still"
msgstr "stillbild"
#: src/lib/ffmpeg_examiner.cc:356
msgid "unknown"
msgstr "okänd"
#: src/lib/video_content.cc:459
msgid "video frames"
msgstr "bildrutor"
#~ msgid "DBS"
#~ msgstr "DBS"
#~ msgid "could not create file %1"
#~ msgstr "kunde inte skapa fil %1"
#~ msgid "could not open file %1"
#~ msgstr "kunde inte öppna fil %1"
#~ msgid "Computing audio digest"
#~ msgstr "Beräknar audiosammanfattning"
#~ msgid "Computing image digest"
#~ msgstr "Beräknar bildsammanfattning"
#~ msgid "fps"
#~ msgstr "bps"
#~ msgid "frames"
#~ msgstr "bildrutor"
#~ msgid "Audio"
#~ msgstr "Audio"
#~ msgid "Encoding image data"
#~ msgstr "Kodar bild-data"
#~ msgid "Video"
#~ msgstr "Video"
#~ msgid "could not open audio file for reading"
#~ msgstr "kunde inte öppna audio-fil för läsning"
#~ msgid "SubRip subtitles"
#~ msgstr "SubRip-undertexter"
#~ msgid "Video size"
#~ msgstr "Videostorlek"
#~ msgid "could not read from file"
#~ msgstr "kunde inte läsa från fil"
#, fuzzy
#~ msgid "NC"
#~ msgstr "C"
#~ msgid "multi-part subtitles not yet supported"
#~ msgstr "undertexter i flera delar stöds inte ännu"
#~ msgid "could not run sample-rate converter"
#~ msgstr "kunde inte köra sampelhastighetskonverteraren"
#~ msgid "could not run sample-rate converter for %1 samples (%2) (%3)"
#~ msgstr ""
#~ "kunde inte köra sampelhastighetskonverteraren under %1 sampel (%2) (%3)"
#~ msgid "1.375"
#~ msgstr "1,375"
#~ msgid "Area"
#~ msgstr "Yta"
#~ msgid "Bicubic"
#~ msgstr "Bikubisk"
#~ msgid "Content to be joined must use the same audio stream."
#~ msgstr "Innehåll som ska sammanfogas måste använda samma audioström."
#~ msgid "Fast Bilinear"
#~ msgstr "Snabb bilinjär"
#~ msgid "Gaussian"
#~ msgstr "Gaussisk"
#~ msgid "Lanczos"
#~ msgstr "Lanczos"
#~ msgid "Sinc"
#~ msgstr "Sinc"
#~ msgid "Spline"
#~ msgstr "Spline"
#~ msgid "X"
#~ msgstr "X"
#~ msgid "could not read encoded data"
#~ msgstr "kunde inte läsa kodat data"
#~ msgid "error during async_accept (%1)"
#~ msgstr "fel vid async_accept (%1)"
#~ msgid "%1 channels, %2kHz, %3 samples"
#~ msgstr "%1 kanaler, %2kHz, %3 sampel"
#~ msgid "%1 frames; %2 frames per second"
#~ msgstr "%1 bilder; %2 bilder per sekund"
#~ msgid "%1x%2 pixels (%3:1)"
#~ msgstr "%1x%2 pixlar (%3:1)"
#~ msgid "missing key %1 in key-value set"
#~ msgstr "saknad nyckel %1 i nyckel-värde grupp"
#~ msgid "sRGB non-linearised"
#~ msgstr "sRGB icke-linjär"
#, fuzzy
#~ msgid ""
#~ "It is not known what caused this error. Please report the problem to the "
#~ "DCP-o-matic author (carl@dcpomatic.com)."
#~ msgstr ""
#~ "Det är inte känt vad som orsakade detta fel. Bästa sättet att rapportera "
#~ "problemet är till DCP-o-matics mejl-lista (carl@dcpomatic.com)"
#~ msgid "hour"
#~ msgstr "timme"
#~ msgid "hours"
#~ msgstr "timmar"
#~ msgid "minute"
#~ msgstr "minut"
#~ msgid "minutes"
#~ msgstr "minuter"
#, fuzzy
#~ msgid "second"
#~ msgstr "sekunder"
#~ msgid "seconds"
#~ msgstr "sekunder"
#~ msgid "could not find audio decoder"
#~ msgstr "kunde inte hitta audio-avkodare"
#~ msgid "could not find video decoder"
#~ msgstr "kunde inte hitta video-avkodare"
#~ msgid "non-bitmap subtitles not yet supported"
#~ msgstr "icke-rastergrafiska undertexter stöds inte ännu"
#~ msgid "Could not read DCP to make KDM for"
#~ msgstr "Kunde inte läsa DCP för att skapa KDM"
#~ msgid "Cubic interpolating deinterlacer"
#~ msgstr "Kubiskt interpolerande avflätare"
#~ msgid "De-blocking"
#~ msgstr "Kantighetsutjämning"
#~ msgid "Deringing filter"
#~ msgstr "Avringningsfilter"
#~ msgid "Experimental horizontal deblocking filter 1"
#~ msgstr "Experimentellt filter för horisontal kantighetsutjämning 1"
#~ msgid "Experimental vertical deblocking filter 1"
#~ msgstr "Experimentellt filter för vertikal kantighetsutjämning 1"
#~ msgid "FFMPEG deinterlacer"
#~ msgstr "FFMPEG-avflätare"
#~ msgid "FIR low-pass deinterlacer"
#~ msgstr "FIR lågpass-avflätare"
#~ msgid "Force quantizer"
#~ msgstr "Tvinga kvantiserare"
#~ msgid "Horizontal deblocking filter"
#~ msgstr "Filter för horisontal kantighetsutjämning"
#~ msgid "Horizontal deblocking filter A"
#~ msgstr "Filter för horisontal kantighetsutjämning A"
#~ msgid "Linear blend deinterlacer"
#~ msgstr "Linjär blandningsavflätare"
#~ msgid "Linear interpolating deinterlacer"
#~ msgstr "Linjär interpolationsavflätare"
#~ msgid "Median deinterlacer"
#~ msgstr "Median-avflätare"
#~ msgid "Temporal noise reducer"
#~ msgstr "Temporal brusreducering"
#~ msgid "Vertical deblocking filter"
#~ msgstr "Filter för vertikal kantighetsutjämning"
#~ msgid "Vertical deblocking filter A"
#~ msgstr "Filter för vertikal kantighetsutjämning A"
#~ msgid "0%"
#~ msgstr "0%"
#, fuzzy
#~ msgid "Examining content"
#~ msgstr "Undersök innehållet"
#, fuzzy
#~ msgid "Could not find DCP to make KDM for"
#~ msgstr "kunde inte hitta audio-avkodare"
#, fuzzy
#~ msgid "Sound file: %1"
#~ msgstr "kunde inte öppna fil %1"
#~ msgid "1.66 within Flat"
#~ msgstr "1,66 innanför Flat"
#~ msgid "16:9 within Flat"
#~ msgstr "16:9 innanför Flat"
#~ msgid "16:9 within Scope"
#~ msgstr "16:9 innanför Scope"
#~ msgid "4:3 within Flat"
#~ msgstr "4:3 innanför Flat"
#~ msgid "A/B transcode %1"
#~ msgstr "A/B konvertera %1"
#~ msgid "Cannot resample audio as libswresample is not present"
#~ msgstr ""
#~ "Kan inte omsampla ljudet eftersom libswresample inte finns tillgängligt"
#~ msgid "Examine content of %1"
#~ msgstr "Undersök innehållet i %1"
#~ msgid "Scope without stretch"
#~ msgstr "Scope utan utsträckning"
#~ msgid "could not open external audio file for reading"
#~ msgstr "kunde inte öppna extern audio-fil för läsning"
#~ msgid "external audio files have differing lengths"
#~ msgstr "externa audio-filer har olika längder"
#~ msgid "external audio files must be mono"
#~ msgstr "externa audio-filer måste vara mono"
#~ msgid "format"
#~ msgstr "format"
#~ msgid "no still image files found"
#~ msgstr "inga stillbildsfiler hittade"
#~ msgid "1.33"
#~ msgstr "1,33"
#~ msgid "Source scaled to 1.19:1"
#~ msgstr "Källan skalad till 1,19:1"
#~ msgid "Source scaled to 1.33:1"
#~ msgstr "Källan skalad till 1,33:1"
#~ msgid "Source scaled to 1.33:1 then pillarboxed to Flat"
#~ msgstr "Källan skalad till 1,33:1, med sorgkanter innanför Flat"
#~ msgid "Source scaled to 1.375:1"
#~ msgstr "Källan skalad till 1,375:1"
#~ msgid "Source scaled to 1.37:1 (Academy ratio)"
#~ msgstr "Källan skalad till 1,37:1 (Academy-förhållande)"
#~ msgid "Source scaled to 1.66:1"
#~ msgstr "Källan skalad till 1,66:1"
#~ msgid "Source scaled to 1.66:1 then pillarboxed to Flat"
#~ msgstr "Källan skalad till 1,66:1, med sorgkanter innanför Flat"
#~ msgid "Source scaled to 1.78:1"
#~ msgstr "Källan skalad till 1,78:1"
#~ msgid "Source scaled to 1.78:1 then pillarboxed to Flat"
#~ msgstr "Källan skalad till 1,78:1, med sorgkanter innanför Flat"
#~ msgid "Source scaled to Flat (1.85:1)"
#~ msgstr "Källan skalad till Flat (1,85:1)"
#~ msgid "Source scaled to Scope (2.39:1)"
#~ msgstr "Källan skalad till Scope (2,39:1)"
#~ msgid "Source scaled to fit Flat preserving its aspect ratio"
#~ msgstr ""
#~ "Källan skalad för att rymmas inom Flat utan att ändra bildförhållandet"
#~ msgid "Source scaled to fit Scope preserving its aspect ratio"
#~ msgstr ""
#~ "Källan skalad för att rymmas inom Scope utan att ändra bildförhållandet"
|