1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace HandBrakeWPF.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HandBrakeWPF.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to 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 f [rest of string was truncated]";.
/// </summary>
public static string About_GPL {
get {
return ResourceManager.GetString("About_GPL", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to License: .
/// </summary>
public static string AboutView_License {
get {
return ResourceManager.GetString("AboutView_License", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Version: .
/// </summary>
public static string AboutView_Version {
get {
return ResourceManager.GetString("AboutView_Version", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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 [rest of string was truncated]";.
/// </summary>
public static string AddPreset_PictureSizeMode {
get {
return ResourceManager.GetString("AddPreset_PictureSizeMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- Add New Category --.
/// </summary>
public static string AddPresetView_AddNewCategory {
get {
return ResourceManager.GetString("AddPresetView_AddNewCategory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Preset.
/// </summary>
public static string AddPresetView_AddPreset {
get {
return ResourceManager.GetString("AddPresetView_AddPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Category:.
/// </summary>
public static string AddPresetView_Category {
get {
return ResourceManager.GetString("AddPresetView_Category", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description:.
/// </summary>
public static string AddPresetView_Description {
get {
return ResourceManager.GetString("AddPresetView_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name:.
/// </summary>
public static string AddPresetView_Name {
get {
return ResourceManager.GetString("AddPresetView_Name", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dimensions:.
/// </summary>
public static string AddPresetView_SavePictureSize {
get {
return ResourceManager.GetString("AddPresetView_SavePictureSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Custom Width or Height fields must be filled in for the 'Custom' option..
/// </summary>
public static string AddPresetViewModel_CustomWidthHeightFieldsRequired {
get {
return ResourceManager.GetString("AddPresetViewModel_CustomWidthHeightFieldsRequired", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A Preset must have a Name. Please fill out the Preset Name field..
/// </summary>
public static string AddPresetViewModel_PresetMustProvideName {
get {
return ResourceManager.GetString("AddPresetViewModel_PresetMustProvideName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A Preset with this name already exists. Would you like to overwrite it?.
/// </summary>
public static string AddPresetViewModel_PresetWithSameNameOverwriteWarning {
get {
return ResourceManager.GetString("AddPresetViewModel_PresetWithSameNameOverwriteWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to add preset.
/// </summary>
public static string AddPresetViewModel_UnableToAddPreset {
get {
return ResourceManager.GetString("AddPresetViewModel_UnableToAddPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You must first scan a source to use the 'Source Maximum' Option..
/// </summary>
public static string AddPresetViewModel_YouMustFirstScanSource {
get {
return ResourceManager.GetString("AddPresetViewModel_YouMustFirstScanSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure?.
/// </summary>
public static string AreYouSure {
get {
return ResourceManager.GetString("AreYouSure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All Matching Selected Languages.
/// </summary>
public static string AudioBehaviourModes_AllMatching {
get {
return ResourceManager.GetString("AudioBehaviourModes_AllMatching", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use All Tracks as templates.
/// </summary>
public static string AudioBehaviourModes_AllTracks {
get {
return ResourceManager.GetString("AudioBehaviourModes_AllTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to First Matching Selected Language.
/// </summary>
public static string AudioBehaviourModes_FirstMatch {
get {
return ResourceManager.GetString("AudioBehaviourModes_FirstMatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use First Track as template.
/// </summary>
public static string AudioBehaviourModes_FirstTrack {
get {
return ResourceManager.GetString("AudioBehaviourModes_FirstTrack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Audio.
/// </summary>
public static string AudioBehaviourModes_None {
get {
return ResourceManager.GetString("AudioBehaviourModes_None", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Track.
/// </summary>
public static string AudioDefaultsView_AddTrack {
get {
return ResourceManager.GetString("AudioDefaultsView_AddTrack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audio encoder settings for each chosen track:.
/// </summary>
public static string AudioDefaultsView_AutoAddTracks {
get {
return ResourceManager.GetString("AudioDefaultsView_AutoAddTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear.
/// </summary>
public static string AudioDefaultsView_Clear {
get {
return ResourceManager.GetString("AudioDefaultsView_Clear", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configure Automatic Audio Selections.
/// </summary>
public static string AudioDefaultsView_PaneTitle {
get {
return ResourceManager.GetString("AudioDefaultsView_PaneTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source Track Selection.
/// </summary>
public static string AudioDefaultView_Behaviours {
get {
return ResourceManager.GetString("AudioDefaultView_Behaviours", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow passthru of:.
/// </summary>
public static string AudioView_AllowPassThruOf {
get {
return ResourceManager.GetString("AudioView_AllowPassThruOf", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configure how the Audio Tracks are automatically selected and configured when you select a new title or source video..
/// </summary>
public static string AudioView_AudioDefaultsDescription {
get {
return ResourceManager.GetString("AudioView_AudioDefaultsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'Auto Passthru' Behaviour:.
/// </summary>
public static string AudioView_AutoPassthruBehaviour {
get {
return ResourceManager.GetString("AudioView_AutoPassthruBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bitrate.
/// </summary>
public static string AudioView_Bitrate {
get {
return ResourceManager.GetString("AudioView_Bitrate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Codec.
/// </summary>
public static string AudioView_Codec {
get {
return ResourceManager.GetString("AudioView_Codec", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DRC.
/// </summary>
public static string AudioView_DRC {
get {
return ResourceManager.GetString("AudioView_DRC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Gain.
/// </summary>
public static string AudioView_Gain {
get {
return ResourceManager.GetString("AudioView_Gain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hide.
/// </summary>
public static string AudioView_Hide {
get {
return ResourceManager.GetString("AudioView_Hide", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mixdown.
/// </summary>
public static string AudioView_Mixdown {
get {
return ResourceManager.GetString("AudioView_Mixdown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fallback encoder:.
/// </summary>
public static string AudioView_OtherwiseFallbackEncoder {
get {
return ResourceManager.GetString("AudioView_OtherwiseFallbackEncoder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reload.
/// </summary>
public static string AudioView_ReloadDefaults {
get {
return ResourceManager.GetString("AudioView_ReloadDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Samplerate.
/// </summary>
public static string AudioView_Samplerate {
get {
return ResourceManager.GetString("AudioView_Samplerate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show.
/// </summary>
public static string AudioView_Show {
get {
return ResourceManager.GetString("AudioView_Show", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Track Name.
/// </summary>
public static string AudioView_TrackName {
get {
return ResourceManager.GetString("AudioView_TrackName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Track Selection Behaviour:.
/// </summary>
public static string AudioView_TrackSelectionBehaviour {
get {
return ResourceManager.GetString("AudioView_TrackSelectionBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to For Additional Tracks:.
/// </summary>
public static string AudioView_TrackSettingDefaultBehaviour {
get {
return ResourceManager.GetString("AudioView_TrackSettingDefaultBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When 'Auto Passthru' is selected as the audio codec..
/// </summary>
public static string AudioView_WhenAutoPassthru {
get {
return ResourceManager.GetString("AudioView_WhenAutoPassthru", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audio Defaults.
/// </summary>
public static string AudioViewModel_AudioDefaults {
get {
return ResourceManager.GetString("AudioViewModel_AudioDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audio Tracks.
/// </summary>
public static string AudioViewModel_AudioTracks {
get {
return ResourceManager.GetString("AudioViewModel_AudioTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Selection Behavior.
/// </summary>
public static string AudioViewModel_ConfigureDefaults {
get {
return ResourceManager.GetString("AudioViewModel_ConfigureDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Switch Back To Tracks.
/// </summary>
public static string AudioViewModel_SwitchBackToTracks {
get {
return ResourceManager.GetString("AudioViewModel_SwitchBackToTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse.
/// </summary>
public static string Browse {
get {
return ResourceManager.GetString("Browse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter Markers.
/// </summary>
public static string ChaptersView_ChapterMarkers {
get {
return ResourceManager.GetString("ChaptersView_ChapterMarkers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter Name.
/// </summary>
public static string ChaptersView_ChapterName {
get {
return ResourceManager.GetString("ChaptersView_ChapterName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter Number.
/// </summary>
public static string ChaptersView_ChapterNumber {
get {
return ResourceManager.GetString("ChaptersView_ChapterNumber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create chapter markers.
/// </summary>
public static string ChaptersView_CreateChapterMarkers {
get {
return ResourceManager.GetString("ChaptersView_CreateChapterMarkers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duration.
/// </summary>
public static string ChaptersView_Duration {
get {
return ResourceManager.GetString("ChaptersView_Duration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Export.
/// </summary>
public static string ChaptersView_Export {
get {
return ResourceManager.GetString("ChaptersView_Export", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import.
/// </summary>
public static string ChaptersView_Import {
get {
return ResourceManager.GetString("ChaptersView_Import", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter marker names will NOT be saved in your encode..
/// </summary>
public static string ChaptersViewModel_UnableToExportChaptersMsg {
get {
return ResourceManager.GetString("ChaptersViewModel_UnableToExportChaptersMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to save Chapter Markers file! .
/// </summary>
public static string ChaptersViewModel_UnableToExportChaptersWarning {
get {
return ResourceManager.GetString("ChaptersViewModel_UnableToExportChaptersWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to First column in chapters file must only contain a integer number value higher than zero (0).
/// </summary>
public static string ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber {
get {
return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersFirstColumnMustContainOnlyIntegerNumber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All lines in chapters file must have at least 2 columns of data.
/// </summary>
public static string ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns {
get {
return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersLineDoesNotHaveAtLeastTwoColumns", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line {0} is invalid. Nothing will be imported..
/// </summary>
public static string ChaptersViewModel_UnableToImportChaptersMalformedLineMsg {
get {
return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersMalformedLineMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to import chapter file.
/// </summary>
public static string ChaptersViewModel_UnableToImportChaptersWarning {
get {
return ResourceManager.GetString("ChaptersViewModel_UnableToImportChaptersWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter files of type '{0}' are not currently supported..
/// </summary>
public static string ChaptersViewModel_UnsupportedFileFormatMsg {
get {
return ResourceManager.GetString("ChaptersViewModel_UnsupportedFileFormatMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unsupported chapter file type.
/// </summary>
public static string ChaptersViewModel_UnsupportedFileFormatWarning {
get {
return ResourceManager.GetString("ChaptersViewModel_UnsupportedFileFormatWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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?.
/// </summary>
public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch {
get {
return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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?.
/// </summary>
public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg {
get {
return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter count doesn't match between source and input file.
/// </summary>
public static string ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning {
get {
return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterCountMismatchWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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?.
/// </summary>
public static string ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg {
get {
return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter duration doesn't match between source and input file.
/// </summary>
public static string ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning {
get {
return ResourceManager.GetString("ChaptersViewModel_ValidateImportedChapters_ChapterDurationMismatchWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invalid chapter information for source media.
/// </summary>
public static string ChaptersViewModel_ValidationFailedWarning {
get {
return ResourceManager.GetString("ChaptersViewModel_ValidationFailedWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Export Names.
/// </summary>
public static string ChapterView_ExportNames {
get {
return ResourceManager.GetString("ChapterView_ExportNames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import Names.
/// </summary>
public static string ChapterView_ImportNames {
get {
return ResourceManager.GetString("ChapterView_ImportNames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reset Chapter Names.
/// </summary>
public static string ChapterView_ResetChapterNames {
get {
return ResourceManager.GetString("ChapterView_ResetChapterNames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter {0}.
/// </summary>
public static string ChapterViewModel_Chapter {
get {
return ResourceManager.GetString("ChapterViewModel_Chapter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The system clipboard is currently unavailable..
/// </summary>
public static string Clipboard_Unavailable {
get {
return ResourceManager.GetString("Clipboard_Unavailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Clipboard_Unavailable_Solution {
get {
return ResourceManager.GetString("Clipboard_Unavailable_Solution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Append Number.
/// </summary>
public static string CollisionBehaviour_AppendNumber {
get {
return ResourceManager.GetString("CollisionBehaviour_AppendNumber", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Postfix.
/// </summary>
public static string CollisionBehaviour_Post {
get {
return ResourceManager.GetString("CollisionBehaviour_Post", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefix.
/// </summary>
public static string CollisionBehaviour_Pre {
get {
return ResourceManager.GetString("CollisionBehaviour_Pre", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Confirm.
/// </summary>
public static string Confirm {
get {
return ResourceManager.GetString("Confirm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following action '{0}' will occur in {1} seconds..
/// </summary>
public static string CountdownAlertViewModel_NoticeMessage {
get {
return ResourceManager.GetString("CountdownAlertViewModel_NoticeMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel Action.
/// </summary>
public static string CountdownAlterView_CancelAction {
get {
return ResourceManager.GetString("CountdownAlterView_CancelAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Proceed.
/// </summary>
public static string CountdownAlterView_Proceed {
get {
return ResourceManager.GetString("CountdownAlterView_Proceed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When Done Action.
/// </summary>
public static string CountdownAlterView_WhenDoneAction {
get {
return ResourceManager.GetString("CountdownAlterView_WhenDoneAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create Folder?.
/// </summary>
public static string DirectoryUtils_CreateFolder {
get {
return ResourceManager.GetString("DirectoryUtils_CreateFolder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The folder you are trying to write to does not exist. Would you like HandBrake to create the following folder?
///{0}.
/// </summary>
public static string DirectoryUtils_CreateFolderMsg {
get {
return ResourceManager.GetString("DirectoryUtils_CreateFolderMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error.
/// </summary>
public static string Error {
get {
return ResourceManager.GetString("Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error Details:.
/// </summary>
public static string ErrorView_ErrorDetails {
get {
return ResourceManager.GetString("ErrorView_ErrorDetails", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If the problem presists, please try restarting HandBrake..
/// </summary>
public static string ErrorViewModel_IfTheProblemPersists {
get {
return ResourceManager.GetString("ErrorViewModel_IfTheProblemPersists", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is no further information available about this error..
/// </summary>
public static string ErrorViewModel_NoFurtherInformation {
get {
return ResourceManager.GetString("ErrorViewModel_NoFurtherInformation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An Unknown Error has occurred..
/// </summary>
public static string ErrorViewModel_UnknownError {
get {
return ResourceManager.GetString("ErrorViewModel_UnknownError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ask to overwrite file.
/// </summary>
public static string FileOverwriteBehaviours_Ask {
get {
return ResourceManager.GetString("FileOverwriteBehaviours_Ask", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Try to automatically rename file.
/// </summary>
public static string FileOverwriteBehaviours_Autoname {
get {
return ResourceManager.GetString("FileOverwriteBehaviours_Autoname", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Overwrite the file.
/// </summary>
public static string FileOverwriteBehaviours_Overwrite {
get {
return ResourceManager.GetString("FileOverwriteBehaviours_Overwrite", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom:.
/// </summary>
public static string FiltersView_Custom {
get {
return ResourceManager.GetString("FiltersView_Custom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deblock.
/// </summary>
public static string FiltersView_Deblock {
get {
return ResourceManager.GetString("FiltersView_Deblock", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Decomb.
/// </summary>
public static string FiltersView_Decomb {
get {
return ResourceManager.GetString("FiltersView_Decomb", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deinterlace:.
/// </summary>
public static string FiltersView_Deinterlace {
get {
return ResourceManager.GetString("FiltersView_Deinterlace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preset:.
/// </summary>
public static string FiltersView_DeinterlacePreset {
get {
return ResourceManager.GetString("FiltersView_DeinterlacePreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deinterlace Preset.
/// </summary>
public static string FiltersView_DeinterlacePresetAuto {
get {
return ResourceManager.GetString("FiltersView_DeinterlacePresetAuto", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Denoise:.
/// </summary>
public static string FiltersView_Denoise {
get {
return ResourceManager.GetString("FiltersView_Denoise", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Denoise Preset.
/// </summary>
public static string FiltersView_DenoisePresetAuto {
get {
return ResourceManager.GetString("FiltersView_DenoisePresetAuto", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Denoise Tune.
/// </summary>
public static string FiltersView_DenoiseTuneAuto {
get {
return ResourceManager.GetString("FiltersView_DenoiseTuneAuto", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Detelecine:.
/// </summary>
public static string FiltersView_Detelecine {
get {
return ResourceManager.GetString("FiltersView_Detelecine", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filters.
/// </summary>
public static string FiltersView_Filters {
get {
return ResourceManager.GetString("FiltersView_Filters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Flip.
/// </summary>
public static string FiltersView_FlipVideo {
get {
return ResourceManager.GetString("FiltersView_FlipVideo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Grayscale.
/// </summary>
public static string FiltersView_Grayscale {
get {
return ResourceManager.GetString("FiltersView_Grayscale", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Interlace Detection:.
/// </summary>
public static string FiltersView_InterlaceDetection {
get {
return ResourceManager.GetString("FiltersView_InterlaceDetection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preset:.
/// </summary>
public static string FiltersView_Preset {
get {
return ResourceManager.GetString("FiltersView_Preset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rotate:.
/// </summary>
public static string FiltersView_Rotate {
get {
return ResourceManager.GetString("FiltersView_Rotate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sharpen.
/// </summary>
public static string FiltersView_Sharpen {
get {
return ResourceManager.GetString("FiltersView_Sharpen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sharpen Preset.
/// </summary>
public static string FiltersView_SharpenPresetAuto {
get {
return ResourceManager.GetString("FiltersView_SharpenPresetAuto", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sharpen Tune.
/// </summary>
public static string FiltersView_SharpenTuneAuto {
get {
return ResourceManager.GetString("FiltersView_SharpenTuneAuto", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tune:.
/// </summary>
public static string FiltersView_Tune {
get {
return ResourceManager.GetString("FiltersView_Tune", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to FiltersView_DeblockPreset.
/// </summary>
public static string FiltersViewAuto_DeblockPreset {
get {
return ResourceManager.GetString("FiltersViewAuto_DeblockPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deblock Tune.
/// </summary>
public static string FiltersViewAuto_DeblockTune {
get {
return ResourceManager.GetString("FiltersViewAuto_DeblockTune", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add.
/// </summary>
public static string Generic_Add {
get {
return ResourceManager.GetString("Generic_Add", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Apply.
/// </summary>
public static string Generic_Apply {
get {
return ResourceManager.GetString("Generic_Apply", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
public static string Generic_Cancel {
get {
return ResourceManager.GetString("Generic_Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear.
/// </summary>
public static string Generic_Clear {
get {
return ResourceManager.GetString("Generic_Clear", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close.
/// </summary>
public static string Generic_Close {
get {
return ResourceManager.GetString("Generic_Close", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy to Clipboard.
/// </summary>
public static string Generic_CopyToClipboard {
get {
return ResourceManager.GetString("Generic_CopyToClipboard", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move Left.
/// </summary>
public static string Generic_MoveLeft {
get {
return ResourceManager.GetString("Generic_MoveLeft", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Move Right.
/// </summary>
public static string Generic_MoveRight {
get {
return ResourceManager.GetString("Generic_MoveRight", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save.
/// </summary>
public static string Generic_Save {
get {
return ResourceManager.GetString("Generic_Save", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake.
/// </summary>
public static string HandBrake_Title {
get {
return ResourceManager.GetString("HandBrake_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use System Language.
/// </summary>
public static string Language_UseSystem {
get {
return ResourceManager.GetString("Language_UseSystem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy to clipboard.
/// </summary>
public static string LogView_CopyClipboard {
get {
return ResourceManager.GetString("LogView_CopyClipboard", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encode Log.
/// </summary>
public static string LogView_EncodeLog {
get {
return ResourceManager.GetString("LogView_EncodeLog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open Log Directory.
/// </summary>
public static string LogView_OpenLogDir {
get {
return ResourceManager.GetString("LogView_OpenLogDir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ScanLog.
/// </summary>
public static string LogView_ScanLog {
get {
return ResourceManager.GetString("LogView_ScanLog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Log Viewer.
/// </summary>
public static string LogViewModel_Title {
get {
return ResourceManager.GetString("LogViewModel_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake is already encoding..
/// </summary>
public static string Main_AlreadyEncoding {
get {
return ResourceManager.GetString("Main_AlreadyEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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?.
/// </summary>
public static string Main_AutoAdd_AudioAndSubWarning {
get {
return ResourceManager.GetString("Main_AutoAdd_AudioAndSubWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do you wish to proceed trying to add the rest?.
/// </summary>
public static string Main_ContinueAddingToQueue {
get {
return ResourceManager.GetString("Main_ContinueAddingToQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are jobs on the queue with the same destination path. Please choose a different path for this job..
/// </summary>
public static string Main_DuplicateDestinationOnQueue {
get {
return ResourceManager.GetString("Main_DuplicateDestinationOnQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The entered destination path contained illegal characters and will not be updated..
/// </summary>
public static string Main_InvalidDestination {
get {
return ResourceManager.GetString("Main_InvalidDestination", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pending Jobs {0}.
/// </summary>
public static string Main_JobsPending_addon {
get {
return ResourceManager.GetString("Main_JobsPending_addon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your destination directory is low on diskspace.
///
///You can configure the level at which this alert appears in preferences.
///
///Do you wish to continue? .
/// </summary>
public static string Main_LowDiskspace {
get {
return ResourceManager.GetString("Main_LowDiskspace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Main_MatchingFileOverwriteWarning {
get {
return ResourceManager.GetString("Main_MatchingFileOverwriteWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New Default Preset Set: {0}.
/// </summary>
public static string Main_NewDefaultPreset {
get {
return ResourceManager.GetString("Main_NewDefaultPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A New Update is Available. Goto Tools Menu > Options to Install.
/// </summary>
public static string Main_NewUpdate {
get {
return ResourceManager.GetString("Main_NewUpdate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The output directory you have chosen either does not exist, or you do not have permissions to write files to it..
/// </summary>
public static string Main_NoPermissionsOrMissingDirectory {
get {
return ResourceManager.GetString("Main_NoPermissionsOrMissingDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Preset selected..
/// </summary>
public static string Main_NoPresetSelected {
get {
return ResourceManager.GetString("Main_NoPresetSelected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can not modify built in presets. Please select one of your own presets..
/// </summary>
public static string Main_NoUpdateOfBuiltInPresets {
get {
return ResourceManager.GetString("Main_NoUpdateOfBuiltInPresets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please correct your subtitle settings before continuing. .
/// </summary>
public static string Main_PleaseFixSubtitleSettings {
get {
return ResourceManager.GetString("Main_PleaseFixSubtitleSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please select a folder..
/// </summary>
public static string Main_PleaseSelectFolder {
get {
return ResourceManager.GetString("Main_PleaseSelectFolder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preparing to encode ....
/// </summary>
public static string Main_PreparingToEncode {
get {
return ResourceManager.GetString("Main_PreparingToEncode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can not import a preset with the same name as a built-in preset..
/// </summary>
public static string Main_PresetErrorBuiltInName {
get {
return ResourceManager.GetString("Main_PresetErrorBuiltInName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to import the selected preset..
/// </summary>
public static string Main_PresetImportFailed {
get {
return ResourceManager.GetString("Main_PresetImportFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Main_PresetImportFailedSolution {
get {
return ResourceManager.GetString("Main_PresetImportFailedSolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The preset "{0}" already exists. Would you like to overwrite it?.
/// </summary>
public static string Main_PresetOverwriteWarning {
get {
return ResourceManager.GetString("Main_PresetOverwriteWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Presets.
/// </summary>
public static string Main_Presets {
get {
return ResourceManager.GetString("Main_Presets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you wish to update the selected preset?.
/// </summary>
public static string Main_PresetUpdateConfrimation {
get {
return ResourceManager.GetString("Main_PresetUpdateConfrimation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Preset has now been updated with your current settings..
/// </summary>
public static string Main_PresetUpdated {
get {
return ResourceManager.GetString("Main_PresetUpdated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Main_PresetUpdateNotification {
get {
return ResourceManager.GetString("Main_PresetUpdateNotification", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Finished.
/// </summary>
public static string Main_QueueFinished {
get {
return ResourceManager.GetString("Main_QueueFinished", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to with {0} errors or cancellations detected..
/// </summary>
public static string Main_QueueFinishedErrors {
get {
return ResourceManager.GetString("Main_QueueFinishedErrors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue{0}.
/// </summary>
public static string Main_QueueLabel {
get {
return ResourceManager.GetString("Main_QueueLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file '{0}' already exists!
///Would you like to overwrite it?.
/// </summary>
public static string Main_QueueOverwritePrompt {
get {
return ResourceManager.GetString("Main_QueueOverwritePrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Paused.
/// </summary>
public static string Main_QueuePaused {
get {
return ResourceManager.GetString("Main_QueuePaused", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resume Encode.
/// </summary>
public static string Main_ResumeEncode {
get {
return ResourceManager.GetString("Main_ResumeEncode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scan Cancelled..
/// </summary>
public static string Main_ScanCancelled {
get {
return ResourceManager.GetString("Main_ScanCancelled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scan Completed.
/// </summary>
public static string Main_ScanCompleted {
get {
return ResourceManager.GetString("Main_ScanCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scan failed: .
/// </summary>
public static string Main_ScanFailed_NoReason {
get {
return ResourceManager.GetString("Main_ScanFailed_NoReason", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scan Failed... Please See Activity Log for details..
/// </summary>
public static string Main_ScanFailled_CheckLog {
get {
return ResourceManager.GetString("Main_ScanFailled_CheckLog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scanning source, please wait....
/// </summary>
public static string Main_ScanningPleaseWait {
get {
return ResourceManager.GetString("Main_ScanningPleaseWait", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scanning Title {0} of {1} ({2}%).
/// </summary>
public static string Main_ScanningTitleXOfY {
get {
return ResourceManager.GetString("Main_ScanningTitleXOfY", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No valid source or titles found..
/// </summary>
public static string Main_ScanNoTitlesFound {
get {
return ResourceManager.GetString("Main_ScanNoTitlesFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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 > 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 [rest of string was truncated]";.
/// </summary>
public static string Main_ScanNoTitlesFoundMessage {
get {
return ResourceManager.GetString("Main_ScanNoTitlesFoundMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You must first scan a source and setup your job before starting an encode. Click the 'Source' button on the toolbar to continue..
/// </summary>
public static string Main_ScanSource {
get {
return ResourceManager.GetString("Main_ScanSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please make sure you have selected one of your own presets. Please note that you cannot export built-in presets..
/// </summary>
public static string Main_SelectPreset {
get {
return ResourceManager.GetString("Main_SelectPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please select a preset to update..
/// </summary>
public static string Main_SelectPresetForUpdate {
get {
return ResourceManager.GetString("Main_SelectPresetForUpdate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select 'Source' to continue.
/// </summary>
public static string Main_SelectSource {
get {
return ResourceManager.GetString("Main_SelectSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You must first set the destination path for the output file before adding to the queue..
/// </summary>
public static string Main_SetDestination {
get {
return ResourceManager.GetString("Main_SetDestination", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Encode.
/// </summary>
public static string Main_Start {
get {
return ResourceManager.GetString("Main_Start", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Queue.
/// </summary>
public static string Main_StartQueue {
get {
return ResourceManager.GetString("Main_StartQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You must turn on automatic file naming AND set a default path in preferences before you can add to the queue..
/// </summary>
public static string Main_TurnOnAutoFileNaming {
get {
return ResourceManager.GetString("Main_TurnOnAutoFileNaming", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your system prevented HandBrake from launching a web browser..
/// </summary>
public static string Main_UnableToLoadHelpMessage {
get {
return ResourceManager.GetString("Main_UnableToLoadHelpMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can still access the help pages by visiting the website directly at: https://handbrake.fr.
/// </summary>
public static string Main_UnableToLoadHelpSolution {
get {
return ResourceManager.GetString("Main_UnableToLoadHelpSolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} Jobs Pending.
/// </summary>
public static string Main_XEncodesPending {
get {
return ResourceManager.GetString("Main_XEncodesPending", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _About....
/// </summary>
public static string MainView_About {
get {
return ResourceManager.GetString("MainView_About", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Activity Log.
/// </summary>
public static string MainView_ActivityLog {
get {
return ResourceManager.GetString("MainView_ActivityLog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Activity Log.
/// </summary>
public static string MainView_ActivityLogMenu {
get {
return ResourceManager.GetString("MainView_ActivityLogMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add All.
/// </summary>
public static string MainView_AddAll {
get {
return ResourceManager.GetString("MainView_AddAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Current.
/// </summary>
public static string MainView_AddCurrent {
get {
return ResourceManager.GetString("MainView_AddCurrent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Selection.
/// </summary>
public static string MainView_AddSelection {
get {
return ResourceManager.GetString("MainView_AddSelection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add to Queue.
/// </summary>
public static string MainView_AddToQueue {
get {
return ResourceManager.GetString("MainView_AddToQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advanced.
/// </summary>
public static string MainView_AdvancedTab {
get {
return ResourceManager.GetString("MainView_AdvancedTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Align A/V Start.
/// </summary>
public static string MainView_AlignAVStart {
get {
return ResourceManager.GetString("MainView_AlignAVStart", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Angle: .
/// </summary>
public static string MainView_Angle {
get {
return ResourceManager.GetString("MainView_Angle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Aspect:.
/// </summary>
public static string MainView_Aspect {
get {
return ResourceManager.GetString("MainView_Aspect", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audio.
/// </summary>
public static string MainView_AudioTab {
get {
return ResourceManager.GetString("MainView_AudioTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audio Tracks.
/// </summary>
public static string MainView_AudioTrackCount {
get {
return ResourceManager.GetString("MainView_AudioTrackCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse.
/// </summary>
public static string MainView_Browser {
get {
return ResourceManager.GetString("MainView_Browser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapters.
/// </summary>
public static string MainView_ChaptersTab {
get {
return ResourceManager.GetString("MainView_ChaptersTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Check for Updates.
/// </summary>
public static string MainView_CheckForUpdates {
get {
return ResourceManager.GetString("MainView_CheckForUpdates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Container.
/// </summary>
public static string MainView_Container {
get {
return ResourceManager.GetString("MainView_Container", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Destination.
/// </summary>
public static string MainView_Destination {
get {
return ResourceManager.GetString("MainView_Destination", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duration: .
/// </summary>
public static string MainView_Duration {
get {
return ResourceManager.GetString("MainView_Duration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Exit.
/// </summary>
public static string MainView_Exit {
get {
return ResourceManager.GetString("MainView_Exit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Export to file.
/// </summary>
public static string MainView_ExportToFile {
get {
return ResourceManager.GetString("MainView_ExportToFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save As:.
/// </summary>
public static string MainView_File {
get {
return ResourceManager.GetString("MainView_File", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _File.
/// </summary>
public static string MainView_FileMenu {
get {
return ResourceManager.GetString("MainView_FileMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filters:.
/// </summary>
public static string MainView_Filters {
get {
return ResourceManager.GetString("MainView_Filters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filters.
/// </summary>
public static string MainView_FiltersTab {
get {
return ResourceManager.GetString("MainView_FiltersTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Format:.
/// </summary>
public static string MainView_Format {
get {
return ResourceManager.GetString("MainView_Format", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _HandBrake Documentation (HTTPS).
/// </summary>
public static string MainView_HandBrakeDocs {
get {
return ResourceManager.GetString("MainView_HandBrakeDocs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Help.
/// </summary>
public static string MainView_Help {
get {
return ResourceManager.GetString("MainView_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Help.
/// </summary>
public static string MainView_HelpMenu {
get {
return ResourceManager.GetString("MainView_HelpMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hide.
/// </summary>
public static string MainView_Hide {
get {
return ResourceManager.GetString("MainView_Hide", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Import from file.
/// </summary>
public static string MainView_ImportFromFile {
get {
return ResourceManager.GetString("MainView_ImportFromFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to iPod 5G Support.
/// </summary>
public static string MainView_iPod5G {
get {
return ResourceManager.GetString("MainView_iPod5G", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Metadata.
/// </summary>
public static string MainView_MetaDataTab {
get {
return ResourceManager.GetString("MainView_MetaDataTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to (Modified).
/// </summary>
public static string MainView_ModifiedPreset {
get {
return ResourceManager.GetString("MainView_ModifiedPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Muxing: This may take a while....
/// </summary>
public static string MainView_Muxing {
get {
return ResourceManager.GetString("MainView_Muxing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Options.
/// </summary>
public static string MainView_Options {
get {
return ResourceManager.GetString("MainView_Options", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output Settings.
/// </summary>
public static string MainView_OutputSettings {
get {
return ResourceManager.GetString("MainView_OutputSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pause.
/// </summary>
public static string MainView_Pause {
get {
return ResourceManager.GetString("MainView_Pause", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dimensions.
/// </summary>
public static string MainView_PictureTab {
get {
return ResourceManager.GetString("MainView_PictureTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Preferences.
/// </summary>
public static string MainView_PreferencesMenu {
get {
return ResourceManager.GetString("MainView_PreferencesMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rename Preset.
/// </summary>
public static string MainView_PresetManage {
get {
return ResourceManager.GetString("MainView_PresetManage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preset Options Context Menu.
/// </summary>
public static string MainView_PresetOptionsContextMenu {
get {
return ResourceManager.GetString("MainView_PresetOptionsContextMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete Preset.
/// </summary>
public static string MainView_PresetRemove {
get {
return ResourceManager.GetString("MainView_PresetRemove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Presets.
/// </summary>
public static string MainView_Presets {
get {
return ResourceManager.GetString("MainView_Presets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Presets.
/// </summary>
public static string MainView_PresetsMenu {
get {
return ResourceManager.GetString("MainView_PresetsMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview.
/// </summary>
public static string MainView_Preview {
get {
return ResourceManager.GetString("MainView_Preview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoding: {0}, {1:00.00}%, Time Remaining: {2}, {3}.
/// </summary>
public static string MainView_ProgressStatusWithTask {
get {
return ResourceManager.GetString("MainView_ProgressStatusWithTask", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Queue.
/// </summary>
public static string MainView_QueueMenu {
get {
return ResourceManager.GetString("MainView_QueueMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Range:.
/// </summary>
public static string MainView_Range {
get {
return ResourceManager.GetString("MainView_Range", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reload.
/// </summary>
public static string MainView_Reload {
get {
return ResourceManager.GetString("MainView_Reload", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove.
/// </summary>
public static string MainView_Remove {
get {
return ResourceManager.GetString("MainView_Remove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reset Built-in Presets.
/// </summary>
public static string MainView_ResetBuiltInPresets {
get {
return ResourceManager.GetString("MainView_ResetBuiltInPresets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Reset Built-In Presets.
/// </summary>
public static string MainView_ResetPresets {
get {
return ResourceManager.GetString("MainView_ResetPresets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save New Preset.
/// </summary>
public static string MainView_SaveNewPreset {
get {
return ResourceManager.GetString("MainView_SaveNewPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Searching for start time.
/// </summary>
public static string MainView_Searching {
get {
return ResourceManager.GetString("MainView_Searching", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preset:.
/// </summary>
public static string MainView_SelectedPresets {
get {
return ResourceManager.GetString("MainView_SelectedPresets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Set Current as Default.
/// </summary>
public static string MainView_SetCurrentAsDefault {
get {
return ResourceManager.GetString("MainView_SetCurrentAsDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set Default.
/// </summary>
public static string MainView_SetDefault {
get {
return ResourceManager.GetString("MainView_SetDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show.
/// </summary>
public static string MainView_Show {
get {
return ResourceManager.GetString("MainView_Show", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'Add All' to Queue.
/// </summary>
public static string MainView_ShowAddAllToQueue {
get {
return ResourceManager.GetString("MainView_ShowAddAllToQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 'Add Selection' to Queue.
/// </summary>
public static string MainView_ShowAddSelectionToQueue {
get {
return ResourceManager.GetString("MainView_ShowAddSelectionToQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to S_how Preset Panel.
/// </summary>
public static string MainView_ShowPresetPanel {
get {
return ResourceManager.GetString("MainView_ShowPresetPanel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview.
/// </summary>
public static string MainView_ShowPreview {
get {
return ResourceManager.GetString("MainView_ShowPreview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue.
/// </summary>
public static string MainView_ShowQueue {
get {
return ResourceManager.GetString("MainView_ShowQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Show Queue.
/// </summary>
public static string MainView_ShowQueueMenu {
get {
return ResourceManager.GetString("MainView_ShowQueueMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Size:.
/// </summary>
public static string MainView_Size {
get {
return ResourceManager.GetString("MainView_Size", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source:.
/// </summary>
public static string MainView_Source {
get {
return ResourceManager.GetString("MainView_Source", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open Source.
/// </summary>
public static string MainView_SourceOpen {
get {
return ResourceManager.GetString("MainView_SourceOpen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Encode.
/// </summary>
public static string MainView_StartEncode {
get {
return ResourceManager.GetString("MainView_StartEncode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Queue.
/// </summary>
public static string MainView_StartQueue {
get {
return ResourceManager.GetString("MainView_StartQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stop.
/// </summary>
public static string MainView_Stop {
get {
return ResourceManager.GetString("MainView_Stop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Stop Encode.
/// </summary>
public static string MainView_StopEncode {
get {
return ResourceManager.GetString("MainView_StopEncode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you wish to stop this encode?.
/// </summary>
public static string MainView_StopEncodeConfirm {
get {
return ResourceManager.GetString("MainView_StopEncodeConfirm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please choose a source to encode before trying to import a subtitle file..
/// </summary>
public static string MainView_SubtitleBeforeScanError {
get {
return ResourceManager.GetString("MainView_SubtitleBeforeScanError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subtitles.
/// </summary>
public static string MainView_SubtitlesTab {
get {
return ResourceManager.GetString("MainView_SubtitlesTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subtitle Tracks.
/// </summary>
public static string MainView_SubtitleTracksCount {
get {
return ResourceManager.GetString("MainView_SubtitleTracksCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Summary.
/// </summary>
public static string MainView_SummaryTab {
get {
return ResourceManager.GetString("MainView_SummaryTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to - .
/// </summary>
public static string MainView_through {
get {
return ResourceManager.GetString("MainView_through", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Title: .
/// </summary>
public static string MainView_Title {
get {
return ResourceManager.GetString("MainView_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Tools.
/// </summary>
public static string MainView_ToolsMenu {
get {
return ResourceManager.GetString("MainView_ToolsMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tracks:.
/// </summary>
public static string MainView_Tracks {
get {
return ResourceManager.GetString("MainView_Tracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update Selected Preset.
/// </summary>
public static string MainView_UpdateSelectedPreset {
get {
return ResourceManager.GetString("MainView_UpdateSelectedPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Video.
/// </summary>
public static string MainView_VideoTab {
get {
return ResourceManager.GetString("MainView_VideoTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Web Optimized.
/// </summary>
public static string MainView_WebOptimized {
get {
return ResourceManager.GetString("MainView_WebOptimized", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can not delete the default preset. Please set another preset as default first..
/// </summary>
public static string MainViewModel_CanNotDeleteDefaultPreset {
get {
return ResourceManager.GetString("MainViewModel_CanNotDeleteDefaultPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}, Time Remaining: {5}, Elapsed: {6} {7}.
/// </summary>
public static string MainViewModel_EncodeStatusChanged_StatusLabel {
get {
return ResourceManager.GetString("MainViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Processing Pass {0} of {1}, (Subtitle Scan) {2:00.00}%, Scan Time Remaining: {3}, Elapsed: {4}.
/// </summary>
public static string MainViewModel_EncodeStatusChanged_SubScan_StatusLabel {
get {
return ResourceManager.GetString("MainViewModel_EncodeStatusChanged_SubScan_StatusLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Low Disk Space.
/// </summary>
public static string MainViewModel_LowDiskSpace {
get {
return ResourceManager.GetString("MainViewModel_LowDiskSpace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Warning, you are running low on disk space. HandBrake will not be able to complete this encode if you run out of space. .
/// </summary>
public static string MainViewModel_LowDiskSpaceWarning {
get {
return ResourceManager.GetString("MainViewModel_LowDiskSpaceWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the preset: .
/// </summary>
public static string MainViewModel_PresetRemove_AreYouSure {
get {
return ResourceManager.GetString("MainViewModel_PresetRemove_AreYouSure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to launch destination directory..
/// </summary>
public static string MainViewModel_UnableToLaunchDestDir {
get {
return ResourceManager.GetString("MainViewModel_UnableToLaunchDestDir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please check that you have a valid destination directory..
/// </summary>
public static string MainViewModel_UnableToLaunchDestDirSolution {
get {
return ResourceManager.GetString("MainViewModel_UnableToLaunchDestDirSolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Manage Preset.
/// </summary>
public static string ManagePresetView_ManagePreset {
get {
return ResourceManager.GetString("ManagePresetView_ManagePreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Actors:.
/// </summary>
public static string MetadataView_Actors {
get {
return ResourceManager.GetString("MetadataView_Actors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comments:.
/// </summary>
public static string MetadataView_Comments {
get {
return ResourceManager.GetString("MetadataView_Comments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description:.
/// </summary>
public static string MetadataView_Description {
get {
return ResourceManager.GetString("MetadataView_Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Director:.
/// </summary>
public static string MetadataView_Director {
get {
return ResourceManager.GetString("MetadataView_Director", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Genre:.
/// </summary>
public static string MetadataView_Genre {
get {
return ResourceManager.GetString("MetadataView_Genre", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Plot:.
/// </summary>
public static string MetadataView_Plot {
get {
return ResourceManager.GetString("MetadataView_Plot", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Release Date:.
/// </summary>
public static string MetadataView_ReleaseDate {
get {
return ResourceManager.GetString("MetadataView_ReleaseDate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Metadata.
/// </summary>
public static string MetaDataView_Title {
get {
return ResourceManager.GetString("MetaDataView_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Title:.
/// </summary>
public static string MetadataView_TitleTag {
get {
return ResourceManager.GetString("MetadataView_TitleTag", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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}.
/// </summary>
public static string MiniViewModel_EncodeStatusChanged_StatusLabel {
get {
return ResourceManager.GetString("MiniViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Automatic.
/// </summary>
public static string Mp4Behaviour_Auto {
get {
return ResourceManager.GetString("Mp4Behaviour_Auto", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Always use M4V.
/// </summary>
public static string Mp4Behaviour_UseM4v {
get {
return ResourceManager.GetString("Mp4Behaviour_UseM4v", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Always use MP4.
/// </summary>
public static string Mp4Behaviour_UseMp4 {
get {
return ResourceManager.GetString("Mp4Behaviour_UseMp4", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Additional Information.
/// </summary>
public static string NoAdditionalInformation {
get {
return ResourceManager.GetString("NoAdditionalInformation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Notice.
/// </summary>
public static string Notice {
get {
return ResourceManager.GetString("Notice", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Log files older than 30 days.
/// </summary>
public static string Options_30DayLogClear {
get {
return ResourceManager.GetString("Options_30DayLogClear", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to About HandBrake.
/// </summary>
public static string Options_About {
get {
return ResourceManager.GetString("Options_About", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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).
/// </summary>
public static string Options_AdditionalFormatOptions {
get {
return ResourceManager.GetString("Options_AdditionalFormatOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advanced.
/// </summary>
public static string Options_Advanced {
get {
return ResourceManager.GetString("Options_Advanced", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advanced Options.
/// </summary>
public static string Options_AdvancedOptions {
get {
return ResourceManager.GetString("Options_AdvancedOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Application Toolbar.
/// </summary>
public static string Options_ApplicaitonToolbar {
get {
return ResourceManager.GetString("Options_ApplicaitonToolbar", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Arguments:.
/// </summary>
public static string Options_Arguments {
get {
return ResourceManager.GetString("Options_Arguments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Automatic File Naming.
/// </summary>
public static string Options_AutomaticFileNaming {
get {
return ResourceManager.GetString("Options_AutomaticFileNaming", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Automatically name output files.
/// </summary>
public static string Options_AutoNameOutput {
get {
return ResourceManager.GetString("Options_AutoNameOutput", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check for Updates.
/// </summary>
public static string Options_CheckForUpdates {
get {
return ResourceManager.GetString("Options_CheckForUpdates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Always clear completed queue items after an encode completes.
/// </summary>
public static string Options_ClearCompleted {
get {
return ResourceManager.GetString("Options_ClearCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Log History.
/// </summary>
public static string Options_ClearLogs {
get {
return ResourceManager.GetString("Options_ClearLogs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Put a copy of individual encode logs in a specified location:.
/// </summary>
public static string Options_CopyLogToDir {
get {
return ResourceManager.GetString("Options_CopyLogToDir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Put a copy of individual encode logs in the same location as the encoded video.
/// </summary>
public static string Options_CopyLogToEncDir {
get {
return ResourceManager.GetString("Options_CopyLogToEncDir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current Version.
/// </summary>
public static string Options_CurVersion {
get {
return ResourceManager.GetString("Options_CurVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use the Dark Theme. (Requires Restart, Windows 10 only).
/// </summary>
public static string Options_DarkTheme {
get {
return ResourceManager.GetString("Options_DarkTheme", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Decoding.
/// </summary>
public static string Options_Decoding {
get {
return ResourceManager.GetString("Options_Decoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Default Path:.
/// </summary>
public static string Options_DefaultPath {
get {
return ResourceManager.GetString("Options_DefaultPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Available additional Options: {source_path} or {source_folder_name} or {source}.
/// </summary>
public static string Options_DefaultPathAdditionalParams {
get {
return ResourceManager.GetString("Options_DefaultPathAdditionalParams", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download Update.
/// </summary>
public static string Options_DownloadUpdates {
get {
return ResourceManager.GetString("Options_DownloadUpdates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DVD Reading.
/// </summary>
public static string Options_DVD {
get {
return ResourceManager.GetString("Options_DVD", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable LibDVDNav. (libdvdread will be used instead).
/// </summary>
public static string Options_DvdRead {
get {
return ResourceManager.GetString("Options_DvdRead", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encode Completed.
/// </summary>
public static string Options_EncodeCompleted {
get {
return ResourceManager.GetString("Options_EncodeCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoding.
/// </summary>
public static string Options_Encoding {
get {
return ResourceManager.GetString("Options_Encoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File Format:.
/// </summary>
public static string Options_Format {
get {
return ResourceManager.GetString("Options_Format", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to General.
/// </summary>
public static string Options_General {
get {
return ResourceManager.GetString("Options_General", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Logging.
/// </summary>
public static string Options_Logging {
get {
return ResourceManager.GetString("Options_Logging", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Log Verbosity Level:.
/// </summary>
public static string Options_LogLevel {
get {
return ResourceManager.GetString("Options_LogLevel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Log Path:.
/// </summary>
public static string Options_LogPath {
get {
return ResourceManager.GetString("Options_LogPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pause queue if disk space is lower than:.
/// </summary>
public static string Options_LowDiskspaceSize {
get {
return ResourceManager.GetString("Options_LowDiskspaceSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to GB.
/// </summary>
public static string Options_LowDiskspaceSizeGB {
get {
return ResourceManager.GetString("Options_LowDiskspaceSizeGB", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Minimize to system tray (Requires Restart).
/// </summary>
public static string Options_MinimiseTray {
get {
return ResourceManager.GetString("Options_MinimiseTray", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Minimum DVD and Blu-ray title duration in seconds. Shorter titles will be skipped:.
/// </summary>
public static string Options_MinTitleScanLength {
get {
return ResourceManager.GetString("Options_MinTitleScanLength", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to MP4 File Extension:.
/// </summary>
public static string Options_MP4FileExtension {
get {
return ResourceManager.GetString("Options_MP4FileExtension", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Notifications.
/// </summary>
public static string Options_Notifications {
get {
return ResourceManager.GetString("Options_Notifications", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to On Startup.
/// </summary>
public static string Options_OnStartup {
get {
return ResourceManager.GetString("Options_OnStartup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output Files.
/// </summary>
public static string Options_Output {
get {
return ResourceManager.GetString("Options_Output", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output Files.
/// </summary>
public static string Options_OutputFiles {
get {
return ResourceManager.GetString("Options_OutputFiles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path: .
/// </summary>
public static string Options_Path {
get {
return ResourceManager.GetString("Options_Path", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Path to VLC Player.
/// </summary>
public static string Options_PathToVLC {
get {
return ResourceManager.GetString("Options_PathToVLC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prevent the system from sleeping while encoding.
/// </summary>
public static string Options_PreventSleep {
get {
return ResourceManager.GetString("Options_PreventSleep", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Number of picture previews to scan:.
/// </summary>
public static string Options_PreviewScanCount {
get {
return ResourceManager.GetString("Options_PreviewScanCount", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Priority Level:.
/// </summary>
public static string Options_PriorityLevel {
get {
return ResourceManager.GetString("Options_PriorityLevel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Perform action immediately. (This will disable the 60 second confirmation dialog).
/// </summary>
public static string Options_PromptBeforeAction {
get {
return ResourceManager.GetString("Options_PromptBeforeAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefer use of Intel QuickSync for decoding video when available. .
/// </summary>
public static string Options_QsvDecode {
get {
return ResourceManager.GetString("Options_QsvDecode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Also Use QSV Decoding when not using a QuickSync encoder. (i.e. x265) .
/// </summary>
public static string Options_QsvDecodeForNonFullPath {
get {
return ResourceManager.GetString("Options_QsvDecodeForNonFullPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Completed.
/// </summary>
public static string Options_QueueCompleted {
get {
return ResourceManager.GetString("Options_QueueCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove common punctuation.
/// </summary>
public static string Options_RemovePunctuation {
get {
return ResourceManager.GetString("Options_RemovePunctuation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace underscores with a space.
/// </summary>
public static string Options_ReplaceUnderscores {
get {
return ResourceManager.GetString("Options_ReplaceUnderscores", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reset to 'Do nothing' when the app is re-launched..
/// </summary>
public static string Options_ResetDoNothing {
get {
return ResourceManager.GetString("Options_ResetDoNothing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose Scaler:.
/// </summary>
public static string Options_Scaler {
get {
return ResourceManager.GetString("Options_Scaler", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scaling.
/// </summary>
public static string Options_Scaling {
get {
return ResourceManager.GetString("Options_Scaling", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Send file to:.
/// </summary>
public static string Options_SendFileTo {
get {
return ResourceManager.GetString("Options_SendFileTo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show the new experimental queue design..
/// </summary>
public static string Options_ShowExperimentalQueueDesign {
get {
return ResourceManager.GetString("Options_ShowExperimentalQueueDesign", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show 'Add All to Queue' on the toolbar.
/// </summary>
public static string Options_ShowToolbarAddAll {
get {
return ResourceManager.GetString("Options_ShowToolbarAddAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show 'Add Selection to Queue' on the toolbar.
/// </summary>
public static string Options_ShowToolbarAddSelection {
get {
return ResourceManager.GetString("Options_ShowToolbarAddSelection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to System.
/// </summary>
public static string Options_SystemOptions {
get {
return ResourceManager.GetString("Options_SystemOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Change case to Title Case.
/// </summary>
public static string Options_TitleCase {
get {
return ResourceManager.GetString("Options_TitleCase", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to User Interface Behaviour.
/// </summary>
public static string Options_UIBehaviour {
get {
return ResourceManager.GetString("Options_UIBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updates.
/// </summary>
public static string Options_Updates {
get {
return ResourceManager.GetString("Options_Updates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to User Interface.
/// </summary>
public static string Options_UserInterface {
get {
return ResourceManager.GetString("Options_UserInterface", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Version:.
/// </summary>
public static string Options_Version {
get {
return ResourceManager.GetString("Options_Version", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Video.
/// </summary>
public static string Options_Video {
get {
return ResourceManager.GetString("Options_Video", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This path is used for the video preview feature only..
/// </summary>
public static string Options_VideoPreviewPath {
get {
return ResourceManager.GetString("Options_VideoPreviewPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to View Log Directory.
/// </summary>
public static string Options_ViewLogDirectory {
get {
return ResourceManager.GetString("Options_ViewLogDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When Done.
/// </summary>
public static string Options_WhenDone {
get {
return ResourceManager.GetString("Options_WhenDone", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When Done:.
/// </summary>
public static string Options_WhenDoneColon {
get {
return ResourceManager.GetString("Options_WhenDoneColon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to x264/5 Settings.
/// </summary>
public static string Options_x264 {
get {
return ResourceManager.GetString("Options_x264", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Constant quality fractional granularity:.
/// </summary>
public static string Options_x264Granularity {
get {
return ResourceManager.GetString("Options_x264Granularity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to General.
/// </summary>
public static string OptionsTab_General {
get {
return ResourceManager.GetString("OptionsTab_General", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Always use the default path for each new name generated..
/// </summary>
public static string OptionsView_AlwaysUseDefaultPath {
get {
return ResourceManager.GetString("OptionsView_AlwaysUseDefaultPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to < Back.
/// </summary>
public static string OptionsView_BackButton {
get {
return ResourceManager.GetString("OptionsView_BackButton", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checking for Updates ....
/// </summary>
public static string OptionsView_CheckingForUpdates {
get {
return ResourceManager.GetString("OptionsView_CheckingForUpdates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choice of encoder will be made available on the 'Video' tab..
/// </summary>
public static string OptionsView_ChoiceOfEncoderHint {
get {
return ResourceManager.GetString("OptionsView_ChoiceOfEncoderHint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you wish to clear the log file directory?.
/// </summary>
public static string OptionsView_ClearLogDirConfirm {
get {
return ResourceManager.GetString("OptionsView_ClearLogDirConfirm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Logs.
/// </summary>
public static string OptionsView_ClearLogs {
get {
return ResourceManager.GetString("OptionsView_ClearLogs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Downloading....
/// </summary>
public static string OptionsView_Downloading {
get {
return ResourceManager.GetString("OptionsView_Downloading", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow use of the Nvidia NVENC Encoders.
/// </summary>
public static string OptionsView_EnableNvencEncoding {
get {
return ResourceManager.GetString("OptionsView_EnableNvencEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow use of the Intel QuickSync Encoders.
/// </summary>
public static string OptionsView_EnableQuicksyncEncoding {
get {
return ResourceManager.GetString("OptionsView_EnableQuicksyncEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow use of the AMD VCE Encoders.
/// </summary>
public static string OptionsView_EnableVceEncoding {
get {
return ResourceManager.GetString("OptionsView_EnableVceEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filename collision behaviour:.
/// </summary>
public static string OptionsView_FileCollisionBehaviour {
get {
return ResourceManager.GetString("OptionsView_FileCollisionBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File overwrite behaviour:.
/// </summary>
public static string OptionsView_FileOverwriteBehaviour {
get {
return ResourceManager.GetString("OptionsView_FileOverwriteBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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).
/// </summary>
public static string OptionsView_FormatOptions {
get {
return ResourceManager.GetString("OptionsView_FormatOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string OptionsView_HardwareDetectFailed {
get {
return ResourceManager.GetString("OptionsView_HardwareDetectFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file format entered contained invalid characters. These have been removed. .
/// </summary>
public static string OptionsView_InvalidFileFormatChars {
get {
return ResourceManager.GetString("OptionsView_InvalidFileFormatChars", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Language:.
/// </summary>
public static string OptionsView_Language {
get {
return ResourceManager.GetString("OptionsView_Language", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake's Log file directory has been cleared!.
/// </summary>
public static string OptionsView_LogsCleared {
get {
return ResourceManager.GetString("OptionsView_LogsCleared", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No audio file has been set. Please click 'Browse' to select a wav or mp3 file for playback..
/// </summary>
public static string OptionsView_MediaFileNotSet {
get {
return ResourceManager.GetString("OptionsView_MediaFileNotSet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Notice.
/// </summary>
public static string OptionsView_Notice {
get {
return ResourceManager.GetString("OptionsView_Notice", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Available Options: {source_path} {source_folder_name} {source}.
/// </summary>
public static string OptionsView_PathOptions {
get {
return ResourceManager.GetString("OptionsView_PathOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Play.
/// </summary>
public static string OptionsView_Play {
get {
return ResourceManager.GetString("OptionsView_Play", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Play a sound when each encode completes.
/// </summary>
public static string OptionsView_PlaySoundWhenDone {
get {
return ResourceManager.GetString("OptionsView_PlaySoundWhenDone", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Play a sound when the queue completes.
/// </summary>
public static string OptionsView_PlaySoundWhenQueueDone {
get {
return ResourceManager.GetString("OptionsView_PlaySoundWhenQueueDone", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preparing for Update ....
/// </summary>
public static string OptionsView_PreparingUpdate {
get {
return ResourceManager.GetString("OptionsView_PreparingUpdate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please select a folder..
/// </summary>
public static string OptionsView_SelectFolder {
get {
return ResourceManager.GetString("OptionsView_SelectFolder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Click 'Browse' to set the default location.
/// </summary>
public static string OptionsView_SetDefaultLocationOutputFIle {
get {
return ResourceManager.GetString("OptionsView_SetDefaultLocationOutputFIle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show previews on summary tab..
/// </summary>
public static string OptionsView_ShowPreviewOnSummaryTab {
get {
return ResourceManager.GetString("OptionsView_ShowPreviewOnSummaryTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show the encode status in the application title bar..
/// </summary>
public static string OptionsView_ShowStatusInTitleBar {
get {
return ResourceManager.GetString("OptionsView_ShowStatusInTitleBar", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string OptionsViewModel_64bitAvailable {
get {
return ResourceManager.GetString("OptionsViewModel_64bitAvailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Click 'Check for Updates' to check for new versions.
/// </summary>
public static string OptionsViewModel_CheckForUpdatesMsg {
get {
return ResourceManager.GetString("OptionsViewModel_CheckForUpdatesMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A New Update is Available! Please check the website for release notes..
/// </summary>
public static string OptionsViewModel_NewUpdate {
get {
return ResourceManager.GetString("OptionsViewModel_NewUpdate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no new updates at this time..
/// </summary>
public static string OptionsViewModel_NoNewUpdates {
get {
return ResourceManager.GetString("OptionsViewModel_NoNewUpdates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update Downloaded.
/// </summary>
public static string OptionsViewModel_UpdateDownloaded {
get {
return ResourceManager.GetString("OptionsViewModel_UpdateDownloaded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update Failed. You can try downloading the update from https://handbrake.fr.
/// </summary>
public static string OptionsViewModel_UpdateFailed {
get {
return ResourceManager.GetString("OptionsViewModel_UpdateFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update Service Unavailable. You can try downloading the update from https://handbrake.fr.
/// </summary>
public static string OptionsViewModel_UpdateServiceUnavailable {
get {
return ResourceManager.GetString("OptionsViewModel_UpdateServiceUnavailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake requires a 64bit version of Windows 7 or later to run..
/// </summary>
public static string OsBitnessWarning {
get {
return ResourceManager.GetString("OsBitnessWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string OsVersionWarning {
get {
return ResourceManager.GetString("OsVersionWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Overwrite?.
/// </summary>
public static string Overwrite {
get {
return ResourceManager.GetString("Overwrite", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string PauseOnLowDiskspace {
get {
return ResourceManager.GetString("PauseOnLowDiskspace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output: {0}.
/// </summary>
public static string PictureSettings_OutputResolution {
get {
return ResourceManager.GetString("PictureSettings_OutputResolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Anamorphic:.
/// </summary>
public static string PictureSettingsView_Anamorphic {
get {
return ResourceManager.GetString("PictureSettingsView_Anamorphic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Automatic.
/// </summary>
public static string PictureSettingsView_Automatic {
get {
return ResourceManager.GetString("PictureSettingsView_Automatic", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bottom.
/// </summary>
public static string PictureSettingsView_Bottom {
get {
return ResourceManager.GetString("PictureSettingsView_Bottom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cropping.
/// </summary>
public static string PictureSettingsView_Cropping {
get {
return ResourceManager.GetString("PictureSettingsView_Cropping", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom.
/// </summary>
public static string PictureSettingsView_Custom {
get {
return ResourceManager.GetString("PictureSettingsView_Custom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display Width:.
/// </summary>
public static string PictureSettingsView_DisplayWitdh {
get {
return ResourceManager.GetString("PictureSettingsView_DisplayWitdh", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Height:.
/// </summary>
public static string PictureSettingsView_Height {
get {
return ResourceManager.GetString("PictureSettingsView_Height", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Keep Aspect Ratio.
/// </summary>
public static string PictureSettingsView_KeepAR {
get {
return ResourceManager.GetString("PictureSettingsView_KeepAR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Left.
/// </summary>
public static string PictureSettingsView_Left {
get {
return ResourceManager.GetString("PictureSettingsView_Left", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Modulus:.
/// </summary>
public static string PictureSettingsView_Modulus {
get {
return ResourceManager.GetString("PictureSettingsView_Modulus", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output.
/// </summary>
public static string PictureSettingsView_Output {
get {
return ResourceManager.GetString("PictureSettingsView_Output", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PAR:.
/// </summary>
public static string PictureSettingsView_PAR {
get {
return ResourceManager.GetString("PictureSettingsView_PAR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Right.
/// </summary>
public static string PictureSettingsView_Right {
get {
return ResourceManager.GetString("PictureSettingsView_Right", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Size.
/// </summary>
public static string PictureSettingsView_Size {
get {
return ResourceManager.GetString("PictureSettingsView_Size", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source:.
/// </summary>
public static string PictureSettingsView_Source {
get {
return ResourceManager.GetString("PictureSettingsView_Source", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Top.
/// </summary>
public static string PictureSettingsView_Top {
get {
return ResourceManager.GetString("PictureSettingsView_Top", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Width:.
/// </summary>
public static string PictureSettingsView_Width {
get {
return ResourceManager.GetString("PictureSettingsView_Width", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display Size: {0}x{1}, PAR {2}x{3}.
/// </summary>
public static string PictureSettingsViewModel_StorageDisplayLabel {
get {
return ResourceManager.GetString("PictureSettingsViewModel_StorageDisplayLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapters.
/// </summary>
public static string PointToPointMode_Chapters {
get {
return ResourceManager.GetString("PointToPointMode_Chapters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Frames.
/// </summary>
public static string PointToPointMode_Frames {
get {
return ResourceManager.GetString("PointToPointMode_Frames", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview.
/// </summary>
public static string PointToPointMode_Preview {
get {
return ResourceManager.GetString("PointToPointMode_Preview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Seconds.
/// </summary>
public static string PointToPointMode_Seconds {
get {
return ResourceManager.GetString("PointToPointMode_Seconds", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Portable Mode: Unable to read portable.ini. There may be an error in this file. Please retry using portable.ini.template as a guide..
/// </summary>
public static string Portable_IniFileError {
get {
return ResourceManager.GetString("Portable_IniFileError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Portable Mode: Unable to create Storage directory. Please check the path is correct and is writable.
///
/// {0}.
/// </summary>
public static string Portable_StorageNotWritable {
get {
return ResourceManager.GetString("Portable_StorageNotWritable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Portable Mode: Unable to create TMP directory. Please check the path is correct and is writable.
///
/// {0}.
/// </summary>
public static string Portable_TmpNotWritable {
get {
return ResourceManager.GetString("Portable_TmpNotWritable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preferences.
/// </summary>
public static string Preferences {
get {
return ResourceManager.GetString("Preferences", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom.
/// </summary>
public static string Preset_Custom {
get {
return ResourceManager.GetString("Preset_Custom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Export to file.
/// </summary>
public static string Preset_Export {
get {
return ResourceManager.GetString("Preset_Export", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import from file.
/// </summary>
public static string Preset_Import {
get {
return ResourceManager.GetString("Preset_Import", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Official.
/// </summary>
public static string Preset_Official {
get {
return ResourceManager.GetString("Preset_Official", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preset Version.
/// </summary>
public static string Preset_OldVersion_Header {
get {
return ResourceManager.GetString("Preset_OldVersion_Header", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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?.
/// </summary>
public static string Preset_OldVersion_Message {
get {
return ResourceManager.GetString("Preset_OldVersion_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to import preset!.
/// </summary>
public static string Preset_UnableToImport_Header {
get {
return ResourceManager.GetString("Preset_UnableToImport_Header", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to import the preset as it appears to be corrupted or from an older version of HandBrake..
/// </summary>
public static string Preset_UnableToImport_Message {
get {
return ResourceManager.GetString("Preset_UnableToImport_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom.
/// </summary>
public static string PresetPictureSettingsMode_Custom {
get {
return ResourceManager.GetString("PresetPictureSettingsMode_Custom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to None.
/// </summary>
public static string PresetPictureSettingsMode_None {
get {
return ResourceManager.GetString("PresetPictureSettingsMode_None", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Always use Source Resolution.
/// </summary>
public static string PresetPictureSettingsMode_SourceMaximum {
get {
return ResourceManager.GetString("PresetPictureSettingsMode_SourceMaximum", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Presets_PresetForceReset {
get {
return ResourceManager.GetString("Presets_PresetForceReset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Built-in presets have been reset..
/// </summary>
public static string Presets_ResetComplete {
get {
return ResourceManager.GetString("Presets_ResetComplete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reset Complete.
/// </summary>
public static string Presets_ResetHeader {
get {
return ResourceManager.GetString("Presets_ResetHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Archived File:.
/// </summary>
public static string PresetService_ArchiveFile {
get {
return ResourceManager.GetString("PresetService_ArchiveFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your presets file contained built-in presets. The import function does not support importing these. Please use 'Presets Menu -> Reset Built In-Presets' to restore the standard presets.
///
///Where supported, any user presets will have been imported..
/// </summary>
public static string PresetService_ImportingBuiltInWarning {
get {
return ResourceManager.GetString("PresetService_ImportingBuiltInWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to load presets..
/// </summary>
public static string PresetService_UnableToLoad {
get {
return ResourceManager.GetString("PresetService_UnableToLoad", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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:.
/// </summary>
public static string PresetService_UnableToLoadPresets {
get {
return ResourceManager.GetString("PresetService_UnableToLoadPresets", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview {0}.
/// </summary>
public static string Preview {
get {
return ResourceManager.GetString("Preview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview (Scaled).
/// </summary>
public static string Preview_Scaled {
get {
return ResourceManager.GetString("Preview_Scaled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Above Normal.
/// </summary>
public static string ProcessPriority_AboveNormal {
get {
return ResourceManager.GetString("ProcessPriority_AboveNormal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Below Normal.
/// </summary>
public static string ProcessPriority_BelowNormal {
get {
return ResourceManager.GetString("ProcessPriority_BelowNormal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to High.
/// </summary>
public static string ProcessPriority_High {
get {
return ResourceManager.GetString("ProcessPriority_High", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Low.
/// </summary>
public static string ProcessPriority_Low {
get {
return ResourceManager.GetString("ProcessPriority_Low", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Normal.
/// </summary>
public static string ProcessPriority_Normal {
get {
return ResourceManager.GetString("ProcessPriority_Normal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Question.
/// </summary>
public static string Question {
get {
return ResourceManager.GetString("Question", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake is already encoding a file..
/// </summary>
public static string Queue_AlreadyEncoding {
get {
return ResourceManager.GetString("Queue_AlreadyEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please stop the current encode. If the problem persists, please restart HandBrake..
/// </summary>
public static string Queue_AlreadyEncodingSolution {
get {
return ResourceManager.GetString("Queue_AlreadyEncodingSolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake has detected multiple unfinished queue files. These will be from multiple instances of HandBrake running. Would you like to recover all unfinished jobs?.
/// </summary>
public static string Queue_RecoverQueueQuestionPlural {
get {
return ResourceManager.GetString("Queue_RecoverQueueQuestionPlural", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HandBrake has detected unfinished items on the queue from the last time the application was launched. Would you like to recover these?.
/// </summary>
public static string Queue_RecoverQueueQuestionSingular {
get {
return ResourceManager.GetString("Queue_RecoverQueueQuestionSingular", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Recovery Possible.
/// </summary>
public static string Queue_RecoveryPossible {
get {
return ResourceManager.GetString("Queue_RecoveryPossible", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to reset job status as it is not in an Error or Completed state.
/// </summary>
public static string Queue_UnableToResetJob {
get {
return ResourceManager.GetString("Queue_UnableToResetJob", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to restore queue file..
/// </summary>
public static string Queue_UnableToRestoreFile {
get {
return ResourceManager.GetString("Queue_UnableToRestoreFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file may be corrupted or from an older incompatible version of HandBrake.
/// </summary>
public static string Queue_UnableToRestoreFileExtended {
get {
return ResourceManager.GetString("Queue_UnableToRestoreFileExtended", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WARNING: You do not have automatic file naming turned on. Please enable this in options..
/// </summary>
public static string QueueSelection_AutoNameWarning {
get {
return ResourceManager.GetString("QueueSelection_AutoNameWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WARNING: You do not currently have automatic audio and subtitle track selection setup. You can setup the default track selection behaviour in options..
/// </summary>
public static string QueueSelection_AutoTrackSelectionWarning {
get {
return ResourceManager.GetString("QueueSelection_AutoTrackSelectionWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The selected titles will be added using the "{0}" preset..
/// </summary>
public static string QueueSelection_UsingPreset {
get {
return ResourceManager.GetString("QueueSelection_UsingPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose titles:.
/// </summary>
public static string QueueSelectionView_ChooseTitles {
get {
return ResourceManager.GetString("QueueSelectionView_ChooseTitles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add to Queue.
/// </summary>
public static string QueueSelectionView_Title {
get {
return ResourceManager.GetString("QueueSelectionView_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add to Queue.
/// </summary>
public static string QueueSelectionViewModel_AddToQueue {
get {
return ResourceManager.GetString("QueueSelectionViewModel_AddToQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Actions.
/// </summary>
public static string QueueView_Actions {
get {
return ResourceManager.GetString("QueueView_Actions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advanced:.
/// </summary>
public static string QueueView_Advanced {
get {
return ResourceManager.GetString("QueueView_Advanced", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audio:.
/// </summary>
public static string QueueView_Audio {
get {
return ResourceManager.GetString("QueueView_Audio", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear All.
/// </summary>
public static string QueueView_ClearAll {
get {
return ResourceManager.GetString("QueueView_ClearAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Completed.
/// </summary>
public static string QueueView_ClearCompleted {
get {
return ResourceManager.GetString("QueueView_ClearCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Queue.
/// </summary>
public static string QueueView_ClearQueue {
get {
return ResourceManager.GetString("QueueView_ClearQueue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear Selected.
/// </summary>
public static string QueueView_ClearSelected {
get {
return ResourceManager.GetString("QueueView_ClearSelected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Currently Paused.
/// </summary>
public static string QueueView_CurrentlyPaused {
get {
return ResourceManager.GetString("QueueView_CurrentlyPaused", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete.
/// </summary>
public static string QueueView_Delete {
get {
return ResourceManager.GetString("QueueView_Delete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete Selected.
/// </summary>
public static string QueueView_DeleteSelected {
get {
return ResourceManager.GetString("QueueView_DeleteSelected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Destination:.
/// </summary>
public static string QueueView_Destination {
get {
return ResourceManager.GetString("QueueView_Destination", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encode Time:.
/// </summary>
public static string QueueView_Duration {
get {
return ResourceManager.GetString("QueueView_Duration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Edit.
/// </summary>
public static string QueueView_Edit {
get {
return ResourceManager.GetString("QueueView_Edit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to End Time:.
/// </summary>
public static string QueueView_EndTime {
get {
return ResourceManager.GetString("QueueView_EndTime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Export Queue.
/// </summary>
public static string QueueView_Export {
get {
return ResourceManager.GetString("QueueView_Export", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Export Queue (CLI Only).
/// </summary>
public static string QueueView_ExportCLI {
get {
return ResourceManager.GetString("QueueView_ExportCLI", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Filesize: .
/// </summary>
public static string QueueView_FileSize {
get {
return ResourceManager.GetString("QueueView_FileSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import Queue.
/// </summary>
public static string QueueView_Import {
get {
return ResourceManager.GetString("QueueView_Import", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The log will be available after the encode completes..
/// </summary>
public static string QueueView_LogNotAvailableYet {
get {
return ResourceManager.GetString("QueueView_LogNotAvailableYet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not Available.
/// </summary>
public static string QueueView_NotAvailable {
get {
return ResourceManager.GetString("QueueView_NotAvailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open Destination Directory.
/// </summary>
public static string QueueView_OpenDestDir {
get {
return ResourceManager.GetString("QueueView_OpenDestDir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open Source Directory.
/// </summary>
public static string QueueView_OpenSourceDir {
get {
return ResourceManager.GetString("QueueView_OpenSourceDir", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Options.
/// </summary>
public static string QueueView_Options {
get {
return ResourceManager.GetString("QueueView_Options", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Pause Queue.
/// </summary>
public static string QueueView_Pause {
get {
return ResourceManager.GetString("QueueView_Pause", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Paused Duration:.
/// </summary>
public static string QueueView_PausedDuration {
get {
return ResourceManager.GetString("QueueView_PausedDuration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Picture Settings:.
/// </summary>
public static string QueueView_PictureSettings {
get {
return ResourceManager.GetString("QueueView_PictureSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Play File.
/// </summary>
public static string QueueView_PlayMediaFile {
get {
return ResourceManager.GetString("QueueView_PlayMediaFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reset.
/// </summary>
public static string QueueView_Reset {
get {
return ResourceManager.GetString("QueueView_Reset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Retry All Jobs.
/// </summary>
public static string QueueView_ResetAllJobs {
get {
return ResourceManager.GetString("QueueView_ResetAllJobs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Retry Failed.
/// </summary>
public static string QueueView_ResetFailed {
get {
return ResourceManager.GetString("QueueView_ResetFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reset Selected Jobs.
/// </summary>
public static string QueueView_ResetSelectedJobs {
get {
return ResourceManager.GetString("QueueView_ResetSelectedJobs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source:.
/// </summary>
public static string QueueView_Source {
get {
return ResourceManager.GetString("QueueView_Source", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Queue.
/// </summary>
public static string QueueView_Start {
get {
return ResourceManager.GetString("QueueView_Start", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start Time:.
/// </summary>
public static string QueueView_StartTime {
get {
return ResourceManager.GetString("QueueView_StartTime", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Statistics.
/// </summary>
public static string QueueView_Statistics {
get {
return ResourceManager.GetString("QueueView_Statistics", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Statistics will be available after an encode completes..
/// </summary>
public static string QueueView_StatsNotAvailableYet {
get {
return ResourceManager.GetString("QueueView_StatsNotAvailableYet", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subtitles:.
/// </summary>
public static string QueueView_Subtitles {
get {
return ResourceManager.GetString("QueueView_Subtitles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Summary.
/// </summary>
public static string QueueView_Summary {
get {
return ResourceManager.GetString("QueueView_Summary", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Video:.
/// </summary>
public static string QueueView_Video {
get {
return ResourceManager.GetString("QueueView_Video", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When Done:.
/// </summary>
public static string QueueView_WhenDone {
get {
return ResourceManager.GetString("QueueView_WhenDone", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you wish to clear the queue?.
/// </summary>
public static string QueueViewModel_ClearQueueConfrimation {
get {
return ResourceManager.GetString("QueueViewModel_ClearQueueConfrimation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the selected jobs?.
/// </summary>
public static string QueueViewModel_DelSelectedJobConfirmation {
get {
return ResourceManager.GetString("QueueViewModel_DelSelectedJobConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you wish to edit this job? It will be removed from the queue and sent to the main window..
/// </summary>
public static string QueueViewModel_EditConfrimation {
get {
return ResourceManager.GetString("QueueViewModel_EditConfrimation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}
///Time Remaining: {5}, Elapsed: {6} {7}.
/// </summary>
public static string QueueViewModel_EncodeStatusChanged_StatusLabel {
get {
return ResourceManager.GetString("QueueViewModel_EncodeStatusChanged_StatusLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This encode is currently in progress. If you delete it, the encode will be stopped. Are you sure you wish to proceed?.
/// </summary>
public static string QueueViewModel_JobCurrentlyRunningWarning {
get {
return ResourceManager.GetString("QueueViewModel_JobCurrentlyRunningWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} jobs pending.
/// </summary>
public static string QueueViewModel_JobsPending {
get {
return ResourceManager.GetString("QueueViewModel_JobsPending", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Last Queued Job Finished.
/// </summary>
public static string QueueViewModel_LastJobFinished {
get {
return ResourceManager.GetString("QueueViewModel_LastJobFinished", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No encodes pending.
/// </summary>
public static string QueueViewModel_NoEncodesPending {
get {
return ResourceManager.GetString("QueueViewModel_NoEncodesPending", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no jobs currently encoding.
/// </summary>
public static string QueueViewModel_NoJobsPending {
get {
return ResourceManager.GetString("QueueViewModel_NoJobsPending", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no pending jobs..
/// </summary>
public static string QueueViewModel_NoPendingJobs {
get {
return ResourceManager.GetString("QueueViewModel_NoPendingJobs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue.
/// </summary>
public static string QueueViewModel_Queue {
get {
return ResourceManager.GetString("QueueViewModel_Queue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Completed.
/// </summary>
public static string QueueViewModel_QueueCompleted {
get {
return ResourceManager.GetString("QueueViewModel_QueueCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Not Running.
/// </summary>
public static string QueueViewModel_QueueNotRunning {
get {
return ResourceManager.GetString("QueueViewModel_QueueNotRunning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Paused.
/// </summary>
public static string QueueViewModel_QueuePaused {
get {
return ResourceManager.GetString("QueueViewModel_QueuePaused", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Queue has been paused. The currently running job will run to completion and no further jobs will start..
/// </summary>
public static string QueueViewModel_QueuePauseNotice {
get {
return ResourceManager.GetString("QueueViewModel_QueuePauseNotice", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Paused.
/// </summary>
public static string QueueViewModel_QueuePending {
get {
return ResourceManager.GetString("QueueViewModel_QueuePending", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Ready.
/// </summary>
public static string QueueViewModel_QueueReady {
get {
return ResourceManager.GetString("QueueViewModel_QueueReady", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Queue Started.
/// </summary>
public static string QueueViewModel_QueueStarted {
get {
return ResourceManager.GetString("QueueViewModel_QueueStarted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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}.
/// </summary>
public static string QueueViewModel_QueueStatusDisplay {
get {
return ResourceManager.GetString("QueueViewModel_QueueStatusDisplay", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An error occurred when trying to stop the scan. Please restart HandBrake..
/// </summary>
public static string ScanService_ScanStopFailed {
get {
return ResourceManager.GetString("ScanService_ScanStopFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Any settings you changed may need to be reset the next time HandBrake launches..
/// </summary>
public static string SettingService_SaveErrorReset {
get {
return ResourceManager.GetString("SettingService_SaveErrorReset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add All Remaining Selected Languages.
/// </summary>
public static string Shared_AddAllForSelected {
get {
return ResourceManager.GetString("Shared_AddAllForSelected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add All Remaining Tracks.
/// </summary>
public static string Shared_AddAllRemaining {
get {
return ResourceManager.GetString("Shared_AddAllRemaining", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add New Track.
/// </summary>
public static string Shared_AddNewTrack {
get {
return ResourceManager.GetString("Shared_AddNewTrack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Track.
/// </summary>
public static string Shared_AddTrack {
get {
return ResourceManager.GetString("Shared_AddTrack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Available Languages:.
/// </summary>
public static string Shared_AvailableLanguages {
get {
return ResourceManager.GetString("Shared_AvailableLanguages", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose Languages:.
/// </summary>
public static string Shared_ChooseLanguages {
get {
return ResourceManager.GetString("Shared_ChooseLanguages", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Selected Languages:.
/// </summary>
public static string Shared_ChosenLangages {
get {
return ResourceManager.GetString("Shared_ChosenLangages", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configure Default Behaviours.
/// </summary>
public static string Shared_ConfigureDefaultBehaviours {
get {
return ResourceManager.GetString("Shared_ConfigureDefaultBehaviours", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reload.
/// </summary>
public static string Shared_ReloadDefaults {
get {
return ResourceManager.GetString("Shared_ReloadDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An Encode is currently running. Exiting HandBrake will stop this encode.
///Are you sure you wish to exit HandBrake?.
/// </summary>
public static string ShellViewModel_CanClose {
get {
return ResourceManager.GetString("ShellViewModel_CanClose", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to About HandBrake.
/// </summary>
public static string SourceSelection_AboutHandBrake {
get {
return ResourceManager.GetString("SourceSelection_AboutHandBrake", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose Disc to Scan.
/// </summary>
public static string SourceSelection_ChooseDisc {
get {
return ResourceManager.GetString("SourceSelection_ChooseDisc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose File to Scan.
/// </summary>
public static string SourceSelection_ChooseFile {
get {
return ResourceManager.GetString("SourceSelection_ChooseFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose Folder to Scan.
/// </summary>
public static string SourceSelection_ChooseFolder {
get {
return ResourceManager.GetString("SourceSelection_ChooseFolder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Optionally choose a specific title: .
/// </summary>
public static string SourceSelection_ChooseSpecificTitle {
get {
return ResourceManager.GetString("SourceSelection_ChooseSpecificTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Then choose the video(s) you'd like to encode: .
/// </summary>
public static string SourceSelection_ChooseVideo {
get {
return ResourceManager.GetString("SourceSelection_ChooseVideo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Or drop a file or folder here ....
/// </summary>
public static string SourceSelection_DropFileHere {
get {
return ResourceManager.GetString("SourceSelection_DropFileHere", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File.
/// </summary>
public static string SourceSelection_File {
get {
return ResourceManager.GetString("SourceSelection_File", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Folder (Batch Scan).
/// </summary>
public static string SourceSelection_FolderBatchScan {
get {
return ResourceManager.GetString("SourceSelection_FolderBatchScan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Help.
/// </summary>
public static string SourceSelection_Help {
get {
return ResourceManager.GetString("SourceSelection_Help", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open this DVD or Bluray Drive.
/// </summary>
public static string SourceSelection_OpenDVDBluray {
get {
return ResourceManager.GetString("SourceSelection_OpenDVDBluray", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open a folder with one or more files..
/// </summary>
public static string SourceSelection_OpenFolderWIth {
get {
return ResourceManager.GetString("SourceSelection_OpenFolderWIth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Recover Queue Files.
/// </summary>
public static string SourceSelection_QueueArchiveRecovery {
get {
return ResourceManager.GetString("SourceSelection_QueueArchiveRecovery", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A previous queue archive is available. .
/// </summary>
public static string SourceSelection_QueueArchiveRecoveryDesc {
get {
return ResourceManager.GetString("SourceSelection_QueueArchiveRecoveryDesc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open a single video file..
/// </summary>
public static string SourceSelection_SingleVideoFile {
get {
return ResourceManager.GetString("SourceSelection_SingleVideoFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source Selection.
/// </summary>
public static string SourceSelection_SourceSelection {
get {
return ResourceManager.GetString("SourceSelection_SourceSelection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A new version of HandBrake is available!.
/// </summary>
public static string SourceSelection_UpdateAvailable {
get {
return ResourceManager.GetString("SourceSelection_UpdateAvailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Startup_InitFailed {
get {
return ResourceManager.GetString("Startup_InitFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ready.
/// </summary>
public static string State_Ready {
get {
return ResourceManager.GetString("State_Ready", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to delete previous preview file. You may need to restart the application..
/// </summary>
public static string StaticPreview_UnableToDeletePreview {
get {
return ResourceManager.GetString("StaticPreview_UnableToDeletePreview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Duration:.
/// </summary>
public static string StaticPreviewView_Duration {
get {
return ResourceManager.GetString("StaticPreviewView_Duration", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Live Preview.
/// </summary>
public static string StaticPreviewView_LivePreview {
get {
return ResourceManager.GetString("StaticPreviewView_LivePreview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview Rotation and Flip.
/// </summary>
public static string StaticPreviewView_PreviewRotationFlip {
get {
return ResourceManager.GetString("StaticPreviewView_PreviewRotationFlip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select a preview image.
/// </summary>
public static string StaticPreviewView_SelectPreviewImage {
get {
return ResourceManager.GetString("StaticPreviewView_SelectPreviewImage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview ({0}% actual size).
/// </summary>
public static string StaticPreviewView_Title {
get {
return ResourceManager.GetString("StaticPreviewView_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use system default video player.
/// </summary>
public static string StaticPreviewView_UseSystemDefault {
get {
return ResourceManager.GetString("StaticPreviewView_UseSystemDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Handbrake is already encoding a video! Only one file can be encoded at any one time..
/// </summary>
public static string StaticPreviewViewModel_AlreadyEncoding {
get {
return ResourceManager.GetString("StaticPreviewViewModel_AlreadyEncoding", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You must first scan a source and setup your encode before creating a preview..
/// </summary>
public static string StaticPreviewViewModel_ScanFirst {
get {
return ResourceManager.GetString("StaticPreviewViewModel_ScanFirst", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Picture Preview.
/// </summary>
public static string StaticPreviewViewModel_Title {
get {
return ResourceManager.GetString("StaticPreviewViewModel_Title", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to detect VLC Player.
///Please make sure VLC is installed and the directory specified in HandBrake's options is correct. (See: "Tools Menu > Preferences > General").
/// </summary>
public static string StaticPreviewViewModel_UnableToFindVLC {
get {
return ResourceManager.GetString("StaticPreviewViewModel_UnableToFindVLC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details..
/// </summary>
public static string StaticPreviewViewModel_UnableToPlayFile {
get {
return ResourceManager.GetString("StaticPreviewViewModel_UnableToPlayFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Foreign Audio Scan.
/// </summary>
public static string Subtitle_ForeignAudioScan {
get {
return ResourceManager.GetString("Subtitle_ForeignAudioScan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All Matching Selected Languages.
/// </summary>
public static string SubtitleBehaviourModes_AllMatching {
get {
return ResourceManager.GetString("SubtitleBehaviourModes_AllMatching", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to First Matching Selected Language.
/// </summary>
public static string SubtitleBehaviourModes_FirstMatching {
get {
return ResourceManager.GetString("SubtitleBehaviourModes_FirstMatching", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to None.
/// </summary>
public static string SubtitleBehaviourModes_None {
get {
return ResourceManager.GetString("SubtitleBehaviourModes_None", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to First Track.
/// </summary>
public static string SubtitleBurnInBehaviourModes_FirstTrack {
get {
return ResourceManager.GetString("SubtitleBurnInBehaviourModes_FirstTrack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Foreign Audio Preferred, else First.
/// </summary>
public static string SubtitleBurnInBehaviourModes_ForeignAudioPreferredElseFirst {
get {
return ResourceManager.GetString("SubtitleBurnInBehaviourModes_ForeignAudioPreferredElseFirst", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Foreign Audio Track.
/// </summary>
public static string SubtitleBurnInBehaviourModes_ForeignAudioTrack {
get {
return ResourceManager.GetString("SubtitleBurnInBehaviourModes_ForeignAudioTrack", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to None.
/// </summary>
public static string SubtitleBurnInBehaviourModes_None {
get {
return ResourceManager.GetString("SubtitleBurnInBehaviourModes_None", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Subtitles_BurnInBehaviourModes {
get {
return ResourceManager.GetString("Subtitles_BurnInBehaviourModes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WebM in HandBrake only supports burned subtitles.
///
///You should change your subtitle selections.
///
///If you continue, your non-burned subtitles will be lost..
/// </summary>
public static string Subtitles_WebmSubtitleIncompatibilityError {
get {
return ResourceManager.GetString("Subtitles_WebmSubtitleIncompatibilityError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WebM Subtitle Compatibility.
/// </summary>
public static string Subtitles_WebmSubtitleIncompatibilityHeader {
get {
return ResourceManager.GetString("Subtitles_WebmSubtitleIncompatibilityHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configure Automatic Subtitle Selections.
/// </summary>
public static string SubtitlesDefaultsView_PaneTitle {
get {
return ResourceManager.GetString("SubtitlesDefaultsView_PaneTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Closed Captions when available.
/// </summary>
public static string SubtitlesView_AddCC {
get {
return ResourceManager.GetString("SubtitlesView_AddCC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add 'Foreign Audio Scan'.
/// </summary>
public static string SubtitlesView_AddForeignAudioSearch {
get {
return ResourceManager.GetString("SubtitlesView_AddForeignAudioSearch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Burn In.
/// </summary>
public static string SubtitlesView_BurnIn {
get {
return ResourceManager.GetString("SubtitlesView_BurnIn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Burn-In Behaviour:.
/// </summary>
public static string SubtitlesView_BurnInBehaviour {
get {
return ResourceManager.GetString("SubtitlesView_BurnInBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Default.
/// </summary>
public static string SubtitlesView_Default {
get {
return ResourceManager.GetString("SubtitlesView_Default", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forced Only.
/// </summary>
public static string SubtitlesView_ForcedOnly {
get {
return ResourceManager.GetString("SubtitlesView_ForcedOnly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import Subtitle.
/// </summary>
public static string SubtitlesView_ImportSubtitle {
get {
return ResourceManager.GetString("SubtitlesView_ImportSubtitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Track Selection Behaviour:.
/// </summary>
public static string SubtitlesView_TrackSelectionBehaviour {
get {
return ResourceManager.GetString("SubtitlesView_TrackSelectionBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Selection Behavior.
/// </summary>
public static string SubtitlesViewModel_ConfigureDefaults {
get {
return ResourceManager.GetString("SubtitlesViewModel_ConfigureDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subtitle Defaults.
/// </summary>
public static string SubtitlesViewModel_SubDefaults {
get {
return ResourceManager.GetString("SubtitlesViewModel_SubDefaults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Subtitle Tracks.
/// </summary>
public static string SubtitlesViewModel_SubTracks {
get {
return ResourceManager.GetString("SubtitlesViewModel_SubTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Switch Back To Tracks.
/// </summary>
public static string SubtitlesViewModel_SwitchToTracks {
get {
return ResourceManager.GetString("SubtitlesViewModel_SwitchToTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add All Remaining Closed Captions.
/// </summary>
public static string SubtitleView_AddAllCC {
get {
return ResourceManager.GetString("SubtitleView_AddAllCC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video..
/// </summary>
public static string SubtitleView_SubtitleDefaultsDescription {
get {
return ResourceManager.GetString("SubtitleView_SubtitleDefaultsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Foreign Audio Search.
/// </summary>
public static string SubtitleViewModel_ForeignAudioSearch {
get {
return ResourceManager.GetString("SubtitleViewModel_ForeignAudioSearch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additional Audio Tracks.
/// </summary>
public static string SummaryView_AdditionalAudioTracks {
get {
return ResourceManager.GetString("SummaryView_AdditionalAudioTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additional Subtitle Tracks.
/// </summary>
public static string SummaryView_AdditionalSubtitleTracks {
get {
return ResourceManager.GetString("SummaryView_AdditionalSubtitleTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Burned.
/// </summary>
public static string SummaryView_Burned {
get {
return ResourceManager.GetString("SummaryView_Burned", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chapter Markers.
/// </summary>
public static string SummaryView_Chapters {
get {
return ResourceManager.GetString("SummaryView_Chapters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deblock.
/// </summary>
public static string SummaryView_Deblock {
get {
return ResourceManager.GetString("SummaryView_Deblock", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Detelecine.
/// </summary>
public static string SummaryView_Detelecine {
get {
return ResourceManager.GetString("SummaryView_Detelecine", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to display.
/// </summary>
public static string SummaryView_display {
get {
return ResourceManager.GetString("SummaryView_display", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Grayscale.
/// </summary>
public static string SummaryView_Grayscale {
get {
return ResourceManager.GetString("SummaryView_Grayscale", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Audio Tracks.
/// </summary>
public static string SummaryView_NoAudioTracks {
get {
return ResourceManager.GetString("SummaryView_NoAudioTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Chapter Markers.
/// </summary>
public static string SummaryView_NoChapters {
get {
return ResourceManager.GetString("SummaryView_NoChapters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Filters.
/// </summary>
public static string SummaryView_NoFilters {
get {
return ResourceManager.GetString("SummaryView_NoFilters", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Source.
/// </summary>
public static string SummaryView_NoSource {
get {
return ResourceManager.GetString("SummaryView_NoSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Subtitle Tracks.
/// </summary>
public static string SummaryView_NoSubtitleTracks {
get {
return ResourceManager.GetString("SummaryView_NoSubtitleTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Tracks.
/// </summary>
public static string SummaryView_NoTracks {
get {
return ResourceManager.GetString("SummaryView_NoTracks", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview {0} of {1}.
/// </summary>
public static string SummaryView_PreviewInfo {
get {
return ResourceManager.GetString("SummaryView_PreviewInfo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Rotation.
/// </summary>
public static string SummaryView_Rotation {
get {
return ResourceManager.GetString("SummaryView_Rotation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Same as source.
/// </summary>
public static string SummaryView_SameAsSource {
get {
return ResourceManager.GetString("SummaryView_SameAsSource", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to storage.
/// </summary>
public static string SummaryView_storage {
get {
return ResourceManager.GetString("SummaryView_storage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AC Mains power detected. Resuming encode... ({0} %).
/// </summary>
public static string SystemService_ACMains {
get {
return ResourceManager.GetString("SystemService_ACMains", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to System Battery Critical! ({0} %).
/// </summary>
public static string SystemService_CriticalBattery {
get {
return ResourceManager.GetString("SystemService_CriticalBattery", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to System Battery Low! ({0} %). Your encode has been paused to protect the system. System sleep is set to allowed!.
/// </summary>
public static string SystemService_LowBatteryLog {
get {
return ResourceManager.GetString("SystemService_LowBatteryLog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remaining drive storage has dropped below {0} GB on the destination drive. Pausing encode....
/// </summary>
public static string SystemService_LowDiskSpaceLog {
get {
return ResourceManager.GetString("SystemService_LowDiskSpaceLog", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {1}%, Pass {2} of {3}
///Remaining Time: {4}.
/// </summary>
public static string TaskTrayStatusTitle {
get {
return ResourceManager.GetString("TaskTrayStatusTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown Error.
/// </summary>
public static string UnknownError {
get {
return ResourceManager.GetString("UnknownError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Monthly.
/// </summary>
public static string UpdateCheck_Monthly {
get {
return ResourceManager.GetString("UpdateCheck_Monthly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Weekly.
/// </summary>
public static string UpdateCheck_Weekly {
get {
return ResourceManager.GetString("UpdateCheck_Weekly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updated.
/// </summary>
public static string Updated {
get {
return ResourceManager.GetString("Updated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A problem occurred when trying to save your preferences..
/// </summary>
public static string UserSettings_AnErrorOccured {
get {
return ResourceManager.GetString("UserSettings_AnErrorOccured", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to load user settings file: {0}.
/// </summary>
public static string UserSettings_UnableToLoad {
get {
return ResourceManager.GetString("UserSettings_UnableToLoad", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your user settings file appears to be inaccessible or corrupted. You may have to delete the file and let HandBrake generate a new one..
/// </summary>
public static string UserSettings_UnableToLoadSolution {
get {
return ResourceManager.GetString("UserSettings_UnableToLoadSolution", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your user settings file was corrupted or inaccessible. Settings have been reset to defaults..
/// </summary>
public static string UserSettings_YourSettingsAreCorrupt {
get {
return ResourceManager.GetString("UserSettings_YourSettingsAreCorrupt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Warning, your settings have been reset!.
/// </summary>
public static string UserSettings_YourSettingsHaveBeenReset {
get {
return ResourceManager.GetString("UserSettings_YourSettingsHaveBeenReset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The full list of encoder parameters:
///{0}.
/// </summary>
public static string Video_EncoderExtraArgs {
get {
return ResourceManager.GetString("Video_EncoderExtraArgs", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additional advanced arguments that can be passed to the video encoder..
/// </summary>
public static string Video_EncoderExtraArgsTooltip {
get {
return ResourceManager.GetString("Video_EncoderExtraArgsTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Higher Quality |.
/// </summary>
public static string Video_HigherQuality {
get {
return ResourceManager.GetString("Video_HigherQuality", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Warning: RF 0 is Lossless!.
/// </summary>
public static string Video_LosslessWarning {
get {
return ResourceManager.GetString("Video_LosslessWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 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..
/// </summary>
public static string Video_LosslessWarningTooltip {
get {
return ResourceManager.GetString("Video_LosslessWarningTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to | Lower Quality.
/// </summary>
public static string Video_LowQuality {
get {
return ResourceManager.GetString("Video_LowQuality", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Placebo Quality |.
/// </summary>
public static string Video_PlaceboQuality {
get {
return ResourceManager.GetString("Video_PlaceboQuality", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reduce decoder CPU usage.
///
///Set this if your device is struggling to play the output. (i.e. dropped frames).
/// </summary>
public static string Video_x264FastDecode {
get {
return ResourceManager.GetString("Video_x264FastDecode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 2-Pass Encoding.
/// </summary>
public static string VideoView_2Pass {
get {
return ResourceManager.GetString("VideoView_2Pass", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avg Bitrate (kbps):.
/// </summary>
public static string VideoView_AverageBitrate {
get {
return ResourceManager.GetString("VideoView_AverageBitrate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Video Codec:.
/// </summary>
public static string VideoView_Codec {
get {
return ResourceManager.GetString("VideoView_Codec", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Constant Framerate.
/// </summary>
public static string VideoView_ConstantFramerate {
get {
return ResourceManager.GetString("VideoView_ConstantFramerate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Constant Quality:.
/// </summary>
public static string VideoView_ConstantQuality {
get {
return ResourceManager.GetString("VideoView_ConstantQuality", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoder Level:.
/// </summary>
public static string VideoView_EncoderLevel {
get {
return ResourceManager.GetString("VideoView_EncoderLevel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoder Preset:.
/// </summary>
public static string VideoView_EncoderPreset {
get {
return ResourceManager.GetString("VideoView_EncoderPreset", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoder Profile:.
/// </summary>
public static string VideoView_EncoderProfile {
get {
return ResourceManager.GetString("VideoView_EncoderProfile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encoder Tune:.
/// </summary>
public static string VideoView_EncodeTune {
get {
return ResourceManager.GetString("VideoView_EncodeTune", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advanced Options:.
/// </summary>
public static string VideoView_ExtraOptions {
get {
return ResourceManager.GetString("VideoView_ExtraOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fast Decode.
/// </summary>
public static string VideoView_FastDecode {
get {
return ResourceManager.GetString("VideoView_FastDecode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Framerate (FPS):.
/// </summary>
public static string VideoView_Framerate {
get {
return ResourceManager.GetString("VideoView_Framerate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Optimise Video:.
/// </summary>
public static string VideoView_OptimiseVideo {
get {
return ResourceManager.GetString("VideoView_OptimiseVideo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Peak Framerate.
/// </summary>
public static string VideoView_PeakFramerate {
get {
return ResourceManager.GetString("VideoView_PeakFramerate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Quality.
/// </summary>
public static string VideoView_Quality {
get {
return ResourceManager.GetString("VideoView_Quality", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Turbo first pass.
/// </summary>
public static string VideoView_TurboFirstPass {
get {
return ResourceManager.GetString("VideoView_TurboFirstPass", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Variable Framerate.
/// </summary>
public static string VideoView_VariableFramerate {
get {
return ResourceManager.GetString("VideoView_VariableFramerate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Video.
/// </summary>
public static string VideoView_Video {
get {
return ResourceManager.GetString("VideoView_Video", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Warning.
/// </summary>
public static string Warning {
get {
return ResourceManager.GetString("Warning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do nothing.
/// </summary>
public static string WhenDone_DoNothing {
get {
return ResourceManager.GetString("WhenDone_DoNothing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hibernate.
/// </summary>
public static string WhenDone_Hibernate {
get {
return ResourceManager.GetString("WhenDone_Hibernate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lock System.
/// </summary>
public static string WhenDone_LockSystem {
get {
return ResourceManager.GetString("WhenDone_LockSystem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Log off.
/// </summary>
public static string WhenDone_Logoff {
get {
return ResourceManager.GetString("WhenDone_Logoff", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Quit HandBrake.
/// </summary>
public static string WhenDone_QuitHandBrake {
get {
return ResourceManager.GetString("WhenDone_QuitHandBrake", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shutdown.
/// </summary>
public static string WhenDone_Shutdown {
get {
return ResourceManager.GetString("WhenDone_Shutdown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sleep.
/// </summary>
public static string WhenDone_Suspend {
get {
return ResourceManager.GetString("WhenDone_Suspend", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} - ({1}%, Pass {2} of {3}).
/// </summary>
public static string WindowTitleStatus {
get {
return ResourceManager.GetString("WindowTitleStatus", resourceCulture);
}
}
}
}
|