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
|
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34209
//
// 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", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class ResourcesUI {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ResourcesUI() {
}
/// <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.ResourcesUI", typeof(ResourcesUI).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 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 Add Preset.
/// </summary>
public static string AddPresetView_AddPreset {
get {
return ResourceManager.GetString("AddPresetView_AddPreset", 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 Save Picture Size:.
/// </summary>
public static string AddPresetView_SavePictureSize {
get {
return ResourceManager.GetString("AddPresetView_SavePictureSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save Video Filter Settings.
/// </summary>
public static string AddPresetView_SaveVideoFilters {
get {
return ResourceManager.GetString("AddPresetView_SaveVideoFilters", 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 '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 Otherwise use fallback encoder:.
/// </summary>
public static string AudioView_OtherwiseFallbackEncoder {
get {
return ResourceManager.GetString("AudioView_OtherwiseFallbackEncoder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reload Defaults.
/// </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 Track Setting Default Behaviour:.
/// </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 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 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 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 Error Details:.
/// </summary>
public static string ErrorView_ErrorDetails {
get {
return ResourceManager.GetString("ErrorView_ErrorDetails", 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 Denoise:.
/// </summary>
public static string FiltersView_Denoise {
get {
return ResourceManager.GetString("FiltersView_Denoise", 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 Grayscale.
/// </summary>
public static string FiltersView_Grayscale {
get {
return ResourceManager.GetString("FiltersView_Grayscale", 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 Tune:.
/// </summary>
public static string FiltersView_Tune {
get {
return ResourceManager.GetString("FiltersView_Tune", 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 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 Export.
/// </summary>
public static string Generic_Export {
get {
return ResourceManager.GetString("Generic_Export", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import.
/// </summary>
public static string Generic_Import {
get {
return ResourceManager.GetString("Generic_Import", 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 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 Activity Log.
/// </summary>
public static string MainView_ActivityLog {
get {
return ResourceManager.GetString("MainView_ActivityLog", 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 Angle.
/// </summary>
public static string MainView_Angle {
get {
return ResourceManager.GetString("MainView_Angle", 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 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 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 File.
/// </summary>
public static string MainView_File {
get {
return ResourceManager.GetString("MainView_File", 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 Help.
/// </summary>
public static string MainView_Help {
get {
return ResourceManager.GetString("MainView_Help", 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 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 Picture.
/// </summary>
public static string MainView_PictureTab {
get {
return ResourceManager.GetString("MainView_PictureTab", 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 Preview.
/// </summary>
public static string MainView_Preview {
get {
return ResourceManager.GetString("MainView_Preview", 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 Set Default.
/// </summary>
public static string MainView_SetDefault {
get {
return ResourceManager.GetString("MainView_SetDefault", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show Queue.
/// </summary>
public static string MainView_ShowQueue {
get {
return ResourceManager.GetString("MainView_ShowQueue", 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 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 Subtitles.
/// </summary>
public static string MainView_SubtitlesTab {
get {
return ResourceManager.GetString("MainView_SubtitlesTab", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to through.
/// </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_Tools {
get {
return ResourceManager.GetString("MainView_Tools", 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 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 Height:.
/// </summary>
public static string PictureSettingsView_ParH {
get {
return ResourceManager.GetString("PictureSettingsView_ParH", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to PAR Width:.
/// </summary>
public static string PictureSettingsView_ParW {
get {
return ResourceManager.GetString("PictureSettingsView_ParW", 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 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 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 Destination: .
/// </summary>
public static string QueueView_Destination {
get {
return ResourceManager.GetString("QueueView_Destination", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do nothing.
/// </summary>
public static string QueueView_DoNothing {
get {
return ResourceManager.GetString("QueueView_DoNothing", 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 Hibernate.
/// </summary>
public static string QueueView_Hibernate {
get {
return ResourceManager.GetString("QueueView_Hibernate", 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 Lock System.
/// </summary>
public static string QueueView_LockSystem {
get {
return ResourceManager.GetString("QueueView_LockSystem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Log off.
/// </summary>
public static string QueueView_Logoff {
get {
return ResourceManager.GetString("QueueView_Logoff", 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.
/// </summary>
public static string QueueView_Pause {
get {
return ResourceManager.GetString("QueueView_Pause", 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 Quit HandBrake.
/// </summary>
public static string QueueView_QuitHandBrake {
get {
return ResourceManager.GetString("QueueView_QuitHandBrake", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shutdown.
/// </summary>
public static string QueueView_Shutdown {
get {
return ResourceManager.GetString("QueueView_Shutdown", 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.
/// </summary>
public static string QueueView_Start {
get {
return ResourceManager.GetString("QueueView_Start", 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 Suspend.
/// </summary>
public static string QueueView_Suspend {
get {
return ResourceManager.GetString("QueueView_Suspend", 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 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 Chosen 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 Defaults.
/// </summary>
public static string Shared_ReloadDefaults {
get {
return ResourceManager.GetString("Shared_ReloadDefaults", 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 Use system default player.
/// </summary>
public static string StaticPreviewView_UseSystemDefault {
get {
return ResourceManager.GetString("StaticPreviewView_UseSystemDefault", 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 Behaviour:.
/// </summary>
public static string SubtitlesView_BurnInBehaviour {
get {
return ResourceManager.GetString("SubtitlesView_BurnInBehaviour", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Import SRT.
/// </summary>
public static string SubtitlesView_ImportSRT {
get {
return ResourceManager.GetString("SubtitlesView_ImportSRT", 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 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 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 Extra 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 Same as source.
/// </summary>
public static string VideoView_SameAsSource {
get {
return ResourceManager.GetString("VideoView_SameAsSource", 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 Use Advanced Tab instead.
/// </summary>
public static string VideoView_UseAdvancedTab {
get {
return ResourceManager.GetString("VideoView_UseAdvancedTab", 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);
}
}
}
}
|