~francesco-hermanitosverdes/openshot/francesco

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
# OpenShot Video Editor POT Template File.
# Copyright (C) 2009  Jonathan Thomas
# This file is distributed under the same license as the PACKAGE package.
# Jonathan Thomas <Jonathan.Oomph@gmail.com>, 2009.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: OpenShot Video Editor (version: 1.0.7)\n"
"Report-Msgid-Bugs-To: Jonathan Thomas <Jonathan.Oomph@gmail.com>\n"
"POT-Creation-Date: 2010-02-15 01:21:45.732130\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Jonathan Thomas <Jonathan.Oomph@gmail.com>\n"
"Language-Team: https://translations.launchpad.net/+groups/launchpad-translators\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: /home/jonathan/openshot/openshot/windows/OpenProject.py:42
msgid "OpenShot Project (*.osp)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/OpenProject.py:92
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:299
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1156
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1166
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1176
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1185
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3010
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3079
#: /home/jonathan/openshot/openshot/classes/open_project.py:97
#: /home/jonathan/openshot/openshot/classes/av_formats.py:120
msgid "Error!"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/OpenProject.py:92
msgid ""
"There was an error opening this project file.  Please be sure you open the "
"correct *.osp file."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:147
#: /home/jonathan/openshot/openshot/windows/Titles.py:269
#: /home/jonathan/openshot/openshot/windows/Titles.py:272
#: /home/jonathan/openshot/openshot/windows/Titles.py:449
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3433
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3448
#: /home/jonathan/openshot/openshot/windows/preferences.py:387
#: /home/jonathan/openshot/openshot/classes/files.py:108
msgid "OpenShot Error"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:147
msgid "The Title name cannot be blank, the title file has not been created."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:195
msgid "Please enter a name for the new Title file:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:198
msgid "New Title"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:269
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3433
#, python-format
msgid "Please install %s to use this function."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:272
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3448
#, python-format
msgid "There was an error opening '%s', is it installed?"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Titles.py:449
#: /home/jonathan/openshot/openshot/windows/preferences.py:387
#, python-format
msgid "Unexpected Error '%s' while writing to '%s'."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:70
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:439
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:564
msgid "Video & Audio"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:70
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:430
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:560
#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:106
#: /home/jonathan/openshot/openshot/classes/files.py:178
msgid "Image Sequence"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:199
#: /home/jonathan/openshot/openshot/export_presets/format_mov_mpeg4.xml
msgid "All Formats"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:201
#: /home/jonathan/openshot/openshot/export_presets/format_ogg_libvorbis.xml
msgid "OGG (theora/vorbis)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:245
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:255
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:279
msgid "Low"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:245
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:255
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:281
msgid "Med"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:245
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:255
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:283
msgid "High"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:299
#, python-format
msgid ""
"%s is not a valid OpenShot profile. Profile settings will not be applied."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:351
msgid "Openshot Error"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:351
msgid "The following formats/codecs are missing from your system:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:398
#: /home/jonathan/openshot/openshot/windows/TreeHistory.py:69
msgid "Yes"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:400
#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:491
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:166
msgid "No"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:495
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:499
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:503
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:507
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:511
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:515
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:519
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:523
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:527
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:531
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:535
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:539
#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:543
#: /home/jonathan/openshot/openshot/windows/NewProject.py:162
#: /home/jonathan/openshot/openshot/windows/NewProject.py:166
#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:53
#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:57
#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:94
msgid "Validation Error!"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:495
msgid "Please enter a valid File Name."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:499
msgid "Please select a valid Project Type."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:503
msgid "Please select a valid Target."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:507
msgid "Please select a valid Profile."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:511
msgid "Please select a valid Quality."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:515
msgid "Please enter a valid Image Format."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:519
msgid "Please enter a valid Video Format."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:523
msgid "Please enter a valid Video Codec."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:527
msgid "Please enter a valid Bit Rate."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:531
msgid "Please enter a valid Audio Codec."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:535
msgid "Please enter a valid Sample Rate."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:539
msgid "Please enter a valid Audio Channels."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:543
msgid "Please enter a valid Audio Bit Rate."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:581
msgid "Confirm Overwrite"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:581
#, python-format
msgid ""
"There is already a video file named %s.%s in the selected export folder. "
"Would you like to overwrite it?"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:624
msgid "Export Complete"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ExportVideo.py:624
#, python-format
msgid ""
"The video has been successfully exported to\n"
"%s"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeFiles.py:47
#: /home/jonathan/openshot/openshot/windows/TreeTransitions.py:44
#: /home/jonathan/openshot/openshot/windows/TreeEffects.py:44
msgid "Thumb"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeFiles.py:48
msgid "File"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeFiles.py:49
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:357
msgid "Length"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeFiles.py:50
#: /home/jonathan/openshot/openshot/windows/TreeFiles.py:138
#: /home/jonathan/openshot/openshot/windows/TreeTransitions.py:153
#: /home/jonathan/openshot/openshot/windows/TreeHistory.py:132
#: /home/jonathan/openshot/openshot/windows/TreeEffects.py:203
msgid "Label"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeFiles.py:59
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:594
msgid "Choose a Video or Audio File to Begin"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeTransitions.py:45
#: /home/jonathan/openshot/openshot/windows/TreeEffects.py:45
msgid "Name"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeTransitions.py:60
msgid "Dissolve"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/NewProject.py:162
msgid "Please enter a valid project name."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/NewProject.py:166
msgid "Please enter a valid project type."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/NewProject.py:182
msgid "New project"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeHistory.py:44
msgid "Current"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TreeHistory.py:45
msgid "Action"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:286
msgid "Session started"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:982
msgid "Would you like to save this project?"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1136
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1309
msgid "This feature is still in development."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1156
msgid ""
"Unable to open the Help Contents. Please ensure the openshot-doc package is "
"installed."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1166
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1176
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1185
msgid "Unable to open the Launchpad web page."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1372
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1412
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1489
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1517
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1556
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:851
msgid "Video Preview"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1374
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1414
#, python-format
msgid "Video Preview (%sX)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1525
msgid "Video Preview (Paused)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1718
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2106
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2119
#: /home/jonathan/openshot/openshot/classes/sequences.py:50
#: /home/jonathan/openshot/openshot/classes/sequences.py:51
#, python-format
msgid "Track %s"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:1864
#, python-format
msgid "%s seconds"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2132
msgid "Please enter a track name."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2149
msgid "Removed track"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2157
msgid "Moved track up"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2177
msgid "Moved track down"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2246
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2198
msgid "Convert to Mask"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2247
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2250
msgid "Remove Transition"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2249
msgid "Convert to Transition"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2250
msgid "Remove Mask"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2303
msgid "Changed transition type"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2326
msgid "Removed transition"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2346
msgid "Please enter the # of seconds to shift the transitions:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2380
msgid "Shifted transitions"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2830
msgid "Edited title"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2855
msgid "Removed clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2875
msgid "Please enter the # of seconds to shift the clips:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:2909
msgid "Shifted clips"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3010
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3079
#, python-format
msgid "You must select a clip which is more than %s seconds long."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3049
msgid "Sliced and shuffled clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3126
msgid "Sliced and cut clips"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3165
msgid "Preview File"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3192
msgid "Convert To Image Sequence"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3198
msgid "Thumbnail view"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3204
msgid "Move File(s) to Folder"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3223
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3224
#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3276
msgid "Remove from Folder"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3232
msgid "Detail view"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3241
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1544
msgid "Edit Title (Simple)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3246
msgid "Edit Title (Inkscape)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3252
msgid "Remove File(s)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/MainGTK.py:3261
#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:10
msgid "File Properties"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:36
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:83
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:156
msgid "Transition"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:36
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:77
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:132
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:150
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:181
msgid "Mask"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:43
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:115
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:185
msgid "Up"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:43
#: /home/jonathan/openshot/openshot/windows/TransitionProperties.py:120
msgid "Down"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:60
#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:508
#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:581
msgid "Normal Speed"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:67
#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:650
msgid "Forward"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:67
#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:644
#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:780
#: /home/jonathan/openshot/openshot/effects/mirror.xml
msgid "Reverse"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:74
#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:483
msgid "Start of Clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:74
msgid "End of Clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ClipProperties.py:861
msgid "Modified clip properties"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:54
#: /home/jonathan/openshot/openshot/windows/preferences.py:201
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:223
msgid "General"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:58
#: /home/jonathan/openshot/openshot/windows/preferences.py:205
msgid "AV Formats"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:62
#: /home/jonathan/openshot/openshot/windows/preferences.py:207
msgid "Profiles"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:93
msgid "Video Codecs"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:97
msgid "Audio Codecs"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:101
msgid "Formats"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:331
msgid "OpenShot Warning"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/preferences.py:331
msgid "Invalid or empty preferences file found, loaded default values"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/AddFiles.py:72
msgid "Error"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/AddFiles.py:72
msgid "There was an error importing the selected files"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:53
#, python-format
msgid ""
"Please enter a valid file name.  The file name must have a %d (or %04d) "
"where the number section of the file name is supposed to be.  For example:  "
"MyFile_%d.png."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:57
msgid "Please enter an integer in the Frames per Image textbox."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/ImportImageSeq.py:94
msgid ""
"At least 2 images must match the file name pattern in the selected folder."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:178
msgid "A profile with this name already exists. Please use another name."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:188
msgid "Please enter a profile name."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:193
msgid "Please enter a valid size."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:259
msgid "Do you want to save this profile?."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:274
#, python-format
msgid "Are you sure you want to delete the profile %s?"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:298
#, python-format
msgid "The profile %s cannot be deleted."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:333
#: /home/jonathan/openshot/openshot/windows/Profiles.py:345
msgid "The profile has been successfully imported."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:335
#, python-format
msgid "There was an error extracting the file %s"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/Profiles.py:347
#, python-format
msgid "There was an error copying the file %s"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/files.py:108
#, python-format
msgid "The folder %s already exists in this project."
msgstr ""

#: /home/jonathan/openshot/openshot/classes/files.py:116
msgid "Added folder"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/files.py:163
msgid "Added file"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/files.py:244
msgid "Removed file"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/files.py:333
msgid "Moved to folder"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/files.py:342
msgid "Removed from folder"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/restore_state.py:86
#: /home/jonathan/openshot/openshot/classes/open_project.py:91
msgid "The following file(s) no longer exist."
msgstr ""

#: /home/jonathan/openshot/openshot/classes/transition.py:431
msgid "Moved transition"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/open_project.py:97
msgid ""
"There was an error opening this project file.  Please be sure you are "
"selecting a valid .OSP project file."
msgstr ""

#: /home/jonathan/openshot/openshot/classes/clip.py:104
msgid "Added effect"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/clip.py:1684
msgid "Sliced clip"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/clip.py:1815
msgid "Moved clip"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/clip.py:1832
msgid "Resized clip"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/clip.py:1912
msgid "Changed visibility of clip"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/clip.py:1943
msgid "Changed audio of clip"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/project.py:68
msgid "Default Project"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/project.py:84
msgid "Default Sequence 1"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/project.py:291
msgid "Opened project"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:63
msgid "usage: %prog [options] inputfile.osp"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:68
msgid "destination file-name"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:75
msgid "export folder"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:83
msgid "export as image sequence"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:91
msgid "export as video or audio file"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:98
#: /home/jonathan/openshot/openshot/classes/cli_render.py:105
msgid "set video codec"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:112
msgid "set video bitrate in format 'number kb/s' or 'number Mb/s'"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:119
msgid "set audio codec"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:126
msgid "set audio sample rate"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:133
msgid "set number of audio channels"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:140
msgid "set video bitrate in format 'number kb/s'"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:146
msgid "Error: "
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:152
msgid "Warning: "
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:160
msgid "Please specify an input project-file!"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:164
msgid "Too many arguments!"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:216
msgid "rendering options:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:217
msgid "container type:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:218
msgid "video codec:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:219
msgid "video bitrate:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:220
msgid "audio codec:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:221
msgid "audio sample rate:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:222
msgid "channels:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:223
msgid "audio bitrate:"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:240
msgid "generating XML file for rendering"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:276
msgid "Starting rendering to "
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:315
msgid "program interrupted by user"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/cli_render.py:322
msgid "project file correctly rendered"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/av_formats.py:119
#: /home/jonathan/openshot/openshot/classes/av_formats.py:120
msgid ""
"No formats or codecs were found.  Please check the OpenShot preferences and "
"configure the 'melt' command name."
msgstr ""

#: /home/jonathan/openshot/openshot/classes/track.py:264
msgid "Changed visibility of track"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/track.py:293
msgid "Changed audio of track"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/sequences.py:79
msgid "Added marker"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/sequences.py:137
msgid "Added Track"
msgstr ""

#: /home/jonathan/openshot/openshot/classes/sequences.py:144
msgid "Renamed track"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/AddEffect.glade:8
msgid "Add Effect"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/AddEffect.glade:27
msgid "Effect:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/fontselector.glade:9
#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:131
msgid "Font Properties"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/fontselector.glade:74
msgid "Style:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/fontselector.glade:154
msgid "<b>Preview</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:9
#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:954
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:513
msgid "Export Video"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:41
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:105
msgid "File Name:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:51
msgid "MyMovie"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:69
msgid "Export Folder"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:96
msgid "<b>General Options</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:116
msgid "<b>Select a Profile to start:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:129
msgid "Profile:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:157
msgid "<b>Select from the following options:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:173
msgid "Target:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:206
msgid "Video Profile:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:239
msgid "Quality:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:272
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:441
msgid "Simple"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:295
msgid "Export To:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:316
msgid "<b>Advanced Options</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:377
#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:443
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:214
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:282
msgid "0"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:387
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:272
msgid "Height:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:397
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:266
msgid "Width:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:403
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:256
msgid "Aspect Ratio:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:413
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:246
msgid "Frame Rate:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:423
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:236
msgid "Pixel Ratio:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:433
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:226
msgid "Progressive:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:455
#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:479
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:178
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:202
msgid "0:0"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:467
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:190
msgid "0.00"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:515
msgid "<b>Profile</b>  (height, width, fps, aspect ratio)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:543
msgid "Image Format:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:557
msgid "png"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:572
msgid "<b>Image Sequence Settings</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:601
msgid "Video Format:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:616
msgid "mp4"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:633
msgid "Video Codec:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:648
msgid "mpeg4"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:669
#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:841
msgid "Bit Rate / Quality:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:679
msgid ""
"128 kb/s - Low Quality\n"
"384 kb/s - Video Conferencing\n"
"1.25 Mb/s – VCD Quality\n"
"5.00 Mb/s – DVD Quality\n"
"15.00 Mb/s – HDTV quality\n"
"40 Mb/s - Blu-ray quality"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:689
msgid "15.00 Mb/s – HDTV quality"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:707
msgid "<b>Video Settings</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:736
msgid "Audio Codec:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:751
msgid "mp2"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:768
msgid "Sample Rate:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:805
msgid "# of Channels:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:820
msgid "2"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:851
msgid ""
"32 kb/s - Poor quality\n"
"64 kb/s - Fair quality\n"
"96 kb/s - FM quality\n"
"128 kb/s - Good quality\n"
"192 kb/s- Better quality\n"
"256 kb/s- Near CD quality"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:861
msgid "256 kb/s- Near CD quality"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:879
msgid "<b>Audio Settings</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:903
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:489
msgid "Advanced"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ExportVideo.glade:940
#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:188
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:332
#: /home/jonathan/openshot/openshot/windows/glade/OpenProject.glade:33
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1566
#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:122
msgid "Cancel"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:6
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:208
msgid "Preferences"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:52
msgid "Imported Image Length:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:59
msgid "Timeline length, in seconds, for all imported images. "
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:73
msgid "Max number of steps to keep in history."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:90
msgid "Max History Steps:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:102
msgid "Melt Command Name:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:113
msgid ""
"The is the command name for the melt program, which is the MLT command line."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:147
msgid "Default Theme:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:175
msgid "Default Profile:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:185
msgid "Theme example"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:218
msgid "Project File Type:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:244
msgid "<b>General</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:337
msgid "Reload Codecs"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:341
msgid "Reload if you have installed extra codecs since starting Openshot."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:364
msgid "<b>Installed Codecs/Formats</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Preferences.glade:388
msgid "Manage Profiles"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/About.glade:8
msgid "About OpenShot"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/About.glade:32
msgid "Project Website (LaunchPad)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:10
msgid "Transition / Mask Properties"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:31
msgid "Name:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:41
msgid "None"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:66
msgid "Type:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:95
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:412
msgid "Direction:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:123
msgid "Softness:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:152
msgid "Mask Threshold:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/TransitionProperties.glade:198
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1576
msgid "Apply"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:23
msgid "_File"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:31
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:398
msgid "New Project..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:44
msgid "Open Project..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:58
msgid "Recent Projects"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:71
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:482
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1240
msgid "Import Files..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:85
msgid "Import Image Sequence..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:104
#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:342
msgid "Save Project"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:117
msgid "Save Project As..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:135
msgid "Export Video..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:167
msgid "_Edit"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:175
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:447
msgid "Undo"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:189
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:460
msgid "Redo"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:226
msgid "_Project"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:234
msgid "New Title..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:247
msgid "New Sequence..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:265
msgid "_View"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:273
msgid "Toolbar"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:282
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:689
msgid "History"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:295
msgid "_Help"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:303
msgid "_Contents"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:322
msgid "_Report a Bug..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:336
msgid "_Ask a Question..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:350
msgid "_Translate this Application..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:411
#: /home/jonathan/openshot/openshot/windows/glade/OpenProject.glade:11
#: /home/jonathan/openshot/openshot/windows/glade/OpenProject.glade:43
msgid "Open Project"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:425
msgid "Save"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:501
msgid "Take Snapshot"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:563
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:656
msgid "Project Files"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:595
msgid "Transitions"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:627
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1538
msgid "Effects"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:750
msgid "Seek to Beginning"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:761
msgid "Previous Marker"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:772
msgid "Seek Backward"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:783
msgid "Play"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:794
msgid "Seek Forward"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:805
msgid "Next Marker"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:816
msgid "Seek to Ending"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:889
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:890
msgid "Add Track"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:909
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:910
msgid "Arrow Tool"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:921
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:922
msgid "Razor Tool"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:932
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:933
msgid "Resize Tool"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:943
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:944
msgid "Snapping Tool"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:964
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:965
msgid "Add Marker"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:989
msgid "Zoom In"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1009
msgid "Slide to Zoom"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1023
msgid "Number of seconds between each line on the timeline"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1024
msgid "15 seconds"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1036
msgid "Zoom Out"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1207
msgid "Timeline - Sequence 1"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1256
msgid "Create Folder..."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1277
msgid "Folder Name"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1295
msgid "Folder Name:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1365
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1366
msgid "Add Track Above"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1380
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1381
msgid "Add Track Below"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1400
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1401
msgid "Move Track Up"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1415
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1416
msgid "Move Track Down"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1435
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1436
msgid "Rename Track"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1455
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1456
msgid "Remove Track"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1473
msgid "Make a copy of this clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1474
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2165
msgid "Duplicate"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1493
msgid "Fade this clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1494
msgid "Fade"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1508
msgid "Animate this clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1509
msgid "Animate"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1523
msgid "Position and resize this clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1524
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:767
msgid "Layout"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1560
msgid "Shift Clips"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1575
msgid "Remove Clip"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1596
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2231
msgid "Properties"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1617
#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1618
msgid "Remove Marker"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1632
msgid "No Fade"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1652
msgid "Fade In (Fast)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1667
msgid "Fade Out (Fast)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1682
msgid "Fade In and Out (Fast)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1702
msgid "Fade In (Slow)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1717
msgid "Fade Out (Slow)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1732
msgid "Fade In and Out (Slow)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1752
msgid "No Animation"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1772
msgid "Zoom In (100% to 150%)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1787
msgid "Zoom In (50% to 100%)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1802
msgid "Zoom Out (100% to 50%)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1817
msgid "Zoom Out (150% to 100%)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1837
msgid "Center to Top"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1852
msgid "Center to Left"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1867
msgid "Center To Right"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1882
msgid "Center to Bottom"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1902
msgid "Top to Center"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1917
msgid "Left to Center"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1932
msgid "Right to Center"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1947
msgid "Bottom to Center"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1967
msgid "Top to Bottom"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1982
msgid "Left to Right"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:1997
msgid "Right to Left"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2012
msgid "Bottom to Top"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2031
msgid "Reset Layout"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2051
msgid "1/4 Size - Center"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2066
msgid "1/4 Size - Top Left"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2081
msgid "1/4 Size - Top Right"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2096
msgid "1/4 Size - Bottom Left"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2111
msgid "1/4 Size - Bottom Right"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2131
msgid "Show All (Maintain Ratio)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2146
msgid "Show All (Distort)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2164
msgid "Make a copy of this transition"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2184
msgid "Switch Direction"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/Main.glade:2212
msgid "Shift Transitions"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:8
msgid "Create a Project"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:47
msgid "Project Name:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:74
msgid "Project Folder:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:84
#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:99
msgid "Select A Folder"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:102
msgid ""
"Project Length:\n"
"   (in minutes)"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:131
msgid "Project Profile:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/NewProject.glade:305
msgid ""
"Use this screen to name your new video project, select the folder location "
"of your new project, and select the type of project.  "
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:10
msgid "Title Editor"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:56
msgid "<b>Start here:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:83
msgid "Create a new title using the selected template."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:84
msgid "Create new Title"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:98
msgid "<b>Editing Tools:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:113
msgid "Set the title text."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:114
msgid "Edit text"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:130
msgid "Change the Font properties."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:148
msgid "Choose Font Color."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:167
msgid "Choose Background Color."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:186
msgid "Edit the title in an external editor."
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:187
msgid "Use Advanced editor"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/titles.glade:275
msgid "Enter title text"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:34
msgid "<b>File Name:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:117
msgid "<b>File Length:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:143
msgid "<b>Video Size:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:169
msgid "<b>Bit Rate:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:183
msgid "<b>File Type:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/FileProperties.glade:233
msgid "<b>Label:</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:8
msgid "Profiles Manager"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:24
msgid "Profile"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:87
msgid "Profile Name"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:121
msgid "Size"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:129
msgid "Aspect Ratio"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:191
msgid "x"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:212
msgid "Progressive"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:228
msgid "Default profile"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:289
msgid "Frame Rate"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:301
msgid "Pixel Ratio"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:378
msgid "<b>Profile Properties</b>"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/profiles.glade:442
msgid "Import"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:8
msgid "Clip Properties"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:32
msgid "Preview"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:115
msgid "N/A"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:147
msgid "Enable Video:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:180
msgid "Enable Audio:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:240
msgid "<b>In</b> (seconds):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:274
msgid "<b>Out</b> (seconds):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:309
msgid "<b>Length</b> (seconds):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:383
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:464
msgid "Speed:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:526
#: /home/jonathan/openshot/openshot/effects/phaser.xml
msgid "Speed"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:554
msgid "Key Frame:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:596
msgid "Height (%):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:630
msgid "Width (%):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:664
msgid "X (%):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:698
msgid "Y (%):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:732
msgid "Alpha:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:785
msgid "Volume:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:845
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1121
msgid "Fade In:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:878
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1154
msgid "Fade Out:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:911
#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1187
msgid "<b>Fade</b> (seconds):"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:952
msgid "Audio"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:970
msgid "Stretch Full Screen:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1002
msgid "Maintain Aspect Ratio:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1045
msgid "Horizontal Align:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1078
msgid "Vertical Align:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1223
msgid "Video"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ClipProperties.glade:1334
msgid ""
"<b>Effect Settings</b>\n"
"Click on an effect to view its settings"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:7
#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:132
msgid "Import Image Sequence"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:18
msgid ""
"Use this screen to import a sequence of numbered images as a video clip.\n"
"Be sure all pictures are in the same folder, and are sequencially "
"numbered.  \n"
"Use a %d for filenames starting with a number. If the filename is \n"
"padded (i.e. 00001.png, 00002.png, use %05d).\n"
"\n"
"For example:\n"
"/MyImageFolder/Image_1.png\n"
"/MyImageFolder/Image_2.png\n"
"\n"
"or\n"
"\n"
"/MyImageFolder/Image_00001.png\n"
"/MyImageFolder/Image_00002.png\n"
"\n"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:46
msgid "Frames per Image:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:56
msgid "Image Folder:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:66
msgid "File Name Pattern:"
msgstr ""

#: /home/jonathan/openshot/openshot/windows/glade/ImportImageSeq.glade:73
msgid "myfile_%d.png"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_dust.xml
msgid "Old Dust"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/phaser.xml
msgid "Phaser"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/nervous.xml
msgid "Nervous"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/burningtv.xml
msgid "Burning TV"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/phaser.xml
msgid "Param"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/edgeglow.xml
msgid "lredscale"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/chroma_key.xml
msgid "Chroma Key"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/glow.xml
msgid "Blur"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/cartoon.xml
msgid "diffspace"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_lines.xml
msgid "Old Lines"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Rain"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Surfer"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/white_balance.xml
msgid "Neutral Color"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/glow.xml
msgid "Glow"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Fixed Rotate Y"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Fixed Rotate X"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Fixed Rotate Z"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/pitch.xml
msgid "Amount"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/distort.xml
msgid "Amplitude"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/chroma_key.xml
msgid "Variance"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/two_layer.xml
msgid "Black and White"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_film.xml
msgid "Brightness Delta Down"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_lines.xml
msgid "Width"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/edgeglow.xml
msgid "Edgeglow"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/echo.xml
msgid "Echo"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_film.xml
msgid "Brightness Delta Up"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Swirl"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/edgeglow.xml
msgid "lthresh"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/burningtv.xml
msgid "Foreground"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/cartoon.xml
msgid "triplevel"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/charcoal.xml
msgid "Scale"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/wave.xml
msgid "End"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/tcolor.xml
msgid "Oversaturate Color"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/invert.xml
msgid "Invert"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/white_balance.xml
msgid "White Balance"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_film.xml
msgid "Old Film"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/charcoal.xml
msgid "Charcoal"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_grain.xml
msgid "Noise"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/edgeglow.xml
msgid "lupscale"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/brightness.xml
msgid "Brightness"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/tcolor.xml
msgid "Red/Green Axis"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Water"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/chroma_key.xml
msgid "Key"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/cartoon.xml
msgid "Cartoon"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "X Offset"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Smooth"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/remove_red.xml
msgid "Remove Red"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/pixelate.xml
msgid "Block Size X"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/pixelate.xml
msgid "Block Size Y"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/sobel.xml
msgid "Sobel"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/mirror.xml
msgid "Mirror"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/nosync.xml
msgid "Nosync"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/echo.xml
msgid "Decay"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_grain.xml
msgid "Old Grain"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/wave.xml
msgid "Start"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_dust.xml
msgid "Max Count"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/brightness.xml
msgid "Start Value"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/charcoal.xml
msgid "X Scatter"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/deinterlace.xml
msgid "Method"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_grain.xml
msgid "Contrast"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/hue.xml
msgid "Hue"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_film.xml
msgid "Brightness Delta Every"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/scan_lines.xml
msgid "Scan Lines"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Distort"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_film.xml
msgid "Every"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_lines.xml
msgid "Lighter"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_film.xml
msgid "Delta"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_dust.xml
msgid "Max Diameter"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Y Offset"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Randomize Swirl"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/charcoal.xml
msgid "Y Scatter"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/sepia.xml
msgid "Sepia"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_lines.xml
msgid "Number"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/distort.xml
msgid "Frequency"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/sepia.xml
msgid "v"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/pixelate.xml
msgid "Pixelate"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/echo.xml
msgid "Delay"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/charcoal.xml
msgid "Mix"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/nosync.xml
msgid "HSync"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/greyscale.xml
msgid "Greyscale"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/echo.xml
msgid "Gain In"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Rotate Y"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Rotate X"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Rotate Z"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/saturation.xml
msgid "Saturation"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/remove_green.xml
msgid "Remove Green"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/wave.xml
msgid "Wave"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/rotate.xml
msgid "Rotate"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/wave.xml
msgid "Deform Y"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/wave.xml
msgid "Deform X"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/white_balance.xml
msgid "Green Tint"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/echo.xml
msgid "Gain Out"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/deinterlace.xml
msgid "Deinterlace"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/water_rain.xml
msgid "Physics"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/gamma.xml
msgid "Gamma"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/old_lines.xml
msgid "Darker"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/remove_blue.xml
msgid "Remove Blue"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/tcolor.xml
msgid "Blue/Yellow"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/sepia.xml
msgid "u"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/brightness.xml
msgid "End Value"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/pitch.xml
msgid "Pitch"
msgstr ""

#: /home/jonathan/openshot/openshot/effects/burningtv.xml
msgid "Threshold"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/vimeo_WS.xml
msgid "Web"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/dvd_pal.xml
msgid "DVD-PAL"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_ogg_flac.xml
msgid "OGG (theora/flac)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/dvd_pal.xml
msgid "DVD"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/xbox360.xml
msgid "Xbox 360"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_mp4_x264.xml
msgid "MP4 (h.264)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_mov_x264.xml
msgid "MOV (h.264)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/metacafe.xml
msgid "Metacafe"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/vimeo.xml
msgid "Vimeo-SD"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/avchd.xml
msgid "AVCHD Disks"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/vimeo_WS.xml
msgid "Vimeo-SD Widescreen"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_flv_x264.xml
msgid "FLV (h.264)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_avi_mp4.xml
msgid "AVI (mpeg4)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_mp4_mpeg4.xml
msgid "MP4 (mpeg4)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/apple_tv.xml
msgid "Apple TV"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_mpeg_mpeg2.xml
msgid "MPEG (mpeg2)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/nokia_nHD.xml
msgid "Nokia nHD"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_avi_x264.xml
msgid "AVI (h.264)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/youtube.xml
msgid "YouTube"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_avi_mpeg2.xml
msgid "AVI (mpeg2)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/xbox360.xml
msgid "Device"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/avchd.xml
msgid "Blu-Ray/AVCHD"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/picasa.xml
msgid "Picasa"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_mp4_xvid.xml
msgid "MP4 (Xvid)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/youtube_HD.xml
msgid "YouTube-HD"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/dvd_ntsc.xml
msgid "DVD-NTSC"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/vimeo_HD.xml
msgid "Vimeo-HD"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/format_mov_mpeg4.xml
msgid "MOV (mpeg4)"
msgstr ""

#: /home/jonathan/openshot/openshot/export_presets/flickr_HD.xml
msgid "Flickr-HD"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_8.png
msgid "Fractal 8"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/vertical_blinds_in_to_out_big.pgm
msgid "Vertical blinds in to out big"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_2.png
msgid "Fractal 2"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_3.png
msgid "Fractal 3"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_1.png
msgid "Fractal 1"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_6.png
msgid "Fractal 6"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_7.png
msgid "Fractal 7"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_4.png
msgid "Fractal 4"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/fractal_5.png
msgid "Fractal 5"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/openshot_logo.pgm
msgid "Openshot logo"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_diagonal_1.png
msgid "Wipe diagonal 1"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_diagonal_3.png
msgid "Wipe diagonal 3"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_diagonal_2.png
msgid "Wipe diagonal 2"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hatched_1.png
msgid "Hatched 1"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hatched_2.png
msgid "Hatched 2"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hatched_3.png
msgid "Hatched 3"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/mountains.png
msgid "Mountains"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/circle_in_to_out.svg
msgid "Circle in to out"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/clock_right_to_left.pgm
msgid "Clock right to left"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/spiral_medium.pgm
msgid "Spiral medium"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/spiral_abstract_2.png
msgid "Spiral abstract 2"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_left_to_right.svg
msgid "Wipe left to right"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_bottom_to_top.svg
msgid "Wipe bottom to top"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/spiral_abstract_1.png
msgid "Spiral abstract 1"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_right_to_left.svg
msgid "Wipe right to left"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/circle_out_to_in.svg
msgid "Circle out to in"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/blinds_in_to_out.pgm
msgid "Blinds in to out"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/rectangle_in_to_out.pgm
msgid "Rectangle in to out"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/rectangle_out_to_in.pgm
msgid "Rectangle out to in"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/sand.svg
msgid "Sand"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/spots.png
msgid "Spots"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/blinds_sliding.png
msgid "Blinds sliding"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/clock_left_to_right.pgm
msgid "Clock left to right"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_diagonal_4.png
msgid "Wipe diagonal 4"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/spiral_small.pgm
msgid "Spiral small"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/sphere.png
msgid "Sphere"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/blinds_in_to_out_big.pgm
msgid "Blinds in to out big"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/spiral_big.pgm
msgid "Spiral big"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/star_2.png
msgid "Star 2"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/wipe_top_to_bottom.svg
msgid "Wipe top to bottom"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/star_1.png
msgid "Star 1"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hourglass_4.png
msgid "Hourglass 4"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/vertical_blinds_in_to_out.pgm
msgid "Vertical blinds in to out"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hourglass_1.png
msgid "Hourglass 1"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hourglass_3.png
msgid "Hourglass 3"
msgstr ""

#: /home/jonathan/openshot/openshot/transitions/hourglass_2.png
msgid "Hourglass 2"
msgstr ""