File: acetoneiso_sr.ts

package info (click to toggle)
acetoneiso 2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 18,540 kB
  • sloc: cpp: 5,634; makefile: 11
file content (2299 lines) | stat: -rw-r--r-- 109,821 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS>
    <context>
        <name>about</name>
        <message>
            <source>Authors</source>
            <translation>Аутори</translation>
        </message>
        <message>
            <source>Contacts</source>
            <translation>Контакти</translation>
        </message>
        <message>
            <source>License</source>
            <translation>Дозвола</translation>
        </message>
        <message>
            <source>ok</source>
            <translation type="obsolete">у реду</translation>
        </message>
        <message>
            <source>About AcetoneISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>OK</source>
            <translation>У реду</translation>
        </message>
        <message>
            <source>Honor &amp;&amp; Glory</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;center&gt;
&lt;b&gt;AcetoneISO&lt;/b&gt;&lt;br/&gt;
2.4 30/10/2013
&lt;/body&gt;&lt;/html&gt;</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;center&gt;
You can contact me by email at:&lt;p&gt;
&lt;a href=&quot;mailto:acetoneiso@gmail.com&quot;&gt;acetoneiso@gmail.com&lt;/a&gt;
&lt;/body&gt;&lt;/html&gt;</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
           &lt;html&gt;&lt;head/&gt;&lt;body&gt;
           &lt;p&gt;&lt;b&gt;Translators:&lt;/b&gt;&lt;/p&gt;
           &lt;p&gt;Italian: Original Authors&lt;/p&gt;
           &lt;p&gt;Czech: Hanz&lt;/p&gt;
           &lt;p&gt;Russian: Oleg Koptev, Arseniy Muravyev&lt;/p&gt;
           &lt;p&gt;Polish: Jarek&lt;/p&gt;
           &lt;p&gt;Romanian: Aparaschivei Florin&lt;/p&gt;
           &lt;p&gt;Hungarian: Sandor Lisovszki&lt;/p&gt;
           &lt;p&gt;German: Johannes Obermayr&lt;/p&gt;
           &lt;p&gt;Spanish: Otniel Watanabe&lt;/p&gt;
           &lt;p&gt;Others: Launchpad Translation Team&lt;/p&gt;
           &lt;p&gt;&lt;/p&gt;
           &lt;p&gt;&lt;b&gt;Special Thanks goes to:&lt;/b&gt;&lt;/p&gt;
           &lt;p&gt;All the people that made a donation!&lt;/p&gt;
           &lt;p&gt;All package mantainers.&lt;/p&gt;
           &lt;p&gt;All people that submitted bug-reports, patches and suggestions.&lt;/p&gt;
           &lt;p&gt;Irc #qt channel on irc.freenode.net for all their help on C++ and Qt&lt;/p&gt;
           &lt;p&gt;Trolltech for releasing such a wonderful framework, Qt!&lt;/p&gt;
           &lt;p&gt;All the open source tools AcetoneISO uses, this includes: fuseiso, mencoder, mplayer, mencoder, dd, cdrdao, wodim, growisofs, youtube-dl, 7z, ffmpeg, gnupg, dvd+r-format and more!&lt;/p&gt;
           &lt;p&gt;And finally... a big thanks goes to You for using our software!&lt;/p&gt;
           &lt;p&gt;&lt;/p&gt;
           &lt;p&gt;Thanks to all of You,&lt;/p&gt;
           &lt;p&gt;&lt;b&gt;The AcetoneISO Team&lt;/b&gt;&lt;/p&gt;
           &lt;/body&gt;&lt;/html&gt;
          </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;GNU GENERAL PUBLIC LICENSE&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Version 3, 29 June 2007 &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Copyright © 2007 Free Software Foundation, Inc. &amp;lt;http://fsf.org/&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;preamble&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;P&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;reamble &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The GNU General Public License is a free, copyleft license for software and other kinds of works. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The precise terms and conditions for copying, distribution and modification follow. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;terms&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;T&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;ERMS AND CONDITIONS &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;section0&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;. Definitions. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;“This License” refers to version 3 of the GNU General Public License. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;A “covered work” means either the unmodified Program or a work based on the Program. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;section1&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;. Source Code. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;The Corresponding Source for a work in source code form is that same work. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;section2&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;. Basic Permissions. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;section3&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;. Protecting Users' Legal Rights From Anti-Circumvention Law. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;section4&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;. Conveying Verbatim Copies. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a name=&quot;section5&quot;&gt;&lt;/a&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt; font-weight:600;&quot;&gt;. Conveying Modified Source Versions. &lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Sans Serif'; font-size:10pt;&quot;&gt;You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;The cd/dvd image manipulator for linux&lt;br/&gt;
is created by:&lt;/p&gt;
&lt;p&gt;Current: &lt;br/&gt;
&lt;i&gt;Marco Di Antonio&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Previous 2006-2009:&lt;br/&gt;
&lt;i&gt;Fabrizio Di Marco&lt;br/&gt;
Marco Di Antonio&lt;/i&gt;&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>acetoneiso</name>
        <message>
            <source>mount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>unmount</source>
            <translation>откачи</translation>
        </message>
        <message>
            <source>Backup CD-Audio</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Set Database</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Info</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Extract Boot Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>DOS Boot</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Generic Floppy-Emulation</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Generic No-Emulation</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>umount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>To CD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>To DvD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Convert MacOs Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Loading GUI...</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Loading Options...</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Images (*.bin)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>no cdrdao found in /usr/bin</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso *.daa *.bin *.mdf *.ashdisc *.bwi *.b5i *.lcd *.img *.cdi *.cif *.p01 *.pdi *.nrg *.ncd *.pxi *.gi *.fcd *.vcd *.c2d)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Images (*.7z)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Do You want to compress in Ultra High mode? (very slow)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>no 7z found in /usr/bin</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Images (*.iso)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Encrypted Image ( *.gpg)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>ISO ID</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert an ID for the ISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.bin *.img)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select from where to extract Boot Image:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>ISO File</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>CD/DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO2::Save boot image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The folder </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> can't be mounted</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> is not mounted!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Md5 (*.md5)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>All Virtual Drives are busy,
Unmount some Virtual Drive first!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Process Successfully Finished!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Operation successfully finished!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Operation successfully finished!
To mount the converted file, open a terminal and run as root:
modprobe hfsplus
mount -t hfsplus -o loop &lt;converted-image.img&gt; /folder_you_want</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image successfully merged</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select DVD-Movie to Play</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>DVD-Movie Image (*.iso *.bin *.img *.mdf *.nrg)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Poweriso downloaded and extracted!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>select an image to delete</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open Image to be split</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>select an image to unmount from the virtual-drives display</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open Compressed Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.7z)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>no 7z found in /usr/bin, please install p7zip-full package</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Manual Umount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>MS-DOS Boot</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Rip a PSX1 game for epsxe/psx emulators</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Split</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Merge Split Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Encrypt</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Decrypt</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Mount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unmount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Compress</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Uncompress</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Options</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso *.daa *.bin *.mdf *.ashdisc *.bwi *.b5i *.lcd *.img *.cdi *.cif *.p01 *.pdi *.nrg *.ncd *.pxi *.gi *.fcd *.vcd *.c2d *.dmg)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.dmg)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please Unmount the movie first</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Choose a method to play the movie.
Method 1 generally works, if it doesn't try Method 2.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Method 1</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Method 2</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Mount UDF ISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please be sure the DVD disc is inserted in device and then press OK.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Encoding Pass 1 has successfully finished.
Pass 2 will be done now. Please choose the bitrate in the next dialog and then choose where to save the video.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert Bitrate. Higher bitrate means more quality but will generate a bigger file.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video (*.avi)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert the Fixed Quant number.
Lowering the number will result in a higher quality video.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select FLV Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video Files (*.flv )</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>An error has occurred.
Please try converting the FLV video with Convert generic video to Xvid AVI feature</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert YouTube's URL:
Note: YouTube's server is often very slow, big files can require a lot of time to download!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video (*.flv)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;File</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Utilities</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Help</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>O&amp;ptions</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Open</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Donate</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn CUE</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>CD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>to CD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>to DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn TOC</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Copy a normal CD/DVD data</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Copy a CD Audio</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Copy a protected PC Game CD/DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>a DVD Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Copy a DVD Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Copy a Playstation 1 Game</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Did you insert correct CD/DVD device?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Without Poweriso you won't be able to convert and extract images to ISO or folders!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Please see the log file in   </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You are about to delete </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Are You sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Yes</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No way!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>no genisoimage found in /usr/bin</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The image </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> can't be mounted. You must convert it to ISO or extract content to a folder.
Please choose what to do:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> Convert to ISO </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> Extract image to a folder </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert the Byte Size.
Leaving default is the best solution!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert your YouTube's username</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>your username</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert your YouTube's password</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select a format type:
Fast method is recommended.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Fast</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Complete</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert the erasing speed:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to unmount the CD/DVD device.
Be sure there is no process that is locking the device.
Please click on Cancel button in the next dialog.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This utility will not do a 1:1 copy of your game! It will simply skip copyprotection errors.
You will need a no-cd fix cd/dvd to make the game work also known as crack.
Note: if the game is very old and uses a mixed data/audio file system, this utility won't work. Sorry :(</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please specify your CD/DVD mount point. If you aren't sure just leave default.
Typical mount points are:
/media/cdrom or /media/cdrom0 or /media/cdrom1 and follow this symbolism.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Click to mount an image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Click a mounted image on the display to unmount it</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Image Conversion</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Audio</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>search:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>type a letter/s to filter the search</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Double click to mount. Right click for context menu</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>select an image on display to delete</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Click to update  database's display</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>PornoTube Download Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Rip CD Audio 2 MP3</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Convert WMA 2 MP3</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Convert WAV 2 MP3</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>ISO 2 CSO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>CSO 2 ISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Insert cd/dvd device</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save BIN Audio file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Image to compress</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso *.daa *.bin *.mdf *.ashdisc *.bwi *.b5i *.lcd *.img *.cdi *.cif *.p01 *.pdi *.nrg *.ncd *.pxi *.gi *.fcd *.vcd *.c2d *.gpg)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save Compressed Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Folder where the uncompressed Image will be saved</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open RAR password protected</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>RAR File (*.rar *.rev *.r00)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Insert password</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert the password of the RAR archive</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Folder where the uncompressed RAR will be extracted</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>no unrar-nonfree found in /usr/bin. Please install unrar-nonfree package.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save ISO file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>It is highly recommended to use &quot;Extract to folder&quot; feature.
This is because the converted ISO image is not a true ISO-9660 filesystem and requires to be mounted from terminal. A loaded hfsplus module is also needed.
Extracting the image contents to a folder is way easier and faster, and if you need you can always convert the folder to ISO in a second moment with AcetoneISO!
Choose what to do:  </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> Extract to folder (best solution) </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> Convert to ISO (worst solution) </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select where to extract image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Do you want to download Poweriso?
If you click yes you accept PowerISO's Freeware(proprietary but gratis) License.
Remember: if you are running a 64-bit OS, you need ia32-libs package installed and maybe others.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>to donate go here: http://www.acetoneteam.org/</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Image to encrypt</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Image to decrypt</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Folder to be Converted</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save ISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This tool doesn't do anything special.
It will only create a file with the following lines referred to the BIN/IMG you select:
FILE  + $image_file + BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00
note: it doesn't make sense to use this feature with multisector images.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select *bin or *img</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>NOTE: If you want to mount an image in a root folder like /media/cdrom, please launch AcetoneISO as root user. </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select where to mount image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select folder to unmount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Byte Size</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save Md5 text file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Operation successfully finished!
Find the file in </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>An error occurred while unmounting.
The image has been unmounted but it is highly recommended to close and reopen AcetoneISO to mount a new image.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save BIN file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso *.daa *.bin *.mdf *.ashdisc *.bwi *.b5i *.lcd *.img *.cdi *.cif *.p01 *.pdi *.nrg *.ncd *.pxi *.gi *.fcd *.vcd *.c2d *.dmg *.gpg)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Insert volume name</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Split number</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert the volume number in MegaByte:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select first volume part</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>7Z 001 (*.001)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>to be done</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video Files (*.avi *.mpg *.mpeg *.mov *.wmv *.flv *.asf *.rm )</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save Video file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Fixed Quant</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Bitrate</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::YouTube</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::MetaCafe</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert MetaCafe's URL:
</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>We highly recommend to NOT erase a DVD.
AcetoneISO can simply overwrite existing data so there is no need to erase it.
Also remember that erasing a lot of times a dvd will damage the media.
Do You want to continue anyways?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Erase Speed</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select WMA Audio File</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Audio WMA (*.wma)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save MP3</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Audio MP3 (*.mp3)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select where to Save ripped CD-Audio</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Video File</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Save WAV</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Audio WAV (*.wav)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Select Wav File</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>WAV (*.wav)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Insert cd/dvd mount point</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>delete</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>extract</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please specify your CD/DVD device. If you aren't sure just leave default.
Typical devices are:
/dev/cdrom or /dev/cdrom0 or /dev/cdrom1 or /dev/dvd and follow this symbolism.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Note:
ISO-9660 filesystem does not support multisector images, this means you will loose all sectors above first sector. Generally speaking, the first sector holds data file.
If it's a video game image in MDF/IMG/CCD format, you will probably loose sectors that hold copyprotection files.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Reached maximum allowed drives to mount.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Mount Images</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unmount Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video Files (*.avi *.mpg *.mpeg *.mov *.wmv *.flv *.asf *.rm *.mp4)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video (*.mp4)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You decided to unmount:
</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Are you sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Refresh</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Rip CD-Audio to WAV</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This is the first time you launch AcetoneISO software.
In the next dialog you can set your default file manager, set database and some other things.
Happy AcetoneISO usage from the team:)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO I love You!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> doesn't exist.
I'll remove it from database display.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The History display is already empty!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You are about to clear the History display.
This won't delete the images from hard disk.
Clear History?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>All images that don't exist have been removed from History</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>History:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Restore</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Quit</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>About AcetoneISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Mount Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Do the action specified in the combobox</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Database set to:  (flag recursive:ON)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Database set to:  (flag recursive:OFF)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Database set to:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>All images in History physically exist!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> doesn't exist.
I'll remove it from history display.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
This will remove it from history and physically delete it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>open image in file manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>mount </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>delete </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>extract </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>open </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> in file manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>unmount </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Double click an image to open in file manager.
Right click for Context Menu.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to find</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>in /usr/bin.
Please install it and be sure it's linked to /usr/bin folder.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Process Progress:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Hides the Process Display</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Hide Process display</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This display shows you the current progress of the process in action</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Make a small donation</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.daa *.bin *.mdf *.ashdisc *.bwi *.b5i *.lcd *.img *.cdi *.cif *.p01 *.pdi *.nrg *.ncd *.pxi *.gi *.fcd *.vcd *.c2d *.cue)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso *.daa *.bin *.mdf *.ashdisc *.bwi *.b5i *.lcd *.img *.cdi *.cif *.p01 *.pdi *.nrg *.ncd *.pxi *.gi *.fcd *.vcd *.c2d *.dmg *.cue)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Choose if you want the audio to be in mp3 format or if
it should be the same of the dvd (for example dolby 5.1)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Mp3</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Original Audio</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn CD/DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to find wodim in /usr/bin.
Please install wodim package.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Erase CD-RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Erase DVD±RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to find dvd+rw-format in /usr/bin.
Please install dvd+rw-tools package.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Video (*.avi *.mpg *.mpeg *.wmv *.flv *.mov *.asf *.rm *.mp4)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files (*.iso *.bin *.mdf *.nrg *.img)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Erase CD-RW or DVD±RW :</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select where to Save the Youtube Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn ISO image to DVD±R/RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to find growisofs in /usr/bin.
Please install growisofs package.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This Image appears to have an UDF filesystem.
To correctly mount this image, open a terminal as root user and type:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Delete</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn Image ISO/CUE/TOC to CD-R/RW or DVD±R/RW :</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please note this utility will generate a TOC/BIN image which could not be mounted or read in any way.
However You can burn it later with AcetoneISO burning tools!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn ISO/TOC/CUE to CD-R/RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Clears History</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Clear</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Removes all non-existent images from History</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Remove</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Torrents</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Progress</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Size</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Speed</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>ETA</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Seeds</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Leechers</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open URL</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Pause</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to find /usr/bin/aria2c file.
Please install aria2 package.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Insert Torrent URL</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert Torrent URL:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Open Torrent</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Torrent (*.torrent)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Error retrieving torrent file name.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Calculating...</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> (File Alloc, Please Wait...)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Name</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Completed</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Click Unmount button to unmount:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Errors</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&lt;html&gt;&lt;head/&gt;&lt;body/&gt;&lt;/html&gt;</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Calculate Md5-&amp;Sum</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Mount in a specified folder</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Boot</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Calculate Sha-Sum</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Generate ISO from CD/DVD and it is:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Play DVD image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;YouTube Download Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Archive &amp;Manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Split Image in Volumes</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Compress Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Encrypt Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;database</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Generate to file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Check</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Manual</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;About</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Extract Boot Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Convert Image to ISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Convert &amp;MacOs Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Generate &amp;ISO from folder</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Mount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Unmount</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Extract Image Content to a folder</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Generate Cue for BIN/IMG images</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Rip DVD 2 Xvid AVI</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Convert &amp;generic video 2 Xvid AVI</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Convert FLV 2 AVI</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Play</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Anonymous Login</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;User Account Login</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;a standard data CD/DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>a &amp;CD Audio</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>a Playstation &amp;1 Game</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>a &amp;protected PC Game CD/DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Mount Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;MetaCafe Download Video</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Merge Split Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Split</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Compress</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Extract</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Encrypt</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Decrypt</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Extract a &amp;RAR password protected</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Extract Audio from a Video file</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Unmount Image</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Convert &amp;video for PSP™</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Sha1</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>S&amp;ha256</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Sha&amp;384</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>no xorrisofs found in /usr/bin</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Images(*.iso)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Error, could not mount image.
Solution:
Try converting the image to ISO or extract the content to a folder from the upper menu &quot;Image Conversion.&quot;
NOTE: it is NOT possible to mount multi-sector images.</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>burniso2cd</name>
        <message>
            <source>No CD/DVD device found.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Process Successfully Finished!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Device:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This combobox shows all the cdrom CD-RW capable devices found in your system</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Speed:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This will eject your disc when the blank process ends</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Eject the disk after doing the work</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Progress:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found capable of writing to CD-R/RW discs.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert a CD-R/RW disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The disc isn't a CD-R/RW. Please insert a CD-R/RW disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You inserted a CD-RW disc, however your CD/DVD device is uncapable of writing to CD-RW discs.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The CD-R isn't empty. Please insert an empty CD-R/RW disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The CD-RW isn't empty.
Please insert an empty CD-R/RW disc or blank the CD-RW with the appropriate AcetoneISO's blanking tool.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>successfully found in device.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Are you sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Choose writing speed. When putting high values, be sure to have a good optical medium quality.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Click here to browse and choose what image to burn to your optical medium</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start burning your image.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Does a burning simulation. This means it will not do a real burn and write data on your CD-R/RW disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Simulation</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select Image to Burn</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> seconds</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> minutes</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Estimated time to burn </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select ISO/CUE/TOC image to burn to CD-R/RW :</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This display shows the progress of the burning process.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO is burning your image to the</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You decided to burn the image on the</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn Image to CD-R/RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The Image you selected is too big to fit into a CD-R/RW.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Image Files ISO/CUE/TOC (*.iso *.cue *.toc)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The Image you selected is unsupported from AcetoneISO.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The Image you selected does not exist.
If trying to burn a CUE/TOC image, be sure the image file is in the exact folder where the CUE/TOC file is.
Be also sure they have same name except the CUE/TOC file ending with .toc extension.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Program cue2toc not found in /usr/bin
Please install cue2toc package.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Unable to generate toc file from the cue file you selected.</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>burniso2dvd</name>
        <message>
            <source>Progress:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This display shows the progress of the blanking process</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Device:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found capable of writing to DVD-RW discs.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert a DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The disc isn't a DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert a DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You inserted a </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>successfully found in device.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Are you sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Process Successfully Finished!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> that is not Empty. Please put an empty DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Speed:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Choose writing speed. When putting high values, be sure to have a good optical medium quality.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Click here to browse and choose what image to burn to your optical medium</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start burning your image.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This combobox shows all the dvd DVD±R/RW capable devices found in your system</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select ISO image to burn to DVD±R/RW :</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Burn ISO to DVD±R/RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> disc, however your CD/DVD device is uncapable of writing to such discs.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The Image you selected does not exist.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> seconds</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> minutes</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Estimated time to burn </source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source> that is not Empty. If you continue, AcetoneISO will overwrite your disc!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You decided to burn the image on the</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>.
The disc is NOT empty so if you continue,
AcetoneISO will overwrite all your data.
Are you sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO is burning your image to the</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Select ISO Image to Burn</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>ISO Image Files (*.iso)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The Image you selected is unsupported from AcetoneISO.</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>erasecd</name>
        <message>
            <source>No CD/DVD device found.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The CD-RW is getting blanked...</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert a CD-RW disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The disc isn't a CD-RW. Please insert a CD-RW disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>CD-RW successfully found in device.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You decided to blank the CD-RW.
Are you sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Process Successfully Finished!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Erase CD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Device:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Selecting this will completely blank your CD-RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Blank  the entire disk</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This will not delete files but only PMA, TOC and the pregap</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Minimally blank the entire disk (PMA, TOC, pregap)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This will eject your disc when the blank process ends</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Eject the disk after doing the work</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Progress:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This display shows the progress of the blanking process</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start blanking your disc</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found capable of writing to CD-RW discs.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This combobox shows all the cdrom CD-RW capable devices found in your system</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>erasedvd</name>
        <message>
            <source>No CD/DVD device found.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Process Successfully Finished!</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Erase DVD±RW</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Device:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This will eject your disc when the blank process ends</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Eject the disk after doing the work</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Progress:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This display shows the progress of the blanking process</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start blanking your disc</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Start</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>No CD/DVD device found capable of writing to DVD-RW discs.
If you think this is a bug please report it.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Insert a DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>disc.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The disc isn't a DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Please insert a DVD</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You inserted a DVD+RW disc, however your CD/DVD device is uncapable of writing to DVD+RW discs.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>successfully found in device.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>This combobox shows all the DVD±RW capable devices found in your system</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>The</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>is getting blanked...</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>You decided to blank the</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
Are you sure?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Selecting this will completely blank your DVD±RW. This is not recommended and may damage your media on if used several times</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Blank  the entire disk (not recommended)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Quick Blank</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>is already formatted.
There is no need to format it because you can simply overwrite the media.
If you really want to blank it, choose Blank the Entire disc in the below window but we highly discourage you from doing so.
Overwriting the</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>is the simplest and safest thing to do.</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>manual</name>
        <message>
            <source>AcetoneISO::Manual</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>OK</source>
            <translation type="unfinished">У реду</translation>
        </message>
    </context>
    <context>
        <name>options</name>
        <message>
            <source>Iso from folder</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>will let you add an ID to the ISO</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Media player</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>File manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>it will use kde's default file manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>it will use Nautilus file manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Database</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Reset options to default values.</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Defaults</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>OK</source>
            <translation type="unfinished">У реду</translation>
        </message>
        <message>
            <source>Apply</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Cancel</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>What is Database?</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Set database root folder:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Scan Subdirectories (read below)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>General Options</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Advanced Options</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Options</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Enable Tray Icon (requires application restart)</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Close in Tray Icon</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Automatically clean History display on restart</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Tray Icon:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>History:</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Automatically remove non-existent images from History display on restart</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Stan&amp;dard Settings</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;User Settings</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Kaffeine</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Vl&amp;c</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>S&amp;MPlayer</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Dolphin</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Na&amp;utilus</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>&amp;Thunar</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Don't Open a &amp;file manager</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>L&amp;xde</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>
			&lt;html&gt;&lt;head/&gt;&lt;body&gt;
			If you activate Scan Subdirectories checkbox, avoid setting database root folder directly to your ~home folder or system folders.&lt;/body&gt;&lt;/html&gt;
			</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>optionsDiag</name>
        <message>
            <source>AcetoneISO::Select Database Folder</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>Database is a quick and easy feature for managing your images.
Place them all in a folder and set the Database path to it, you will see all the images in the database display.
You can quickly mount them by simply clicking on them or right click for more options.</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
    <context>
        <name>progress</name>
        <message>
            <source>Please wait... work in progress</source>
            <translation type="unfinished"></translation>
        </message>
        <message>
            <source>AcetoneISO::Progress</source>
            <translation type="unfinished"></translation>
        </message>
    </context>
</TS>