~michael-sheldon/jokosher/telepathy

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
# Persian translation for jokosher
# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007
# This file is distributed under the same license as the jokosher package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2007.
#
msgid ""
msgstr ""
"Project-Id-Version: jokosher\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-26 00:54+0000\n"
"PO-Revision-Date: 2007-10-03 21:25+0000\n"
"Last-Translator: Mohammad Ebrahim Mohammadi Panah <Unknown>\n"
"Language-Team: Persian <fa@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-26 00:44+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: ../../Jokosher/Jokosher.glade.h:1
msgid "<b>Active effects for: </b>"
msgstr "<b>جلوه‌های فعال برای: </b>"

#: ../../Jokosher/Jokosher.glade.h:2
msgid "<b>Application Start-up</b>"
msgstr "<b>شروع برنامه</b>"

#: ../../Jokosher/Jokosher.glade.h:3
msgid "<b>Art</b>"
msgstr "<b>هنر</b>"

#: ../../Jokosher/Jokosher.glade.h:4
msgid "<b>Coding</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:5
msgid "<b>Documentation</b>"
msgstr "<b>مستندات</b>"

#: ../../Jokosher/Jokosher.glade.h:6
msgid "<b>Effect Name</b>"
msgstr "<b>نام جلوه</b>"

#: ../../Jokosher/Jokosher.glade.h:7
msgid "<b>Effects</b>"
msgstr "<b>جلوه‌ها</b>"

#: ../../Jokosher/Jokosher.glade.h:8
msgid "<b>File Details</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:9
msgid "<b>General</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:10
msgid "<b>Jokosher Instruments</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:11
msgid ""
"<b>Jokosher is an Open Source project that is driven by a community of "
"contributors. To make Jokosher rock, we need your help!</b>"
msgstr ""
"<b>Jokosher یک طرح بازمنبع است که توسط یک اجتماع از مشارکت‌کنندگان راه‌بری "
"می‌شود. برای سنگ تمام گذاشتن در Jokosher به کمک شما نیاز داریم!</b>"

#: ../../Jokosher/Jokosher.glade.h:12
msgid "<b>Location Details</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:13
msgid "<b>Mixdown Actions</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:14
msgid "<b>N_otes</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:15
msgid "<b>Playback Sound System</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:16
msgid "<b>Recent Projects</b>"
msgstr "<b>طرح‌های اخیر</b>"

#: ../../Jokosher/Jokosher.glade.h:17
msgid "<b>Recording Format</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:18
msgid "<b>Recording Sound System</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:19
msgid "<b>Template Instruments</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:20
msgid "<b>Testing</b>"
msgstr "<b>آزمایش</b>"

#: ../../Jokosher/Jokosher.glade.h:21
msgid "<b>Time Signature</b>"
msgstr "<b>امضای زمان</b>"

#: ../../Jokosher/Jokosher.glade.h:22
msgid "<b>_Presets for:</b>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:23
msgid "<big><b>Mixing the project...</b></big>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:24
msgid "<big>System Information</big>"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:25
msgid "Activate the selected effect"
msgstr "فعال‌سازی جلوه‌ی انتخاب شده"

#: ../../Jokosher/Jokosher.glade.h:26
msgid "Add Action"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:27
msgid "Add Audio File"
msgstr "افزودن پرونده‌ی صوتی"

#: ../../Jokosher/Jokosher.glade.h:28
msgid "Add Audio _File..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:29
msgid "Add Instrument"
msgstr "افزودن آلت"

#: ../../Jokosher/Jokosher.glade.h:30
msgid "Add Mixdown Action"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:31
msgid "Add _Instrument..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:32
msgid "Add an audio file to the project"
msgstr "افزودن پرونده‌ی صوتی به طرح"

#: ../../Jokosher/Jokosher.glade.h:33
msgid "Add an audio file to the selected instrument"
msgstr "افزودن پرونده‌ی صوتی به آلات انتخاب‌شده"

#: ../../Jokosher/Jokosher.glade.h:34
msgid "Add an extension"
msgstr "افزودن گسترش"

#: ../../Jokosher/Jokosher.glade.h:35
msgid "Add an instrument"
msgstr "افزودن آلت"

#: ../../Jokosher/Jokosher.glade.h:36
msgid "Add an instrument to the project"
msgstr "افزودن آلت به طرح"

#: ../../Jokosher/Jokosher.glade.h:37
msgid "Add the selected instrument"
msgstr "افزودن آلت انتخاب‌شده"

#: ../../Jokosher/Jokosher.glade.h:38
msgid "Add the selected jokosher instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:39
msgid "Adjust the amount of beats per measure"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:40
msgid "Adjust the settings for the currently selected active effect"
msgstr "تنظیم تنظیمات برای جلوه‌ی انتخاب‌شده‌ی جاری"

#: ../../Jokosher/Jokosher.glade.h:41
msgid "Arm an instrument then click here to begin recording"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:42
msgid "Audio Mixers"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:43
msgid ""
"Audio production made simple.\n"
"Version 0.11.4"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:45
msgid "Beat _value"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:46
msgid "Beats per _measure"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:47
msgid "C_hange Sound System"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:48
msgid "Cancel the mixdown"
msgstr "لغو آمیزه"

#: ../../Jokosher/Jokosher.glade.h:49
msgid "Change Jokosher preferences"
msgstr "تغییر ترجیحات Jokosher"

#: ../../Jokosher/Jokosher.glade.h:50
msgid "Change the timeline"
msgstr "تغییر خط زمان"

#: ../../Jokosher/Jokosher.glade.h:51
msgid "Change the timeline to show bars, beats and ticks"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:52
msgid "Change the timeline to show hours, minutes and seconds"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:53
msgid "Change type of the selected instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:54
msgid "Choose a chain effects preset."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:55
msgid "Choose a project template"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:56
msgid "Choose an effect preset."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:57
msgid "Choose one or more instruments to add to your project."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:58
msgid "Click and hold to fast forward"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:59
msgid "Click and hold to rewind"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:60
msgid "Close the current project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:61
msgid "Close the extension manager"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:62
msgid "Close this window"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:63
msgid "Configure Export File Action"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:64
msgid "Configure Instrument Effects"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:65
msgid "Copy the current selection"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:66
msgid "Create a new project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:67
msgid "Create the project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:68
msgid "Cut the current selection"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:69
msgid "De_vice:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:70
msgid "Deactivate the currently selected active effect"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:71
msgid "Delete the current selection"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:72
msgid "Delete the currently active effects preset"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:73
msgid "Delete the currently active preset"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:74
msgid "Delete the selected project template"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:75
msgid "Distribution:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:76
msgid "Don't add an instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:77
msgid "Don't create the project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:78
msgid "Double-click an active effect to adjust its settings"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:79
msgid "Double-click an effect to activate it"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:80
msgid "Double-click on a recent project to open"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:81
msgid "Drawing icons, images and other art."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:82
msgid "Edit Jokosher preferences"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:83
msgid "Edit project templates"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:84
msgid ""
"Enter a name for your project and select a folder to store the project in:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:85
msgid "Enter the author's name"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:86
msgid "Enter the project's name"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:87
msgid "Ex_tensions"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:88
msgid "Export current project to an audio file"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:89
msgid "Export to local directory"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:90
msgid "Export to remote server"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:91
msgid "File name:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:92
msgid "Find and open an existing project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:93
msgid "Find out how you can help"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:94
msgid "GStreamer version:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:95
msgid "Gnonlin version:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:97
msgid ""
"Iestyn Pryce <dylunio@gmail.com>\n"
"Jerome S. Gotangco <jgotangco@ubuntu.com>\n"
"torb <torrb@musiker.nu>\n"
"Robert Renling Berencreuz <berencreuz@gmail.com>\n"
"Ola Jeppsson <ola.jeppsson@gmail.com>\n"
"Daniel Nylander <po@danielnylander.se>\n"
"aruiz <aruiz@synaptia.net>\n"
"Manuel Duran Moyano <mduran@ubiobio.cl>\n"
"Laszlo Pandy <laszlok2@gmail.com>\n"
"Iván Edgardo Vázquez Santos \n"
"David Corrales <corrales.david@gmail.com>\n"
"Benjamin A'Lee <bma@bmalee.eu>\n"
"Peter Baričič <pbaricic@gmail.com>\n"
"Артём Попов <artfwo@gmail.com>\n"
"deepred <psalmos@swissinfo.org>\n"
"KeepYourMind <keepyourmind@gmail.com>\n"
"Georgy Faradzhev <georgy.faradzhev@gmail.com>\n"
"Gendolf <pr-baukalo@rambler.ru>\n"
"Rodrigo NSH <rodrigo.nsh@gmail.com>\n"
"Christian Reis <kiko@async.com.br>\n"
"Lourabe Multimédia \n"
"Tomasz Dominikowski <dominikowski@gmail.com>\n"
"Konrad Adamczyk <konrad@svx.pl>\n"
"Hender <simsalabimladen@gmail.com>\n"
"sklp\n"
"Bård Aase <base@kvarteret.no>\n"
"Pecisk <pecisk@gmail.com>\n"
"Luca Ferretti <elle.uca@libero.it>\n"
"Daniele Medri <daniele@medri.org>\n"
"Igor Khanin \n"
"Tobias Frederick <me@tbfr.org>\n"
"Tim Fuchs <tim.fuchs@gmail.com>\n"
"Ramona Barte \n"
"Marcus Hochstadt\n"
"Lebowski\n"
"Julian Turner\n"
"Dennis Lichtenthäler <dennis.lichtenthaeler@episode-iv.de>\n"
"dyphil <dyphil@wanadoo.fr>\n"
"XioNoX \n"
"Stemp <StempUbuntu@gmail.com>\n"
"Signez\n"
"Pierre Slamich <pierre.slamich@gmail.com>\n"
"Nicolas Velin <nsv@fr.st>\n"
"Jean-Francois Arseneau <jf.arseneau@gmail.com>\n"
"Guillaume Hoffmann \n"
"Gabriel de Perthuis <gabriel.de-perthuis@laposte.net>\n"
"Bruno Bord <bruno@jehaisleprintemps.net>\n"
"Mikko Virkkilä <mvirkkil@cc.hut.fi>\n"
"Boyd Timothy\n"
"William Anderson<neuro@well.com>\n"
"Sridhar Dhanapalan <sridhar@dhanapalan.com>\n"
"Roger Light <roger@atchoo.org>\n"
"Malcolm Parsons\n"
"Peturrr <peterdekraker@planet.nl>\n"
"jerven Bolleman <ik@jerven.eu>\n"
"Mathias-K <mathias@computergeil.dk>\n"
"Niels Kjøller Hansen <niels.k.h@gmail.com>\n"
"David Nielsen <david@lovesunix.net>\n"
"daave <fan.d.liu@gmail.com>\n"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:157 ../../Jokosher/JokosherApp.py:1339
msgid "Jokosher"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:158
msgid "Listen to these effects"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:159
msgid "Manage instrument recording inputs"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:160
msgid "Mixdown Profile:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:161 ../../Jokosher/JokosherApp.py:592
msgid "Mixdown Project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:162
msgid "Mixdown the project using these settings"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:163
msgid "Mixing Project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:164
msgid "Move the selected active effect down on the effects chain"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:165
msgid "Move the selected active effect up on the effects chain"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:166 ../../Jokosher/NewProjectDialog.py:126
msgid "New Project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:167
msgid "Open a recent project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:168
msgid "Open an existing project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:169
msgid "Open the extension manager"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:170
msgid "P_ipeline:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:171
msgid "Paste the contents of the clipboard"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:172
msgid ""
"Please enter the filename of the audio you wish to export. The audio will be "
"exported to the location specified."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:173
msgid ""
"Please select the mixdown actions you would like to add to the mixdown "
"profile *profile*"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:174
msgid "Project Properties"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:175
msgid "Project Templates"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:176
msgid "Quit Jokosher"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:177
msgid "R_ecording Inputs..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:178
msgid "Redo"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:179
msgid "Redo the previous edit"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:180
msgid "Remove the currently selected extension"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:181
msgid "Remove the selected instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:182
msgid "Report a bug in Jokosher"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:183
msgid "S_ample Rate:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:184
msgid "S_ystem:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:185
msgid "Save _As..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:186
msgid "Save a copy of the current project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:187 ../../Jokosher/JokosherApp.py:601
msgid "Save as file type:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:188
msgid "Save preferences and close"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:189
msgid "Save the current project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:190
msgid "Save the current settings as a preset"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:191
msgid "Save the currently active effects as a preset"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:192
msgid "Save the selected project template"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:193
msgid "Save your selections and close this window"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:194
msgid "See your system information"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:195
msgid "Select a project to open from the list"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:196
msgid "Select the audio input to use with each instrument."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:197
msgid "Set Time Signature"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:198
msgid "Settings"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:199
msgid "Show as _Bars, Beats, Ticks"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:200
msgid "Show as _Hours, Minutes, Seconds"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:201
msgid "Start Jokosher with an empty project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:202
msgid "Start playback"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:203
msgid "Stop mixing the project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:204 ../../Jokosher/JokosherApp.py:66
msgid "Stop playback"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:205
msgid "Sys_tem:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:206
msgid "System Information"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:207
msgid "Testing Jokosher, and submitting bugs."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:208
msgid "Type here to search for an instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:209
msgid "Undo"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:210
msgid "Undo the last edit"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:211
msgid "Use these effect settings"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:212
msgid "Use these effects"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:213
msgid "Use these settings"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:214
msgid "User manual contents"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:215
msgid "Version information, credits and licence"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:216
msgid "Visit Jokosher's online forums"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:217
msgid "Welcome to Jokosher!"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:218
msgid "Writing code and features in Python."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:219
msgid "Writing simple to read documentation."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:220
msgid "Your music file is being mixed. This can take some seconds."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:221
msgid "_Author:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:222
msgid "_Browse for an Existing Project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:223
msgid "_Change Instrument Type..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:224
msgid "_Contributing to Jokosher"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:225
msgid "_Create a New Project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:226
msgid "_Don't open anything"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:227
msgid "_Don't show this on start-up"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:228
msgid "_Edit"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:229
msgid "_Encoding:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:230
msgid "_File"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:231
msgid "_Folder:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:232
msgid "_Help"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:233
msgid "_Instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:234
msgid "_Manage Extensions..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:235
msgid "_Mixdown"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:236 ../../Jokosher/JokosherApp.py:1959
msgid "_Mixdown Project..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:237
msgid "_Name:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:238
msgid "_New..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:239
msgid "_Online Forums"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:240
msgid "_Open Selected Project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:241
msgid "_Open most recent project"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:242
msgid "_Open..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:243
msgid "_Pipeline:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:244
msgid "_Preferences"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:245
msgid "_Project Name:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:246
msgid "_Recent Projects"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:247
msgid "_Remove Selected Instrument"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:248
msgid "_Report Bug..."
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:249
msgid "_Search:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:250
msgid "_Show welcome dialog"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:251
msgid "_System Information"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:252
msgid "_Template Name:"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:253
msgid "_Time Format"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:254
msgid "_Use project template"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:255
msgid "autoaudiosink"
msgstr ""

#: ../../Jokosher/Jokosher.glade.h:256
msgid "xx.xx.xx"
msgstr ""

#: ../../Jokosher/AddInstrumentDialog.py:63
msgid "Change Instrument Type"
msgstr "تغییر نوع آلت"

#: ../../Jokosher/AddInstrumentDialog.py:65
#, python-format
msgid "Choose the new instrument type for %s"
msgstr ""

#: ../../Jokosher/CompactMixView.py:86
msgid "<b>Instruments Not Shown:</b>"
msgstr ""

#: ../../Jokosher/ControlsBox.py:42
msgid "Enable this instrument for recording"
msgstr ""

#: ../../Jokosher/ControlsBox.py:43
msgid "Disable this instrument for recording"
msgstr ""

#: ../../Jokosher/ControlsBox.py:44
msgid "Mute - silence this instrument"
msgstr ""

#: ../../Jokosher/ControlsBox.py:45
msgid "Unmute - hear this instrument"
msgstr ""

#: ../../Jokosher/ControlsBox.py:46
msgid "Activate Solo - silence all other instruments"
msgstr ""

#: ../../Jokosher/ControlsBox.py:47
msgid "Deactivate Solo - hear all the instruments"
msgstr ""

#: ../../Jokosher/ControlsBox.py:80
#: ../../Jokosher/InstrumentEffectsDialog.py:116
msgid "Instrument Effects"
msgstr ""

#: ../../Jokosher/EventLaneViewer.py:115
msgid "_Add Audio File..."
msgstr ""

#: ../../Jokosher/EventLaneViewer.py:264
msgid "<b>Right-click</b> for more options."
msgstr ""

#: ../../Jokosher/Event.py:780
#, python-format
msgid "%(title)s by %(artist)s"
msgstr ""

#: ../../Jokosher/EventViewer.py:151
msgid "Trim"
msgstr ""

#: ../../Jokosher/EventViewer.py:162
msgid "Delete Fade Points"
msgstr ""

#: ../../Jokosher/EventViewer.py:170
msgid "Snap To Fade Points"
msgstr ""

#: ../../Jokosher/EventViewer.py:443
msgid "Downloading..."
msgstr ""

#: ../../Jokosher/EventViewer.py:445
msgid "Loading..."
msgstr ""

#: ../../Jokosher/EventViewer.py:449
#, python-format
msgid "Downloading (%d%%)..."
msgstr ""

#: ../../Jokosher/EventViewer.py:451
#, python-format
msgid "Loading (%d%%)..."
msgstr ""

#: ../../Jokosher/EventViewer.py:462
msgid "Recording..."
msgstr ""

#: ../../Jokosher/EventViewer.py:510
msgid ""
"To <b>Split, Double-Click</b> the wave - To <b>Select, Shift-Click</b> and "
"drag the mouse"
msgstr ""

#: ../../Jokosher/EventViewer.py:524
msgid "<b>Drag</b> the red sliders to modify the volume fade."
msgstr ""

#: ../../Jokosher/EventViewer.py:637
msgid ""
"<b>Click</b> the buttons below the selection to do something to that portion "
"of audio."
msgstr ""

#: ../../Jokosher/EventViewer.py:902
msgid "_Split"
msgstr ""

#: ../../Jokosher/EventViewer.py:904
msgid "Cu_t"
msgstr ""

#: ../../Jokosher/EventViewer.py:905
msgid "_Copy"
msgstr ""

#: ../../Jokosher/EventViewer.py:906
#: ../../Jokosher/InstrumentEffectsDialog.py:449
msgid "_Delete"
msgstr ""

#: ../../Jokosher/EventViewer.py:1196
msgid "Error loading file:"
msgstr ""

#: ../../Jokosher/EventViewer.py:1197
msgid ""
"Please make sure the file exists, and the appropriate plugin is installed."
msgstr ""

#: ../../Jokosher/EventViewer.py:1415
#, python-format
msgid ""
"Event, %(name)s, %(dur)0.2f seconds long, starting at %(start)0.2f seconds."
msgstr ""

#: ../../Jokosher/ExtensionManagerDialog.py:169
msgid "Choose a Jokosher Extension file"
msgstr ""

#: ../../Jokosher/ExtensionManagerDialog.py:175
msgid "Jokosher Extension Files (*.py *.egg)"
msgstr ""

#: ../../Jokosher/ExtensionManagerDialog.py:197
msgid "There was a problem loading the extension"
msgstr ""

#: ../../Jokosher/ExtensionManagerDialog.py:235
msgid "There was a problem removing the extension"
msgstr ""

#: ../../Jokosher/ExtensionManagerDialog.py:272
msgid ""
"An error occurred when trying to launch the preferences for the extension"
msgstr ""

#: ../../Jokosher/Extension.py:50
msgid "This is a Jokosher extension; it is not meant to be run directly."
msgstr ""

#: ../../Jokosher/Extension.py:51
#, python-format
msgid ""
"To install it, move it to the directory %s\n"
"and run Jokosher."
msgstr ""

#: ../../Jokosher/Extension.py:54
msgid ""
"This is a Jokosher extension, which needs to be installed. Would you like to "
"install it?"
msgstr ""

#: ../../Jokosher/Extension.py:56
msgid "Install"
msgstr ""

#: ../../Jokosher/Extension.py:66
#, python-format
msgid ""
"You already have a extension with the name %s installed; would you like to "
"replace it?"
msgstr ""

#: ../../Jokosher/Extension.py:69
msgid "Replace"
msgstr ""

#: ../../Jokosher/Extension.py:82
msgid "Your new extension is now available in Jokosher!"
msgstr ""

#: ../../Jokosher/Globals.py:486
msgid "Broken"
msgstr ""

#: ../../Jokosher/Globals.py:487
msgid "Unclassified"
msgstr ""

#: ../../Jokosher/Globals.py:488
msgid "Amplifiers"
msgstr ""

#: ../../Jokosher/Globals.py:489
msgid "Chorus"
msgstr ""

#: ../../Jokosher/Globals.py:490
msgid "Compressors"
msgstr ""

#: ../../Jokosher/Globals.py:491
msgid "Delays"
msgstr ""

#: ../../Jokosher/Globals.py:492
msgid "Distortions"
msgstr ""

#: ../../Jokosher/Globals.py:493
msgid "Equalizers"
msgstr ""

#: ../../Jokosher/Globals.py:494
msgid "Filters"
msgstr ""

#: ../../Jokosher/Globals.py:495
msgid "Flangers"
msgstr ""

#: ../../Jokosher/Globals.py:496
msgid "Miscellaneous"
msgstr ""

#: ../../Jokosher/Globals.py:497
msgid "Modulators"
msgstr ""

#: ../../Jokosher/Globals.py:498
msgid "Oscillators"
msgstr ""

#: ../../Jokosher/Globals.py:499
msgid "Phasers"
msgstr ""

#: ../../Jokosher/Globals.py:500
msgid "Reverbs"
msgstr ""

#: ../../Jokosher/Globals.py:501
msgid "Simulators"
msgstr ""

#: ../../Jokosher/Globals.py:695 ../../Jokosher/PreferencesDialog.py:113
msgid "Autodetect"
msgstr ""

#: ../../Jokosher/Globals.py:696
msgid "Use GNOME Settings"
msgstr ""

#: ../../Jokosher/Globals.py:706
msgid "GNOME Settings"
msgstr ""

#: ../../Jokosher/Globals.py:724
msgid "Jokosher Audio Editor"
msgstr ""

#: ../../Jokosher/IncrementalSave.py:29 ../../Jokosher/Instrument.py:489
msgid "Recorded audio"
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:58
msgid "There are no instruments to connect"
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:103
#: ../../Jokosher/PreferencesDialog.py:338
msgid "Default"
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:105
#, python-format
msgid "Default (%s)"
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:112
#, python-format
msgid "%(device)s (%(id)s), input %(input)d"
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:115
#: ../../Jokosher/PreferencesDialog.py:341
#, python-format
msgid "%(device)s (%(id)s)"
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:157
#, python-format
msgid ""
"The %(sound-system-name)s sound system does not support device selection."
msgstr ""

#: ../../Jokosher/InstrumentConnectionsDialog.py:160
#, python-format
msgid ""
"The \"%(custom-pipeline)s\" sound system does not support device selection."
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:142
#: ../../Jokosher/InstrumentEffectsDialog.py:144
#: ../../Jokosher/MixdownProfileDialog.py:618
msgid "Name"
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:143
#: ../../Jokosher/ProjectTemplateDialog.py:82
#: ../../Jokosher/ProjectTemplateDialog.py:86
msgid "Type"
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:446
msgid "_Move up..."
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:447
msgid "M_ove down..."
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:450
msgid "_Settings"
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:491
msgid "_Activate effect"
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:673
msgid "Effect Settings"
msgstr ""

#: ../../Jokosher/InstrumentEffectsDialog.py:704
msgid "-parameter not readable-"
msgstr ""

#: ../../Jokosher/JokosherApp.py:63 ../../Jokosher/JokosherApp.py:65
msgid "Stop recording"
msgstr ""

#: ../../Jokosher/JokosherApp.py:64
msgid "Arm an instrument, then click here to begin recording"
msgstr "یک آلت را مسلح کن، سپس برای شروع ضبظ، این جا کلیک کن"

#: ../../Jokosher/JokosherApp.py:67
msgid "Hide the audio level mixers"
msgstr ""

#: ../../Jokosher/JokosherApp.py:68
msgid "Show the audio level mixers"
msgstr ""

#: ../../Jokosher/JokosherApp.py:400
#, python-format
msgid ""
"<big>Couldn't launch the jokosher website automatically.</big>\n"
"\n"
"Please visit %s to access it."
msgstr ""

#: ../../Jokosher/JokosherApp.py:411
#, python-format
msgid ""
"<big>Couldn't launch the launchpad website automatically.</big>\n"
"\n"
"Please visit %s to access it."
msgstr ""

#: ../../Jokosher/JokosherApp.py:443
#, python-format
msgid ""
"The instruments '%(name1)s' and '%(name2)s' both have the same input "
"selected. Please either disarm one, or connect it to a different input "
"through 'Project -> Recording Inputs'"
msgstr ""

#: ../../Jokosher/JokosherApp.py:640
msgid "Preparing to mixdown project"
msgstr ""

#: ../../Jokosher/JokosherApp.py:646
#, python-format
msgid "%(progress)d%% of %(total)d seconds completed"
msgstr ""

#: ../../Jokosher/JokosherApp.py:718
msgid "Choose a Jokosher project file"
msgstr ""

#: ../../Jokosher/JokosherApp.py:727
msgid "All Files"
msgstr ""

#: ../../Jokosher/JokosherApp.py:731
msgid "Jokosher Project File (*.jokosher)"
msgstr ""

#: ../../Jokosher/JokosherApp.py:781
msgid "Choose a location to save the project"
msgstr ""

#: ../../Jokosher/JokosherApp.py:811 ../../Jokosher/NewProjectDialog.py:147
msgid ""
"A file or folder with this name already exists. Please choose a different "
"project name and try again."
msgstr ""

#: ../../Jokosher/JokosherApp.py:813 ../../Jokosher/NewProjectDialog.py:149
msgid "The file or folder location is write-protected."
msgstr ""

#: ../../Jokosher/JokosherApp.py:815 ../../Jokosher/NewProjectDialog.py:153
msgid "The URI scheme given is either invalid or not supported"
msgstr ""

#: ../../Jokosher/JokosherApp.py:822 ../../Jokosher/NewProjectDialog.py:162
#, python-format
msgid ""
"Unable to create project.\n"
"\n"
"%s"
msgstr ""

#: ../../Jokosher/JokosherApp.py:877
#, python-format
msgid ""
"<span size='large' weight='bold'>Save changes to project \"%s\" before "
"closing?</span>\n"
"\n"
"Your changes will be lost if you don't save them."
msgstr ""

#: ../../Jokosher/JokosherApp.py:886
msgid "Close _Without Saving"
msgstr ""

#: ../../Jokosher/JokosherApp.py:985
#, python-format
msgid "Mixing project to file: %s"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1017
#, python-format
msgid "*%s - Jokosher"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1019
#, python-format
msgid "%s - Jokosher"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1097
msgid "Clear the list of recent projects"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1519
msgid "The project references non-existant files:\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1523
msgid ""
"\n"
"The project references non-existant images:\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1531
#, python-format
msgid ""
"%s\n"
" Invalid or corrupt project file, will not open."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1569
msgid "You must have Gstreamer version 0.10.9 or higher.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1577
msgid "You must have Gstreamer plugin gnonlin version 0.10.4.2 or later.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1579
msgid "Gstreamer plugin gnonlin is not installed."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1580
msgid ""
"\n"
"See http://doc.jokosher.org/Installation for more details.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1583
msgid ""
"You must have the Gstreamer plugin packs gst-plugins-base and gst-plugins-"
"good installed.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1589
#, python-format
msgid ""
"<big>Some functionality will not work correctly or at all.</big>\n"
"\n"
"%s"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1632
#, python-format
msgid ""
"<big>Couldn't launch the Jokosher documentation site.</big>\n"
"\n"
"Please visit %s to access it."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1643
#, python-format
msgid ""
"<big>Couldn't launch the forums website automatically.</big>\n"
"\n"
"Please visit %s to access them."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1671
msgid "<b>To find out more, visit:</b>"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1694
#, python-format
msgid ""
"<big>Couldn't launch the contributing website automatically.</big>\n"
"\n"
"Please visit %s to access it."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1749
msgid "Gnonlin is missing!"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1756
msgid "Unknown"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1772
#, python-format
msgid "The URI scheme '%s' is either invalid or not supported."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1774
#, python-format
msgid "Unable to unzip the project file %s"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1776
#, python-format
msgid "The project file was created with version \"%s\" of Jokosher.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1777
#, python-format
msgid "Projects from version \"%s\" are incompatible with this release.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1779
#, python-format
msgid ""
"The project:\n"
"%s\n"
"\n"
"does not exist.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1781 ../../Jokosher/JokosherApp.py:1785
msgid "The project file could not be opened.\n"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1782
msgid ""
"It is recommended that you report this to the Jokosher developers or get "
"help at http://www.jokosher.org/forums/"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1862
msgid "Copy file to project"
msgstr ""

#: ../../Jokosher/JokosherApp.py:1867
msgid "Add Audio File..."
msgstr ""

#: ../../Jokosher/JokosherApp.py:1941 ../../Jokosher/JokosherApp.py:1946
msgid "Mix_down As"
msgstr ""

#: ../../Jokosher/MasterMixerStrip.py:46
msgid "Master Volume:"
msgstr ""

#: ../../Jokosher/MixdownActions.py:157
msgid "Export File"
msgstr ""

#: ../../Jokosher/MixdownActions.py:158
msgid "Export a file to the destination of your choosing."
msgstr ""

#: ../../Jokosher/MixdownActions.py:225
#, python-format
msgid ""
"An encoding plugin could not be found: %s.\n"
"Please make sure all the plugins required for the specified format are "
"installed."
msgstr ""

#: ../../Jokosher/MixdownActions.py:227
#, python-format
msgid "The encoding bin description is invalid: %s"
msgstr ""

#: ../../Jokosher/MixdownActions.py:253
msgid "Server type:"
msgstr ""

#: ../../Jokosher/MixdownActions.py:266
msgid "Server location:"
msgstr ""

#: ../../Jokosher/MixdownActions.py:270
msgid "Username:"
msgstr ""

#: ../../Jokosher/MixdownActions.py:274
msgid "Password:"
msgstr ""

#: ../../Jokosher/MixdownActions.py:310
msgid "Location:"
msgstr ""

#: ../../Jokosher/MixdownActions.py:378
msgid "Select Export Location"
msgstr ""

#: ../../Jokosher/MixdownActions.py:489 ../../Jokosher/MixdownActions.py:499
msgid "Run External Script"
msgstr ""

#: ../../Jokosher/MixdownActions.py:490
msgid "Run an external script from the destination of your choosing."
msgstr ""

#: ../../Jokosher/MixdownActions.py:531
#, python-format
msgid "An error occured with the script %s"
msgstr ""

#: ../../Jokosher/MixdownActions.py:533
#, python-format
msgid "Error in script %s"
msgstr ""

#: ../../Jokosher/MixdownActions.py:536
#, python-format
msgid "The script %s does not exist."
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:186
#, python-format
msgid "<b>%s is configured</b>"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:188
#, python-format
msgid "<b>%s is not configured</b>"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:367
msgid "Please enter the name of the mixdown profile you wish to create."
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:377
msgid "Profile name:"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:380
msgid "Create Mixdown Profile"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:398
#, python-format
msgid "Successfully created mixdown profile <b>%s.profile</b>."
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:402
msgid ""
"Cannot create mixdown profile. Please make sure you have specified a profile "
"name."
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:423
#, python-format
msgid "Please make sure the extension <b>%s</b> is enabled."
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:424
#, python-format
msgid ""
"<big><b>Cannot load mixdown action %s.</b></big>\n"
"\n"
"%s"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:552
#, python-format
msgid "An error occured while running the mixdown action: %s"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:617
msgid "Icon"
msgstr ""

#: ../../Jokosher/MixdownProfileDialog.py:632
#, python-format
msgid ""
"Please select the mixdown actions you would like to add to mixdown profile "
"<b>%s.</b>"
msgstr ""

#: ../../Jokosher/MixdownProfiles.py:94 ../../Jokosher/MixdownProfiles.py:151
#, python-format
msgid "The mixdown profile %s does not exist"
msgstr ""

#: ../../Jokosher/MixdownProfiles.py:115
#, python-format
msgid "Cannot remove mixdown profile %s"
msgstr ""

#: ../../Jokosher/MixerStrip.py:63
msgid "Minimize instrument"
msgstr ""

#: ../../Jokosher/MixerStrip.py:73
msgid "Balance:"
msgstr ""

#: ../../Jokosher/MixerStrip.py:78
msgid "L"
msgstr ""

#: ../../Jokosher/MixerStrip.py:79
msgid "R"
msgstr ""

#: ../../Jokosher/MixerStrip.py:84
msgid "Adjust instrument balance. Right-click to center"
msgstr ""

#: ../../Jokosher/MixerStrip.py:98
msgid "Volume:"
msgstr ""

#: ../../Jokosher/MixerStrip.py:231
#, python-format
msgid "Current balance is <b>%d%%</b> left"
msgstr ""

#: ../../Jokosher/MixerStrip.py:233
msgid "Current balance is <b>centered</b>"
msgstr ""

#: ../../Jokosher/MixerStrip.py:235
#, python-format
msgid "Current balance is <b>%d%%</b> right"
msgstr ""

#: ../../Jokosher/NewProjectDialog.py:85
msgid "Select A Folder"
msgstr ""

#: ../../Jokosher/NewProjectDialog.py:130
msgid "Unknown Author"
msgstr ""

#: ../../Jokosher/NewProjectDialog.py:145
msgid "Could not initialize project."
msgstr ""

#: ../../Jokosher/NewProjectDialog.py:151
msgid "Invalid name or author."
msgstr ""

#: ../../Jokosher/NewProjectDialog.py:155
msgid "Unable to load required Gstreamer plugin:"
msgstr ""

#: ../../Jokosher/PreferencesDialog.py:75
#: ../../Jokosher/PreferencesDialog.py:93
msgid "Custom"
msgstr ""

#: ../../Jokosher/PreferencesDialog.py:346
#, python-format
msgid "Device %d"
msgstr ""

#: ../../Jokosher/ProjectTemplateDialog.py:83
#: ../../Jokosher/ProjectTemplateDialog.py:87
msgid "Instrument Name"
msgstr ""

#: ../../Jokosher/RecordingView.py:119
msgid "Zoom the timeline - Right-Click to reset to the default level"
msgstr ""

#: ../../Jokosher/RecordingView.py:128
msgid "Zoom in timeline"
msgstr ""

#: ../../Jokosher/RecordingView.py:135
msgid "Zoom out timeline"
msgstr ""

#: ../../Jokosher/RecordingView.py:179
msgid "Would you like to restore the current project?"
msgstr ""

#: ../../Jokosher/RecordingView.py:180
msgid ""
"A crash was detected and changes to your project were not saved.\n"
"If you would like, you can attempt to recover these lost changes."
msgstr ""

#: ../../Jokosher/RecordingView.py:184
msgid "_Restore Project"
msgstr ""

#: ../../Jokosher/RecordingView.py:318
msgid "A Gstreamer error has occurred"
msgstr ""

#: ../../Jokosher/RecordingView.py:329
msgid "A GStreamer error has occurred."
msgstr ""

#: ../../Jokosher/RecordingView.py:330
msgid ""
"If this problem persists consider reporting a bug using the link in the help "
"menu."
msgstr ""

#: ../../Jokosher/TimeLineBar.py:63
msgid "Adjust volume of click track"
msgstr ""

#: ../../Jokosher/TimeLineBar.py:67
msgid "Beats per minute"
msgstr ""

#: ../../Jokosher/TimeLineBar.py:86
msgid "Time signature"
msgstr ""

#: ../../Jokosher/TimeLine.py:566
#, python-format
msgid "Timeline, %(bars)d bars, %(beats)d beats and %(ticks)d ticks in"
msgstr ""

#: ../../Jokosher/TimeLine.py:570
#, python-format
msgid ""
"Timeline, %(hours)d hours, %(mins)d minutes, %(secs)d seconds and %(millis)d "
"milliseconds in"
msgstr ""

#: ../../Jokosher/TimeView.py:49
msgid "Double click to change the time format"
msgstr ""

#: ../../Jokosher/VUWidget.py:146
msgid ""
"<b>Drag</b> the <b>slider</b> to alter volume levels - <b>Right-Click</b> to "
"set the <b>slider</b> to 100%"
msgstr ""

#: ../../Jokosher/Jokosher:73
msgid "Print debug output to stdout"
msgstr ""

#: ../../Jokosher/Jokosher:75
msgid "Sent debug output to Gstreamer's debug system"
msgstr ""

#: ../../Jokosher/Jokosher:77
msgid "Don't load extensions or last project on startup (same as -ne)"
msgstr ""

#: ../../Jokosher/Jokosher:79
msgid "Force the welcome dialog to show on startup"
msgstr ""

#: ../../Jokosher/Jokosher:81
msgid "Force Jokosher to load without a welcome dialog or project"
msgstr ""

#: ../../Jokosher/Jokosher:83
msgid "Do not load extensions on startup"
msgstr ""

#: i18n.instr.h:1
msgid "Acoustic Guitar"
msgstr ""

#: i18n.instr.h:2
msgid "Audio File"
msgstr ""

#: i18n.instr.h:3
msgid "Bass Drum"
msgstr ""

#: i18n.instr.h:4
msgid "Bass Guitar"
msgstr ""

#: i18n.instr.h:5
msgid "Cello"
msgstr ""

#: i18n.instr.h:6
msgid "Cymbal"
msgstr ""

#: i18n.instr.h:7
msgid "Drum Kit"
msgstr ""

#: i18n.instr.h:8
msgid "Effect"
msgstr ""

#: i18n.instr.h:9
msgid "Electric Guitar"
msgstr ""

#: i18n.instr.h:10
msgid "Harmonica"
msgstr ""

#: i18n.instr.h:11
msgid "Keyboard"
msgstr ""

#: i18n.instr.h:12
msgid "Other"
msgstr ""

#: i18n.instr.h:13
msgid "Saxophone"
msgstr ""

#: i18n.instr.h:14
msgid "Snare"
msgstr ""

#: i18n.instr.h:15
msgid "Tom Tom"
msgstr ""

#: i18n.instr.h:16
msgid "Trumpet"
msgstr ""

#: i18n.instr.h:17
msgid "Violin"
msgstr ""

#: i18n.instr.h:18
msgid "Vocal"
msgstr ""

#~ msgid "<b>Recorded Audio Format</b>"
#~ msgstr "<b>ساختار صدای ضبط شده</b>"

#~ msgid "<b>Recording Sample Rate</b>"
#~ msgstr "<b>نرخ نمونه‌ی ضبط کردن</b>"

#~ msgid ""
#~ "Autodetect\n"
#~ "ALSA\n"
#~ "Custom"
#~ msgstr ""
#~ "تشخیص خودکار\n"
#~ "ALSA\n"
#~ "سفارشی"

#, fuzzy
#~ msgid "Add this step to the current mixdown"
#~ msgstr "افزودن این گام به آمیزه‌ی جاری"

#, fuzzy
#~ msgid "Audio production made simple."
#~ msgstr "تولید صدای آسان."

#~ msgid "Author"
#~ msgstr "مؤلف"

#~ msgid "Beat value"
#~ msgstr "مقدار تپش"

#~ msgid "Beats per measure"
#~ msgstr "تپش در واحد"

#~ msgid "Browse for an Existing Project"
#~ msgstr "مرور برای طرح موجود"

#, fuzzy
#~ msgid "<b>Presets for:</b>"
#~ msgstr "<b>جلوه‌های فعال برای: </b>"

#, fuzzy
#~ msgid "Add a new instrument"
#~ msgstr "افزودن آلت"

#, fuzzy
#~ msgid "Add a new step:"
#~ msgstr "افزودن آلت"