summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Properties/Resources.resx
blob: eeb82a190c44a1034c195657ac53504d55fe4f57 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!-- 
    Microsoft ResX Schema 
    
    Version 2.0
    
    The primary goals of this format is to allow a simple XML format 
    that is mostly human readable. The generation and parsing of the 
    various data types are done through the TypeConverter classes 
    associated with the data types.
    
    Example:
    
    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>
                
    There are any number of "resheader" rows that contain simple 
    name/value pairs.
    
    Each data row contains a name, and value. The row also contains a 
    type or mimetype. Type corresponds to a .NET class that support 
    text/value conversion through the TypeConverter architecture. 
    Classes that don't support this are serialized and stored with the 
    mimetype set.
    
    The mimetype is used for serialized objects, and tells the 
    ResXResourceReader how to depersist the object. This is currently not 
    extensible. For a given mimetype the value must be set accordingly:
    
    Note - application/x-microsoft.net.object.binary.base64 is the format 
    that the ResXResourceWriter will generate, however the reader can 
    read any of the formats listed below.
    
    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.
    
    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array 
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" use="required" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <data name="Video_EncoderExtraArgs" xml:space="preserve">
    <value>The full list of encoder parameters: 
{0}</value>
  </data>
  <data name="Video_x264FastDecode" xml:space="preserve">
    <value>Reduce decoder CPU usage.

Set this if your device is struggling to play the output. (i.e. dropped frames)</value>
  </data>
  <data name="Video_LosslessWarning" xml:space="preserve">
    <value>Warning: RF 0 is Lossless!</value>
  </data>
  <data name="Video_LosslessWarningTooltip" xml:space="preserve">
    <value>A value of 0 means lossless and will result in a file size that is larger than the original source, 
unless the source was also lossless. 

x264 and x265's scale is logarithmic and lower values correspond to higher quality. 

So small increases in value will result in progressively larger increases in the resulting file size.</value>
  </data>
  <data name="AddPreset_PictureSizeMode" xml:space="preserve">
    <value>You can optionally store a picture settings with this preset. There are 3 modes:

None:  Picture settings are not stored in the preset. When loading a source, they will remain as-is within the bounds of the source resolution. This also affects Anamorphic, modulus, cropping etc.

Custom: You can optionally set a Maximum width and Height. When doing this an encode will be less than or equal to these values. Keep Aspect Ratio will be automatically turned on.

Source Maximum:  Always encode at the sources resolution where possible.</value>
  </data>
  <data name="About_GPL" xml:space="preserve">
    <value>Copyright (C) 2003-2019 The HandBrake Team

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.</value>
  </data>
  <data name="QueueSelection_AutoNameWarning" xml:space="preserve">
    <value>WARNING: You do not have automatic file naming turned on. Please enable this in options.</value>
  </data>
  <data name="QueueSelection_AutoTrackSelectionWarning" xml:space="preserve">
    <value>WARNING: You do not currently have automatic audio and subtitle track selection setup. You can setup the default track selection behaviour in options.</value>
  </data>
  <data name="Presets_ResetComplete" xml:space="preserve">
    <value>The Built-in presets have been reset.</value>
  </data>
  <data name="Presets_ResetHeader" xml:space="preserve">
    <value>Reset Complete</value>
  </data>
  <data name="Video_HigherQuality" xml:space="preserve">
    <value>Higher Quality |</value>
  </data>
  <data name="Video_LowQuality" xml:space="preserve">
    <value>| Lower Quality</value>
  </data>
  <data name="Video_PlaceboQuality" xml:space="preserve">
    <value>Placebo Quality |</value>
  </data>
  <data name="Error" xml:space="preserve">
    <value>Error</value>
  </data>
  <data name="Main_AutoAdd_AudioAndSubWarning" xml:space="preserve">
    <value>Warning: If you wish to have subtitles added to each item you are about to queue, please verify that you have the subtitle defaults setup correctly on the subtitles tab.
    
Do you wish to continue?</value>
  </data>
  <data name="Main_TurnOnAutoFileNaming" xml:space="preserve">
    <value>You must turn on automatic file naming AND set a default path in preferences before you can add to the queue.</value>
  </data>
  <data name="Warning" xml:space="preserve">
    <value>Warning</value>
  </data>
  <data name="AreYouSure" xml:space="preserve">
    <value>Are you sure?</value>
  </data>
  <data name="HandBrake_Title" xml:space="preserve">
    <value>HandBrake</value>
  </data>
  <data name="Main_AlreadyEncoding" xml:space="preserve">
    <value>HandBrake is already encoding.</value>
  </data>
  <data name="Main_DuplicateDestinationOnQueue" xml:space="preserve">
    <value>There are jobs on the queue with the same destination path. Please choose a different path for this job.</value>
  </data>
  <data name="Main_JobsPending_addon" xml:space="preserve">
    <value>   Pending Jobs {0}</value>
  </data>
  <data name="Main_NewDefaultPreset" xml:space="preserve">
    <value>New Default Preset Set: {0}</value>
  </data>
  <data name="Main_NewUpdate" xml:space="preserve">
    <value>A New Update is Available. Goto Tools Menu &gt; Options to Install</value>
  </data>
  <data name="Main_NoPresetSelected" xml:space="preserve">
    <value>No Preset selected.</value>
  </data>
  <data name="Main_NoUpdateOfBuiltInPresets" xml:space="preserve">
    <value>You can not modify built in presets. Please select one of your own presets.</value>
  </data>
  <data name="Main_PleaseSelectFolder" xml:space="preserve">
    <value>Please select a folder.</value>
  </data>
  <data name="Main_PreparingToEncode" xml:space="preserve">
    <value>Preparing to encode ...</value>
  </data>
  <data name="Main_PresetErrorBuiltInName" xml:space="preserve">
    <value>You can not import a preset with the same name as a built-in preset.</value>
  </data>
  <data name="Main_PresetOverwriteWarning" xml:space="preserve">
    <value>The preset "{0}" already exists. Would you like to overwrite it?</value>
  </data>
  <data name="Main_Presets" xml:space="preserve">
    <value>Presets</value>
  </data>
  <data name="Main_PresetUpdateConfrimation" xml:space="preserve">
    <value>Are you sure you wish to update the selected preset?</value>
  </data>
  <data name="Main_PresetUpdated" xml:space="preserve">
    <value>The Preset has now been updated with your current settings.</value>
  </data>
  <data name="Main_PresetUpdateNotification" xml:space="preserve">
    <value>HandBrake has determined your built-in presets are out of date... These presets will now be updated.
Your custom presets have not been updated so you may have to re-create these by deleting and re-adding them. 
The previous user_presets.xml file was backed up.</value>
  </data>
  <data name="Main_QueueFinished" xml:space="preserve">
    <value>Queue Finished</value>
  </data>
  <data name="Main_ScanCancelled" xml:space="preserve">
    <value>Scan Cancelled.</value>
  </data>
  <data name="Main_ScanCompleted" xml:space="preserve">
    <value>Scan Completed</value>
  </data>
  <data name="Main_ScanFailed_NoReason" xml:space="preserve">
    <value>Scan failed: </value>
  </data>
  <data name="Main_ScanFailled_CheckLog" xml:space="preserve">
    <value>Scan Failed... Please See Activity Log for details.</value>
  </data>
  <data name="Main_ScanningPleaseWait" xml:space="preserve">
    <value>Scanning source, please wait...</value>
  </data>
  <data name="Main_ScanningTitleXOfY" xml:space="preserve">
    <value>Scanning Title {0} of {1} ({2}%)</value>
  </data>
  <data name="Main_ScanSource" xml:space="preserve">
    <value>You must first scan a source and setup your job before starting an encode. Click the 'Source' button on the toolbar to continue.</value>
  </data>
  <data name="Main_SelectPreset" xml:space="preserve">
    <value>Please make sure you have selected one of your own presets. Please note that you cannot export built-in presets.</value>
  </data>
  <data name="Main_SelectPresetForUpdate" xml:space="preserve">
    <value>Please select a preset to update.</value>
  </data>
  <data name="Main_SelectSource" xml:space="preserve">
    <value>Select 'Source' to continue</value>
  </data>
  <data name="Main_XEncodesPending" xml:space="preserve">
    <value>{0} Jobs Pending</value>
  </data>
  <data name="Notice" xml:space="preserve">
    <value>Notice</value>
  </data>
  <data name="Overwrite" xml:space="preserve">
    <value>Overwrite?</value>
  </data>
  <data name="Question" xml:space="preserve">
    <value>Question</value>
  </data>
  <data name="State_Ready" xml:space="preserve">
    <value>Ready</value>
  </data>
  <data name="Updated" xml:space="preserve">
    <value>Updated</value>
  </data>
  <data name="Preset_OldVersion_Header" xml:space="preserve">
    <value>Preset Version</value>
  </data>
  <data name="Preset_OldVersion_Message" xml:space="preserve">
    <value>The preset you are trying to import is from a different version of HandBrake. 
 It may not be possible to import all the values from this preset. 

Do you wish to proceed?</value>
  </data>
  <data name="Preset_UnableToImport_Header" xml:space="preserve">
    <value>Unable to import preset!</value>
  </data>
  <data name="Preset_UnableToImport_Message" xml:space="preserve">
    <value>Unable to import the preset as it appears to be corrupted or from an older version of HandBrake.</value>
  </data>
  <data name="Main_SetDestination" xml:space="preserve">
    <value>You must first set the destination path for the output file before adding to the queue.</value>
  </data>
  <data name="Main_InvalidDestination" xml:space="preserve">
    <value>The entered destination path contained illegal characters and will not be updated.</value>
  </data>
  <data name="Preview" xml:space="preserve">
    <value>Preview {0}</value>
  </data>
  <data name="Preview_Scaled" xml:space="preserve">
    <value>Preview (Scaled)</value>
  </data>
  <data name="PictureSettings_OutputResolution" xml:space="preserve">
    <value>Output: {0}</value>
  </data>
  <data name="Options_AdditionalFormatOptions" xml:space="preserve">
    <value>The format of the output file. In addition to any supported file system character, you can use the following placeholders that will be replaced when you change title or scan a source.

Live Update Options: {source} {title} {chapters} 
Non-Live Options: {date} {time} {creation-date} {creation-time} {quality} {bitrate} (These only change if you scan a new source, change title or chapters)</value>
  </data>
  <data name="Options_DefaultPathAdditionalParams" xml:space="preserve">
    <value>Available additional Options: {source_path} or {source_folder_name} or {source}</value>
  </data>
  <data name="Main_MatchingFileOverwriteWarning" xml:space="preserve">
    <value>You cannot encode to a file with the same path and filename as the source file. Please update the destination filename so that it does not match the source file.</value>
  </data>
  <data name="Main_UnableToLoadHelpMessage" xml:space="preserve">
    <value>Your system prevented HandBrake from launching a web browser.</value>
  </data>
  <data name="Main_UnableToLoadHelpSolution" xml:space="preserve">
    <value>You can still access the help pages by visiting the website directly at: https://handbrake.fr</value>
  </data>
  <data name="Main_PresetImportFailed" xml:space="preserve">
    <value>Unable to import the selected preset.</value>
  </data>
  <data name="Main_PresetImportFailedSolution" xml:space="preserve">
    <value>The preset may be corrupted or from an older version of HandBrake which is not supported. 
Presets from older versions must be re-created in the current version.</value>
  </data>
  <data name="Video_EncoderExtraArgsTooltip" xml:space="preserve">
    <value>Additional advanced arguments that can be passed to the video encoder.</value>
  </data>
  <data name="Subtitles_BurnInBehaviourModes" xml:space="preserve">
    <value>None - Only tracks where the container does not support the format will be burned in.
Foreign Audio Track - The Foreign Audio track will be burned in if available. 
First Track - The first track will be burned in.
Foreign Audio Preferred, else First - If the foreign audio track exists, it will be burned in, otherwise the first track will be chosen.</value>
  </data>
  <data name="Subtitles_WebmSubtitleIncompatibilityHeader" xml:space="preserve">
    <value>WebM Subtitle Compatibility</value>
  </data>
  <data name="Subtitles_WebmSubtitleIncompatibilityError" xml:space="preserve">
    <value>WebM in HandBrake only supports burned subtitles.

You should change your subtitle selections.

If you continue, your non-burned subtitles will be lost.</value>
  </data>
  <data name="Main_ScanNoTitlesFound" xml:space="preserve">
    <value>No valid source or titles found.</value>
  </data>
  <data name="Main_ScanNoTitlesFoundMessage" xml:space="preserve">
    <value>HandBrake will not be able to encode the selected source as it did not find a valid source with titles to encode. 
This could be due to one of the following reasons:
- The duration of each source title is below the "Minimum Title Duration" threshold option in 'Preferences &gt; Advanced'. 
- The source file is not a valid video file or is in a format that HandBrake does not support.
- The source may be copy protected or include DRM. Please note that HandBrake does not support the removal of copy protections.

The Activity log may have further information.</value>
  </data>
  <data name="Main_QueueLabel" xml:space="preserve">
    <value>Queue{0}</value>
  </data>
  <data name="Main_Start" xml:space="preserve">
    <value>Start Encode</value>
  </data>
  <data name="Main_StartQueue" xml:space="preserve">
    <value>Start Queue</value>
  </data>
  <data name="MainViewModel_CanNotDeleteDefaultPreset" xml:space="preserve">
    <value>You can not delete the default preset. Please set another preset as default first.</value>
  </data>
  <data name="MainViewModel_PresetRemove_AreYouSure" xml:space="preserve">
    <value>Are you sure you want to delete the preset: </value>
  </data>
  <data name="MainViewModel_EncodeStatusChanged_StatusLabel" xml:space="preserve">
    <value>Encoding: Pass {0} of {1},  {2:00.00}%, FPS: {3:000.0},  Avg FPS: {4:000.0},  Time Remaining: {5},  Elapsed: {6} {7}</value>
  </data>
  <data name="AddPresetViewModel_PresetMustProvideName" xml:space="preserve">
    <value>A Preset must have a Name. Please fill out the Preset Name field.</value>
  </data>
  <data name="AddPresetViewModel_PresetWithSameNameOverwriteWarning" xml:space="preserve">
    <value>A Preset with this name already exists. Would you like to overwrite it?</value>
  </data>
  <data name="AddPresetViewModel_YouMustFirstScanSource" xml:space="preserve">
    <value>You must first scan a source to use the 'Source Maximum' Option.</value>
  </data>
  <data name="AddPresetViewModel_CustomWidthHeightFieldsRequired" xml:space="preserve">
    <value>The Custom Width or Height fields must be filled in for the 'Custom' option.</value>
  </data>
  <data name="AddPresetViewModel_UnableToAddPreset" xml:space="preserve">
    <value>Unable to add preset</value>
  </data>
  <data name="UnknownError" xml:space="preserve">
    <value>Unknown Error</value>
  </data>
  <data name="AudioViewModel_AudioDefaults" xml:space="preserve">
    <value>Audio Defaults</value>
  </data>
  <data name="AudioViewModel_AudioTracks" xml:space="preserve">
    <value>Audio Tracks</value>
  </data>
  <data name="AudioViewModel_ConfigureDefaults" xml:space="preserve">
    <value>Selection Behavior</value>
  </data>
  <data name="AudioViewModel_SwitchBackToTracks" xml:space="preserve">
    <value>Switch Back To Tracks</value>
  </data>
  <data name="ChaptersViewModel_UnableToExportChaptersWarning" xml:space="preserve">
    <value>Unable to save Chapter Markers file! </value>
  </data>
  <data name="ChaptersViewModel_UnableToExportChaptersMsg" xml:space="preserve">
    <value>Chapter marker names will NOT be saved in your encode.</value>
  </data>
  <data name="CountdownAlertViewModel_NoticeMessage" xml:space="preserve">
    <value>The following action '{0}' will occur in {1} seconds.</value>
  </data>
  <data name="ErrorViewModel_IfTheProblemPersists" xml:space="preserve">
    <value>If the problem presists, please try restarting HandBrake.</value>
  </data>
  <data name="ErrorViewModel_NoFurtherInformation" xml:space="preserve">
    <value>There is no further information available about this error.</value>
  </data>
  <data name="ErrorViewModel_UnknownError" xml:space="preserve">
    <value>An Unknown Error has occurred.</value>
  </data>
  <data name="OptionsViewModel_NewUpdate" xml:space="preserve">
    <value>A New Update is Available! Please check the website for release notes.</value>
  </data>
  <data name="OptionsViewModel_64bitAvailable" xml:space="preserve">
    <value>Your system supports the 64bit version of HandBrake! This offers performance and stability improvements over this 32bit version.
    Please check the website for release notes.</value>
  </data>
  <data name="OptionsViewModel_NoNewUpdates" xml:space="preserve">
    <value>There are no new updates at this time.</value>
  </data>
  <data name="OptionsViewModel_UpdateDownloaded" xml:space="preserve">
    <value>Update Downloaded</value>
  </data>
  <data name="OptionsViewModel_UpdateServiceUnavailable" xml:space="preserve">
    <value>Update Service Unavailable. You can try downloading the update from https://handbrake.fr</value>
  </data>
  <data name="OptionsViewModel_UpdateFailed" xml:space="preserve">
    <value>Update Failed. You can try downloading the update from https://handbrake.fr</value>
  </data>
  <data name="PictureSettingsViewModel_StorageDisplayLabel" xml:space="preserve">
    <value>Display Size: {0}x{1},  PAR {2}x{3}</value>
  </data>
  <data name="QueueSelectionViewModel_AddToQueue" xml:space="preserve">
    <value>Add to Queue</value>
  </data>
  <data name="QueueViewModel_NoEncodesPending" xml:space="preserve">
    <value>No encodes pending</value>
  </data>
  <data name="QueueViewModel_NoJobsPending" xml:space="preserve">
    <value>There are no jobs currently encoding</value>
  </data>
  <data name="QueueViewModel_Queue" xml:space="preserve">
    <value>Queue</value>
  </data>
  <data name="QueueViewModel_ClearQueueConfrimation" xml:space="preserve">
    <value>Are you sure you wish to clear the queue?</value>
  </data>
  <data name="Confirm" xml:space="preserve">
    <value>Confirm</value>
  </data>
  <data name="QueueViewModel_JobsPending" xml:space="preserve">
    <value>{0} jobs pending</value>
  </data>
  <data name="QueueViewModel_QueuePending" xml:space="preserve">
    <value>Queue Paused</value>
  </data>
  <data name="QueueViewModel_QueuePauseNotice" xml:space="preserve">
    <value>The Queue has been paused. The currently running job will run to completion and no further jobs will start.</value>
  </data>
  <data name="QueueViewModel_DelSelectedJobConfirmation" xml:space="preserve">
    <value>Are you sure you want to delete the selected jobs?</value>
  </data>
  <data name="QueueViewModel_JobCurrentlyRunningWarning" xml:space="preserve">
    <value>This encode is currently in progress. If you delete it, the encode will be stopped. Are you sure you wish to proceed?</value>
  </data>
  <data name="QueueViewModel_NoPendingJobs" xml:space="preserve">
    <value>There are no pending jobs.</value>
  </data>
  <data name="QueueViewModel_EditConfrimation" xml:space="preserve">
    <value>Are you sure you wish to edit this job? It will be removed from the queue and sent to the main window.</value>
  </data>
  <data name="QueueViewModel_QueueReady" xml:space="preserve">
    <value>Queue Ready</value>
  </data>
  <data name="QueueViewModel_QueueNotRunning" xml:space="preserve">
    <value>Queue Not Running</value>
  </data>
  <data name="QueueViewModel_QueueCompleted" xml:space="preserve">
    <value>Queue Completed</value>
  </data>
  <data name="QueueViewModel_LastJobFinished" xml:space="preserve">
    <value>Last Queued Job Finished</value>
  </data>
  <data name="QueueViewModel_QueueStarted" xml:space="preserve">
    <value>Queue Started</value>
  </data>
  <data name="QueueViewModel_QueueStatusDisplay" xml:space="preserve">
    <value>Encoding: Pass {0} of {1},  {2:00.00}%, FPS: {3:000.0},  Avg FPS: {4:000.0},  Time Remaining: {5},  Elapsed: {6:d\:hh\:mm\:ss}</value>
  </data>
  <data name="ShellViewModel_CanClose" xml:space="preserve">
    <value>An Encode is currently running. Exiting HandBrake will stop this encode.
Are you sure you wish to exit HandBrake?</value>
  </data>
  <data name="StaticPreviewViewModel_Title" xml:space="preserve">
    <value>Picture Preview</value>
  </data>
  <data name="StaticPreview_UnableToDeletePreview" xml:space="preserve">
    <value>Unable to delete previous preview file. You may need to restart the application.</value>
  </data>
  <data name="StaticPreviewViewModel_ScanFirst" xml:space="preserve">
    <value>You must first scan a source and setup your encode before creating a preview.</value>
  </data>
  <data name="StaticPreviewViewModel_UnableToFindVLC" xml:space="preserve">
    <value>Unable to detect VLC Player. 
Please make sure VLC is installed and the directory specified in HandBrake's options is correct. (See: "Tools Menu &gt; Preferences &gt; General")</value>
  </data>
  <data name="StaticPreviewViewModel_UnableToPlayFile" xml:space="preserve">
    <value>Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details.</value>
  </data>
  <data name="StaticPreviewViewModel_AlreadyEncoding" xml:space="preserve">
    <value>Handbrake is already encoding a video! Only one file can be encoded at any one time.</value>
  </data>
  <data name="SubtitlesViewModel_SubDefaults" xml:space="preserve">
    <value>Subtitle Defaults</value>
  </data>
  <data name="SubtitlesViewModel_SubTracks" xml:space="preserve">
    <value>Subtitle Tracks</value>
  </data>
  <data name="SubtitlesViewModel_SwitchToTracks" xml:space="preserve">
    <value>Switch Back To Tracks</value>
  </data>
  <data name="SubtitlesViewModel_ConfigureDefaults" xml:space="preserve">
    <value>Selection Behavior</value>
  </data>
  <data name="PresetService_ArchiveFile" xml:space="preserve">
    <value>Archived File:</value>
  </data>
  <data name="PresetService_UnableToLoad" xml:space="preserve">
    <value>Unable to load presets.</value>
  </data>
  <data name="PresetService_UnableToLoadPresets" xml:space="preserve">
    <value>HandBrake was unable to load your presets file. It may have been from an older unsupported version of HandBrake or corrupted. 

Your old presets file was archived to:</value>
  </data>
  <data name="Main_QueueFinishedErrors" xml:space="preserve">
    <value> with {0} errors or cancellations detected.</value>
  </data>
  <data name="MainViewModel_LowDiskSpace" xml:space="preserve">
    <value>Low Disk Space</value>
  </data>
  <data name="MainViewModel_LowDiskSpaceWarning" xml:space="preserve">
    <value>Warning, you are running low on disk space. HandBrake will not be able to complete this encode if you run out of space. </value>
  </data>
  <data name="ChaptersViewModel_UnableToImportChaptersMalformedLineMsg" xml:space="preserve">
    <value>Line {0} is invalid. Nothing will be imported.</value>
  </data>
  <data name="ChaptersViewModel_UnableToImportChaptersWarning" xml:space="preserve">
    <value>Unable to import chapter file</value>
  </data>
  <data name="ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns" xml:space="preserve">
    <value>All lines in chapters file must have at least 2 columns of data</value>
  </data>
  <data name="ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber" xml:space="preserve">
    <value>First column in chapters file must only contain a integer number value higher than zero (0)</value>
  </data>
  <data name="ChaptersViewModel_UnsupportedFileFormatMsg" xml:space="preserve">
    <value>Chapter files of type '{0}' are not currently supported.</value>
  </data>
  <data name="ChaptersViewModel_UnsupportedFileFormatWarning" xml:space="preserve">
    <value>Unsupported chapter file type</value>
  </data>
  <data name="ChaptersViewModel_ValidationFailedWarning" xml:space="preserve">
    <value>Invalid chapter information for source media</value>
  </data>
  <data name="ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch" xml:space="preserve">
    <value>The number of chapters on the source media 
and the number of chapters in the input file do not match ({0} vs {1}).

Do you still want to import the chapter names?</value>
  </data>
  <data name="ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg" xml:space="preserve">
    <value>The number of chapters on the source media 
and the number of chapters in the input file do not match ({0} vs {1}).

Do you still want to import the chapter names?</value>
  </data>
  <data name="ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning" xml:space="preserve">
    <value>Chapter count doesn't match between source and input file</value>
  </data>
  <data name="ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg" xml:space="preserve">
    <value>The reported duration of the chapters on the source media 
and the duration of chapters in the input file differ greatly.

It is very likely that this chapter file was produced from a different source media.

Are you sure you want to import the chapter names?</value>
  </data>
  <data name="ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning" xml:space="preserve">
    <value>Chapter duration doesn't match between source and input file</value>
  </data>
  <data name="ScanService_ScanStopFailed" xml:space="preserve">
    <value>An error occurred when trying to stop the scan. Please restart HandBrake.</value>
  </data>
  <data name="Presets_PresetForceReset" xml:space="preserve">
    <value>HandBrake is unable to upgrade your presets file to a new version format.
Your preset file will be archived and new one created. You will need to re-create your own presets.</value>
  </data>
  <data name="SettingService_SaveErrorReset" xml:space="preserve">
    <value>Any settings you changed may need to be reset the next time HandBrake launches.</value>
  </data>
  <data name="UserSettings_AnErrorOccured" xml:space="preserve">
    <value>A problem occurred when trying to save your preferences.</value>
  </data>
  <data name="UserSettings_YourSettingsHaveBeenReset" xml:space="preserve">
    <value>Warning, your settings have been reset!</value>
  </data>
  <data name="UserSettings_YourSettingsAreCorrupt" xml:space="preserve">
    <value>Your user settings file was corrupted or inaccessible. Settings have been reset to defaults.</value>
  </data>
  <data name="UserSettings_UnableToLoad" xml:space="preserve">
    <value>Unable to load user settings file: {0}</value>
  </data>
  <data name="UserSettings_UnableToLoadSolution" xml:space="preserve">
    <value>Your user settings file appears to be inaccessible or corrupted. You may have to delete the file and let HandBrake generate a new one.</value>
  </data>
  <data name="Main_NoPermissionsOrMissingDirectory" xml:space="preserve">
    <value>The output directory you have chosen either does not exist, or you do not have permissions to write files to it.</value>
  </data>
  <data name="DirectoryUtils_CreateFolder" xml:space="preserve">
    <value>Create Folder?</value>
  </data>
  <data name="DirectoryUtils_CreateFolderMsg" xml:space="preserve">
    <value>The folder you are trying to write to does not exist. Would you like HandBrake to create the following folder?
{0}</value>
  </data>
  <data name="MainViewModel_UnableToLaunchDestDir" xml:space="preserve">
    <value>Unable to launch destination directory.</value>
  </data>
  <data name="MainViewModel_UnableToLaunchDestDirSolution" xml:space="preserve">
    <value>Please check that you have a valid destination directory.</value>
  </data>
  <data name="MainViewModel_EncodeStatusChanged_SubScan_StatusLabel" xml:space="preserve">
    <value>Processing Pass {0} of {1}, (Subtitle Scan)  {2:00.00}%, Scan Time Remaining: {3},  Elapsed: {4}</value>
  </data>
  <data name="NoAdditionalInformation" xml:space="preserve">
    <value>No Additional Information</value>
  </data>
  <data name="WindowTitleStatus" xml:space="preserve">
    <value>{0} - ({1}%, Pass {2} of {3})</value>
  </data>
  <data name="TaskTrayStatusTitle" xml:space="preserve">
    <value>{1}%, Pass {2} of {3}
Remaining Time: {4}</value>
  </data>
  <data name="PauseOnLowDiskspace" xml:space="preserve">
    <value>Queue Paused.  Warning, the drive you are encoding to is low on disk space. Please free up some space and press start to continue. You can also adjust the minimum space level in preferences.</value>
  </data>
  <data name="Main_QueuePaused" xml:space="preserve">
    <value>Queue Paused</value>
  </data>
  <data name="QueueViewModel_QueuePaused" xml:space="preserve">
    <value>Queue Paused</value>
  </data>
  <data name="Main_LowDiskspace" xml:space="preserve">
    <value>Your destination directory is low on diskspace. 

You can configure the level at which this alert appears in preferences. 

Do you wish to continue? </value>
  </data>
  <data name="Queue_UnableToResetJob" xml:space="preserve">
    <value>Unable to reset job status as it is not in an Error or Completed state</value>
  </data>
  <data name="Queue_UnableToRestoreFile" xml:space="preserve">
    <value>Unable to restore queue file.</value>
  </data>
  <data name="Queue_UnableToRestoreFileExtended" xml:space="preserve">
    <value>The file may be corrupted or from an older incompatible version of HandBrake</value>
  </data>
  <data name="Queue_AlreadyEncoding" xml:space="preserve">
    <value>HandBrake is already encoding a file.</value>
  </data>
  <data name="Queue_AlreadyEncodingSolution" xml:space="preserve">
    <value>Please stop the current encode. If the problem persists, please restart HandBrake.</value>
  </data>
  <data name="MiniViewModel_EncodeStatusChanged_StatusLabel" xml:space="preserve">
    <value>Encoding: Pass {0} of {1},  {2:00.00}%
FPS: {3:000.0},  Avg FPS: {4:000.0}
Time Remaining: {5},  Elapsed: {6:d\:hh\:mm\:ss}</value>
  </data>
  <data name="StaticPreviewView_Title" xml:space="preserve">
    <value>Preview ({0}% actual size)</value>
  </data>
  <data name="OsBitnessWarning" xml:space="preserve">
    <value>HandBrake requires a 64bit version of Windows 7 or later to run.</value>
  </data>
  <data name="OsVersionWarning" xml:space="preserve">
    <value>HandBrake requires Windows 7 or later to run. Version 0.9.9 (XP) and 0.10.5 (Vista) was the last version to support these versions.</value>
  </data>
  <data name="Main_ContinueAddingToQueue" xml:space="preserve">
    <value>Do you wish to proceed trying to add the rest?</value>
  </data>
  <data name="Main_QueueOverwritePrompt" xml:space="preserve">
    <value>The file '{0}' already exists!
Would you like to overwrite it?</value>
  </data>
  <data name="Clipboard_Unavailable" xml:space="preserve">
    <value>The system clipboard is currently unavailable.</value>
  </data>
  <data name="Clipboard_Unavailable_Solution" xml:space="preserve">
    <value>This may be due to another application monitoring or locking the clipboard for its own use. You will not be able to use the clipboard until it is unlocked.</value>
  </data>
  <data name="AboutView_License" xml:space="preserve">
    <value>License: </value>
  </data>
  <data name="AboutView_Version" xml:space="preserve">
    <value>Version: </value>
  </data>
  <data name="AddPresetView_AddNewCategory" xml:space="preserve">
    <value>-- Add New Category --</value>
  </data>
  <data name="AddPresetView_AddPreset" xml:space="preserve">
    <value>Add Preset</value>
  </data>
  <data name="AddPresetView_Category" xml:space="preserve">
    <value>Category:</value>
  </data>
  <data name="AddPresetView_Description" xml:space="preserve">
    <value>Description:</value>
  </data>
  <data name="AddPresetView_Name" xml:space="preserve">
    <value>Name:</value>
  </data>
  <data name="AddPresetView_SavePictureSize" xml:space="preserve">
    <value>Dimensions:</value>
  </data>
  <data name="AudioDefaultView_Behaviours" xml:space="preserve">
    <value>Source Track Selection</value>
  </data>
  <data name="AudioView_AllowPassThruOf" xml:space="preserve">
    <value>Allow passthru of:</value>
  </data>
  <data name="AudioView_AudioDefaultsDescription" xml:space="preserve">
    <value>Configure how the Audio Tracks are automatically selected and configured when you select a new title or source video.</value>
  </data>
  <data name="AudioView_AutoPassthruBehaviour" xml:space="preserve">
    <value>'Auto Passthru' Behaviour:</value>
  </data>
  <data name="AudioView_Bitrate" xml:space="preserve">
    <value>Bitrate</value>
  </data>
  <data name="AudioView_Codec" xml:space="preserve">
    <value>Codec</value>
  </data>
  <data name="AudioView_DRC" xml:space="preserve">
    <value>DRC</value>
  </data>
  <data name="AudioView_Gain" xml:space="preserve">
    <value>Gain</value>
  </data>
  <data name="AudioView_Hide" xml:space="preserve">
    <value>Hide</value>
  </data>
  <data name="AudioView_Mixdown" xml:space="preserve">
    <value>Mixdown</value>
  </data>
  <data name="AudioView_OtherwiseFallbackEncoder" xml:space="preserve">
    <value>Fallback encoder:</value>
  </data>
  <data name="AudioView_ReloadDefaults" xml:space="preserve">
    <value>Reload</value>
  </data>
  <data name="AudioView_Samplerate" xml:space="preserve">
    <value>Samplerate</value>
  </data>
  <data name="AudioView_Show" xml:space="preserve">
    <value>Show</value>
  </data>
  <data name="AudioView_TrackName" xml:space="preserve">
    <value>Track Name</value>
  </data>
  <data name="AudioView_TrackSelectionBehaviour" xml:space="preserve">
    <value>Track Selection Behaviour:</value>
  </data>
  <data name="AudioView_TrackSettingDefaultBehaviour" xml:space="preserve">
    <value>For Additional Tracks:</value>
  </data>
  <data name="AudioView_WhenAutoPassthru" xml:space="preserve">
    <value>When 'Auto Passthru' is selected as the audio codec.</value>
  </data>
  <data name="ChaptersView_ChapterMarkers" xml:space="preserve">
    <value>Chapter Markers</value>
  </data>
  <data name="ChaptersView_ChapterName" xml:space="preserve">
    <value>Chapter Name</value>
  </data>
  <data name="ChaptersView_ChapterNumber" xml:space="preserve">
    <value>Chapter Number</value>
  </data>
  <data name="ChaptersView_CreateChapterMarkers" xml:space="preserve">
    <value>Create chapter markers</value>
  </data>
  <data name="ChaptersView_Duration" xml:space="preserve">
    <value>Duration</value>
  </data>
  <data name="ChaptersView_Export" xml:space="preserve">
    <value>Export</value>
  </data>
  <data name="ChaptersView_Import" xml:space="preserve">
    <value>Import</value>
  </data>
  <data name="ChapterView_ExportNames" xml:space="preserve">
    <value>Export Names</value>
  </data>
  <data name="ChapterView_ImportNames" xml:space="preserve">
    <value>Import Names</value>
  </data>
  <data name="ChapterView_ResetChapterNames" xml:space="preserve">
    <value>Reset Chapter Names</value>
  </data>
  <data name="CountdownAlterView_CancelAction" xml:space="preserve">
    <value>Cancel Action</value>
  </data>
  <data name="CountdownAlterView_Proceed" xml:space="preserve">
    <value>Proceed</value>
  </data>
  <data name="CountdownAlterView_WhenDoneAction" xml:space="preserve">
    <value>When Done Action</value>
  </data>
  <data name="ErrorView_ErrorDetails" xml:space="preserve">
    <value>Error Details:</value>
  </data>
  <data name="FiltersView_Custom" xml:space="preserve">
    <value>Custom:</value>
  </data>
  <data name="FiltersView_Deblock" xml:space="preserve">
    <value>Deblock</value>
  </data>
  <data name="FiltersView_Decomb" xml:space="preserve">
    <value>Decomb</value>
  </data>
  <data name="FiltersView_Deinterlace" xml:space="preserve">
    <value>Deinterlace:</value>
  </data>
  <data name="FiltersView_DeinterlacePreset" xml:space="preserve">
    <value>Preset:</value>
  </data>
  <data name="FiltersView_DeinterlacePresetAuto" xml:space="preserve">
    <value>Deinterlace Preset</value>
  </data>
  <data name="FiltersView_Denoise" xml:space="preserve">
    <value>Denoise:</value>
  </data>
  <data name="FiltersView_DenoisePresetAuto" xml:space="preserve">
    <value>Denoise Preset</value>
  </data>
  <data name="FiltersView_DenoiseTuneAuto" xml:space="preserve">
    <value>Denoise Tune</value>
  </data>
  <data name="FiltersView_Detelecine" xml:space="preserve">
    <value>Detelecine:</value>
  </data>
  <data name="FiltersView_Filters" xml:space="preserve">
    <value>Filters</value>
  </data>
  <data name="FiltersView_FlipVideo" xml:space="preserve">
    <value>Flip</value>
  </data>
  <data name="FiltersView_Grayscale" xml:space="preserve">
    <value>Grayscale</value>
  </data>
  <data name="FiltersView_InterlaceDetection" xml:space="preserve">
    <value>Interlace Detection:</value>
  </data>
  <data name="FiltersView_Preset" xml:space="preserve">
    <value>Preset:</value>
  </data>
  <data name="FiltersView_Rotate" xml:space="preserve">
    <value>Rotate:</value>
  </data>
  <data name="FiltersView_Sharpen" xml:space="preserve">
    <value>Sharpen</value>
  </data>
  <data name="FiltersView_SharpenPresetAuto" xml:space="preserve">
    <value>Sharpen Preset</value>
  </data>
  <data name="FiltersView_SharpenTuneAuto" xml:space="preserve">
    <value>Sharpen Tune</value>
  </data>
  <data name="FiltersView_Tune" xml:space="preserve">
    <value>Tune:</value>
  </data>
  <data name="Generic_Add" xml:space="preserve">
    <value>Add</value>
  </data>
  <data name="Generic_Cancel" xml:space="preserve">
    <value>Cancel</value>
  </data>
  <data name="Generic_Clear" xml:space="preserve">
    <value>Clear</value>
  </data>
  <data name="Generic_Close" xml:space="preserve">
    <value>Close</value>
  </data>
  <data name="Generic_CopyToClipboard" xml:space="preserve">
    <value>Copy to Clipboard</value>
  </data>
  <data name="Generic_MoveLeft" xml:space="preserve">
    <value>Move Left</value>
  </data>
  <data name="Generic_MoveRight" xml:space="preserve">
    <value>Move Right</value>
  </data>
  <data name="Generic_Save" xml:space="preserve">
    <value>Save</value>
  </data>
  <data name="LogView_CopyClipboard" xml:space="preserve">
    <value>Copy to clipboard</value>
  </data>
  <data name="LogView_EncodeLog" xml:space="preserve">
    <value>Encode Log</value>
  </data>
  <data name="LogView_OpenLogDir" xml:space="preserve">
    <value>Open Log Directory</value>
  </data>
  <data name="LogView_ScanLog" xml:space="preserve">
    <value>ScanLog</value>
  </data>
  <data name="MainView_ActivityLog" xml:space="preserve">
    <value>Activity Log</value>
  </data>
  <data name="MainView_AddAll" xml:space="preserve">
    <value>Add All</value>
  </data>
  <data name="MainView_AddCurrent" xml:space="preserve">
    <value>Add Current</value>
  </data>
  <data name="MainView_AddSelection" xml:space="preserve">
    <value>Add Selection</value>
  </data>
  <data name="MainView_AddToQueue" xml:space="preserve">
    <value>Add to Queue</value>
  </data>
  <data name="MainView_AdvancedTab" xml:space="preserve">
    <value>Advanced</value>
  </data>
  <data name="MainView_AlignAVStart" xml:space="preserve">
    <value>Align A/V Start</value>
  </data>
  <data name="MainView_Angle" xml:space="preserve">
    <value>Angle: </value>
  </data>
  <data name="MainView_AudioTab" xml:space="preserve">
    <value>Audio</value>
  </data>
  <data name="MainView_AudioTrackCount" xml:space="preserve">
    <value>Audio Tracks</value>
  </data>
  <data name="MainView_Browser" xml:space="preserve">
    <value>Browse</value>
  </data>
  <data name="MainView_ChaptersTab" xml:space="preserve">
    <value>Chapters</value>
  </data>
  <data name="MainView_Container" xml:space="preserve">
    <value>Container</value>
  </data>
  <data name="MainView_Destination" xml:space="preserve">
    <value>Destination</value>
  </data>
  <data name="MainView_Duration" xml:space="preserve">
    <value>Duration: </value>
  </data>
  <data name="MainView_File" xml:space="preserve">
    <value>Save As:</value>
  </data>
  <data name="MainView_FiltersTab" xml:space="preserve">
    <value>Filters</value>
  </data>
  <data name="MainView_Format" xml:space="preserve">
    <value>Format:</value>
  </data>
  <data name="MainView_Help" xml:space="preserve">
    <value>Help</value>
  </data>
  <data name="MainView_iPod5G" xml:space="preserve">
    <value>iPod 5G Support</value>
  </data>
  <data name="MainView_MetaDataTab" xml:space="preserve">
    <value>Metadata</value>
  </data>
  <data name="MainView_ModifiedPreset" xml:space="preserve">
    <value>(Modified)</value>
  </data>
  <data name="MainView_Muxing" xml:space="preserve">
    <value>Muxing: This may take a while...</value>
  </data>
  <data name="MainView_Options" xml:space="preserve">
    <value>Options</value>
  </data>
  <data name="MainView_OutputSettings" xml:space="preserve">
    <value>Output Settings</value>
  </data>
  <data name="MainView_Pause" xml:space="preserve">
    <value>Pause</value>
  </data>
  <data name="MainView_PictureTab" xml:space="preserve">
    <value>Dimensions</value>
  </data>
  <data name="MainView_PresetManage" xml:space="preserve">
    <value>Rename Preset</value>
  </data>
  <data name="MainView_PresetOptionsContextMenu" xml:space="preserve">
    <value>Preset Options Context Menu</value>
  </data>
  <data name="MainView_PresetRemove" xml:space="preserve">
    <value>Delete Preset</value>
  </data>
  <data name="MainView_Presets" xml:space="preserve">
    <value>Preset:</value>
  </data>
  <data name="MainView_Preview" xml:space="preserve">
    <value>Preview</value>
  </data>
  <data name="MainView_ProgressStatusWithTask" xml:space="preserve">
    <value>Encoding: {0}, {1:00.00}%, Time Remaining: {2}, {3}</value>
  </data>
  <data name="MainView_Range" xml:space="preserve">
    <value>Range:</value>
  </data>
  <data name="MainView_Reload" xml:space="preserve">
    <value>Reload</value>
  </data>
  <data name="MainView_Remove" xml:space="preserve">
    <value>Remove</value>
  </data>
  <data name="MainView_ResetBuiltInPresets" xml:space="preserve">
    <value>Reset Built-in Presets</value>
  </data>
  <data name="MainView_SaveNewPreset" xml:space="preserve">
    <value>Save New Preset</value>
  </data>
  <data name="MainView_Searching" xml:space="preserve">
    <value>Searching for start time</value>
  </data>
  <data name="MainView_SelectedPreset" xml:space="preserve">
    <value>Selected Preset:</value>
  </data>
  <data name="MainView_SetDefault" xml:space="preserve">
    <value>Set Default</value>
  </data>
  <data name="MainView_ShowPreview" xml:space="preserve">
    <value>Preview</value>
  </data>
  <data name="MainView_ShowQueue" xml:space="preserve">
    <value>Queue</value>
  </data>
  <data name="MainView_Source" xml:space="preserve">
    <value>Source:</value>
  </data>
  <data name="MainView_SourceOpen" xml:space="preserve">
    <value>Open Source</value>
  </data>
  <data name="MainView_StartEncode" xml:space="preserve">
    <value>Start Encode</value>
  </data>
  <data name="MainView_StartQueue" xml:space="preserve">
    <value>Start Queue</value>
  </data>
  <data name="MainView_Stop" xml:space="preserve">
    <value>Stop</value>
  </data>
  <data name="MainView_StopEncode" xml:space="preserve">
    <value>Stop Encode</value>
  </data>
  <data name="MainView_StopEncodeConfirm" xml:space="preserve">
    <value>Are you sure you wish to stop this encode?</value>
  </data>
  <data name="MainView_SubtitleBeforeScanError" xml:space="preserve">
    <value>Please choose a source to encode before trying to import a subtitle file.</value>
  </data>
  <data name="MainView_SubtitlesTab" xml:space="preserve">
    <value>Subtitles</value>
  </data>
  <data name="MainView_SubtitleTracksCount" xml:space="preserve">
    <value>Subtitle Tracks</value>
  </data>
  <data name="MainView_SummaryTab" xml:space="preserve">
    <value>Summary</value>
  </data>
  <data name="MainView_through" xml:space="preserve">
    <value> - </value>
  </data>
  <data name="MainView_Title" xml:space="preserve">
    <value>Title: </value>
  </data>
  <data name="MainView_UpdateSelectedPreset" xml:space="preserve">
    <value>Update Selected Preset</value>
  </data>
  <data name="MainView_VideoTab" xml:space="preserve">
    <value>Video</value>
  </data>
  <data name="MainView_WebOptimized" xml:space="preserve">
    <value>Web Optimized</value>
  </data>
  <data name="ManagePresetView_ManagePreset" xml:space="preserve">
    <value>Manage Preset</value>
  </data>
  <data name="MetaDataView_Title" xml:space="preserve">
    <value>Metadata</value>
  </data>
  <data name="OptionsView_EnableNvencEncoding" xml:space="preserve">
    <value>Allow use of the Nvidia NVENC Encoders</value>
  </data>
  <data name="OptionsView_EnableQuicksyncEncoding" xml:space="preserve">
    <value>Allow use of the Intel QuickSync Encoders</value>
  </data>
  <data name="OptionsView_EnableVceEncoding" xml:space="preserve">
    <value>Allow use of the AMD VCE Encoders</value>
  </data>
  <data name="OptionsView_InvalidFileFormatChars" xml:space="preserve">
    <value>The file format entered contained invalid characters. These have been removed. </value>
  </data>
  <data name="OptionsView_PlaySoundWhenDone" xml:space="preserve">
    <value>Play a sound when each encode completes</value>
  </data>
  <data name="OptionsView_PlaySoundWhenQueueDone" xml:space="preserve">
    <value>Play a sound when the queue completes</value>
  </data>
  <data name="OptionsView_ShowPreviewOnSummaryTab" xml:space="preserve">
    <value>Show previews on summary tab.</value>
  </data>
  <data name="OptionsView_ShowStatusInTitleBar" xml:space="preserve">
    <value>Show the encode status in the application title bar.</value>
  </data>
  <data name="Options_30DayLogClear" xml:space="preserve">
    <value>Clear Log files older than 30 days</value>
  </data>
  <data name="Options_About" xml:space="preserve">
    <value>About HandBrake</value>
  </data>
  <data name="Options_Advanced" xml:space="preserve">
    <value>Advanced</value>
  </data>
  <data name="Options_AdvancedOptions" xml:space="preserve">
    <value>Advanced Options</value>
  </data>
  <data name="Options_Arguments" xml:space="preserve">
    <value>Arguments:</value>
  </data>
  <data name="Options_AutomaticFileNaming" xml:space="preserve">
    <value>Automatic File Naming</value>
  </data>
  <data name="Options_AutoNameOutput" xml:space="preserve">
    <value>Automatically name output files</value>
  </data>
  <data name="Options_CheckForUpdates" xml:space="preserve">
    <value>Check for Updates</value>
  </data>
  <data name="Options_ClearCompleted" xml:space="preserve">
    <value>Always clear completed queue items after an encode completes</value>
  </data>
  <data name="Options_ClearLogs" xml:space="preserve">
    <value>Clear Log History</value>
  </data>
  <data name="Options_CopyLogToDir" xml:space="preserve">
    <value>Put a copy of individual encode logs in a specified location:</value>
  </data>
  <data name="Options_CopyLogToEncDir" xml:space="preserve">
    <value>Put a copy of individual encode logs in the same location as the encoded video</value>
  </data>
  <data name="Options_CurVersion" xml:space="preserve">
    <value>Current Version</value>
  </data>
  <data name="Options_Decoding" xml:space="preserve">
    <value>Decoding</value>
  </data>
  <data name="Options_DefaultPath" xml:space="preserve">
    <value>Default Path:</value>
  </data>
  <data name="Options_DownloadUpdates" xml:space="preserve">
    <value>Download Update</value>
  </data>
  <data name="Options_DVD" xml:space="preserve">
    <value>DVD Reading</value>
  </data>
  <data name="Options_DvdRead" xml:space="preserve">
    <value>Disable LibDVDNav. (libdvdread will be used instead)</value>
  </data>
  <data name="Options_Encoding" xml:space="preserve">
    <value>Encoding</value>
  </data>
  <data name="Options_Format" xml:space="preserve">
    <value>File Format:</value>
  </data>
  <data name="Options_General" xml:space="preserve">
    <value>General</value>
  </data>
  <data name="Options_Logging" xml:space="preserve">
    <value>Logging</value>
  </data>
  <data name="Options_LogLevel" xml:space="preserve">
    <value>Log Verbosity Level:</value>
  </data>
  <data name="Options_LogPath" xml:space="preserve">
    <value>Log Path:</value>
  </data>
  <data name="Options_LowDiskspaceSize" xml:space="preserve">
    <value>Pause queue if disk space is low</value>
  </data>
  <data name="Options_MinimiseTray" xml:space="preserve">
    <value>Minimize to system tray (Requires Restart)</value>
  </data>
  <data name="Options_MinTitleScanLength" xml:space="preserve">
    <value>Minimum DVD and Blu-ray title duration in seconds. Shorter titles will be skipped:</value>
  </data>
  <data name="Options_MP4FileExtension" xml:space="preserve">
    <value>MP4 File Extension:</value>
  </data>
  <data name="Options_OnStartup" xml:space="preserve">
    <value>On Startup</value>
  </data>
  <data name="Options_Output" xml:space="preserve">
    <value>Output Files</value>
  </data>
  <data name="Options_Path" xml:space="preserve">
    <value>Path: </value>
  </data>
  <data name="Options_PathToVLC" xml:space="preserve">
    <value>Path to VLC Player</value>
  </data>
  <data name="Options_PreventSleep" xml:space="preserve">
    <value>Prevent the system from sleeping while encoding</value>
  </data>
  <data name="Options_PreviewScanCount" xml:space="preserve">
    <value>Number of picture previews to scan:</value>
  </data>
  <data name="Options_PriorityLevel" xml:space="preserve">
    <value>Priority Level:</value>
  </data>
  <data name="Options_QsvDecode" xml:space="preserve">
    <value>Prefer use of Intel QuickSync for decoding video when available. </value>
  </data>
  <data name="Options_QsvDecodeForNonFullPath" xml:space="preserve">
    <value>Also Use QSV Decoding when not using a QuickSync encoder. (i.e. x265) </value>
  </data>
  <data name="Options_RemovePunctuation" xml:space="preserve">
    <value>Remove common punctuation</value>
  </data>
  <data name="Options_ReplaceUnderscores" xml:space="preserve">
    <value>Replace underscores with a space</value>
  </data>
  <data name="Options_ResetDoNothing" xml:space="preserve">
    <value>Reset to 'Do nothing' when the app is re-launched.</value>
  </data>
  <data name="Options_Scaler" xml:space="preserve">
    <value>Choose Scaler:</value>
  </data>
  <data name="Options_Scaling" xml:space="preserve">
    <value>Scaling</value>
  </data>
  <data name="Options_SendFileTo" xml:space="preserve">
    <value>Send file to:</value>
  </data>
  <data name="Options_ShowExperimentalQueueDesign" xml:space="preserve">
    <value>Show the new experimental queue design.</value>
  </data>
  <data name="Options_TitleCase" xml:space="preserve">
    <value>Change case to Title Case</value>
  </data>
  <data name="Options_Updates" xml:space="preserve">
    <value>Updates</value>
  </data>
  <data name="Options_UserInterface" xml:space="preserve">
    <value>User Interface</value>
  </data>
  <data name="Options_Version" xml:space="preserve">
    <value>Version:</value>
  </data>
  <data name="Options_Video" xml:space="preserve">
    <value>Video</value>
  </data>
  <data name="Options_VideoPreviewPath" xml:space="preserve">
    <value>This path is used for the video preview feature only.</value>
  </data>
  <data name="Options_ViewLogDirectory" xml:space="preserve">
    <value>View Log Directory</value>
  </data>
  <data name="Options_WhenDone" xml:space="preserve">
    <value>When Done</value>
  </data>
  <data name="Options_x264" xml:space="preserve">
    <value>x264/5 Settings</value>
  </data>
  <data name="Options_x264Granularity" xml:space="preserve">
    <value>Constant quality fractional granularity:</value>
  </data>
  <data name="PictureSettingsView_Anamorphic" xml:space="preserve">
    <value>Anamorphic:</value>
  </data>
  <data name="PictureSettingsView_Automatic" xml:space="preserve">
    <value>Automatic</value>
  </data>
  <data name="PictureSettingsView_Bottom" xml:space="preserve">
    <value>Bottom</value>
  </data>
  <data name="PictureSettingsView_Cropping" xml:space="preserve">
    <value>Cropping</value>
  </data>
  <data name="PictureSettingsView_Custom" xml:space="preserve">
    <value>Custom</value>
  </data>
  <data name="PictureSettingsView_DisplayWitdh" xml:space="preserve">
    <value>Display Width:</value>
  </data>
  <data name="PictureSettingsView_Height" xml:space="preserve">
    <value>Height:</value>
  </data>
  <data name="PictureSettingsView_KeepAR" xml:space="preserve">
    <value>Keep Aspect Ratio</value>
  </data>
  <data name="PictureSettingsView_Left" xml:space="preserve">
    <value>Left</value>
  </data>
  <data name="PictureSettingsView_Modulus" xml:space="preserve">
    <value>Modulus:</value>
  </data>
  <data name="PictureSettingsView_Output" xml:space="preserve">
    <value>Output</value>
  </data>
  <data name="PictureSettingsView_PAR" xml:space="preserve">
    <value>PAR:</value>
  </data>
  <data name="PictureSettingsView_Right" xml:space="preserve">
    <value>Right</value>
  </data>
  <data name="PictureSettingsView_Size" xml:space="preserve">
    <value>Size</value>
  </data>
  <data name="PictureSettingsView_Source" xml:space="preserve">
    <value>Source:</value>
  </data>
  <data name="PictureSettingsView_Top" xml:space="preserve">
    <value>Top</value>
  </data>
  <data name="PictureSettingsView_Width" xml:space="preserve">
    <value>Width:</value>
  </data>
  <data name="Preset_Custom" xml:space="preserve">
    <value>Custom</value>
  </data>
  <data name="Preset_Export" xml:space="preserve">
    <value>Export to file</value>
  </data>
  <data name="Preset_Import" xml:space="preserve">
    <value>Import from file</value>
  </data>
  <data name="Preset_Official" xml:space="preserve">
    <value>Official</value>
  </data>
  <data name="QueueSelectionView_ChooseTitles" xml:space="preserve">
    <value>Choose titles:</value>
  </data>
  <data name="QueueSelectionView_Title" xml:space="preserve">
    <value>Add to Queue</value>
  </data>
  <data name="QueueSelection_UsingPreset" xml:space="preserve">
    <value>The selected titles will be added using the  "{0}"  preset.</value>
  </data>
  <data name="QueueView_Advanced" xml:space="preserve">
    <value>Advanced:</value>
  </data>
  <data name="QueueView_Audio" xml:space="preserve">
    <value>Audio:</value>
  </data>
  <data name="QueueView_ClearAll" xml:space="preserve">
    <value>Clear All</value>
  </data>
  <data name="QueueView_ClearCompleted" xml:space="preserve">
    <value>Clear Completed</value>
  </data>
  <data name="QueueView_ClearQueue" xml:space="preserve">
    <value>Clear Queue</value>
  </data>
  <data name="QueueView_ClearSelected" xml:space="preserve">
    <value>Clear Selected</value>
  </data>
  <data name="QueueView_Delete" xml:space="preserve">
    <value>Delete</value>
  </data>
  <data name="QueueView_Destination" xml:space="preserve">
    <value>Destination:</value>
  </data>
  <data name="WhenDone_DoNothing" xml:space="preserve">
    <value>Do nothing</value>
  </data>
  <data name="QueueView_Duration" xml:space="preserve">
    <value>Encode Time:</value>
  </data>
  <data name="QueueView_Edit" xml:space="preserve">
    <value>Edit</value>
  </data>
  <data name="QueueView_EndTime" xml:space="preserve">
    <value>End Time:</value>
  </data>
  <data name="QueueView_Export" xml:space="preserve">
    <value>Export Queue</value>
  </data>
  <data name="QueueView_FileSize" xml:space="preserve">
    <value>Filesize: </value>
  </data>
  <data name="WhenDone_Hibernate" xml:space="preserve">
    <value>Hibernate</value>
  </data>
  <data name="WhenDone_LockSystem" xml:space="preserve">
    <value>Lock System</value>
  </data>
  <data name="QueueView_LogNotAvailableYet" xml:space="preserve">
    <value>The log will be available after the encode completes.</value>
  </data>
  <data name="WhenDone_Logoff" xml:space="preserve">
    <value>Log off</value>
  </data>
  <data name="QueueView_OpenDestDir" xml:space="preserve">
    <value>Open Destination Directory</value>
  </data>
  <data name="QueueView_OpenSourceDir" xml:space="preserve">
    <value>Open Source Directory</value>
  </data>
  <data name="QueueView_Options" xml:space="preserve">
    <value>Options</value>
  </data>
  <data name="QueueView_Pause" xml:space="preserve">
    <value>Pause Queue</value>
  </data>
  <data name="QueueView_PausedDuration" xml:space="preserve">
    <value>Paused Duration:</value>
  </data>
  <data name="QueueView_PictureSettings" xml:space="preserve">
    <value>Picture Settings:</value>
  </data>
  <data name="WhenDone_QuitHandBrake" xml:space="preserve">
    <value>Quit HandBrake</value>
  </data>
  <data name="QueueView_ResetAllJobs" xml:space="preserve">
    <value>Retry All Jobs</value>
  </data>
  <data name="QueueView_ResetFailed" xml:space="preserve">
    <value>Retry Failed</value>
  </data>
  <data name="QueueView_ResetSelectedJobs" xml:space="preserve">
    <value>Reset Selected Jobs</value>
  </data>
  <data name="QueueView_Reset" xml:space="preserve">
    <value>Reset</value>
  </data>
  <data name="WhenDone_Shutdown" xml:space="preserve">
    <value>Shutdown</value>
  </data>
  <data name="QueueView_Source" xml:space="preserve">
    <value>Source:</value>
  </data>
  <data name="QueueView_Start" xml:space="preserve">
    <value>Start Queue</value>
  </data>
  <data name="QueueView_StartTime" xml:space="preserve">
    <value>Start Time:</value>
  </data>
  <data name="QueueView_Statistics" xml:space="preserve">
    <value>Statistics</value>
  </data>
  <data name="QueueView_StatsNotAvailableYet" xml:space="preserve">
    <value>Statistics will be available after an encode completes.</value>
  </data>
  <data name="QueueView_Subtitles" xml:space="preserve">
    <value>Subtitles:</value>
  </data>
  <data name="QueueView_Summary" xml:space="preserve">
    <value>Summary</value>
  </data>
  <data name="WhenDone_Suspend" xml:space="preserve">
    <value>Sleep</value>
  </data>
  <data name="QueueView_Video" xml:space="preserve">
    <value>Video:</value>
  </data>
  <data name="QueueView_WhenDone" xml:space="preserve">
    <value>When Done:</value>
  </data>
  <data name="Shared_AddAllForSelected" xml:space="preserve">
    <value>Add All Remaining Selected Languages</value>
  </data>
  <data name="Shared_AddAllRemaining" xml:space="preserve">
    <value>Add All Remaining Tracks</value>
  </data>
  <data name="Shared_AddNewTrack" xml:space="preserve">
    <value>Add New Track</value>
  </data>
  <data name="Shared_AddTrack" xml:space="preserve">
    <value>Add Track</value>
  </data>
  <data name="Shared_AvailableLanguages" xml:space="preserve">
    <value>Available Languages:</value>
  </data>
  <data name="Shared_ChooseLanguages" xml:space="preserve">
    <value>Choose Languages:</value>
  </data>
  <data name="Shared_ChosenLangages" xml:space="preserve">
    <value>Selected Languages:</value>
  </data>
  <data name="Shared_ConfigureDefaultBehaviours" xml:space="preserve">
    <value>Configure Default Behaviours</value>
  </data>
  <data name="Shared_ReloadDefaults" xml:space="preserve">
    <value>Reload</value>
  </data>
  <data name="SourceSelection_ChooseDisc" xml:space="preserve">
    <value>Choose Disc to Scan</value>
  </data>
  <data name="SourceSelection_ChooseFile" xml:space="preserve">
    <value>Choose File to Scan</value>
  </data>
  <data name="SourceSelection_ChooseFolder" xml:space="preserve">
    <value>Choose Folder to Scan</value>
  </data>
  <data name="SourceSelection_ChooseSpecificTitle" xml:space="preserve">
    <value>Optionally choose a specific title: </value>
  </data>
  <data name="SourceSelection_ChooseVideo" xml:space="preserve">
    <value>Then choose the video(s) you'd like to encode: </value>
  </data>
  <data name="SourceSelection_File" xml:space="preserve">
    <value>File</value>
  </data>
  <data name="SourceSelection_FolderBatchScan" xml:space="preserve">
    <value>Folder (Batch Scan)</value>
  </data>
  <data name="SourceSelection_OpenDVDBluray" xml:space="preserve">
    <value>Open this DVD or Bluray Drive</value>
  </data>
  <data name="SourceSelection_OpenFolderWIth" xml:space="preserve">
    <value>Open a folder with one or more files.</value>
  </data>
  <data name="SourceSelection_QueueArchiveRecovery" xml:space="preserve">
    <value>Recover Queue Files</value>
  </data>
  <data name="SourceSelection_QueueArchiveRecoveryDesc" xml:space="preserve">
    <value>A previous queue archive is available. </value>
  </data>
  <data name="SourceSelection_SingleVideoFile" xml:space="preserve">
    <value>Open a single video file.</value>
  </data>
  <data name="SourceSelection_SourceSelection" xml:space="preserve">
    <value>Source Selection</value>
  </data>
  <data name="StaticPreviewView_Duration" xml:space="preserve">
    <value>Duration:</value>
  </data>
  <data name="StaticPreviewView_LivePreview" xml:space="preserve">
    <value>Live Preview</value>
  </data>
  <data name="StaticPreviewView_SelectPreviewImage" xml:space="preserve">
    <value>Select a preview image</value>
  </data>
  <data name="StaticPreviewView_UseSystemDefault" xml:space="preserve">
    <value>Use system default video player</value>
  </data>
  <data name="SubtitlesView_AddCC" xml:space="preserve">
    <value>Add Closed Captions when available</value>
  </data>
  <data name="SubtitlesView_AddForeignAudioSearch" xml:space="preserve">
    <value>Add 'Foreign Audio Scan'</value>
  </data>
  <data name="SubtitlesView_BurnInBehaviour" xml:space="preserve">
    <value>Burn-In Behaviour:</value>
  </data>
  <data name="SubtitlesView_ImportSubtitle" xml:space="preserve">
    <value>Import Subtitle</value>
  </data>
  <data name="SubtitlesView_TrackSelectionBehaviour" xml:space="preserve">
    <value>Track Selection Behaviour:</value>
  </data>
  <data name="SubtitleView_AddAllCC" xml:space="preserve">
    <value>Add All Remaining Closed Captions</value>
  </data>
  <data name="SubtitleView_SubtitleDefaultsDescription" xml:space="preserve">
    <value>Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video.</value>
  </data>
  <data name="SummaryView_AdditionalAudioTracks" xml:space="preserve">
    <value>Additional Audio Tracks</value>
  </data>
  <data name="SummaryView_AdditionalSubtitleTracks" xml:space="preserve">
    <value>Additional Subtitle Tracks</value>
  </data>
  <data name="SummaryView_Burned" xml:space="preserve">
    <value>Burned</value>
  </data>
  <data name="SummaryView_Chapters" xml:space="preserve">
    <value>Chapter Markers</value>
  </data>
  <data name="SummaryView_Deblock" xml:space="preserve">
    <value>Deblock</value>
  </data>
  <data name="SummaryView_Detelecine" xml:space="preserve">
    <value>Detelecine</value>
  </data>
  <data name="SummaryView_display" xml:space="preserve">
    <value>display</value>
  </data>
  <data name="SummaryView_Grayscale" xml:space="preserve">
    <value>Grayscale</value>
  </data>
  <data name="SummaryView_NoAudioTracks" xml:space="preserve">
    <value>No Audio Tracks</value>
  </data>
  <data name="SummaryView_NoChapters" xml:space="preserve">
    <value>No Chapter Markers</value>
  </data>
  <data name="SummaryView_NoFilters" xml:space="preserve">
    <value>No Filters</value>
  </data>
  <data name="SummaryView_NoSource" xml:space="preserve">
    <value>No Source</value>
  </data>
  <data name="SummaryView_NoSubtitleTracks" xml:space="preserve">
    <value>No Subtitle Tracks</value>
  </data>
  <data name="SummaryView_NoTracks" xml:space="preserve">
    <value>No Tracks</value>
  </data>
  <data name="SummaryView_PreviewInfo" xml:space="preserve">
    <value>Preview {0} of {1}</value>
  </data>
  <data name="SummaryView_Rotation" xml:space="preserve">
    <value>Rotation</value>
  </data>
  <data name="SummaryView_storage" xml:space="preserve">
    <value>storage</value>
  </data>
  <data name="VideoView_2Pass" xml:space="preserve">
    <value>2-Pass Encoding</value>
  </data>
  <data name="VideoView_AverageBitrate" xml:space="preserve">
    <value>Avg Bitrate (kbps):</value>
  </data>
  <data name="VideoView_Codec" xml:space="preserve">
    <value>Video Codec:</value>
  </data>
  <data name="VideoView_ConstantFramerate" xml:space="preserve">
    <value>Constant Framerate</value>
  </data>
  <data name="VideoView_ConstantQuality" xml:space="preserve">
    <value>Constant Quality:</value>
  </data>
  <data name="VideoView_EncoderLevel" xml:space="preserve">
    <value>Encoder Level:</value>
  </data>
  <data name="VideoView_EncoderPreset" xml:space="preserve">
    <value>Encoder Preset:</value>
  </data>
  <data name="VideoView_EncoderProfile" xml:space="preserve">
    <value>Encoder Profile:</value>
  </data>
  <data name="VideoView_EncodeTune" xml:space="preserve">
    <value>Encoder Tune:</value>
  </data>
  <data name="VideoView_ExtraOptions" xml:space="preserve">
    <value>Advanced Options:</value>
  </data>
  <data name="VideoView_FastDecode" xml:space="preserve">
    <value>Fast Decode</value>
  </data>
  <data name="VideoView_Framerate" xml:space="preserve">
    <value>Framerate (FPS):</value>
  </data>
  <data name="VideoView_OptimiseVideo" xml:space="preserve">
    <value>Optimise Video:</value>
  </data>
  <data name="VideoView_PeakFramerate" xml:space="preserve">
    <value>Peak Framerate</value>
  </data>
  <data name="VideoView_Quality" xml:space="preserve">
    <value>Quality</value>
  </data>
  <data name="VideoView_TurboFirstPass" xml:space="preserve">
    <value>Turbo first pass</value>
  </data>
  <data name="VideoView_VariableFramerate" xml:space="preserve">
    <value>Variable Framerate</value>
  </data>
  <data name="VideoView_Video" xml:space="preserve">
    <value>Video</value>
  </data>
  <data name="OptionsView_Language" xml:space="preserve">
    <value>Language:</value>
  </data>
  <data name="Language_UseSystem" xml:space="preserve">
    <value>Use System Language</value>
  </data>
  <data name="SourceSelection_AboutHandBrake" xml:space="preserve">
    <value>About HandBrake</value>
  </data>
  <data name="SourceSelection_DropFileHere" xml:space="preserve">
    <value>Or drop a file or folder here ...</value>
  </data>
  <data name="SourceSelection_Help" xml:space="preserve">
    <value>Help</value>
  </data>
  <data name="Preferences" xml:space="preserve">
    <value>Preferences</value>
  </data>
  <data name="AudioDefaultsView_AddTrack" xml:space="preserve">
    <value>Add Track</value>
  </data>
  <data name="AudioDefaultsView_AutoAddTracks" xml:space="preserve">
    <value>Audio encoder settings for each chosen track:</value>
  </data>
  <data name="AudioDefaultsView_Clear" xml:space="preserve">
    <value>Clear</value>
  </data>
  <data name="SubtitlesView_BurnIn" xml:space="preserve">
    <value>Burn In</value>
  </data>
  <data name="SubtitlesView_Default" xml:space="preserve">
    <value>Default</value>
  </data>
  <data name="SubtitlesView_ForcedOnly" xml:space="preserve">
    <value>Forced Only</value>
  </data>
  <data name="MainView_About" xml:space="preserve">
    <value>_About...</value>
  </data>
  <data name="MainView_ActivityLogMenu" xml:space="preserve">
    <value>_Activity Log</value>
  </data>
  <data name="MainView_CheckForUpdates" xml:space="preserve">
    <value>_Check for Updates</value>
  </data>
  <data name="MainView_Exit" xml:space="preserve">
    <value>_Exit</value>
  </data>
  <data name="MainView_ExportToFile" xml:space="preserve">
    <value>_Export to file</value>
  </data>
  <data name="MainView_FileMenu" xml:space="preserve">
    <value>_File</value>
  </data>
  <data name="MainView_HandBrakeDocs" xml:space="preserve">
    <value>_HandBrake Documentation (HTTPS)</value>
  </data>
  <data name="MainView_HelpMenu" xml:space="preserve">
    <value>_Help</value>
  </data>
  <data name="MainView_ImportFromFile" xml:space="preserve">
    <value>_Import from file</value>
  </data>
  <data name="MainView_PreferencesMenu" xml:space="preserve">
    <value>_Preferences</value>
  </data>
  <data name="MainView_PresetsMenu" xml:space="preserve">
    <value>_Presets</value>
  </data>
  <data name="MainView_QueueMenu" xml:space="preserve">
    <value>_Queue</value>
  </data>
  <data name="MainView_ResetPresets" xml:space="preserve">
    <value>_Reset Built-In Presets</value>
  </data>
  <data name="MainView_SetCurrentAsDefault" xml:space="preserve">
    <value>_Set Current as Default</value>
  </data>
  <data name="MainView_ShowPresetPanel" xml:space="preserve">
    <value>S_how Preset Panel</value>
  </data>
  <data name="MainView_ShowQueueMenu" xml:space="preserve">
    <value>_Show Queue</value>
  </data>
  <data name="MainView_ToolsMenu" xml:space="preserve">
    <value>_Tools</value>
  </data>
  <data name="OptionsView_CheckingForUpdates" xml:space="preserve">
    <value>Checking for Updates ...</value>
  </data>
  <data name="OptionsView_ClearLogDirConfirm" xml:space="preserve">
    <value>Are you sure you wish to clear the log file directory?</value>
  </data>
  <data name="OptionsView_ClearLogs" xml:space="preserve">
    <value>Clear Logs</value>
  </data>
  <data name="OptionsView_Downloading" xml:space="preserve">
    <value>Downloading...</value>
  </data>
  <data name="OptionsView_LogsCleared" xml:space="preserve">
    <value>HandBrake's Log file directory has been cleared!</value>
  </data>
  <data name="OptionsView_Notice" xml:space="preserve">
    <value>Notice</value>
  </data>
  <data name="OptionsView_PreparingUpdate" xml:space="preserve">
    <value>Preparing for Update ...</value>
  </data>
  <data name="OptionsView_SelectFolder" xml:space="preserve">
    <value>Please select a folder.</value>
  </data>
  <data name="OptionsView_SetDefaultLocationOutputFIle" xml:space="preserve">
    <value>Click 'Browse' to set the default location</value>
  </data>
  <data name="MainView_Hide" xml:space="preserve">
    <value>Hide</value>
  </data>
  <data name="MainView_Show" xml:space="preserve">
    <value>Show</value>
  </data>
  <data name="MainView_ShowAddAllToQueue" xml:space="preserve">
    <value>'Add All' to Queue</value>
  </data>
  <data name="MainView_ShowAddSelectionToQueue" xml:space="preserve">
    <value>'Add Selection' to Queue</value>
  </data>
  <data name="QueueView_PlayMediaFile" xml:space="preserve">
    <value>Play File</value>
  </data>
  <data name="Options_ApplicaitonToolbar" xml:space="preserve">
    <value>Application Toolbar</value>
  </data>
  <data name="Options_ShowToolbarAddAll" xml:space="preserve">
    <value>Show 'Add All to Queue' on the toolbar</value>
  </data>
  <data name="Options_ShowToolbarAddSelection" xml:space="preserve">
    <value>Show 'Add Selection to Queue' on the toolbar</value>
  </data>
  <data name="OptionsView_HardwareDetectFailed" xml:space="preserve">
    <value>Hardware encoding support is currently disabled. Please make sure you are running up-to-date drivers for all graphics adaptors in this system.

This will not impact any of the software encoders.</value>
  </data>
  <data name="Main_PleaseFixSubtitleSettings" xml:space="preserve">
    <value>Please correct your subtitle settings before continuing. </value>
  </data>
  <data name="Generic_Apply" xml:space="preserve">
    <value>Apply</value>
  </data>
  <data name="Main_ResumeEncode" xml:space="preserve">
    <value>Resume Encode</value>
  </data>
  <data name="QueueView_Actions" xml:space="preserve">
    <value>Actions</value>
  </data>
  <data name="QueueView_Import" xml:space="preserve">
    <value>Import Queue</value>
  </data>
  <data name="QueueViewModel_EncodeStatusChanged_StatusLabel" xml:space="preserve">
    <value>Encoding: Pass {0} of {1},  {2:00.00}%, FPS: {3:000.0},  Avg FPS: {4:000.0}
Time Remaining: {5},  Elapsed: {6} {7}</value>
  </data>
  <data name="QueueView_DeleteSelected" xml:space="preserve">
    <value>Delete Selected</value>
  </data>
  <data name="Portable_TmpNotWritable" xml:space="preserve">
    <value>Portable Mode: Unable to create TMP directory. Please check the path is correct and is writable.

    {0}</value>
  </data>
  <data name="Portable_StorageNotWritable" xml:space="preserve">
    <value>Portable Mode: Unable to create Storage directory. Please check the path is correct and is writable.

    {0}</value>
  </data>
  <data name="Portable_IniFileError" xml:space="preserve">
    <value>Portable Mode: Unable to read portable.ini. There may be an error in this file. Please retry using portable.ini.template as a guide.</value>
  </data>
  <data name="Startup_InitFailed" xml:space="preserve">
    <value>HandBrake's engine failed to initialise. This is often caused by out of date GPU drivers.\n  Please update the GPU drivers for any onboard and discrete graphics your system has.</value>
  </data>
  <data name="OptionsView_FormatOptions" xml:space="preserve">
    <value>Live Update Options: {source} {title} {chapters} 
Non-Live Options: {date} {time} {creation-date} {creation-time} {quality} {bitrate} (These only change if you scan a new source, change title or chapters)</value>
  </data>
  <data name="OptionsView_PathOptions" xml:space="preserve">
    <value>Available Options: {source_path} {source_folder_name} {source}</value>
  </data>
  <data name="FileOverwriteBehaviours_Ask" xml:space="preserve">
    <value>Ask to overwrite file</value>
  </data>
  <data name="FileOverwriteBehaviours_Autoname" xml:space="preserve">
    <value>Try to automatically rename file</value>
  </data>
  <data name="FileOverwriteBehaviours_Overwrite" xml:space="preserve">
    <value>Overwrite the file</value>
  </data>
  <data name="Options_UIBehaviour" xml:space="preserve">
    <value>User Interface Behaviour</value>
  </data>
  <data name="OptionsView_FileOverwriteBehaviour" xml:space="preserve">
    <value>File overwrite behaviour:</value>
  </data>
  <data name="Options_EncodeCompleted" xml:space="preserve">
    <value>Encode Completed</value>
  </data>
  <data name="Options_Notifications" xml:space="preserve">
    <value>Notifications</value>
  </data>
  <data name="Options_QueueCompleted" xml:space="preserve">
    <value>Queue Completed</value>
  </data>
  <data name="Options_WhenDoneColon" xml:space="preserve">
    <value>When Done:</value>
  </data>
  <data name="OptionsView_FileCollisionBehaviour" xml:space="preserve">
    <value>Filename collision behaviour:</value>
  </data>
  <data name="CollisionBehaviour_Post" xml:space="preserve">
    <value>Postfix</value>
  </data>
  <data name="CollisionBehaviour_Pre" xml:space="preserve">
    <value>Prefix</value>
  </data>
  <data name="CollisionBehaviour_AppendNumber" xml:space="preserve">
    <value>Append Number</value>
  </data>
  <data name="FiltersViewAuto_DeblockPreset" xml:space="preserve">
    <value>FiltersView_DeblockPreset</value>
  </data>
  <data name="FiltersViewAuto_DeblockTune" xml:space="preserve">
    <value>Deblock Tune</value>
  </data>
  <data name="OptionsView_ChoiceOfEncoderHint" xml:space="preserve">
    <value>Choice of encoder will be made available on the 'Video' tab.</value>
  </data>
  <data name="Queue_RecoverQueueQuestionPlural" xml:space="preserve">
    <value>HandBrake has detected multiple unfinished queue files. These will be from multiple instances of HandBrake running. Would you like to recover all unfinished jobs?</value>
  </data>
  <data name="Queue_RecoverQueueQuestionSingular" xml:space="preserve">
    <value>HandBrake has detected unfinished items on the queue from the last time the application was launched. Would you like to recover these?</value>
  </data>
  <data name="Queue_RecoveryPossible" xml:space="preserve">
    <value>Queue Recovery Possible</value>
  </data>
  <data name="PresetService_ImportingBuiltInWarning" xml:space="preserve">
    <value>Your presets file contained built-in presets. The import function does not support importing these. Please use 'Presets Menu -&gt; Reset Built In-Presets' to restore the standard presets.

Where supported, any user presets will have been imported.</value>
  </data>
  <data name="Options_PromptBeforeAction" xml:space="preserve">
    <value>Perform action immediately. (This will disable the 60 second confirmation dialog)</value>
  </data>
  <data name="Browse" xml:space="preserve">
    <value>Browse</value>
  </data>
  <data name="OptionsView_MediaFileNotSet" xml:space="preserve">
    <value>No audio file has been set. Please click 'Browse' to select a wav or mp3 file for playback.</value>
  </data>
  <data name="OptionsView_Play" xml:space="preserve">
    <value>Play</value>
  </data>
  <data name="QueueView_ExportCLI" xml:space="preserve">
    <value>Export Queue (CLI Only)</value>
  </data>
  <data name="Options_DarkTheme" xml:space="preserve">
    <value>Use the Dark Theme. (Requires Restart, Windows 10 only)</value>
  </data>
  <data name="QueueView_NotAvailable" xml:space="preserve">
    <value>Not Available</value>
  </data>
  <data name="Options_LowDiskspaceSizeGB" xml:space="preserve">
    <value>GB</value>
  </data>
  <data name="SystemService_ACMains" xml:space="preserve">
    <value>AC Mains power detected. Resuming encode... ({0} %)</value>
  </data>
  <data name="SystemService_CriticalBattery" xml:space="preserve">
    <value>System Battery Critical! ({0} %)</value>
  </data>
  <data name="SystemService_LowBatteryLog" xml:space="preserve">
    <value>System Battery Low! ({0} %). Your encode has been paused to protect the system. System sleep is set to allowed!</value>
  </data>
  <data name="SystemService_LowDiskSpaceLog" xml:space="preserve">
    <value>Remaining drive storage has dropped below {0} GB on the destination drive. Pausing encode...</value>
  </data>
  <data name="AudioDefaultsView_PaneTitle" xml:space="preserve">
    <value>Configure Automatic Audio Selections</value>
  </data>
  <data name="SubtitlesDefaultsView_PaneTitle" xml:space="preserve">
    <value>Configure Automatic Subtitle Selections</value>
  </data>
  <data name="Options_SystemOptions" xml:space="preserve">
    <value>System</value>
  </data>
  <data name="MetadataView_Actors" xml:space="preserve">
    <value>Actors:</value>
  </data>
  <data name="MetadataView_Comments" xml:space="preserve">
    <value>Comments:</value>
  </data>
  <data name="MetadataView_Description" xml:space="preserve">
    <value>Description:</value>
  </data>
  <data name="MetadataView_Director" xml:space="preserve">
    <value>Director:</value>
  </data>
  <data name="MetadataView_Genre" xml:space="preserve">
    <value>Genre:</value>
  </data>
  <data name="MetadataView_Plot" xml:space="preserve">
    <value>Plot:</value>
  </data>
  <data name="MetadataView_ReleaseDate" xml:space="preserve">
    <value>Release Date:</value>
  </data>
  <data name="MetadataView_TitleTag" xml:space="preserve">
    <value>Title:</value>
  </data>
  <data name="StaticPreviewView_PreviewRotationFlip" xml:space="preserve">
    <value>Preview Rotation and Flip</value>
  </data>
  <data name="LogViewModel_Title" xml:space="preserve">
    <value>Log Viewer</value>
  </data>
  <data name="MainView_Aspect" xml:space="preserve">
    <value>Aspect:</value>
  </data>
  <data name="MainView_Filters" xml:space="preserve">
    <value>Filters:</value>
  </data>
  <data name="MainView_Size" xml:space="preserve">
    <value>Size:</value>
  </data>
  <data name="MainView_Tracks" xml:space="preserve">
    <value>Tracks:</value>
  </data>
  <data name="OptionsTab_General" xml:space="preserve">
    <value>General</value>
  </data>
  <data name="OptionsViewModel_CheckForUpdatesMsg" xml:space="preserve">
    <value>Click 'Check for Updates' to check for new versions</value>
  </data>
  <data name="OptionsView_BackButton" xml:space="preserve">
    <value>&lt; Back</value>
  </data>
  <data name="QueueView_CurrentlyPaused" xml:space="preserve">
    <value>Currently Paused</value>
  </data>
  <data name="Options_OutputFiles" xml:space="preserve">
    <value>Output Files</value>
  </data>
  <data name="PointToPointMode_Chapters" xml:space="preserve">
    <value>Chapters</value>
  </data>
  <data name="PointToPointMode_Frames" xml:space="preserve">
    <value>Frames</value>
  </data>
  <data name="PointToPointMode_Preview" xml:space="preserve">
    <value>Preview</value>
  </data>
  <data name="PointToPointMode_Seconds" xml:space="preserve">
    <value>Seconds</value>
  </data>
  <data name="SubtitleBehaviourModes_AllMatching" xml:space="preserve">
    <value>All Matching Selected Languages</value>
  </data>
  <data name="SubtitleBehaviourModes_FirstMatching" xml:space="preserve">
    <value>First Matching Selected Language</value>
  </data>
  <data name="SubtitleBehaviourModes_None" xml:space="preserve">
    <value>None</value>
  </data>
  <data name="SubtitleBurnInBehaviourModes_FirstTrack" xml:space="preserve">
    <value>First Track</value>
  </data>
  <data name="SubtitleBurnInBehaviourModes_ForeignAudioPreferredElseFirst" xml:space="preserve">
    <value>Foreign Audio Preferred, else First</value>
  </data>
  <data name="SubtitleBurnInBehaviourModes_ForeignAudioTrack" xml:space="preserve">
    <value>Foreign Audio Track</value>
  </data>
  <data name="SubtitleBurnInBehaviourModes_None" xml:space="preserve">
    <value>None</value>
  </data>
  <data name="SubtitleViewModel_ForeignAudioSearch" xml:space="preserve">
    <value>Foreign Audio Search</value>
  </data>
  <data name="Subtitle_ForeignAudioScan" xml:space="preserve">
    <value>Foreign Audio Scan</value>
  </data>
  <data name="AudioBehaviourModes_AllMatching" xml:space="preserve">
    <value>All Matching Selected Languages</value>
  </data>
  <data name="AudioBehaviourModes_AllTracks" xml:space="preserve">
    <value>Use All Tracks as templates</value>
  </data>
  <data name="AudioBehaviourModes_FirstMatch" xml:space="preserve">
    <value>First Matching Selected Language</value>
  </data>
  <data name="AudioBehaviourModes_FirstTrack" xml:space="preserve">
    <value>Use First Track as template</value>
  </data>
  <data name="AudioBehaviourModes_None" xml:space="preserve">
    <value>No Audio</value>
  </data>
  <data name="ChapterViewModel_Chapter" xml:space="preserve">
    <value>Chapter {0}</value>
  </data>
  <data name="Mp4Behaviour_Auto" xml:space="preserve">
    <value>Automatic</value>
  </data>
  <data name="Mp4Behaviour_UseM4v" xml:space="preserve">
    <value>Always use M4V</value>
  </data>
  <data name="Mp4Behaviour_UseMp4" xml:space="preserve">
    <value>Always use MP4</value>
  </data>
  <data name="PresetPictureSettingsMode_Custom" xml:space="preserve">
    <value>Custom</value>
  </data>
  <data name="PresetPictureSettingsMode_None" xml:space="preserve">
    <value>None</value>
  </data>
  <data name="PresetPictureSettingsMode_SourceMaximum" xml:space="preserve">
    <value>Always use Source Resolution</value>
  </data>
  <data name="ProcessPriority_AboveNormal" xml:space="preserve">
    <value>Above Normal</value>
  </data>
  <data name="ProcessPriority_BelowNormal" xml:space="preserve">
    <value>Below Normal</value>
  </data>
  <data name="ProcessPriority_High" xml:space="preserve">
    <value>High</value>
  </data>
  <data name="ProcessPriority_Low" xml:space="preserve">
    <value>Low</value>
  </data>
  <data name="ProcessPriority_Normal" xml:space="preserve">
    <value>Normal</value>
  </data>
  <data name="UpdateCheck_Monthly" xml:space="preserve">
    <value>Monthly</value>
  </data>
  <data name="UpdateCheck_Weekly" xml:space="preserve">
    <value>Weekly</value>
  </data>
  <data name="SourceSelection_UpdateAvailable" xml:space="preserve">
    <value>A new version of HandBrake is available!</value>
  </data>
  <data name="OptionsView_AlwaysUseDefaultPath" xml:space="preserve">
    <value>Always use the default path for each new name generated.</value>
  </data>
</root>