1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
|
# 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.
#
msgid ""
msgstr ""
"Project-Id-Version: DCP-o-matic PORTUGUESE (Portugal)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-03 01:19+0200\n"
"PO-Revision-Date: 2016-03-19 18:19+0000\n"
"Last-Translator: Tiago Casal Ribeiro <tiago@casalribeiro.com>\n"
"Language-Team: \n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.7.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: src/lib/video_content.cc:468
#, fuzzy, c-format
msgid ""
"\n"
"Content frame rate %.4f\n"
msgstr ""
"\n"
"Cadência de fotogramas do conteúdo %.4f\n"
#: src/lib/video_content.cc:433
#, fuzzy
msgid ""
"\n"
"Cropped to %1x%2"
msgstr ""
"\n"
"Recortado para %1x%2"
#: src/lib/video_content.cc:426
#, fuzzy, c-format
msgid ""
"\n"
"Display aspect ratio %.2f:1"
msgstr ""
"\n"
"Rácio do ecrã %.2f:1"
#: src/lib/video_content.cc:456
#, fuzzy
msgid ""
"\n"
"Padded with black to fit container %1 (%2x%3)"
msgstr ""
"\n"
"Preenchido com negro para caber no contentor %1 (%2x%3)"
#: src/lib/video_content.cc:446
#, fuzzy
msgid ""
"\n"
"Scaled to %1x%2"
msgstr ""
"\n"
"Redimensionado para %1x%2"
#: src/lib/video_content.cc:450 src/lib/video_content.cc:461
#, c-format
msgid " (%.2f:1)"
msgstr ""
#. / TRANSLATORS: the %1 in this string will be filled in with a day of the week
#. / to say what day a job will finish.
#: src/lib/job.cc:494
msgid " on %1"
msgstr ""
#: src/lib/config.cc:1189
msgid ""
"$CPL_NAME\n"
"\n"
"Type: $TYPE\n"
"Format: $CONTAINER\n"
"Audio: $AUDIO\n"
"Audio Language: $AUDIO_LANGUAGE\n"
"Subtitle Language: $SUBTITLE_LANGUAGE\n"
"Length: $LENGTH\n"
"Size: $SIZE\n"
msgstr ""
#: src/lib/config.cc:1167
msgid "$JOB_NAME: $JOB_STATUS"
msgstr ""
#: src/lib/cross_common.cc:89
msgid "%1 (%2 GB) [%3]"
msgstr ""
#: src/lib/atmos_mxf_content.cc:84
#, fuzzy
msgid "%1 [Atmos]"
msgstr "%1 [Atmos]"
#: src/lib/dcp_content.cc:287
msgid "%1 [DCP]"
msgstr "%1 [DCP]"
#: src/lib/ffmpeg_content.cc:353
msgid "%1 [audio]"
msgstr "%1 [áudio]"
#: src/lib/ffmpeg_content.cc:349
msgid "%1 [movie]"
msgstr "%1 [movie]"
#: src/lib/ffmpeg_content.cc:351 src/lib/video_mxf_content.cc:97
#, fuzzy
msgid "%1 [video]"
msgstr "%1 [movie]"
#: src/lib/video_content.cc:421
#, fuzzy, c-format
msgid ", pixel aspect ratio %.2f:1"
msgstr ", rácio de pixeis %.2f:1"
#: src/lib/ratio.cc:38
msgid "1.19"
msgstr "1.19"
#: src/lib/ratio.cc:39
msgid "1.33 (4:3)"
msgstr ""
#: src/lib/ratio.cc:40
#, fuzzy
msgid "1.38 (Academy)"
msgstr "Academy"
#: src/lib/ratio.cc:41
msgid "1.43 (IMAX)"
msgstr ""
#: src/lib/ratio.cc:42
msgid "1.66"
msgstr "1.66"
#: src/lib/ratio.cc:43
msgid "1.78 (16:9 or HD)"
msgstr ""
#: src/lib/ratio.cc:44
msgid "1.85 (Flat)"
msgstr ""
#: src/lib/ratio.cc:47
#, fuzzy
msgid "1.90 (Full frame)"
msgstr "Full frame"
#: src/lib/ratio.cc:45
msgid "2.35 (35mm Scope)"
msgstr ""
#: src/lib/ratio.cc:46
msgid "2.39 (Scope)"
msgstr ""
#: src/lib/filter.cc:78
msgid "3D denoiser"
msgstr "Remoção de ruído 3D"
#. / TRANSLATORS: fps here is an abbreviation for frames per second
#: src/lib/transcode_job.cc:144
#, c-format
msgid "; %.1f fps"
msgstr ""
#: src/lib/job.cc:499
msgid "; %1 remaining; finishing at %2%3"
msgstr ""
#: src/lib/analytics.cc:57
msgid ""
"<h2>You have made %1 DCPs with DCP-o-matic!</h2><img width=\"20%%\" src="
"\"memory:me.jpg\" align=\"center\"><p>Hello. I'm Carl and I'm the developer "
"of DCP-o-matic. I work on it in my spare time (with the help of a fine "
"volunteer team of testers and translators) and I release it as free software."
"<p>If you find DCP-o-matic useful, please consider a donation to the "
"project. Financial support will help me to spend more time developing DCP-o-"
"matic and making it better!<p><ul><li><a href=\"https://dcpomatic.com/"
"donate_amount?amount=40\">Go to Paypal to donate €40</a><li><a href="
"\"https://dcpomatic.com/donate_amount?amount=20\">Go to Paypal to donate "
"€20</a><li><a href=\"https://dcpomatic.com/donate_amount?amount=10\">Go to "
"Paypal to donate €10</a></ul><p>Thank you!"
msgstr ""
#: src/lib/hints.cc:150
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:631
msgid "ARIB STD-B67 ('Hybrid log-gamma')"
msgstr ""
#: src/lib/dcp_content_type.cc:55
msgid "Advertisement"
msgstr "Publicidade"
#: src/lib/hints.cc:142
msgid ""
"All of your content is 2.35:1 or narrower but your DCP's container is Scope "
"(2.39:1). This will pillar-box your content. You may prefer to set your "
"DCP's container to have the same ratio as your content."
msgstr ""
#: src/lib/hints.cc:138
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:109
msgid "An error occurred whilst handling the file %1."
msgstr "Ocorreu um erro ao manipular o ficheiro %1."
#: src/lib/analyse_audio_job.cc:131
#, fuzzy
msgid "Analysing audio"
msgstr "Analizar áudio"
#: src/lib/analyse_subtitles_job.cc:48
#, fuzzy
msgid "Analysing subtitles"
msgstr "À procura das legendas"
#: src/lib/audio_content.cc:258
msgid "Audio will be resampled from %1Hz to %2Hz"
msgstr "A taxa de amostragem será alterada de %1Hz para %2Hz"
#: src/lib/audio_content.cc:260
msgid "Audio will be resampled to %1Hz"
msgstr "A taxa de amostragem será alterada para %1Hz"
#: src/lib/audio_content.cc:249
msgid "Audio will not be resampled"
msgstr "A taxa de amostragem será alterada"
#: src/lib/ffmpeg_content.cc:625
msgid "BT1361 extended colour gamut"
msgstr "Gama de cores ampliada BT1361"
#: src/lib/ffmpeg_content.cc:593
msgid "BT2020"
msgstr "BT2020"
#: src/lib/ffmpeg_content.cc:648
msgid "BT2020 constant luminance"
msgstr "Luminância constante BT2020"
#: src/lib/ffmpeg_content.cc:627
msgid "BT2020 for a 10-bit system"
msgstr "BT2020 para um sistema de 10-bit"
#: src/lib/ffmpeg_content.cc:628
msgid "BT2020 for a 12-bit system"
msgstr "BT2020 para um sistema de 12-bit"
#: src/lib/ffmpeg_content.cc:647
msgid "BT2020 non-constant luminance"
msgstr "Luminância não constante BT2020"
#: src/lib/ffmpeg_content.cc:652
msgid "BT2100"
msgstr ""
#: src/lib/ffmpeg_content.cc:589
msgid "BT470BG"
msgstr "BT470BG"
#: src/lib/ffmpeg_content.cc:643
msgid "BT470BG (BT601-6)"
msgstr "BT470BG (BT601-6)"
#: src/lib/ffmpeg_content.cc:588
msgid "BT470M"
msgstr "BT470M"
#: src/lib/ffmpeg_content.cc:585 src/lib/ffmpeg_content.cc:614
#: src/lib/ffmpeg_content.cc:639
msgid "BT709"
msgstr "BT709"
#: src/lib/ffmpeg_content.cc:659
msgid "Bits per pixel"
msgstr "Bits por pixel"
# It's a filter name, has no translation to portuguese.
#: src/lib/filter.cc:74
#, fuzzy
msgid "Bob Weaver Deinterlacing Filter"
msgstr "Yet Another Deinterlacing Filter"
#: src/lib/util.cc:582
msgid "BsL"
msgstr "BsL"
#: src/lib/util.cc:583
msgid "BsR"
msgstr "BsR"
#: src/lib/util.cc:574
msgid "C"
msgstr "C"
#: src/lib/job.cc:508
msgid "Cancelled"
msgstr "Cancelado"
#: src/lib/film.cc:348
#, fuzzy
msgid "Cannot contain slashes"
msgstr "não pode conter barras"
#: src/lib/exceptions.cc:70
msgid "Cannot handle pixel format %1 during %2"
msgstr "Impossível manusear o formato de pixeis %1 durante %2"
#: src/lib/film.cc:1456
msgid "Cannot make a KDM as this project is not encrypted."
msgstr ""
#: src/lib/util.cc:543
msgid "Centre"
msgstr "Central"
#: src/lib/audio_content.cc:293
msgid "Channels"
msgstr "Canais"
#: src/lib/check_content_change_job.cc:53
msgid "Checking content for changes"
msgstr ""
#: src/lib/reel_writer.cc:204
msgid "Checking existing image data"
msgstr "A verificar dados de imagem existentes"
#: src/lib/check_content_change_job.cc:95
msgid "Choose 'Make DCP' again when you have done this."
msgstr ""
#: src/lib/ffmpeg_content.cc:651
#, fuzzy
msgid "Chroma-derived constant luminance"
msgstr "Luminância constante BT2020"
#: src/lib/ffmpeg_content.cc:650
#, fuzzy
msgid "Chroma-derived non-constant luminance"
msgstr "Luminância não constante BT2020"
#: src/lib/types.cc:140
#, fuzzy
msgid "Closed captions"
msgstr "Redução de ruído"
#: src/lib/ffmpeg_content.cc:610
msgid "Colour primaries"
msgstr "Cores preliminares"
#. / 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:542 src/lib/ffmpeg_content.cc:549
#: src/lib/ffmpeg_content.cc:556 src/lib/ffmpeg_content.cc:566
#: src/lib/ffmpeg_content.cc:571 src/lib/ffmpeg_content.cc:576
msgid "Colour range"
msgstr "Gama de cores"
#: src/lib/ffmpeg_content.cc:635
msgid "Colour transfer characteristic"
msgstr "Característica de transferência de cores"
#: src/lib/ffmpeg_content.cc:656
msgid "Colourspace"
msgstr "Espaço de cor"
#: src/lib/content.cc:186
msgid "Computing digest"
msgstr "A processar o resumo"
#: src/lib/writer.cc:528
#, fuzzy
msgid "Computing digests"
msgstr "A processar o resumo"
#: src/lib/analytics.cc:55
msgid "Congratulations!"
msgstr ""
#: src/lib/frame_rate_change.cc:101
msgid "Content and DCP have the same rate.\n"
msgstr "O conteúdo e o DCP têm a mesma cadência de fotogramas.\n"
#: src/lib/audio_content.cc:294
#, fuzzy
msgid "Content audio sample rate"
msgstr "Cadência de fotogramas do conteúdo de áudio"
#: src/lib/ffmpeg_content.cc:158
#, fuzzy
msgid "Content to be joined must all have or not have audio"
msgstr "O conteúdo a ser unido deve ter o mesmo ganho de áudio."
#: src/lib/ffmpeg_content.cc:161
#, fuzzy
msgid "Content to be joined must all have or not have subtitles or captions"
msgstr "O conteúdo a ser unido deve ter a mesma escala X nas legendas."
#: src/lib/ffmpeg_content.cc:155
#, fuzzy
msgid "Content to be joined must all have or not have video"
msgstr "O conteúdo a ser unido deve ter os mesmos fades."
#: src/lib/video_content.cc:178
#, fuzzy
msgid "Content to be joined must have all its video used or not used."
msgstr "O conteúdo a ser unido deve ter a mesma cadência de fotogramas."
#: src/lib/text_content.cc:261
msgid "Content to be joined must have the same 'burn subtitles' setting."
msgstr ""
"O conteúdo a ser unido deve ter a mesma configuração 'gravar legendas'."
#: src/lib/text_content.cc:257
msgid "Content to be joined must have the same 'use subtitles' setting."
msgstr "O conteúdo a ser unido deve ter a mesma configuração 'usar legendas'."
#: src/lib/audio_content.cc:107
msgid "Content to be joined must have the same audio delay."
msgstr "O conteúdo a ser unido deve ter o mesmo atraso de áudio."
#: src/lib/audio_content.cc:103
msgid "Content to be joined must have the same audio gain."
msgstr "O conteúdo a ser unido deve ter o mesmo ganho de áudio."
#: src/lib/video_content.cc:198
msgid "Content to be joined must have the same colour conversion."
msgstr "O conteúdo a ser unido deve ter a mesma conversão de cor."
#: src/lib/video_content.cc:190
msgid "Content to be joined must have the same crop."
msgstr "O conteúdo a ser unido deve ter o mesmo recorte."
#: src/lib/video_content.cc:202
msgid "Content to be joined must have the same fades."
msgstr "O conteúdo a ser unido deve ter os mesmos fades."
#: src/lib/text_content.cc:289
#, fuzzy
msgid "Content to be joined must have the same outline width."
msgstr "O conteúdo a ser unido deve ter a mesma escala X nas legendas."
#: src/lib/video_content.cc:182
msgid "Content to be joined must have the same picture size."
msgstr "O conteúdo a ser unido deve ter o mesmo tamanho de imagem."
#: src/lib/video_content.cc:194
msgid "Content to be joined must have the same scale setting."
msgstr ""
"O conteúdo a ser unido deve ter as mesmas definições de redimensionamento."
#: src/lib/text_content.cc:265
msgid "Content to be joined must have the same subtitle X offset."
msgstr "O conteúdo a ser unido deve ter o mesmo alinhamento X nas legendas."
#: src/lib/text_content.cc:273
msgid "Content to be joined must have the same subtitle X scale."
msgstr "O conteúdo a ser unido deve ter a mesma escala X nas legendas."
#: src/lib/text_content.cc:269
msgid "Content to be joined must have the same subtitle Y offset."
msgstr "O conteúdo a ser unido deve ter o mesmo alinhamento Y nas legendas."
#: src/lib/text_content.cc:277
msgid "Content to be joined must have the same subtitle Y scale."
msgstr "O conteúdo a ser unido deve ter a mesma escala Y nas legendas."
#: src/lib/text_content.cc:285
#, fuzzy
msgid "Content to be joined must have the same subtitle fades."
msgstr "O conteúdo a ser unido deve ter a mesma escala X nas legendas."
#: src/lib/text_content.cc:281
#, fuzzy
msgid "Content to be joined must have the same subtitle line spacing."
msgstr "O conteúdo a ser unido deve ter a mesma escala X nas legendas."
#: src/lib/content.cc:133 src/lib/content.cc:137
#, fuzzy
msgid "Content to be joined must have the same video frame rate"
msgstr "O conteúdo a ser unido deve ter a mesma cadência de fotogramas."
#: src/lib/video_content.cc:186
msgid "Content to be joined must have the same video frame type."
msgstr "O conteúdo a ser unido deve ter o mesmo tipo de fotogramas de vídeo."
#: src/lib/text_content.cc:298
#, fuzzy
msgid "Content to be joined must use the same DCP track."
msgstr "O conteúdo a ser unido deve usar os mesmos tipos de letra."
#: src/lib/text_content.cc:294 src/lib/text_content.cc:306
msgid "Content to be joined must use the same fonts."
msgstr "O conteúdo a ser unido deve usar os mesmos tipos de letra."
#: src/lib/ffmpeg_content.cc:182
msgid "Content to be joined must use the same subtitle stream."
msgstr "O conteúdo a ser unido deve usar o mesmo fluxo de legendas."
#: src/lib/video_content.cc:412
msgid "Content video is %1x%2"
msgstr "O vídeo do conteúdo tem %1x%2"
#: src/lib/upload_job.cc:57
msgid "Copy DCP to TMS"
msgstr "Copiar DCP para TMS"
#: src/lib/reel_writer.cc:99
msgid "Copying old video file"
msgstr ""
#: src/lib/reel_writer.cc:327
#, fuzzy
msgid "Copying video file into DCP"
msgstr "Dimensões de vídeo do DCP inválidas"
#: src/lib/scp_uploader.cc:51
msgid "Could not connect to server %1 (%2)"
msgstr "Não foi possivel ligar ao servidor %1 (%2)"
#: src/lib/scp_uploader.cc:88
msgid "Could not create remote directory %1 (%2)"
msgstr "Não foi possível criar o directório remoto %1 (%2)"
#: src/lib/image_examiner.cc:62
msgid "Could not decode JPEG2000 file %1 (%2)"
msgstr "Não foi possível descodificar o ficheiro JPEG2000 %1 (%2)"
#: src/lib/ffmpeg_image_proxy.cc:153
#, fuzzy
msgid "Could not decode image (%1)"
msgstr "Não foi possível descodificar a imagem (%1)"
#: src/lib/encode_server_finder.cc:185
msgid ""
"Could not listen for remote encode servers. Perhaps another instance of DCP-"
"o-matic is running."
msgstr ""
"Não foi possível procurar por servidores de codificação remotos. Talvez "
"outra instância do DCP-o-matic esteja em execução."
#: src/lib/job.cc:164 src/lib/job.cc:179
msgid "Could not open %1"
msgstr "Não foi possível abrir %1"
#: src/lib/curl_uploader.cc:86 src/lib/scp_uploader.cc:101
msgid "Could not open %1 to send"
msgstr "Não foi possível abrir %1 para enviar"
#: src/lib/internet.cc:158 src/lib/internet.cc:163
msgid "Could not open downloaded ZIP file"
msgstr "Não foi possível abrir o ficheiro ZIP descarregado"
#: src/lib/internet.cc:170
#, fuzzy
msgid "Could not open downloaded ZIP file (%1:%2: %3)"
msgstr "Não foi possível abrir o ficheiro ZIP descarregado"
#: src/lib/config.cc:1070
#, fuzzy
msgid "Could not open file for writing"
msgstr "não foi possível abrir o ficheiro para leitura"
#: src/lib/dcp_subtitle.cc:55
#, fuzzy
msgid "Could not read subtitles (%1 / %2)"
msgstr "Não foi possível ler as legendas"
#: src/lib/scp_uploader.cc:71
msgid "Could not start SCP session (%1)"
msgstr "Não foi possível iniciar a sessão SCP (%1)"
#: src/lib/curl_uploader.cc:49
msgid "Could not start transfer"
msgstr "Não foi possível iniciar a transferência"
#: src/lib/curl_uploader.cc:93 src/lib/scp_uploader.cc:118
msgid "Could not write to remote file (%1)"
msgstr "Não foi possível escrever para o ficheiro remoto (%1)"
#: src/lib/util.cc:553
msgid "D-BOX primary"
msgstr "D-BOX primário"
#: src/lib/util.cc:554
msgid "D-BOX secondary"
msgstr "D-BOX secundário"
#: src/lib/util.cc:584
msgid "DBP"
msgstr "DBP"
#: src/lib/util.cc:585
msgid "DBS"
msgstr "DBS"
#: src/lib/ratio.cc:44
#, fuzzy
msgid "DCI Flat"
msgstr "Flat"
#: src/lib/ratio.cc:46
#, fuzzy
msgid "DCI Scope"
msgstr "Scope"
#: src/lib/dcp_subtitle_content.cc:109
msgid "DCP XML subtitles"
msgstr "Legendas XML DCP"
#: src/lib/audio_content.cc:314
#, fuzzy
msgid "DCP sample rate"
msgstr "Cadência de fotogramas do DCP"
#: src/lib/frame_rate_change.cc:114
#, c-format
msgid "DCP will run at %.1f%% of the content speed.\n"
msgstr "O DCP será reproduzido a %.1f%% da velocidade do conteúdo.\n"
#: src/lib/frame_rate_change.cc:104
msgid "DCP will use every other frame of the content.\n"
msgstr "O DCP usará todos os outros fotogramas do conteúdo.\n"
#: src/lib/job.cc:166 src/lib/job.cc:181
#, fuzzy
msgid ""
"DCP-o-matic could not open the file %1 (%2). Perhaps it does not exist or "
"is in an unexpected format."
msgstr ""
"O DCP-o-matic não conseguiu abrir o ficheiro %1. Talvez não exista ou está "
"num formato inesperado."
#: src/lib/film.cc:1379
msgid ""
"DCP-o-matic had to change your settings for referring to DCPs as OV. Please "
"review those settings to make sure they are what you want."
msgstr ""
#: src/lib/ffmpeg_content.cc:119
msgid ""
"DCP-o-matic no longer supports the `%1' filter, so it has been turned off."
msgstr "O DCP-o-matic já não suporta o filtro '%1', e este foi desactivado."
#: src/lib/config.cc:370 src/lib/config.cc:1164
msgid "DCP-o-matic notification"
msgstr ""
#: src/lib/datasat_ap2x.cc:26
msgid "Datasat AP20 or AP25"
msgstr ""
#: src/lib/filter.cc:71 src/lib/filter.cc:72 src/lib/filter.cc:73
#: src/lib/filter.cc:74 src/lib/filter.cc:75
msgid "De-interlacing"
msgstr "A Desentrelaçar"
#: src/lib/config.cc:1152
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 ""
"Caro Projeccionista\n"
"\n"
"Encontrará em anexo as chaves KDM para o filme $CPL_NAME.\n"
"\n"
"Cinema: $CINEMA_NAME\n"
"Ecrã(s): $SCREENS\n"
"\n"
"As chaves são válidas de $START_TIME a $END_TIME.\n"
"\n"
"Cumprimentos,\n"
"DCP-o-matic"
#: src/lib/dolby_cp750.cc:28
#, fuzzy
msgid "Dolby CP650 or CP750"
msgstr "Dolby CP650 e CP750"
#: src/lib/internet.cc:116
#, fuzzy
msgid "Download failed (%1 error %2)"
msgstr "O download falhou (%1/%2 erro %3)"
#: src/lib/frame_rate_change.cc:106
msgid "Each content frame will be doubled in the DCP.\n"
msgstr "Cada fotograma do conteúdo será duplicado no DCP.\n"
#: src/lib/frame_rate_change.cc:108
msgid "Each content frame will be repeated %1 more times in the DCP.\n"
msgstr "Cada fotograma do conteúdo será repetido %1 vezes no DCP.\n"
#: src/lib/send_kdm_email_job.cc:66
msgid "Email KDMs"
msgstr "Enviar chaves KDM por email"
#: src/lib/send_kdm_email_job.cc:69
msgid "Email KDMs for %1"
msgstr "Enviar chaves KDM por email para %1"
#: src/lib/send_notification_email_job.cc:51
msgid "Email notification"
msgstr ""
#: src/lib/send_problem_report_job.cc:64
msgid "Email problem report"
msgstr "Enviar relatório de problemas"
#: src/lib/send_problem_report_job.cc:67
msgid "Email problem report for %1"
msgstr "Enviar relatório de problemas para %1"
#: src/lib/dcp_encoder.cc:97 src/lib/ffmpeg_encoder.cc:130
msgid "Encoding"
msgstr ""
#: src/lib/dcp_content_type.cc:56
msgid "Episode"
msgstr ""
#: src/lib/exceptions.cc:76
msgid "Error in subtitle file: saw %1 while expecting %2"
msgstr "Erro no ficheiro de legendas: encontrou %1 mas esperava %2"
#: src/lib/job.cc:506
msgid "Error: %1"
msgstr "Erro: %1"
#: src/lib/hints.cc:260
#, fuzzy
msgid "Examining closed captions"
msgstr "Examen du contenu"
#: src/lib/examine_content_job.cc:49
#, fuzzy
msgid "Examining content"
msgstr "Examinar conteúdo"
#: src/lib/examine_ffmpeg_subtitles_job.cc:54
#, fuzzy
msgid "Examining subtitles"
msgstr "À procura das legendas"
#: src/lib/subtitle_encoder.cc:80
#, fuzzy
msgid "Extracting"
msgstr "Classificação"
#: src/lib/ffmpeg_content.cc:642
msgid "FCC"
msgstr "FCC"
#: src/lib/scp_uploader.cc:61
msgid "Failed to authenticate with server (%1)"
msgstr "A autenticação com o servidor falhou (%1)"
#: src/lib/job.cc:133 src/lib/job.cc:143
#, fuzzy
msgid "Failed to encode the DCP."
msgstr "Falha no envio de email (%1)"
#: src/lib/emailer.cc:224
#, fuzzy
msgid "Failed to send email"
msgstr "Falha no envio de email (%1)"
#: src/lib/dcp_content_type.cc:46
msgid "Feature"
msgstr "Longa-metragem"
#: src/lib/content.cc:436
#, fuzzy
msgid "Filename"
msgstr "nome"
#: src/lib/ffmpeg_content.cc:592
msgid "Film"
msgstr "Filme"
#: src/lib/ffmpeg_examiner.cc:98
msgid "Finding length"
msgstr "À procura da duração"
#: src/lib/content.cc:443
msgid "Frame rate"
msgstr "Cadência de fotogramas"
#: src/lib/util.cc:916
msgid "Friday"
msgstr "Sexta-feira"
#: src/lib/ffmpeg_content.cc:576
msgid "Full"
msgstr "Full"
#: src/lib/ffmpeg_content.cc:556
msgid "Full (0-%1)"
msgstr "Full (0-%1)"
#: src/lib/ratio.cc:47
msgid "Full frame"
msgstr "Full frame"
#: src/lib/audio_content.cc:321
#, fuzzy
msgid "Full length in audio samples at DCP rate"
msgstr "Duração total dos fotogramas de audio à cadência do DCP"
#: src/lib/audio_content.cc:308
#, fuzzy
msgid "Full length in audio samples at content rate"
msgstr "Duração total dos fotogramas de audio à cadência do conteúdo"
#: src/lib/audio_content.cc:315
msgid "Full length in video frames at DCP rate"
msgstr "Duração total dos fotogramas de vídeo à cadência do DCP"
#: src/lib/audio_content.cc:301
msgid "Full length in video frames at content rate"
msgstr "Duração total dos fotogramas de vídeo à cadência do conteúdo"
#: src/lib/ffmpeg_content.cc:617
msgid "Gamma 22 (BT470M)"
msgstr "Gama 22 (BT470M)"
#: src/lib/ffmpeg_content.cc:618
msgid "Gamma 28 (BT470BG)"
msgstr "Gama 28 (BT470BG)"
#: src/lib/filter.cc:76
msgid "Gradient debander"
msgstr "Alterar banda do gradiente"
#: src/lib/util.cc:578
msgid "HI"
msgstr "DA"
#: src/lib/util.cc:547
msgid "Hearing impaired"
msgstr "Deficientes auditivos"
#: src/lib/filter.cc:79
msgid "High quality 3D denoiser"
msgstr "Remoção de ruido 3D de alta qualidade"
#: src/lib/filter.cc:68
#, fuzzy
msgid "Horizontal flip"
msgstr "Filtre dé-bloc horizontal"
#: src/lib/audio_content.cc:294 src/lib/audio_content.cc:314
msgid "Hz"
msgstr "Hz"
#: src/lib/ffmpeg_content.cc:626
msgid "IEC61966-2-1 (sRGB or sYCC)"
msgstr "IEC61966-2-1 (sRGB ou sYCC)"
#: src/lib/ffmpeg_content.cc:624
msgid "IEC61966-2-4"
msgstr "IEC61966-2-4"
#: src/lib/hints.cc:163
msgid "If you do use 25fps you should change your DCP standard to SMPTE."
msgstr ""
#: src/lib/job.cc:154 src/lib/job.cc:189 src/lib/job.cc:239 src/lib/job.cc:249
msgid "It is not known what caused this error."
msgstr "A causa do erro não é conhecida."
#: src/lib/ffmpeg_content.cc:606
msgid "JEDEC P22"
msgstr ""
#: src/lib/config.cc:360 src/lib/config.cc:1149
msgid "KDM delivery: $CPL_NAME"
msgstr "Envio de chaves KDM: $CPL_NAME"
#: src/lib/dcp.cc:58
msgid "KDM was made for DCP-o-matic but not for its leaf certificate."
msgstr ""
#: src/lib/dcp.cc:56
msgid "KDM was not made for DCP-o-matic's decryption certificate."
msgstr ""
#: src/lib/filter.cc:72
msgid "Kernel deinterlacer"
msgstr "Desentrelaçador do núcleo"
#: src/lib/ffmpeg_encoder.cc:229 src/lib/util.cc:572
msgid "L"
msgstr "E"
#: src/lib/util.cc:580
msgid "Lc"
msgstr "Ec"
#: src/lib/mid_side_decoder.cc:98 src/lib/util.cc:541
msgid "Left"
msgstr "Esquerdo"
#: src/lib/util.cc:549
msgid "Left centre"
msgstr "Esquerdo central"
#: src/lib/util.cc:551
msgid "Left rear surround"
msgstr "Esquerdo traseiro surround"
#: src/lib/util.cc:545
msgid "Left surround"
msgstr "Esquerdo surround"
#: src/lib/video_content.cc:481
msgid "Length"
msgstr "Duração"
#: src/lib/util.cc:575
msgid "Lfe"
msgstr "Lfe"
#: src/lib/util.cc:544
msgid "Lfe (sub)"
msgstr "Lfe (sub)"
#: src/lib/ffmpeg_content.cc:571
msgid "Limited"
msgstr "Limitado"
#: src/lib/ffmpeg_content.cc:549
msgid "Limited (%1-%2)"
msgstr "Limitado (%1-%2)"
#: src/lib/ffmpeg_content.cc:621
msgid "Linear"
msgstr "Linear"
#: src/lib/ffmpeg_content.cc:622
msgid "Logarithmic (100:1 range)"
msgstr "Logarítmico (variação 100:1)"
#: src/lib/ffmpeg_content.cc:623
msgid "Logarithmic (316:1 range)"
msgstr "Logarítmico (Variação 316:1)"
#: src/lib/exceptions.cc:128
msgid "Lost communication between main and writer processes"
msgstr ""
#: src/lib/util.cc:576
msgid "Ls"
msgstr "Es"
#: src/lib/mid_side_decoder.cc:35
msgid "Mid-side decoder"
msgstr "Descodificador Mid-side"
#: src/lib/filter.cc:76 src/lib/filter.cc:77 src/lib/filter.cc:80
msgid "Misc"
msgstr "Misc"
#: src/lib/dcp_examiner.cc:157
msgid "Mismatched audio channel counts in DCP"
msgstr "Canais de áudio do DCP em número inválido"
#: src/lib/dcp_examiner.cc:163
msgid "Mismatched audio sample rates in DCP"
msgstr "Taxa de amostragem de áudio do DCP inválida"
#: src/lib/dcp_examiner.cc:130
msgid "Mismatched frame rates in DCP"
msgstr "Cadência de fotogramas do DCP inválida"
#: src/lib/dcp_examiner.cc:138
msgid "Mismatched video sizes in DCP"
msgstr "Dimensões de vídeo do DCP inválidas"
#: src/lib/exceptions.cc:64
#, fuzzy
msgid "Missing required setting %1"
msgstr "falta definição necessária %1"
#: src/lib/util.cc:908
msgid "Monday"
msgstr "Segunda-feira"
#: src/lib/writer.cc:638
msgid "Mono"
msgstr ""
#: src/lib/filter.cc:71
msgid "Motion compensating deinterlacer"
msgstr "Desentrelaçador de compensação de movimento"
#: src/lib/dcp_decoder.cc:98
msgid "No CPLs found in DCP."
msgstr ""
#: src/lib/cinema_kdms.cc:201 src/lib/send_notification_email_job.cc:66
msgid "No mail server configured in preferences"
msgstr "Servidor de correio não configura nas preferências"
#: src/lib/video_content_scale.cc:105
msgid "No scale"
msgstr "Sem redimensionamento"
#: src/lib/video_content_scale.cc:102
msgid "No stretch"
msgstr "Sem distorção"
#: src/lib/image_content.cc:122
msgid "No valid image files were found in the folder."
msgstr "Não foram encontrados ficheiros de imagem válidos na pasta."
#: src/lib/filter.cc:78 src/lib/filter.cc:79 src/lib/filter.cc:81
msgid "Noise reduction"
msgstr "Redução de ruído"
#: src/lib/writer.cc:636
msgid "None"
msgstr ""
#: src/lib/job.cc:504
msgid "OK (ran for %1)"
msgstr "OK (executado durante %1)"
#: src/lib/content.cc:122
msgid "Only the first piece of content to be joined can have a start trim."
msgstr "Apenas o primeiro elemento a ser unido pode ser aparado no início."
#: src/lib/content.cc:126
msgid "Only the last piece of content to be joined can have an end trim."
msgstr "Apenas o último elemento a ser unido pode ser aparado no fim."
#: src/lib/types.cc:138
#, fuzzy
msgid "Open subtitles"
msgstr "Legendas de texto"
#: src/lib/filter.cc:67 src/lib/filter.cc:68 src/lib/filter.cc:69
#: src/lib/filter.cc:70
msgid "Orientation"
msgstr ""
#: src/lib/job.cc:213
msgid "Out of memory"
msgstr "Memória esgotada"
#: src/lib/filter.cc:81
msgid "Overcomplete wavelet denoiser"
msgstr "Redutor de ruído de onda"
#: src/lib/colour_conversion.cc:284
msgid "P3"
msgstr "P3"
#: src/lib/util.h:58
msgid ""
"Please report this problem by using Help -> Report a problem or via email to "
"carl@dcpomatic.com"
msgstr ""
#: src/lib/dcp_content_type.cc:53
msgid "Policy"
msgstr "Regra"
#: src/lib/content.cc:452
msgid "Prepared for video frame rate"
msgstr ""
#: src/lib/exceptions.cc:94
#, fuzzy
msgid "Programming error at %1:%2 %3"
msgstr "Erro de programação em %1:%2"
#: src/lib/dcp_content_type.cc:57
msgid "Promo"
msgstr ""
#: src/lib/dcp_content_type.cc:54
msgid "Public Service Announcement"
msgstr "Anúncio Público"
#: src/lib/ffmpeg_encoder.cc:237 src/lib/util.cc:573
msgid "R"
msgstr "D"
#: src/lib/ffmpeg_content.cc:638
msgid "RGB / sRGB (IEC61966-2-1)"
msgstr "RGB / sRGB (IEC61966-2-1)"
#: src/lib/dcp_content_type.cc:51
msgid "Rating"
msgstr "Classificação"
#: src/lib/util.cc:581
msgid "Rc"
msgstr "Dc"
#: src/lib/colour_conversion.cc:285
#, fuzzy
msgid "Rec. 1886"
msgstr "Rec. 601"
#: src/lib/colour_conversion.cc:286
#, fuzzy
msgid "Rec. 2020"
msgstr "Rec. 601"
#: src/lib/colour_conversion.cc:282
msgid "Rec. 601"
msgstr "Rec. 601"
#: src/lib/colour_conversion.cc:283
msgid "Rec. 709"
msgstr "Rec. 709"
#: src/lib/mid_side_decoder.cc:99 src/lib/util.cc:542
msgid "Right"
msgstr "Direito"
#: src/lib/util.cc:550
msgid "Right centre"
msgstr "Direita central"
#: src/lib/util.cc:552
msgid "Right rear surround"
msgstr "Direito traseiro surround"
#: src/lib/util.cc:546
msgid "Right surround"
msgstr "Direito surround"
#: src/lib/filter.cc:70
msgid "Rotate 90 degrees anti-clockwise"
msgstr ""
#: src/lib/filter.cc:69
msgid "Rotate 90 degrees clockwise"
msgstr ""
#: src/lib/util.cc:577
msgid "Rs"
msgstr "Ds"
#: src/lib/colour_conversion.cc:287
msgid "S-Gamut3/S-Log3"
msgstr ""
#: src/lib/ffmpeg_content.cc:590 src/lib/ffmpeg_content.cc:619
msgid "SMPTE 170M (BT601)"
msgstr "SMPTE 170M (BT601)"
#: src/lib/ffmpeg_content.cc:644
msgid "SMPTE 170M (BT601-6)"
msgstr "SMPTE 170M (BT601-6)"
#: src/lib/ffmpeg_content.cc:649
msgid "SMPTE 2085, Y'D'zD'x"
msgstr ""
#: src/lib/ffmpeg_content.cc:591 src/lib/ffmpeg_content.cc:620
#: src/lib/ffmpeg_content.cc:645
msgid "SMPTE 240M"
msgstr "SMPTE 240M"
#: src/lib/ffmpeg_content.cc:629
msgid "SMPTE ST 2084 for 10, 12, 14 and 16 bit systems"
msgstr ""
#: src/lib/ffmpeg_content.cc:630
msgid "SMPTE ST 428-1"
msgstr ""
#: src/lib/ffmpeg_content.cc:594
msgid "SMPTE ST 428-1 (CIE 1931 XYZ)"
msgstr ""
#: src/lib/ffmpeg_content.cc:595
#, fuzzy
msgid "SMPTE ST 431-2 (2011)"
msgstr "SMPTE 170M (BT601)"
#: src/lib/ffmpeg_content.cc:596
msgid "SMPTE ST 432-1 D65 (2010)"
msgstr ""
#: src/lib/scp_uploader.cc:56
msgid "SSH error (%1)"
msgstr "Erro de SSH (%1)"
#: src/lib/util.cc:918
msgid "Saturday"
msgstr "Sábado"
#: src/lib/image_content.cc:108
#, fuzzy
msgid "Scanning image files"
msgstr "A processar o resumo de imagem"
#: src/lib/send_problem_report_job.cc:79
msgid "Sending email"
msgstr "A enviar email"
#: src/lib/dcp_content_type.cc:47
msgid "Short"
msgstr "Curta-metragem"
#: src/lib/video_content.cc:482
msgid "Size"
msgstr "Tamanho"
#: src/lib/audio_content.cc:253
msgid "Some audio will be resampled to %1Hz"
msgstr "Algum áudio vais ser alterado para %1Hz"
#: src/lib/check_content_change_job.cc:91
msgid ""
"Some files have been changed since they were added to the project.\n"
"\n"
"These files will now be re-examined, so you may need to check their settings."
msgstr ""
#: src/lib/check_content_change_job.cc:102
msgid ""
"Some files have been changed since they were added to the project. Open the "
"project in DCP-o-matic, check the settings, then save it before trying again."
msgstr ""
#: src/lib/hints.cc:309
msgid ""
"Some of your closed captions have lines longer than %1 characters, so they "
"will probably be word-wrapped."
msgstr ""
#: src/lib/hints.cc:315
msgid ""
"Some of your closed captions span more than %1 lines, so they will be "
"truncated."
msgstr ""
#: src/lib/film.cc:377
msgid "Some of your content needs a KDM"
msgstr ""
#: src/lib/film.cc:380
msgid "Some of your content needs an OV"
msgstr ""
#: src/lib/writer.cc:640
msgid "Stereo"
msgstr ""
#: src/lib/upmixer_a.cc:46
msgid "Stereo to 5.1 up-mixer A"
msgstr "Multiplicador de canais de Stereo para 5.1 A"
#: src/lib/upmixer_b.cc:42
msgid "Stereo to 5.1 up-mixer B"
msgstr "Multiplicador de canais de Stereo para 5.1 B"
#: src/lib/util.cc:906
msgid "Sunday"
msgstr "Domingo"
#: src/lib/dcp_content_type.cc:52
msgid "Teaser"
msgstr "Teaser"
#: src/lib/filter.cc:80
msgid "Telecine filter"
msgstr "Filtro de telecinema"
#: src/lib/dcp_content_type.cc:49
msgid "Test"
msgstr "Teste"
#: src/lib/string_text_file_content.cc:76
msgid "Text subtitles"
msgstr "Legendas de texto"
#: src/lib/film.cc:360
msgid "The DCP is empty, perhaps because all the content has zero length."
msgstr ""
#: src/lib/exceptions.cc:82
msgid "The certificate chain for signing is invalid"
msgstr "A cadeia de certificação para assinatura é inválida"
#: src/lib/exceptions.cc:88
#, fuzzy
msgid "The certificate chain for signing is invalid (%1)"
msgstr "A cadeia de certificação para assinatura é inválida"
#: src/lib/video_decoder.cc:80
msgid ""
"The content file %1 is set as 3D but does not appear to contain 3D images. "
"Please set it to 2D. You can still make a 3D DCP from this content by "
"ticking the 3D option in the DCP video tab."
msgstr ""
#: src/lib/job.cc:115
msgid ""
"The drive that the film is stored on is low in disc space. Free some more "
"space and try again."
msgstr ""
"O disco onde o filme está armazenado está com pouco espaço. Liberte algum "
"espaço e tente de novo."
#: src/lib/playlist.cc:227
msgid "The file %1 has been moved %2 milliseconds earlier."
msgstr ""
#: src/lib/playlist.cc:222
msgid "The file %1 has been moved %2 milliseconds later."
msgstr ""
#: src/lib/playlist.cc:247
msgid "The file %1 has been trimmed by %2 milliseconds less."
msgstr ""
#: src/lib/playlist.cc:242
msgid "The file %1 has been trimmed by %2 milliseconds more."
msgstr ""
#: src/lib/hints.cc:201
msgid ""
"There is a large difference between the frame rate of your DCP and that of "
"some of your content. This will cause your audio to play back at a much "
"lower or higher pitch than it should. You are advised to set your DCP frame "
"rate to one closer to your content, provided that your target projection "
"systems support your chosen DCP rate."
msgstr ""
#: src/lib/dcp_content.cc:620
msgid "There is no video in this DCP"
msgstr ""
#: src/lib/job.cc:213
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 ""
"Não há memória suficiente para concluir esta acção. Se estiver a usar um "
"sistema de 32-bit tente reduzir o número de linhas de execução na aba Geral "
"das Preferências."
#: src/lib/job.cc:134
msgid ""
"This error has probably occurred because you are running the 32-bit version "
"of DCP-o-matic and trying to use too many encoding threads. Please reduce "
"the 'number of threads DCP-o-matic should use' in the General tab of "
"Preferences and try again."
msgstr ""
#: src/lib/job.cc:144
msgid ""
"This error has probably occurred because you are running the 32-bit version "
"of DCP-o-matic. Please re-install DCP-o-matic with the 64-bit installer and "
"try again."
msgstr ""
#: src/lib/exceptions.cc:100
msgid ""
"This file is a KDM. KDMs should be added to DCP content by right-clicking "
"the content and choosing \"Add KDM\"."
msgstr ""
#: src/lib/film.cc:522
msgid ""
"This film was created with a newer version of DCP-o-matic, and it cannot be "
"loaded into this version. Sorry!"
msgstr ""
"Este filme foi criado com uma versão mais recente do DCP-o-matic, e não pode "
"ser carregado nesta. Desculpe!"
#: src/lib/film.cc:507
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 ""
"Este filme foi criado com uma versão anterior do DCP-o-matic, e infelizmente "
"não pode ser carregado nesta. Necessita criar um novo Filme, voltar a "
"adicionar o conteúdo e configurá-lo de novo. Desculpe!"
#: src/lib/util.cc:914
msgid "Thursday"
msgstr "Quinta-feira"
#: src/lib/types.cc:136
msgid "Timed text"
msgstr ""
#: src/lib/dcp_content_type.cc:48
msgid "Trailer"
msgstr "Trailer"
#: src/lib/transcode_job.cc:63
#, fuzzy
msgid "Transcoding %1"
msgstr "Transcodificar %1"
#: src/lib/dcp_content_type.cc:50
msgid "Transitional"
msgstr "Transitório"
#: src/lib/util.cc:910
msgid "Tuesday"
msgstr "Terça-feira"
#: src/lib/usl.cc:26
msgid "USL"
msgstr ""
#: src/lib/internet.cc:179
msgid "Unexpected ZIP file contents"
msgstr "Conteúdos inesperados no ficheiro ZIP"
#: src/lib/image_proxy.cc:49
msgid "Unexpected image type received by server"
msgstr "Tipo de imagem inesperada recebida pelo servidor"
#: src/lib/cross_common.cc:86
#, fuzzy
msgid "Unknown"
msgstr "desconhecido"
#: src/lib/job.cc:248
msgid "Unknown error"
msgstr "Erro desconhecido"
#: src/lib/ffmpeg_decoder.cc:333
msgid "Unrecognised audio sample format (%1)"
msgstr "Formato de amostragem áudio desconhecido (%1)"
#: src/lib/filter.cc:77
msgid "Unsharp mask and Gaussian blur"
msgstr "Máscara de nitidez e desfoque de Gauss"
#: src/lib/ffmpeg_content.cc:542 src/lib/ffmpeg_content.cc:566
#: src/lib/ffmpeg_content.cc:584 src/lib/ffmpeg_content.cc:586
#: src/lib/ffmpeg_content.cc:587 src/lib/ffmpeg_content.cc:613
#: src/lib/ffmpeg_content.cc:615 src/lib/ffmpeg_content.cc:616
#: src/lib/ffmpeg_content.cc:640 src/lib/ffmpeg_content.cc:641
msgid "Unspecified"
msgstr "Não especificado"
#: src/lib/colour_conversion.cc:240
msgid "Untitled"
msgstr "Sem título"
#: src/lib/util.cc:555 src/lib/util.cc:556
msgid "Unused"
msgstr "Não utilizado"
#: src/lib/upmixer_a.cc:127 src/lib/upmixer_b.cc:137
msgid "Upmix L"
msgstr "Combinar E"
#: src/lib/upmixer_a.cc:128 src/lib/upmixer_b.cc:138
msgid "Upmix R"
msgstr "Combinar D"
#: src/lib/util.cc:579
msgid "VI"
msgstr "DV"
#: src/lib/verify_dcp_job.cc:47
msgid "Verify DCP"
msgstr ""
#: src/lib/filter.cc:67
msgid "Vertical flip"
msgstr ""
#: src/lib/util.cc:548
msgid "Visually impaired"
msgstr "Deficientes Visuais"
#: src/lib/upload_job.cc:44
msgid "Waiting"
msgstr "A aguardar"
#: src/lib/filter.cc:75
#, fuzzy
msgid "Weave filter"
msgstr "Filtro de telecinema"
#: src/lib/util.cc:912
msgid "Wednesday"
msgstr "Quarta-feira"
#: src/lib/ffmpeg_content.cc:646
msgid "YCOCG"
msgstr "YCOCG"
# It's a filter name, has no translation to portuguese.
#: src/lib/filter.cc:73
msgid "Yet Another Deinterlacing Filter"
msgstr "Yet Another Deinterlacing Filter"
#: src/lib/hints.cc:176
msgid ""
"You are set up for a DCP at a frame rate of %1 fps. This frame rate is not "
"supported by all projectors. You are advised to change the DCP frame rate "
"to %2 fps."
msgstr ""
#: src/lib/hints.cc:160
msgid ""
"You are set up for a DCP at a frame rate of %1 fps. This frame rate is not "
"supported by all projectors. You may want to consider changing your frame "
"rate to %2 fps."
msgstr ""
#: src/lib/hints.cc:170
msgid ""
"You are set up for a DCP frame rate of 30fps, which is not supported by all "
"projectors. Be aware that you may have compatibility problems."
msgstr ""
#: src/lib/hints.cc:223
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:119
msgid ""
"You are using DCP-o-matic's stereo-to-5.1 upmixer. This is experimental and "
"may result in poor-quality audio. If you continue, you should listen to the "
"resulting DCP in a cinema to make sure that it sounds good."
msgstr ""
#: src/lib/hints.cc:212
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:325
msgid ""
"You have overlapping closed captions, which are not allowed in Interop "
"DCPs. Change your DCP standard to SMPTE."
msgstr ""
#: src/lib/hints.cc:110
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:356
#, fuzzy
msgid "You must add some content to the DCP before creating it"
msgstr "Deve adicionar algum conteúdo ao DCP antes de o criar"
#: src/lib/hints.cc:114
msgid ""
"Your DCP has fewer than 6 audio channels. This may cause problems on some "
"projectors. You may want to set the DCP to have 6 channels. It does not "
"matter if your content has fewer channels, as DCP-o-matic will fill the "
"extras with silence."
msgstr ""
#: src/lib/hints.cc:146
msgid ""
"Your DCP uses an unusual container ratio. This may cause problems on some "
"projectors. If possible, use Flat or Scope for the DCP container ratio"
msgstr ""
#: src/lib/hints.cc:248
msgid ""
"Your audio level is very high (on %1). You should reduce the gain of your "
"audio content."
msgstr ""
#: src/lib/config.cc:304
msgid ""
"Your default container is not valid and has been changed to Flat (1.85:1)"
msgstr ""
#: src/lib/playlist.cc:218
msgid ""
"Your project contains video content that was not aligned to a frame boundary."
msgstr ""
#: src/lib/playlist.cc:238
msgid ""
"Your project contains video content whose trim was not aligned to a frame "
"boundary."
msgstr ""
#: src/lib/image_content.cc:72
msgid "[moving images]"
msgstr "[moving images]"
#: src/lib/image_content.cc:70
msgid "[still]"
msgstr "[still]"
#: src/lib/dcp_subtitle_content.cc:103 src/lib/string_text_file_content.cc:70
msgid "[subtitles]"
msgstr "[subtitles]"
#. / TRANSLATORS: _reel%1 here is to be added to an export filename to indicate
#. / which reel it is. Preserve the %1; it will be replaced with the reel number.
#: src/lib/ffmpeg_encoder.cc:74 src/lib/subtitle_encoder.cc:63
msgid "_reel%1"
msgstr ""
#: src/lib/dcpomatic_socket.cc:73
msgid "connect timed out"
msgstr "Ligação expirou"
#: src/lib/uploader.cc:35
msgid "connecting"
msgstr "A ligar"
#: src/lib/film.cc:352
msgid "container"
msgstr "contentor"
#: src/lib/film.cc:364
msgid "content type"
msgstr "tipo de conteúdo"
#: src/lib/uploader.cc:73
msgid "copying %1"
msgstr "a copiar %1"
#: src/lib/ffmpeg.cc:142 src/lib/ffmpeg_image_proxy.cc:158
msgid "could not find stream information"
msgstr "não foi possível encontrar a informação do fluxo"
#: src/lib/reel_writer.cc:357
msgid "could not move audio asset into the DCP (%1)"
msgstr "não foi possível enviar o áudio para o DCP (%1)"
#: src/lib/exceptions.cc:35
#, fuzzy
msgid "could not open file %1 for read (%2)"
msgstr "não foi possível abrir o ficheiro para leitura"
#: src/lib/exceptions.cc:34
#, fuzzy
msgid "could not open file %1 for read/write (%2)"
msgstr "não foi possível abrir o ficheiro para leitura"
#: src/lib/exceptions.cc:35
#, fuzzy
msgid "could not open file %1 for write (%2)"
msgstr "não foi possível abrir o ficheiro para leitura"
#: src/lib/exceptions.cc:52
msgid "could not read from file %1 (%2)"
msgstr "não foi possível ler do ficheiro %1 (%2)"
#: src/lib/scp_uploader.cc:66
msgid "could not start SCP session (%1)"
msgstr "não foi possível iniciar a sessão SCP (%1)"
#: src/lib/scp_uploader.cc:41
msgid "could not start SSH session"
msgstr "não foi possível iniciar a sessão SSH"
#: src/lib/exceptions.cc:58
msgid "could not write to file %1 (%2)"
msgstr "não foi possível escrever para o ficheiro %1 (%2)"
#: src/lib/dcpomatic_socket.cc:69
msgid "error during async_connect (%1)"
msgstr "erro durante conexão assíncrona (%1)"
#: src/lib/dcpomatic_socket.cc:126
msgid "error during async_read (%1)"
msgstr "erro durante leitura assíncrona (%1)"
#: src/lib/dcpomatic_socket.cc:94
msgid "error during async_write (%1)"
msgstr "erro durante escrita assíncrona (%1)"
#: src/lib/content.cc:445 src/lib/content.cc:454
msgid "frames per second"
msgstr "fotogramas por segundo"
#. / TRANSLATORS: h here is an abbreviation for hours
#: src/lib/util.cc:189
msgid "h"
msgstr "h"
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:706
#, fuzzy
msgid "it does not have closed captions in all its reels."
msgstr "Não há nenhuma bobina de audio no DCP"
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:701
#, fuzzy
msgid "it does not have open subtitles in all its reels."
msgstr "Não há nenhuma bobina de legendas no DCP"
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:669
#, fuzzy
msgid "it does not have sound in all its reels."
msgstr "Não há nenhuma bobina de audio no DCP"
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:573
msgid "it has a different frame rate to the film."
msgstr ""
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:630
msgid "it is 2K and the film is 4K."
msgstr ""
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:627
msgid "it is 4K and the film is 2K."
msgstr ""
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:561
msgid "it is Interop and the film is set to SMPTE."
msgstr ""
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:565
msgid "it is SMPTE and the film is set to Interop."
msgstr ""
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:675
#, fuzzy
msgid "it overlaps other audio content; remove the other content."
msgstr "Existe outro conteúdo áudio sobreposto a este DCP; remova-o."
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:712
#, fuzzy
msgid "it overlaps other text content; remove the other content."
msgstr "Existe outro conteúdo video sobreposto a este DCP; remova-o."
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:640
#, fuzzy
msgid "it overlaps other video content; remove the other content."
msgstr "Existe outro conteúdo video sobreposto a este DCP; remova-o."
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:596
#, fuzzy
msgid ""
"its reel lengths differ from those in the film; set the reel mode to 'split "
"by video content'."
msgstr ""
"Duração das bobinas do projecto diferente do DCP; defina o parâmetro "
"'Bobinas' para 'Dividir por conteúdo de vídeo'."
#. / TRANSLATORS: this string will follow "Cannot reference this DCP: "
#: src/lib/dcp_content.cc:635
msgid "its video frame size differs from the film's."
msgstr ""
#. / TRANSLATORS: m here is an abbreviation for minutes
#: src/lib/util.cc:198
msgid "m"
msgstr "m"
#: src/lib/image_content.cc:87
msgid "moving"
msgstr "a mover"
#: src/lib/film.cc:348
msgid "name"
msgstr "nome"
#. / TRANSLATORS: s here is an abbreviation for seconds
#: src/lib/util.cc:208
msgid "s"
msgstr "s"
#: src/lib/colour_conversion.cc:281
msgid "sRGB"
msgstr "sRGB"
#: src/lib/film.cc:373
msgid "some of your content is missing"
msgstr ""
#: src/lib/image_content.cc:85
msgid "still"
msgstr "imagem estática"
#: src/lib/ffmpeg_examiner.cc:264
msgid "unknown"
msgstr "desconhecido"
#: src/lib/video_content.cc:481
msgid "video frames"
msgstr "fotogramas de vídeo"
#, fuzzy
#~ msgid "Could not write whole file"
#~ msgstr "Não foi possível escrever para o ficheiro remoto (%1)"
#, fuzzy
#~ msgid "Could not decode image file %1 (%2)"
#~ msgstr "Não foi possível descodificar a imagem (%1)"
#, fuzzy
#~ msgid "it overlaps other subtitle content; remove the other content."
#~ msgstr "Existem outro conteúdo de legendas sobreposto a este DCP; remova-o."
#~ msgid "Could not find pixel format for video."
#~ msgstr "não foi possível encontrar o formato do pixel para o vídeo"
#~ msgid "16:9"
#~ msgstr "16:9"
#~ msgid "4:3"
#~ msgstr "4:3"
#~ msgid "Finding length and subtitles"
#~ msgstr "À procura de duração e legendas"
#~ msgid "remaining"
#~ msgstr "restante"
#~ msgid ""
#~ "The KDM does not decrypt the DCP. Perhaps it is targeted at the wrong "
#~ "CPL."
#~ msgstr "A chave KDM não desencripta o DCP. Deve ter como alvo o CPL errado."
#~ msgid "could not create file %1"
#~ msgstr "não foi possível criar o ficheiro %1"
#~ msgid "could not open file %1"
#~ msgstr "não foi possível abrir o ficheiro %1"
#~ msgid "Computing audio digest"
#~ msgstr "A processar o resumo de áudio"
#~ msgid "fps"
#~ msgstr "fps"
#~ msgid "frames"
#~ msgstr "fotogramas"
#~ msgid "Audio"
#~ msgstr "Áudio"
#~ msgid "Encoding image data"
#~ msgstr "A codificar dados de imagem"
#~ msgid "Video"
#~ msgstr "Vídeo"
#~ msgid "could not open audio file for reading"
#~ msgstr "não foi possível abrir o ficheiro de áudio para leitura"
#~ msgid "SubRip subtitles"
#~ msgstr "Legendas SubRip"
#~ msgid "Video length"
#~ msgstr "Duração do vídeo"
#~ msgid "Video size"
#~ msgstr "Tamanho do vídeo"
#~ msgid "could not read from file"
#~ msgstr "não foi possível ler o ficheiro"
#, fuzzy
#~ msgid "NC"
#~ msgstr "C"
#~ msgid "KDM delivery"
#~ msgstr "Envio de chaves KDM"
#~ msgid "multi-part subtitles not yet supported"
#~ msgstr "as legendas multi-partes ainda não são suportadas"
#~ msgid "There was not enough memory to do this."
#~ msgstr "Il n'y avait pas assez de mémoire pour faire cela."
#~ msgid "could not run sample-rate converter"
#~ msgstr "conversion de la fréquence d'échantillonnage impossible"
#~ msgid "could not run sample-rate converter for %1 samples (%2) (%3)"
#~ msgstr ""
#~ "n'a pas pu convertir la fréquence d'échantillonnage pour %1 échantillons "
#~ "(%2) (%3)"
#~ msgid "1.375"
#~ msgstr "1.375"
#~ msgid "Area"
#~ msgstr "Surface"
#~ msgid "Bicubic"
#~ msgstr "Bicubique"
#~ msgid "Content to be joined must use the same audio stream."
#~ msgstr "Le contenu à ajouter doit avoir le même flux audio"
#~ msgid "Fast Bilinear"
#~ msgstr "Bilinéaire rapide"
#~ msgid "Gaussian"
#~ msgstr "Gaussien"
#~ msgid "Lanczos"
#~ msgstr "Lanczos"
#~ msgid "Sinc"
#~ msgstr "Sinc"
#~ msgid "Spline"
#~ msgstr "Spline"
#~ msgid "X"
#~ msgstr "X"
#~ msgid "could not read encoded data"
#~ msgstr "lecture des données encodées impossible"
#~ msgid "error during async_accept (%1)"
#~ msgstr "erreur pendant async_accept (%1)"
#~ msgid "%1 channels, %2kHz, %3 samples"
#~ msgstr "%1 canaux, %2kHz, %3 échantillons"
#~ msgid "%1 frames; %2 frames per second"
#~ msgstr "%1 images ; %2 images par seconde"
#~ msgid "%1x%2 pixels (%3:1)"
#~ msgstr "%1x%2 pixels (%3:1)"
#~ msgid "missing key %1 in key-value set"
#~ msgstr "clé %1 manquante dans le réglage"
#~ msgid "sRGB non-linearised"
#~ msgstr "sRGB non linéarisé"
#~ msgid ""
#~ "It is not known what caused this error. Please report the problem to the "
#~ "DCP-o-matic author (carl@dcpomatic.com)."
#~ msgstr ""
#~ "Erreur indéterminée. Merci de rapporter le problème à l'auteur de DCP-o-"
#~ "matic (carl@dcpomatic.com)"
#~ msgid "hour"
#~ msgstr "heure"
#~ msgid "hours"
#~ msgstr "heures"
#~ msgid "minute"
#~ msgstr "minute"
#~ msgid "minutes"
#~ msgstr "minutes"
#, fuzzy
#~ msgid "second"
#~ msgstr "secondes"
#~ msgid "seconds"
#~ msgstr "secondes"
#~ msgid "could not find audio decoder"
#~ msgstr "décodeur audio introuvable"
#~ msgid "could not find video decoder"
#~ msgstr "décodeur vidéo introuvable"
#~ msgid "non-bitmap subtitles not yet supported"
#~ msgstr "sous-titres non-bitmap non supportés actuellement"
#~ msgid "Could not read DCP to make KDM for"
#~ msgstr "DCP illisible pour fabrication de KDM"
#~ msgid "Cubic interpolating deinterlacer"
#~ msgstr "Désentrelacement cubique interpolé"
#~ msgid "De-blocking"
#~ msgstr "De-bloc"
#~ msgid "Deringing filter"
#~ msgstr "Filtre anti bourdonnement"
#~ msgid "Experimental horizontal deblocking filter 1"
#~ msgstr "Filtre dé-bloc horizontal 1"
#~ msgid "Experimental vertical deblocking filter 1"
#~ msgstr "Filtre dé-bloc vertical 1"
#~ msgid "FFMPEG deinterlacer"
#~ msgstr "Désentrelaceur FFMPEG"
#~ msgid "FIR low-pass deinterlacer"
#~ msgstr "Désentrelaceur passe-bas FIR"
#~ msgid "Force quantizer"
#~ msgstr "Forcer la quantification"
#~ msgid "Horizontal deblocking filter A"
#~ msgstr "Filtre dé-bloc horizontal"
#~ msgid "Linear blend deinterlacer"
#~ msgstr "Désentrelaceur par mélange interpolé"
#~ msgid "Linear interpolating deinterlacer"
#~ msgstr "Désentrelaceur linéaire interpolé"
#~ msgid "Median deinterlacer"
#~ msgstr "Désentrelaceur médian"
#~ msgid "Temporal noise reducer"
#~ msgstr "Réduction de bruit temporel"
#~ msgid "Vertical deblocking filter"
#~ msgstr "Filtre dé-bloc vertical"
#~ msgid "Vertical deblocking filter A"
#~ msgstr "Filtre dé-bloc vertical A"
#~ msgid "0%"
#~ msgstr "0%"
#~ msgid "first frame in moving image directory is number %1"
#~ msgstr "la première image dans le dossier est la numéro %1"
#~ msgid "there are %1 images in the directory but the last one is number %2"
#~ msgstr "il y a %1 images dans le dossier mais la dernière est la numéro %2"
#~ msgid "only %1 file(s) found in moving image directory"
#~ msgstr "Seulement %1 fichier(s) trouvé(s) dans le dossier de diaporama"
#~ msgid "Could not find DCP to make KDM for"
#~ msgstr "DCP introuvable pour fabrication de KDM"
#~ msgid "More than one possible DCP to make KDM for"
#~ msgstr "Il y a plusieurs DCP pour lesquels faire la KDM"
#~ msgid "hashing"
#~ msgstr "calcul du hash"
#~ msgid "Image: %1"
#~ msgstr "Image : %1"
#~ msgid "Movie: %1"
#~ msgstr "Film : %1"
#~ msgid "Sound file: %1"
#~ msgstr "Fichier son : %1"
#~ msgid "1.66 within Flat"
#~ msgstr "1.66 dans Flat"
#~ msgid "16:9 within Flat"
#~ msgstr "16:9 dans Flat"
#, fuzzy
#~ msgid "16:9 within Scope"
#~ msgstr "16:9 dans Scope"
#~ msgid "4:3 within Flat"
#~ msgstr "4:3 dans Flat"
#~ msgid "A/B transcode %1"
#~ msgstr "Transcodage A/B %1"
#~ msgid "Cannot resample audio as libswresample is not present"
#~ msgstr "Ré-échantillonnage du son impossible : libswresample est absent"
#~ msgid "Examine content of %1"
#~ msgstr "Examen du contenu de %1"
#~ msgid "Scope without stretch"
#~ msgstr "Scope sans déformation"
#~ msgid "could not open external audio file for reading"
#~ msgstr "lecture du fichier audio externe impossible"
#~ msgid "external audio files have differing lengths"
#~ msgstr "Les fichiers audio externes ont des durées différentes"
#~ msgid "external audio files must be mono"
#~ msgstr "les fichiers audio externes doivent être en mono"
#~ msgid "format"
#~ msgstr "format"
#~ msgid "no still image files found"
#~ msgstr "aucune image fixe trouvée"
#~ msgid "1.33"
#~ msgstr "1.33"
#~ msgid "Source scaled to 1.19:1"
#~ msgstr "Source mise à l'échelle en 1.19:1"
#~ msgid "Source scaled to 1.33:1"
#~ msgstr "Source mise à l'échelle en 1.33:1"
#~ msgid "Source scaled to 1.33:1 then pillarboxed to Flat"
#~ msgstr "Source mise à l'échelle en 1.33:1 puis contenue dans Flat"
#~ msgid "Source scaled to 1.375:1"
#~ msgstr "Source mise à l'échelle en 1.375:1"
#~ msgid "Source scaled to 1.37:1 (Academy ratio)"
#~ msgstr "Source mise à l'échelle en 1.37:1 (ratio \"academy\")"
#~ msgid "Source scaled to 1.66:1"
#~ msgstr "Source mise à l'échelle en 1.66:1"
#~ msgid "Source scaled to 1.66:1 then pillarboxed to Flat"
#~ msgstr "Source mise à l'échelle en 1.66:1 puis contenue dans Flat"
#~ msgid "Source scaled to 1.78:1"
#~ msgstr "Source mise à l'échelle en 1.78:1"
#~ msgid "Source scaled to 1.78:1 then pillarboxed to Flat"
#~ msgstr "Source mise à l'échelle en 1.78:1 puis contenue dans Flat"
#~ msgid "Source scaled to Flat (1.85:1)"
#~ msgstr "Source mise à l'échelle en Flat (1.85:1)"
#~ msgid "Source scaled to Scope (2.39:1)"
#~ msgstr "Source mise à l'échelle en Scope (2.39:1)"
#~ msgid "Source scaled to fit Flat preserving its aspect ratio"
#~ msgstr "Source réduite en Flat afin de préserver ses dimensions"
#~ msgid "Source scaled to fit Scope preserving its aspect ratio"
#~ msgstr "Source réduite en Scope afin de préserver ses dimensions"
#~ msgid "adding to queue of %1"
#~ msgstr "Mise en file d'attente de %1"
#~ msgid "decoder sleeps with queue of %1"
#~ msgstr "décodeur en veille avec %1 en file d'attente"
#~ msgid "decoder wakes with queue of %1"
#~ msgstr "reprise du décodage avec %1 en file d'attente"
|