~ubuntu-branches/ubuntu/saucy/kde-l10n-fa/saucy-updates

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
# translation of kvoctrain.po to Persian
# Nasim Daniarzadeh <daniarzadeh@itland.ir>, 2006.
# Nazanin Kazemi <kazemi@itland.ir>, 2006, 2007.
# MaryamSadat Razavi <razavi@itland.ir>, 2006.
# Mahdi Foladgar <foladgar@itland.ir>, 2006.
# Tahereh Dadkhahfar <dadkhahfar@itland.ir>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: kvoctrain\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2008-01-14 06:16+0100\n"
"PO-Revision-Date: 2007-09-02 17:53+0330\n"
"Last-Translator: Nazanin Kazemi <kazemi@itland.ir>\n"
"Language-Team: Persian <kde-i18n-fa@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=1; plural=0;\n"

#: parley.cpp:268
msgid "Do you really want to delete the selected entry?"
msgstr "واقعاً می‌‌‌خواهید مدخل برگزیده را حذف کنید؟"

#: parley.cpp:275
msgid "Do you really want to delete the selected entries?"
msgstr "واقعاً می‌‌‌خواهید مدخل برگزیده را حذف کنید؟"

#: parley.cpp:350
#, kde-format
msgid "1 entry with the same content was found and removed."
msgid_plural "%1 entries with the same content were found and removed."
msgstr[0] "%1 مدخل با همین محتوا یافت و حذف شده‌اند."

#: parley.cpp:353
msgid "Remove Duplicates"
msgstr "حذف تکرارها"

#: parley.cpp:508
#, kde-format
msgid "Comment: %1"
msgstr "توضیح: %1"

#: parley.cpp:511
#, kde-format
msgid "Pronunciation: %1"
msgstr "تلفظ: %1"

#: parley.cpp:515
#, kde-format
msgid " (%1)"
msgstr ""

#: parley.cpp:518
#, kde-format
msgid "Type: %1"
msgstr "نوع: %1"

#: parley.cpp:556
#, fuzzy, kde-format
#| msgid "Edit Properties for Original"
msgctxt "@title:window document properties"
msgid "Properties for %1"
msgstr "ویرایش ویژگیها برای اصل"

#: docprop-dialogs/UsageOptPage.cpp:42
msgid "Usage Labels"
msgstr "برچسبهای کاربرد"

#: docprop-dialogs/UsageOptPage.cpp:83 docprop-dialogs/UsageOptPage.cpp:111
msgctxt "usage (area) of an expression"
msgid "Usage Description"
msgstr "توصیف کاربرد"

#: docprop-dialogs/UsageOptPage.cpp:83 docprop-dialogs/UsageOptPage.cpp:111
msgid "Enter usage description:"
msgstr "وارد کردن توصیف کاربرد:"

#: docprop-dialogs/TypeOptPage.cpp:36
msgid "Type Descriptions"
msgstr "تحریر توصیفها"

#: docprop-dialogs/TypeOptPage.cpp:46
msgid "Word type"
msgstr "نوع واژه"

#: docprop-dialogs/TypeOptPage.cpp:100
msgid "New type"
msgstr "نوع جدید"

#: docprop-dialogs/TypeOptPage.cpp:112
msgid "New subtype"
msgstr "زیر نوع جدید"

#: docprop-dialogs/TypeOptPage.cpp:168
#, fuzzy
#| msgid "Delete type"
msgid "Select a type"
msgstr "حذف نوع"

#: docprop-dialogs/TypeOptPage.cpp:176 docprop-dialogs/TypeOptPage.cpp:195
#, kde-format
msgid "Special meaning of %1:"
msgstr ""

#: docprop-dialogs/TypeOptPage.cpp:178 docprop-dialogs/TypeOptPage.cpp:196
#, fuzzy
#| msgid "Noun"
msgctxt ""
"@item:inlistbox selection for word types with special meaning in the "
"practice (like noun for article and verb for conjugation) - no special word "
"type"
msgid "None"
msgstr "اسم"

#: docprop-dialogs/TypeOptPage.cpp:204
#, kde-format
msgid "%1 does not have special subtypes."
msgstr ""

#: docprop-dialogs/TypeOptPage.cpp:209
#, kde-format
msgid "%1 is not a special type."
msgstr ""

#: docprop-dialogs/TenseOptPage.cpp:42
msgid "Tense Descriptions"
msgstr "توصیف زمان فعلها"

#: docprop-dialogs/TenseOptPage.cpp:78 docprop-dialogs/TenseOptPage.cpp:101
msgid "Tense Description"
msgstr "توصیف زمان فعل"

#: docprop-dialogs/TenseOptPage.cpp:78 docprop-dialogs/TenseOptPage.cpp:101
msgid "Enter tense description:"
msgstr "وارد کردن توصیف زمان فعل:"

#: docprop-dialogs/TenseOptPage.cpp:133
msgid ""
"The selected user defined tense could not be deleted\n"
"because it is in use."
msgstr ""
"زمان فعل تعریف‌شدۀ کاربر برگزیده را نمی‌توان حذف کرد\n"
"زیرا در حال استفاده است."

#: docprop-dialogs/TenseOptPage.cpp:133
msgid "Deleting Tense Description"
msgstr "حذف توصیف زمان فعل"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/StatisticsPageForm.ui line 72
#: kvttablemodel.cpp:167 rc.cpp:1268 kvtlessonmodel.cpp:127
msgid "Lesson"
msgstr "درس"

#: main.cpp:34
msgid "Vocabulary Trainer"
msgstr "آموزش‌دهندۀ واژگان"

#: main.cpp:38
#, fuzzy
#| msgid "Plural"
msgid "Parley"
msgstr "جمع"

#: main.cpp:42
msgid ""
"© 1999-2002\tEwald Arnold\n"
"© 2001-2002\tThe KDE team\n"
"© 2004-2007\tPeter Hedlund\n"
"© 2007\tFrederik Gladhorn\n"
msgstr ""

#: main.cpp:46
msgid "Helps you train your vocabulary"
msgstr "به شما در آموزش واژگان کمک می‌کند"

#: main.cpp:50
msgid "Frederik Gladhorn"
msgstr ""

#: main.cpp:51
msgid "Current Maintainer"
msgstr "نگه‌دارندۀ جاری"

#: main.cpp:54
msgid "Peter Hedlund"
msgstr ""

#: main.cpp:55
msgid "Countless fixes, former maintainer, port to KDE4"
msgstr ""

#: main.cpp:58
msgid "Ewald Arnold"
msgstr ""

#: main.cpp:58
msgid "Original Author"
msgstr "نویسندۀ اصلی"

#: main.cpp:62
msgid "Waldo Bastian"
msgstr ""

#: main.cpp:63
msgid "Help with port to Qt3/KDE3"
msgstr "کمک برای حمل به درگاه Qt3/KDE3"

#: main.cpp:65
msgid "Eric Bischoff"
msgstr ""

#: main.cpp:66
msgid "Converting documentation to docbook format"
msgstr "تبدیل کردن مستندات برای قالب docbook"

#: main.cpp:68
msgid "Kevin Kramer"
msgstr ""

#: main.cpp:69
msgid "Tool to create lists with ISO639 codes"
msgstr "ابزار برای ایجاد فهرستهای دارای کدهای ISO639"

#: main.cpp:71
msgid "Andreas Neuper"
msgstr ""

#: main.cpp:72
msgid ""
"Converter script \"langen2kvtml\" \n"
"Download files at http://www.vokabeln.de/files.htm"
msgstr ""
"دست‌نوشتۀ مبدل »langen2kvtml«\n"
"بارگیری پرونده‌ها در http://www.vokabeln.de/files.htm"

#: main.cpp:74
msgid "Dennis Haney"
msgstr ""

#: main.cpp:75
msgid "Patch to implement Leitner learning method"
msgstr "کژنه برای پیاده‌سازی روش یادگیری Leitner"

#: main.cpp:77
msgid "Anne-Marie Mahfouf"
msgstr ""

#: main.cpp:78
msgid "Port to KConfig XT"
msgstr "بردن به KConfig XT"

#: main.cpp:80
msgid "Jeremy Whiting"
msgstr ""

#: main.cpp:81
msgid "Rewriting the kvtml library for KDE4"
msgstr ""

#: main.cpp:83
msgid "Markus Büchele"
msgstr ""

#: main.cpp:84
msgid "Bug reports and testing on the way to KDE4"
msgstr ""

#: main.cpp:86
msgid "Johannes Simon"
msgstr ""

#: main.cpp:87
msgid "Bug fixes and testing on the way to KDE4"
msgstr ""

#: main.cpp:89
msgid "Ramona Knapp"
msgstr ""

#: main.cpp:90
msgid "Conceived the name Parley"
msgstr ""

#: main.cpp:92
#, fuzzy
#| msgid "Lesson"
msgid "Lee Olson"
msgstr "درس"

#: main.cpp:93
msgid "Oxygen icons"
msgstr ""

#: main.cpp:95
msgid "KDE Team"
msgstr "تیم KDE"

#: main.cpp:96
msgid "Many small enhancements"
msgstr "پیشرفتهای بسیار کوچک"

#: main.cpp:101
msgid "+[file]"
msgstr "+]پرونده["

#: main.cpp:101
msgid "Document file to open"
msgstr "پروندۀ سند برای باز کردن"

#: language-dialogs/languagedialog.cpp:43
#, fuzzy
#| msgid "First Language"
msgid "Edit Languages"
msgstr "زبان اول"

#: language-dialogs/languagedialog.cpp:47
#, fuzzy
#| msgid "&Append Language"
msgid "Add language"
msgstr "&پیوستن زبان‌"

#: language-dialogs/languagedialog.cpp:49
#, fuzzy
#| msgid "&Remove Language"
msgid "Remove language"
msgstr "&حذف زبان‌"

#: language-dialogs/languagedialog.cpp:72
#, fuzzy, kde-format
#| msgid ""
#| "\n"
#| "Please add a second language:"
msgid "Really delete language: %1?"
msgstr ""
"\n"
"لطفاً زبان دوم را اضافه کنید:‌"

#: language-dialogs/languagedialog.cpp:72
#, fuzzy
#| msgid "&Remove Language"
msgid "Remove Language"
msgstr "&حذف زبان‌"

#: language-dialogs/languagedialog.cpp:115
#, fuzzy, kde-format
#| msgid "Edit Properties for Original"
msgctxt "Edit language properties"
msgid "Properties for %1"
msgstr "ویرایش ویژگیها برای اصل"

#: language-dialogs/grammardialog.cpp:35
#, fuzzy
#| msgid "&Properties..."
msgid "Grammar Properties"
msgstr "&ویژگیها...‌"

#: language-dialogs/grammardialog.cpp:43
#, fuzzy
#| msgctxt "word types"
#| msgid "T&ypes"
msgctxt "word types"
msgid "Types"
msgstr "&انواع‌"

#. i18n: tag string
#. i18n: file ./configure-practice/conjugationoptionswidget.ui line 23
#: language-dialogs/grammardialog.cpp:46 rc.cpp:613
#, fuzzy
#| msgid "Te&nses"
msgid "Tenses"
msgstr "&زمان فعل‌"

#: language-dialogs/grammardialog.cpp:49
#, fuzzy
#| msgctxt "usage (area) of an expression"
#| msgid "&Usage"
msgctxt "usage (area) of an expression"
msgid "Usage"
msgstr "&کاربرد‌"

#: language-dialogs/editlanguagedialogpage.cpp:84
msgid "No icon"
msgstr ""

#: language-dialogs/editlanguagedialogpage.cpp:94
msgid "without name"
msgstr "بدون نام"

#: practice/practicesummarydialog.cpp:28
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgid "Practice Summary"
msgstr "تمرین"

#: practice/AdjQueryDlg.cpp:37
msgid "Comparison Training"
msgstr "آموزش مقایسه"

#: practice/testentrymanager.cpp:139
msgid ""
"<p>The lessons you selected for the practice contain no vocabulary.</"
"p><p>Hint: To select a lesson set a checkmark next to it in the lesson "
"column on the left.</p><p>Would you like to include all lessons?</p>"
msgstr ""

#: practice/testentrymanager.cpp:139
#, fuzzy
#| msgid "Entries per Lesson"
msgid "No Entries in Selected Lessons"
msgstr "مدخلهای هر درس"

#: practice/testentrymanager.cpp:211
msgid ""
"You selected to practice the genders of nouns, but no appropriate nouns "
"could be found. Use \"Edit Entry\" and select Noun as word type and the "
"gender."
msgstr ""

#: practice/testentrymanager.cpp:212 practice/testentrymanager.cpp:218
#: practice/testentrymanager.cpp:222
#, fuzzy
#| msgid "Enter type description:"
msgid "No valid word type found"
msgstr "وارد کردن توصیف نوع:"

#: practice/testentrymanager.cpp:217
msgid ""
"You selected to practice comparison forms, but no adjectives or adverbs "
"containing comparison forms could be found. Use \"Edit Entry\" and select "
"Adverb or Adjective as word type and enter the comparison forms."
msgstr ""

#: practice/testentrymanager.cpp:222
msgid ""
"You selected to practice conjugations, but no vocabulary containing "
"conjugations in the tenses you selected could be found. Use \"Edit Entry\" "
"and select Verb as word type and enter the conjugation forms."
msgstr ""

#: practice/testentrymanager.cpp:228
msgid ""
"<p>The lessons you selected for the practice contain no entries when the "
"threshold settings are respected.</p><p>Hint: To configure the thresholds "
"use the \"Threshold Page\" in the \"Configure Practice\" dialog.</p><p>Would "
"you like to ignore the threshold setting?</p>"
msgstr ""

#: practice/testentrymanager.cpp:228
#, fuzzy
#| msgid "Save E&ntries in Current Test as..."
msgid "No Entries with Current Threshold Settings"
msgstr "ذخیرۀ &مدخلها  در آزمون جاری به عنوان...‌"

#: practice/testentrymanager.cpp:559
#, fuzzy
#| msgid ""
#| "The test dialog was not answered several times in a row.\n"
#| "It is assumed that there is currently nobody in front of the screen, and "
#| "for that reason the query is stopped."
msgid ""
"The test dialog was not answered several times in a row.\n"
"It is assumed that there is currently nobody in front of the screen, and for "
"that reason the practice is stopped."
msgstr ""
"محاورۀ آزمون چندین مرتبه در یک سطر پاسخ داده نشد.\n"
"فرض می‌شود که در حال حاضر در جلوی پرده هیچ کسی وجود ندارد، و به همین دلیل، "
"پرس‌و‌‌جو متوقف می‌‌‌شود."

#: practice/testentrymanager.cpp:563
msgid "Stopping Test"
msgstr "ایست آزمون"

#: practice/VerbQueryDlg.cpp:38
msgid "Verb Training"
msgstr "آموزش فعل"

#: practice/VerbQueryDlg.cpp:404
#, fuzzy, kde-format
#| msgid "Current tense is: %1."
msgid "Current tense is: %1"
msgstr "زمان فعل جاری این است: %1."

#: practice/writtenpracticedialog.cpp:47
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgid "Written Practice"
msgstr "تمرین"

#: practice/writtenpracticedialog.cpp:175
msgid "<font color=\"#188C18\">You are right!</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:178
msgid "<font color=\"#222978\">Watch your capitalization!</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:181
msgid ""
"<font color=\"#8C1818\">I think you made a spelling mistake. But the word is "
"right.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:184
msgid "<font color=\"#8C1818\">You made a mistake.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:187
msgid "<font color=\"#222978\">Your accentuation was wrong.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:190
msgid "<font color=\"#222978\">The article is wrong.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:193
msgid "<font color=\"#222978\">The article is missing.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:196
msgid "<font color=\"#8C1818\">Watch out! This is a false friend!</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:199
msgid "<font color=\"#8C1818\">Great, you entered a synonym.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:202
msgid "<font color=\"#8C8C18\">Please enter something for me to check.</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:205
msgid ""
"<font color=\"#8C1818\">I know that word, but are you sure it's the right "
"one here?</font>"
msgstr ""

#: practice/writtenpracticedialog.cpp:209
msgid "There is a mistake."
msgstr ""

#: practice/writtenpracticedialog.cpp:235
#, fuzzy
#| msgid "Your answer was wrong. %1% done."
msgid "The answer was wrong."
msgstr "پاسختان اشتباه بود. %1٪ انجام‌ شد."

#: practice/writtenpracticedialog.cpp:494 practice/MCQueryDlg.cpp:213
#, fuzzy
#| msgid "Well done, you knew the correct answer. %1% done."
msgid "Well done, you knew the correct answer."
msgstr "آفرین، پاسخ درست را می‌دانستید.  %1٪ انجام ‌شد."

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 38
#: practice/MCQueryDlg.cpp:42 rc.cpp:631 entry-dialogs/EntryDlg.cpp:65
msgid "Multiple Choice"
msgstr "انتخاب چندگانه"

#: practice/MCQueryDlg.cpp:226
#, fuzzy
#| msgid "Your answer was wrong. %1% done."
msgid "Your answer was wrong."
msgstr "پاسختان اشتباه بود. %1٪ انجام‌ شد."

#: practice/SimpleQueryDlg.cpp:94 practice/SimpleQueryDlg.cpp:105
msgid "Expression"
msgstr "عبارت"

#: practice/SimpleQueryDlg.cpp:95
msgid "Enter the synonym:"
msgstr "وارد کردن مترادف:"

#: practice/SimpleQueryDlg.cpp:96
msgid "Synonym Training"
msgstr "آموزش مترادف"

#: practice/SimpleQueryDlg.cpp:106
msgid "Enter the antonym:"
msgstr "وارد کردن متضاد:"

#: practice/SimpleQueryDlg.cpp:107
msgid "Antonym Training"
msgstr "آموزش متضاد"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 86
#: practice/SimpleQueryDlg.cpp:115 rc.cpp:649
msgid "Paraphrase"
msgstr "نقل بیان"

#: practice/SimpleQueryDlg.cpp:116
msgid "Enter the word:"
msgstr "وارد کردن واژه:"

#: practice/SimpleQueryDlg.cpp:117
msgid "Paraphrase Training"
msgstr "آموزش نقل بیان"

#: practice/SimpleQueryDlg.cpp:125
msgid "Example sentence"
msgstr "جملۀ مثال"

#: practice/SimpleQueryDlg.cpp:126
msgid "Fill in the missing word:"
msgstr "پر کردن واژۀ از قلم افتاده:"

#: practice/SimpleQueryDlg.cpp:127
msgid "Example Training"
msgstr "آموزش مثال"

#: practice/ArtQueryDlg.cpp:36
#, fuzzy
#| msgid "Article Training"
msgctxt "@title:window"
msgid "Article Training"
msgstr "آموزش تعریف"

#: practice/ArtQueryDlg.cpp:119
#, fuzzy
#| msgid "&male"
msgctxt "@label the gender of the word: male"
msgid "&male"
msgstr "&مذکر‌"

#: practice/ArtQueryDlg.cpp:120
#, fuzzy
#| msgid "&female"
msgctxt "@label the gender of the word: female"
msgid "&female"
msgstr "&مؤنث‌"

#: practice/ArtQueryDlg.cpp:121
#, fuzzy
#| msgid "&neutral"
msgctxt "@label the gender of the word: neutral"
msgid "&neutral"
msgstr "&خنثی‌"

#: practice/ArtQueryDlg.cpp:132
#, fuzzy
#| msgid "&male:\t"
msgctxt "@label the gender of the word: male"
msgid "&male:\t"
msgstr "&مذکر:‌\t‌"

#: practice/ArtQueryDlg.cpp:142
#, fuzzy
#| msgid "&female:\t"
msgctxt "@label the gender of the word: female"
msgid "&female:\t"
msgstr "&مؤنث:‌\t‌"

#: practice/ArtQueryDlg.cpp:155
#, fuzzy
#| msgid "&neutral"
msgctxt "@label the gender of the word: neutral"
msgid "&neutral:\t"
msgstr "&خنثی‌"

#: practice/mixedletterpracticedialog.cpp:29
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgid "Image Practice"
msgstr "تمرین"

#. i18n: tag text
#. i18n: file parleyui.rc line 27
#: rc.cpp:3
msgid "&Lesson"
msgstr "&درس‌"

#. i18n: tag text
#. i18n: file parleyui.rc line 38
#: rc.cpp:6
msgid "&Practice"
msgstr "&تمرین‌"

#. i18n: tag text
#. i18n: file parleyui.rc line 52
#: rc.cpp:9
msgid "Main Toolbar"
msgstr "میله ابزار اصلی"

#: rc.cpp:10
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "نسیم دانیارزاده"

#: rc.cpp:11
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "daniarzadeh@itland.ir"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/typeeditform.ui line 19
#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 19
#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 19
#. i18n: tag string
#. i18n: file ./docprop-dialogs/optionlistform.ui line 19
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 52
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 92
#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 25
#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 19
#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 20
#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 26
#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 286
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 19
#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 22
#. i18n: tag string
#. i18n: file ./statistics-dialogs/GenStatPageForm.ui line 22
#. i18n: tag string
#. i18n: file ./statistics-dialogs/StatisticsPageForm.ui line 14
#: rc.cpp:14 rc.cpp:32 rc.cpp:95 rc.cpp:153 rc.cpp:466 rc.cpp:469 rc.cpp:770
#: rc.cpp:803 rc.cpp:827 rc.cpp:869 rc.cpp:896 rc.cpp:905 rc.cpp:971
#: rc.cpp:1238 rc.cpp:1256
msgid "-"
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/typeeditform.ui line 49
#: rc.cpp:17
#, fuzzy
#| msgid "Article"
msgid "Type for Practice"
msgstr "حرف تعریف"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/typeeditform.ui line 91
#: rc.cpp:20
msgid "&New word type"
msgstr "نوع واژه &جدید‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/typeeditform.ui line 98
#: rc.cpp:23
msgid "&Add subtype"
msgstr "&افزودن زیر نوع‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/typeeditform.ui line 111
#: rc.cpp:26
msgid "&Rename"
msgstr "&تغییر نام‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/typeeditform.ui line 124
#. i18n: tag string
#. i18n: file ./docprop-dialogs/optionlistform.ui line 93
#: rc.cpp:29 rc.cpp:162
msgid "&Delete"
msgstr "&حذف‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 25
#: rc.cpp:35
msgid "Language Elements"
msgstr "عناصر زبان"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 37
#: rc.cpp:38
msgid "Articles"
msgstr "حروف تعریف"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 61
#: rc.cpp:41
msgid "&Male:"
msgstr "&مذکر:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 71
#: rc.cpp:44
msgid "&Female:"
msgstr "&مؤنث:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 97
#: rc.cpp:47
msgid "Definite"
msgstr "معرفه"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 170
#: rc.cpp:50
#, fuzzy
#| msgid "&neutral"
msgid "&Neutral:"
msgstr "&خنثی‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 180
#: rc.cpp:53
msgid "Indefinite"
msgstr "نکره"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 196
#: rc.cpp:56
msgid "Personal Pronouns"
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 218
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 136
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 92
#: rc.cpp:59 rc.cpp:193 rc.cpp:917
msgid "Singular"
msgstr "مفرد"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 225
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 210
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 166
#: rc.cpp:62 rc.cpp:211 rc.cpp:935
msgid "Plural"
msgstr "جمع"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 232
#: rc.cpp:65
msgid "&1. Person:"
msgstr "&۱ شخص:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 265
#: rc.cpp:68
msgid "&2. Person:"
msgstr "&۲ شخص:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 298
#: rc.cpp:71
msgid "3. Person:"
msgstr "۳ شخص:"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 305
#: rc.cpp:74
msgid "M&ale:"
msgstr "&مذکر:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 338
#: rc.cpp:77
msgid "F&emale:"
msgstr "&مؤنث:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 371
#: rc.cpp:80
#, fuzzy
#| msgid "Neu&tral:"
msgid "Neu&ter:"
msgstr "&خنثی:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 410
#: rc.cpp:83
msgid "Male/female have different conjugations"
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 417
#: rc.cpp:86
#, fuzzy
#| msgid "Enter the correct conjugation forms."
msgid "A neutral conjugation form exists"
msgstr "وارد کردن شکلهای درست صرف."

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 424
#: rc.cpp:89
#, fuzzy
#| msgid "Conjugation"
msgid "Dual conjugations"
msgstr "صرف"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/LangPropPageForm.ui line 431
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 301
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 240
#: rc.cpp:92 rc.cpp:229 rc.cpp:953
#, fuzzy
#| msgid "Plural"
msgid "Dual"
msgstr "جمع"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 40
#: rc.cpp:98
msgid "General Document Properties"
msgstr "ویژگیهای عمومی سند"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 64
#: rc.cpp:101
msgid "&Title:"
msgstr "&عنوان:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 80
#: rc.cpp:104
#, fuzzy
#| msgid "So far you have chosen "
msgid "A title for your document."
msgstr "تا اینجا انتخاب کرده‌اید "

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 87
#: rc.cpp:107
msgid "&Authors:"
msgstr "&نویسنده‌ها:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 97
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 327
#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 106
#: rc.cpp:110 rc.cpp:532 rc.cpp:785
msgid "&Comment:"
msgstr "&توضیح:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 107
#: rc.cpp:113
msgid "&License:"
msgstr "&مجوز:‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 123
#: rc.cpp:116
#, fuzzy
#| msgid "Additional Properties"
msgid "Any additional information."
msgstr "ویژگیهای اضافی"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 136
#: rc.cpp:119
#, fuzzy
#| msgid "First Category: "
msgid "Cat&egory"
msgstr "دسته اول: "

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 146
#: rc.cpp:122
msgid "A general category into which your document belongs."
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 153
#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 125
#: rc.cpp:125 rc.cpp:658
msgid "Languages"
msgstr "زبانها"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 158
#: rc.cpp:128
msgid "Music"
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 163
#: rc.cpp:131
#, fuzzy
#| msgid "telegraphy"
msgid "Geography"
msgstr "ارتباط تلگرافی"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 168
#: rc.cpp:134
#, fuzzy
#| msgid "anatomy"
msgid "Anatomy"
msgstr "  کالبد‌‌‌‌شناسی"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 173
#: rc.cpp:137
msgid "History"
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 178
#: rc.cpp:140
#, fuzzy
#| msgid "Tense Description"
msgid "Test Preparation"
msgstr "توصیف زمان فعل"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 192
#: rc.cpp:143
msgid "Your name. You can also add an email address as contact information."
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 206
#: rc.cpp:146
msgid ""
"The license under which your document will be.\n"
"If you consider contributing your file to KDE in the future, an appropriate "
"license is required."
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/TitlePageForm.ui line 213
#: rc.cpp:150
msgid "GPLv2 (GNU General Public License version 2)"
msgstr ""

#. i18n: tag string
#. i18n: file ./docprop-dialogs/optionlistform.ui line 63
#: rc.cpp:156
msgid "&New..."
msgstr "&جدید...‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/optionlistform.ui line 78
#: rc.cpp:159
msgid "&Modify..."
msgstr "&تغییر...‌"

#. i18n: tag string
#. i18n: file ./docprop-dialogs/optionlistform.ui line 124
#: rc.cpp:165
msgid "&Clean Up"
msgstr "&پاک‌‌سازی‌"

#. i18n: tag string
#. i18n: file ./language-dialogs/languagepage.ui line 16
#: rc.cpp:168
#, fuzzy
#| msgid "Language"
msgid "Language:"
msgstr "زبان"

#. i18n: tag string
#. i18n: file ./language-dialogs/languagepage.ui line 26
#: rc.cpp:171
#, fuzzy
#| msgid "N&ame:"
msgid "Name:"
msgstr "&نام:‌"

#. i18n: tag string
#. i18n: file ./language-dialogs/languagepage.ui line 39
#: rc.cpp:174
msgid "Flag:"
msgstr ""

#. i18n: tag string
#. i18n: file ./language-dialogs/languagepage.ui line 49
#: rc.cpp:177
msgid "Keyboard layout:"
msgstr "طرح‌بندی صفحه کلید:"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 46
#: rc.cpp:180
#, fuzzy
#| msgid "Verb"
msgid "Verb:"
msgstr "فعل"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 62
#: rc.cpp:183
#, fuzzy
#| msgid "proper name"
msgid "verb name"
msgstr "نام مناسب"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 99
#: rc.cpp:186
msgid "Enter the correct conjugation forms."
msgstr "وارد کردن شکلهای درست صرف."

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 123
#: rc.cpp:190
#, no-c-format, kde-format
msgid "Current tense is %1."
msgstr "زمان فعل جاری، %1 است."

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 142
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 216
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 307
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 98
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 172
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 246
#: rc.cpp:196 rc.cpp:214 rc.cpp:232 rc.cpp:920 rc.cpp:938 rc.cpp:956
#, fuzzy
#| msgid "hist."
msgid "First"
msgstr "تاریخی"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 155
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 229
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 320
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 111
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 185
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 259
#: rc.cpp:199 rc.cpp:217 rc.cpp:235 rc.cpp:923 rc.cpp:941 rc.cpp:959
#, fuzzy
#| msgid "Second Category: "
msgid "Second"
msgstr "دسته دوم: "

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 168
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 242
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 333
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 124
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 198
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 272
#: rc.cpp:202 rc.cpp:220 rc.cpp:238 rc.cpp:926 rc.cpp:944 rc.cpp:962
msgid "Third Male"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 181
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 255
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 346
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 137
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 211
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 285
#: rc.cpp:205 rc.cpp:223 rc.cpp:241 rc.cpp:929 rc.cpp:947 rc.cpp:965
#, fuzzy
#| msgid "Noun Female"
msgid "Third Female"
msgstr "اسم مؤنث"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 194
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 268
#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 359
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 150
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 224
#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 298
#: rc.cpp:208 rc.cpp:226 rc.cpp:244 rc.cpp:932 rc.cpp:950 rc.cpp:968
#, fuzzy
#| msgid "Noun Female"
msgid "Third Neutral"
msgstr "اسم مؤنث"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 410
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 218
#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 79
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 275
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 243
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 300
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 192
#: rc.cpp:247 rc.cpp:295 rc.cpp:322 rc.cpp:370 rc.cpp:403 rc.cpp:490
#: rc.cpp:511
#, fuzzy
#| msgid "&Show solution"
msgid "Show &Solution"
msgstr "&نمایش راه حل‌"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 423
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 205
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 262
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 256
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 274
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 261
#: rc.cpp:250 rc.cpp:292 rc.cpp:367 rc.cpp:406 rc.cpp:484 rc.cpp:520
#, fuzzy
#| msgid "I &Know It"
msgid "Skip (I &Know It)"
msgstr "آن را &می‌دانم‌"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 436
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 231
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 288
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 269
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 287
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 274
#: rc.cpp:253 rc.cpp:298 rc.cpp:373 rc.cpp:409 rc.cpp:487 rc.cpp:523
#, fuzzy
#| msgid "Do &Not Know"
msgid "Skip (Do &Not Know)"
msgstr "&ندانستن‌"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 449
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 192
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 326
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 220
#: rc.cpp:256 rc.cpp:289 rc.cpp:496 rc.cpp:514
msgid "&Verify"
msgstr "&وارسی‌"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 464
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 246
#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 119
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 143
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 299
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 162
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 426
#: rc.cpp:259 rc.cpp:301 rc.cpp:328 rc.cpp:355 rc.cpp:412 rc.cpp:472
#: rc.cpp:538
msgid "Progress"
msgstr "پیشرفت"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 500
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 282
#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 133
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 187
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 343
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 205
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 450
#: rc.cpp:262 rc.cpp:304 rc.cpp:331 rc.cpp:358 rc.cpp:415 rc.cpp:475
#: rc.cpp:541
msgid "Count:"
msgstr "شمارش:"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 513
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 295
#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 146
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 200
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 356
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 218
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 460
#: rc.cpp:265 rc.cpp:307 rc.cpp:334 rc.cpp:361 rc.cpp:418 rc.cpp:478
#: rc.cpp:544
msgid "Time:"
msgstr "زمان:"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 523
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 305
#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 156
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 216
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 366
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 228
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 473
#: rc.cpp:268 rc.cpp:310 rc.cpp:337 rc.cpp:364 rc.cpp:421 rc.cpp:481
#: rc.cpp:547
msgid "Cycle:"
msgstr "چرخه:"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 579
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 340
#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 222
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 328
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 435
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 350
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 517
#: rc.cpp:271 rc.cpp:313 rc.cpp:340 rc.cpp:376 rc.cpp:424 rc.cpp:499
#: rc.cpp:553
#, fuzzy
#| msgid "&Practice"
msgid "&Stop Practice"
msgstr "&تمرین‌"

#. i18n: tag string
#. i18n: file ./practice/VerbQueryDlgForm.ui line 586
#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 347
#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 335
#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 442
#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 357
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 510
#: rc.cpp:274 rc.cpp:316 rc.cpp:379 rc.cpp:427 rc.cpp:502 rc.cpp:550
#: kva_init.cpp:231
msgid "&Edit Entry..."
msgstr "&ویرایش مدخل‌"

#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 46
#: rc.cpp:277
msgid "Fill in the missing comparison expressions:"
msgstr "پر کردن عبارتهای مقایسه‌ای از قلم‌افتاده:"

#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 55
#: rc.cpp:280
msgctxt ""
"Comparison form of adjective - the normal form of the adjective (good)"
msgid "&Absolute"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 75
#: rc.cpp:283
#, fuzzy
#| msgid "Comparison"
msgctxt "comparison form of adjectives - comparison form (better)"
msgid "&Comparative"
msgstr "مقایسه"

#. i18n: tag string
#. i18n: file ./practice/AdjQueryDlgForm.ui line 95
#: rc.cpp:286
#, fuzzy
#| msgid "&Practice"
msgctxt "comparison of adjectives - (best)"
msgid "&Superlative"
msgstr "&تمرین‌"

#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 55
#: rc.cpp:319
msgid "Can you order the letters?"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/mixedletterpracticedialog.ui line 92
#: rc.cpp:325
#, fuzzy
#| msgid "&Verify"
msgid "Verify"
msgstr "&وارسی‌"

#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 46
#: rc.cpp:343
msgid "Select the correct article for this noun:"
msgstr "برگزیدن حرف تعریف درست برای این اسم:"

#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 93
#: rc.cpp:346
msgid "&male"
msgstr "&مذکر‌"

#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 100
#: rc.cpp:349
msgid "&female"
msgstr "&مؤنث‌"

#. i18n: tag string
#. i18n: file ./practice/ArtQueryDlgForm.ui line 107
#: rc.cpp:352
msgid "&neutral"
msgstr "&خنثی‌"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 46
#: rc.cpp:382
msgid "Select the correct translation:"
msgstr "برگزیدن ترجمۀ جاری:"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 103
#: rc.cpp:385
#, fuzzy
#| msgid "&1"
msgid "1"
msgstr "&۱‌"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 127
#: rc.cpp:388
#, fuzzy
#| msgid "&2"
msgid "2"
msgstr "&۲‌"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 151
#: rc.cpp:391
#, fuzzy
#| msgid "&3"
msgid "3"
msgstr "&۳‌"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 175
#: rc.cpp:394
#, fuzzy
#| msgid "&4"
msgid "4"
msgstr "&۴‌"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 199
#: rc.cpp:397
#, fuzzy
#| msgid "&5"
msgid "5"
msgstr "&۵‌"

#. i18n: tag string
#. i18n: file ./practice/MCQueryDlgForm.ui line 230
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 233
#: rc.cpp:400 rc.cpp:517
#, fuzzy
#| msgid "Contained In"
msgid "&Continue"
msgstr "شامل در"

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 16
#: rc.cpp:430
msgid "General"
msgstr "عمومی"

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 22
#: rc.cpp:433
#, fuzzy
#| msgid "Tot&al:"
msgid "Total:"
msgstr "&کل:‌"

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 42
#: rc.cpp:436
msgid "Answered correctly (first attempt):"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 66
#: rc.cpp:439
#, fuzzy
#| msgid "&Wrong:"
msgid "Wrong answer:"
msgstr "&نادرست:‌"

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 90
#: rc.cpp:442
#, fuzzy
#| msgid "Not &queried:"
msgid "Not answered:"
msgstr "&پرس‌و‌جو نشده:‌"

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 114
#: rc.cpp:445
msgid "Skipped:"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/practicesummarywidget.ui line 138
#: rc.cpp:448
msgid "Postponed:"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/showsolutionwidget.ui line 31
#. i18n: tag string
#. i18n: file ./practice/showsolutionwidget.ui line 78
#: rc.cpp:451 rc.cpp:457
msgid "TextLabel"
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/showsolutionwidget.ui line 53
#: rc.cpp:454
msgid " - "
msgstr ""

#. i18n: tag string
#. i18n: file ./practice/showsolutionwidget.ui line 109
#. i18n: tag string
#. i18n: file ./practice/showsolutionwidget.ui line 162
#: rc.cpp:460 rc.cpp:463
#, fuzzy
#| msgid "Plural"
msgctxt "Listen to the vocabulary entry (sound)"
msgid "Play"
msgstr "جمع"

#. i18n: tag string
#. i18n: file ./practice/SimpleQueryDlgForm.ui line 313
#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 173
#: rc.cpp:493 rc.cpp:508
msgid "Show &More"
msgstr "نمایش &بیشتر‌"

#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 102
#: rc.cpp:505
msgid "Enter the correct translation:"
msgstr "وارد کردن ترجمۀ درست:"

#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 301
#: rc.cpp:526
#, fuzzy
#| msgid "minutes"
msgid "Hints"
msgstr "دقیقه"

#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 307
#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 116
#: rc.cpp:529 rc.cpp:836
msgid "&False friend:"
msgstr "دوست &نادرست:‌"

#. i18n: tag string
#. i18n: file ./practice/writtenpracticedialog.ui line 347
#: rc.cpp:535
msgid "T&ype:"
msgstr "&نوع:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 16
#: rc.cpp:556
msgid "Only practice vocabulary that fulfills the following conditions:"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 25
#: rc.cpp:559
#, fuzzy
#| msgid "Articles"
msgid "At least"
msgstr "حروف تعریف"

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 32
#: rc.cpp:562
msgid "At most"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 42
#: rc.cpp:565
#, fuzzy
#| msgid "Grades"
msgid "Grade"
msgstr "درجه"

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 49
#: rc.cpp:568
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgid "Times practiced"
msgstr "تمرین"

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 73
#: rc.cpp:571
msgid "Answered wrong"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 143
#: rc.cpp:574
#, fuzzy
#| msgid "Enter type description:"
msgid "Enable word type selection"
msgstr "وارد کردن توصیف نوع:"

#. i18n: tag string
#. i18n: file ./configure-practice/thresholdoptions.ui line 151
#: rc.cpp:577
#, fuzzy
#| msgid "Word type"
msgid "Word Types"
msgstr "نوع واژه"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 40
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 389
#: rc.cpp:580 rc.cpp:1136
msgid "Level &2:"
msgstr "سطح &۲:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 53
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 341
#: rc.cpp:583 rc.cpp:1127
msgid "Level &5:"
msgstr "سطح &۵:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 63
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 325
#: rc.cpp:586 rc.cpp:1124
msgid "Level &6:"
msgstr "سطح &۶:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 79
#: rc.cpp:589
msgid "E&xpiring"
msgstr "&انقضا‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 95
#: rc.cpp:592
msgid "Bl&ocking"
msgstr "&بازداشت‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 118
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 357
#: rc.cpp:595 rc.cpp:1130
msgid "Level &4:"
msgstr "سطح &۴:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 128
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 309
#: rc.cpp:598 rc.cpp:1121
msgid "Level &7:"
msgstr "سطح &۷:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 150
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 405
#: rc.cpp:601 rc.cpp:1139
msgid "Level &1:"
msgstr "سطح &۱:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 192
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 373
#: rc.cpp:604 rc.cpp:1133
msgid "Level &3:"
msgstr "سطح &۳:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 218
#: rc.cpp:607
msgid "Do not practice vocabulary that has been asked within:"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/blockoptions.ui line 228
#: rc.cpp:610
msgid "Vocabulary drops one grade after this much time:"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/comparisonoptionswidget.ui line 16
#: rc.cpp:616
#, fuzzy
#| msgid "Adjective"
msgid "Include Adjectives"
msgstr "صفت"

#. i18n: tag string
#. i18n: file ./configure-practice/comparisonoptionswidget.ui line 23
#: rc.cpp:619
msgid "Include Adverbs"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 18
#: rc.cpp:622
msgid "Type of Test"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 24
#: rc.cpp:625
#, fuzzy
#| msgid "Article"
msgid "Mixed Letters"
msgstr "حرف تعریف"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 31
#: rc.cpp:628
#, fuzzy
#| msgid "Article Training"
msgid "Article Training"
msgstr "آموزش تعریف"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 45
#: rc.cpp:634 entry-dialogs/EntryDlg.cpp:77
msgid "Comparison"
msgstr "مقایسه"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 55
#: rc.cpp:637
msgid "Written"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 65
#: rc.cpp:640 entry-dialogs/EntryDlg.cpp:71
msgid "Conjugation"
msgstr "صرف"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 72
#: rc.cpp:643
#, fuzzy
#| msgid "Example sentence"
msgid "Example Sentences"
msgstr "جملۀ مثال"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 79
#: rc.cpp:646
#, fuzzy
#| msgid "S&ynonyms"
msgid "Synonym"
msgstr "&مترادفها‌"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 93
#: rc.cpp:652
#, fuzzy
#| msgid "A&ntonyms"
msgid "Antonym"
msgstr "&متضادها‌"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 116
#: rc.cpp:655
#, fuzzy
#| msgid "&Options"
msgid "Options"
msgstr "&گزینه‌ها‌"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 133
#: rc.cpp:661
#, fuzzy
#| msgid "From %1"
msgid "From"
msgstr "از %1"

#. i18n: tag string
#. i18n: file ./configure-practice/configurepracticewidget.ui line 140
#: rc.cpp:664
#, fuzzy
#| msgid "Tot&al:"
msgid "To"
msgstr "&کل:‌"

#. i18n: tag string
#. i18n: file ./configure-practice/writtenpracticeoptionswidget.ui line 16
#: rc.cpp:667
msgid "Ignore accent mistakes"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/writtenpracticeoptionswidget.ui line 23
#: rc.cpp:670
msgid "Ignore capitalization mistakes"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 16
#: rc.cpp:673
#, fuzzy
#| msgid "General Settings"
msgid "General Options"
msgstr "تنظیمات عمومی"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 22
#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 25
#: rc.cpp:676 rc.cpp:679
#, fuzzy
#| msgid ""
#| "By checking this, you will use the Leitner method of learning which "
#| "requires you to answer correctly to each question 4 times in a row. "
msgid ""
"By checking this, you will use the Leitner method of learning which requires "
"you to answer correctly to each question 3 times in a row. "
msgstr ""
"با علامت زدن این، از روش یادگیری Leitner استفاده می‌کنید، که در آن روش لازم "
"است به هر پرسش موجود در یک سطر ۴ دفعه پاسخ درست بدهید."

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 28
#: rc.cpp:682
msgid "&Require 3 consecutive correct answers to count as right"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 40
#: rc.cpp:685
msgid "Enable the Show More button on the Random Query screen"
msgstr "فعال‌سازی دکمۀ »نمایش بیشتر« در پردۀ پرس‌و‌جوی تصادفی"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 43
#: rc.cpp:688
msgid ""
"When this is checked, you will be able to use a Show More button which allow "
"you to get the next letter in your answer in the query. If this is "
"unchecked, the Show More button will not be enabled, you will not be able to "
"use it."
msgstr ""
"هنگامی که این علامت زده می‌شود، قادر به استفاده از دکمۀ »نمایش بیشتر« می‌باشید، "
"که به شما اجازه می‌دهد که حرف بعدی در پاسختان را در پرس‌و‌جو به دست بیاورید. "
"اگر این علامت زده نشود، دکمۀ » نمایش بیشتر« فعال نمی‌شود و قادر به استفاده از "
"آن نیستید."

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 46
#: rc.cpp:691
msgid "Enable S&how More button"
msgstr "فعال‌سازی دکمۀ »&نمایش بیشتر«‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 53
#: rc.cpp:694
#, fuzzy
#| msgid "Enable S&how More button"
msgid "Enable Sound"
msgstr "فعال‌سازی دکمۀ »&نمایش بیشتر«‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 63
#: rc.cpp:697
msgid "Enable the I Know It button on the Random Query screen"
msgstr "فعال‌‌سازی دکمۀ »می‌دانم« در پردۀ پرس‌و‌جوی تصادفی"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 66
#: rc.cpp:700
msgid ""
"If this is checked, the I Know button will be available. It allows you to "
"tell the query that you know the result without writing it or having it "
"checked. This is available by default. If you uncheck this, the I Know "
"button will not be available."
msgstr ""
"اگر این علامت زده شود، دکمۀ »می‌دانم« موجود است. این دکمه به شما اجازه می‌دهد "
"که به پرس‌و‌جو بگویید، که بدون نوشتن و علامت زدن آن نتیجه را می‌دانید. این دکمه "
"توسط پیش‌فرض موجود است. اگر این دکمه را علامت نزنید، دکمۀ »می‌دانم« موجود "
"نمی‌باشد."

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 69
#: rc.cpp:703
#, fuzzy
#| msgid "Enable I Know &button"
msgid "Enable Skip (I Know it) &button"
msgstr "فعال‌سازی &دکمۀ »می‌دانم«‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 76
#: rc.cpp:706
#, fuzzy
#| msgid "Unapplied Changes"
msgid "Enable Images"
msgstr "تغییرات اِعمال‌نشده"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 83
#: rc.cpp:709
msgid "Accept synonyms as correct"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 93
#: rc.cpp:712
msgid "S&wap direction randomly"
msgstr "&مبادلۀ جهت به طور تصادفی‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 100
#: rc.cpp:715
msgid ""
"When practicing new words will be chosen loosely in lesson order if this is "
"selected, otherwise at total random."
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 103
#: rc.cpp:718
msgid "&Practice in lesson order"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 114
#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 127
#: rc.cpp:721 rc.cpp:727
msgid ""
"The number of vocabulary that will show up repeatedly until it is answered "
"correctly."
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 117
#: rc.cpp:724
msgid "&Active entries during practice:"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 163
#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 173
#: rc.cpp:730 rc.cpp:736
msgid "After the answer was given the solution will be shown for this long"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 166
#: rc.cpp:733
#, fuzzy
#| msgid "&Show solution"
msgid "&Show solution after answering:"
msgstr "&نمایش راه حل‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 176
#: rc.cpp:739
msgid "unlimited"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 179
#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 284
#: rc.cpp:742 rc.cpp:767
msgctxt "Seconds (suffix)"
msgid "s"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 213
#: rc.cpp:746
msgid ""
"If a time limit is set, an answer has to be given in the set time, when "
"practicing."
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 216
#: rc.cpp:749
#, fuzzy
#| msgid "Time Limit in Tests"
msgid "&Time Limit in Tests"
msgstr "حد زمان در آزمونها"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 249
#: rc.cpp:752
msgid "&Show solution"
msgstr "&نمایش راه حل‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 256
#: rc.cpp:755
msgid "&Continue after timeout"
msgstr "&ادامه بعد از اتمام وقت‌"

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 268
#: rc.cpp:758
msgid "Limit:"
msgstr ""

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 278
#: rc.cpp:761
#, fuzzy
#| msgid "Set the maximum time allowed per query."
msgid "Set the maximum time allowed per answer."
msgstr "تنظیم زمان بیشینه‌ای که برای هر پرس‌و‌جو مجاز است."

#. i18n: tag string
#. i18n: file ./configure-practice/advancedpracticeoptions.ui line 281
#: rc.cpp:764
#, fuzzy
#| msgid "Set the maximum time allowed per query."
msgid "Set here the maximum time you want to allow per answer."
msgstr "تنظیم زمان بیشینه‌ای که برای هر پرس‌و‌جو مجاز است."

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 55
#: rc.cpp:773
msgid "Additional Properties"
msgstr "ویژگیهای اضافی"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 63
#: rc.cpp:776
#, fuzzy
#| msgid "S&ynonyms:"
msgid "S&ynonym:"
msgstr "&مترادفها:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 80
#: rc.cpp:779
#, fuzzy
#| msgid "Ant&onyms:"
msgid "Ant&onym:"
msgstr "&متضادها:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 93
#: rc.cpp:782
msgid "E&xample:"
msgstr "&مثال:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 119
#: rc.cpp:788
msgid "&Paraphrase:"
msgstr "&نقل بیان:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 152
#: rc.cpp:791
#, fuzzy
#| msgid "Author:"
msgid "Audio:"
msgstr "نویسنده:"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 162
#: rc.cpp:794
#, fuzzy
#| msgid "Plural"
msgid "Play"
msgstr "جمع"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 169
#: rc.cpp:797
#, fuzzy
#| msgid "&male:\t"
msgid "Image:"
msgstr "&مذکر:‌\t‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/additionaleditpage.ui line 191
#: rc.cpp:800
#, fuzzy
#| msgid "&male:\t"
msgid "No Image"
msgstr "&مذکر:‌\t‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 56
#: rc.cpp:806
msgid "Comparison of Adjectives"
msgstr "مقایسۀ صفتها"

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 96
#: rc.cpp:809
msgid "The superlative (fastest)"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 99
#: rc.cpp:812
msgid "&3. Superlative:"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 125
#: rc.cpp:815
msgid "The comparative is used to compare nouns or verbs (faster)"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 128
#: rc.cpp:818
msgid "&2. Comparative:"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 144
#: rc.cpp:821
msgid "The base form of the adjective or adverb (fast)"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/AdjEntryPageForm.ui line 147
#: rc.cpp:824
msgid "&1. Absolute:"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 26
#: rc.cpp:830
msgid "Properties From Original"
msgstr "ویژگیها از اصل"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 96
#: rc.cpp:833
msgid "&Grade:"
msgstr "&درجه:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 128
#: rc.cpp:839
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgid "Practice &Counts"
msgstr "تمرین"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 172
#: rc.cpp:842
msgid "&Wrong:"
msgstr "&نادرست:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 182
#: rc.cpp:845
msgid "Tot&al:"
msgstr "&کل:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 195
#: rc.cpp:848
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgid "&Last Practiced"
msgstr "تمرین"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 219
#: rc.cpp:851
msgid "&Never"
msgstr "&هرگز‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 226
#: rc.cpp:854
msgid "T&oday"
msgstr "&امروز‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 242
#: rc.cpp:857
#, fuzzy
#| msgid "The date this expression was last queried"
msgid "The date this expression was last practiced"
msgstr "تاریخ این عبارت، پرس‌وجوی گذشته بود"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 245
#: rc.cpp:860
#, fuzzy
#| msgid "Not Queried Yet"
msgid "Not Practiced Yet"
msgstr "هنوز پرس‌وجو نشده است"

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 265
#: rc.cpp:863
msgid "dd.MM.yyyy"
msgstr ""

#. i18n: tag string
#. i18n: file ./entry-dialogs/FromToEntryPageForm.ui line 296
#: rc.cpp:866
#, fuzzy
#| msgid "&Reset"
msgid "&Reset Grades"
msgstr "&بازنشانی‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 59
#: rc.cpp:872
msgid "Common Properties"
msgstr "ویژگیهای مشترک"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 91
#: rc.cpp:875
msgid "&Pronunciation:"
msgstr "&تلفظ:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 101
#: rc.cpp:878
msgid "&Lesson:"
msgstr "&درس:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 129
#: rc.cpp:881
msgid "Invokes dialog page with characters from phonetic alphabet"
msgstr "صفحۀ محاورۀ دارای نویسه‌ را از الفبای آوایی احضار می‌کند"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 142
#: rc.cpp:884
msgid "&Expression:"
msgstr "&عبارت:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 160
#: rc.cpp:887
msgid "T&ype"
msgstr "&نوع‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 227
#: rc.cpp:890
msgid "&Subtype:"
msgstr "&زیر نوع:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 265
#: rc.cpp:893
msgid "Invokes input dialog for word types"
msgstr "محاورۀ ورودی را برای انواع واژه احضار می‌کند"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 388
#: rc.cpp:899
msgid "Invokes input dialog for usage labels"
msgstr "محاورۀ ورودی را برای برچسبهای کاربرد احضار می‌کند"

#. i18n: tag string
#. i18n: file ./entry-dialogs/CommonEntryPageForm.ui line 414
#: rc.cpp:902
msgid "Acti&ve"
msgstr "&معلوم‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 25
#: rc.cpp:908
msgid "Conjugation of Verbs"
msgstr "صرف فعلها"

#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 57
#: rc.cpp:911
msgid "&Tense:"
msgstr "&زمان فعل:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/TenseEntryPageForm.ui line 73
#: rc.cpp:914
msgid "Ne&xt"
msgstr "&بعدی‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 47
#: rc.cpp:974
msgid "Suggestions for Multiple Choice"
msgstr "پیشنهادها برای انتخاب چندگانه"

#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 67
#: rc.cpp:977
msgid "&1:"
msgstr "&۱:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 85
#: rc.cpp:980
msgid "&2:"
msgstr "&۲:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 103
#: rc.cpp:983
msgid "&3:"
msgstr "&۳:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 181
#: rc.cpp:986
msgid "&4:"
msgstr "&۴:‌"

#. i18n: tag string
#. i18n: file ./entry-dialogs/MCEntryPageForm.ui line 199
#: rc.cpp:989
msgid "&5:"
msgstr "&۵:‌"

#. i18n: tag string
#. i18n: file ./newdocument-wizard/identifierlanguagepage.ui line 16
#: rc.cpp:992
#, fuzzy
#| msgid ""
#| "\n"
#| "Please add a second language:"
msgid "Please select a language:"
msgstr ""
"\n"
"لطفاً زبان دوم را اضافه کنید:‌"

#. i18n: tag string
#. i18n: file ./newdocument-wizard/identifierlanguagepage.ui line 26
#. i18n: tag string
#. i18n: file ./statistics-dialogs/GenStatPageForm.ui line 41
#: rc.cpp:995 rc.cpp:1244
msgid "Title:"
msgstr "عنوان:"

#. i18n: tag string
#. i18n: file ./newdocument-wizard/identifierlanguagepage.ui line 36
#. i18n: tag string
#. i18n: file ./newdocument-wizard/secondidentifierlanguagepage.ui line 79
#: rc.cpp:998 rc.cpp:1016
msgid ""
"This does not have to be a language. Anything goes: Definition, Chinese "
"simplified or anything else you want to learn."
msgstr ""

#. i18n: tag string
#. i18n: file ./newdocument-wizard/secondidentifierlanguagepage.ui line 16
#: rc.cpp:1001
#, fuzzy
#| msgid "So far you have chosen "
msgid "So far your document contains:"
msgstr "تا اینجا انتخاب کرده‌اید "

#. i18n: tag string
#. i18n: file ./newdocument-wizard/secondidentifierlanguagepage.ui line 26
#: rc.cpp:1004
msgid "To change the first selection go back one page."
msgstr ""

#. i18n: tag string
#. i18n: file ./newdocument-wizard/secondidentifierlanguagepage.ui line 52
#: rc.cpp:1007
#, fuzzy
#| msgid "Select a second language code if necessary"
msgid "Please select a second language (can be the same as before):"
msgstr "اگر لازم است، دومین کد زبان را برگزینید"

#. i18n: tag string
#. i18n: file ./newdocument-wizard/secondidentifierlanguagepage.ui line 62
#: rc.cpp:1010
#, fuzzy
#| msgid "Add the language '%1' to the vocabulary"
msgid "The language of the second column of vocabulary."
msgstr "افزودن زبان »%1« به واژگان"

#. i18n: tag string
#. i18n: file ./newdocument-wizard/secondidentifierlanguagepage.ui line 69
#: rc.cpp:1013
#, fuzzy
#| msgid "Second Category: "
msgid "Second title:"
msgstr "دسته دوم: "

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 70
#: rc.cpp:1019
msgid ""
"Specify which font to use for displaying pronunciations using phonetic "
"symbols."
msgstr ""
"مشخص کردن قلمی که برای نمایش تلفظها با استفاده از نمادهای آوایی استفاده "
"می‌شود."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 77
#: rc.cpp:1022
msgid "&IPA font:"
msgstr "قلم &IPA:‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 87
#: rc.cpp:1025
msgid "&Table font:"
msgstr "قلم &جدول:‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 97
#: rc.cpp:1028
msgid "Specify which font to use for editing of the main table."
msgstr "مشخص کردن قلمی که برای ویرایش جدول اصلی استفاده می‌شود."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 112
#: rc.cpp:1031
msgid "Grade Colors"
msgstr "درجه‌بندی رنگها"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 142
#: rc.cpp:1034
msgid "&N"
msgstr ""

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 155
#: rc.cpp:1037
msgid "Color for the grade 1"
msgstr "رنگ درجۀ ۱"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 158
#: rc.cpp:1040
msgid "Click here to change the color for grade 1."
msgstr "برای تغییر رنگ به درجۀ ۱، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 161
#: rc.cpp:1043
msgid "&1"
msgstr "&۱‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 164
#: rc.cpp:1046
msgid "Alt+1"
msgstr "دگرساز+۱"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 177
#: rc.cpp:1049
msgid "Color for the grade 2"
msgstr "رنگ درجۀ ۲"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 180
#: rc.cpp:1052
msgid "Click here to change the color for grade 2."
msgstr "برای تغییر رنگ به درجۀ ۲، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 183
#: rc.cpp:1055
msgid "&2"
msgstr "&۲‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 186
#: rc.cpp:1058
msgid "Alt+2"
msgstr "دگرساز+۲"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 199
#: rc.cpp:1061
msgid "Color for the grade 3"
msgstr "رنگ درجۀ ۳"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 202
#: rc.cpp:1064
msgid "Click here to change the color for grade 3."
msgstr "برای تغییر رنگ به درجۀ ۳، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 205
#: rc.cpp:1067
msgid "&3"
msgstr "&۳‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 208
#: rc.cpp:1070
msgid "Alt+3"
msgstr "دگرساز+۳"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 221
#: rc.cpp:1073
msgid "Color for the grade 4"
msgstr "رنگ درجۀ ۴"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 224
#: rc.cpp:1076
msgid "Click here to change the color for grade 4."
msgstr "برای تغییر رنگ به درجۀ ۴، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 227
#: rc.cpp:1079
msgid "&4"
msgstr "&۴‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 230
#: rc.cpp:1082
msgid "Alt+4"
msgstr "دگرساز+۴"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 243
#: rc.cpp:1085
msgid "Color for the grade 5"
msgstr "رنگ درجۀ ۵"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 246
#: rc.cpp:1088
msgid "Click here to change the color for grade 5."
msgstr "برای تغییر رنگ به درجۀ ۵، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 249
#: rc.cpp:1091
msgid "&5"
msgstr "&۵‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 252
#: rc.cpp:1094
msgid "Alt+5"
msgstr "دگرساز+۵"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 265
#: rc.cpp:1097
msgid "Color for the grade 6"
msgstr "رنگ درجۀ ۶"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 268
#: rc.cpp:1100
msgid "Click here to change the color for grade 6."
msgstr "برای تغییر رنگ به درجۀ ۶، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 271
#: rc.cpp:1103
msgid "&6"
msgstr "&۶‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 274
#: rc.cpp:1106
msgid "Alt+6"
msgstr "دگرساز+۶"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 287
#: rc.cpp:1109
msgid "Color for the grade 7"
msgstr "رنگ درجه ۷"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 290
#: rc.cpp:1112
msgid "Click here to change the color for grade 7."
msgstr "برای تغییر رنگ به درجۀ ۷، اینجا را فشار دهید."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 293
#: rc.cpp:1115
msgid "&7"
msgstr "&۷‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 296
#: rc.cpp:1118
msgid "Alt+7"
msgstr "دگرساز+۷"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 421
#: rc.cpp:1142
#, fuzzy
#| msgid "Not Queried Yet"
msgid "Not &practiced:"
msgstr "هنوز پرس‌وجو نشده است"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 431
#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 434
#: rc.cpp:1145 rc.cpp:1148
msgid ""
"If it is unchecked, you will just have black on white for the grades; if it "
"is checked, the colors below will be chosen."
msgstr ""
"اگر علامت زده نشود، برای درجه‌ها فقط سیاه روی سفید را دارید؛ اگر علامت زده "
"نشود، رنگهای زیر انتخاب می‌شوند."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 437
#: rc.cpp:1151
msgid "&Use colors"
msgstr "&استفاده از رنگها‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 447
#: rc.cpp:1154
msgid "Column Resizing"
msgstr "تغییر اندازۀ ستون"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 453
#: rc.cpp:1157
msgid "Automatically resize the columns"
msgstr ""

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 456
#: rc.cpp:1160
#, fuzzy
#| msgid ""
#| "KVocTrain makes each column the same width except the leftmost with the "
#| "lesson names, which is half the size of the others. The second column, "
#| "which contains the picture that describes the state of the row, has a "
#| "fixed width."
msgid ""
"Parley makes each column the same width except the leftmost with the lesson "
"names, which is half the size of the others. The second column, which "
"contains the picture that describes the state of the row, has a fixed width."
msgstr ""
"KVocTrain، هر ستون را با همین عرض تنظیم می‌‌‌کند، به جز چپ‌‌‌ترین ستون که دارای "
"نام درسها است و نصف اندازۀ بقیۀ ستونها را دارد. دومین ستون حاوی عکسی است که "
"وضعیت سطر،که دارای عرض ثابت است را توصیف می‌‌‌کند."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 459
#: rc.cpp:1163
msgid "A&utomatic"
msgstr "&خودکار‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 466
#: rc.cpp:1166
msgid "The columns resize using the same factor that the window is resized to."
msgstr ""
"ستونها با استفاده از همان عاملی که پنجره بر اساس آن تغییر اندازه پیدا می‌کند، "
"تغییر اندازه می‌یابند."

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 469
#: rc.cpp:1169
msgid "If this is checked, the columns resize by the same amount as the window"
msgstr ""
"اگر این علامت زده شود، ستونها بر اساس همین مقدار نظیر پنجره تغییر اندازه "
"می‌دهند"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 472
#: rc.cpp:1172
msgid "P&ercentage"
msgstr "&درصد‌"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 479
#: rc.cpp:1175
msgid "There is no resizing of the columns"
msgstr "تغییر اندازۀ ستون وجود ندارد"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 482
#: rc.cpp:1178
msgid "When checked, the columns are not resized"
msgstr "هنگامی که علامت زده شود، اندازۀ ستونها تغییر داده نمی‌‌شوند"

#. i18n: tag string
#. i18n: file ./settings/viewoptionsbase.ui line 485
#: rc.cpp:1181
msgid "&Fixed"
msgstr "&ثابت‌"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 17
#: rc.cpp:1184
msgid "Open/Save"
msgstr "باز کردن/ذخیره"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 23
#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 38
#: rc.cpp:1187 rc.cpp:1196
msgid "Allow automatic saving of your work"
msgstr "اجازۀ ذخیرۀ خودکار کارتان"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 26
#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 41
#: rc.cpp:1190 rc.cpp:1199
msgid "Your work will be automatically saved if you check this option"
msgstr "اگر این گزینه را علامت بزنید، کارتان به طور خودکار ذخیره می‌شود"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 29
#: rc.cpp:1193
msgid "&Save vocabularies automatically on close and quit"
msgstr "&ذخیرۀ واژگان به طور خودکار هنگام بستن یا خروج‌"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 44
#: rc.cpp:1202
msgid "&Create a backup every"
msgstr "&ایجاد یک پشتیبان هر‌"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 54
#: rc.cpp:1205
msgid "minutes"
msgstr "دقیقه"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 81
#: rc.cpp:1208
msgid "Sep&arator for text file import/export (CSV):"
msgstr ""

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 97
#: rc.cpp:1211
msgid ""
"Choose which separator you want to use to separate your data when importing "
"and exporting text."
msgstr ""
"انتخاب این که از کدام جداساز می‌خواهید برای جدا کردن دادۀ خود هنگام واردات و "
"صادرات متن،  استفاده کنید."

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 100
#: rc.cpp:1214
msgid ""
"Choose the separator to use to divide the parts of an expression when "
"importing or exporting data as text."
msgstr ""
"انتخاب یک جداساز که برای تقسیم اجزای یک عبارت، هنگام واردات یا صادرات داده "
"به عنوان متن، استفاده می‌شود."

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 128
#: rc.cpp:1217
msgid "Editing"
msgstr "&ویرایش‌"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 152
#: rc.cpp:1220
msgid "Your changes will be applied automatically."
msgstr "تغییرات شما به طور خودکار اِعمال می‌‌‌شوند."

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 155
#: rc.cpp:1223
msgid ""
"If checked, you will not be asked if you really want this change; it will be "
"applied automatically."
msgstr ""
"اگر علامت زده شود، از شما سؤال نمی‌شود که آیا واقعاً این تغییر را می‌خواهید، به "
"طور خودکار اِعمال می‌‌‌شود."

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 158
#: rc.cpp:1226
msgid "Appl&y changes without asking"
msgstr "&اِعمال تغییرات بدون پرسش‌"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 165
#: rc.cpp:1229
msgid "If checked, the entry dialog will popup repeatedly"
msgstr "اگر علامت زده شود، محاورۀ مدخل مکرراً بالا می‌پرد"

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 168
#: rc.cpp:1232
msgid ""
"If this feature is activated, you will repeatedly be prompted with the entry "
"dialog. After entering the first original you have to enter the "
"corresponding translations. Afterwards you proceed with the next original "
"and its translations until you stop by pressing the ESC key."
msgstr ""
"اگر این ویژگی فعال شود، مکرراً به وسیلۀ محاورۀ مدخل به شما اعلان می‌شود. بعد "
"از وارد کردن اولین اصل، باید ترجمه‌های متناظر را وارد کنید. سپس تا زمانی که "
"با فشار دادن کلید گریز متوقف می‌‌شوید، با اصل بعدی و ترجمه‌هایش پیش می‌روید."

#. i18n: tag string
#. i18n: file ./settings/generaloptionsbase.ui line 171
#: rc.cpp:1235
msgid "Smart a&ppending"
msgstr "&پیوست هوشمند‌"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/GenStatPageForm.ui line 34
#: rc.cpp:1241
msgid "Filename:"
msgstr "نام پرونده:"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/GenStatPageForm.ui line 48
#: rc.cpp:1247
msgid "Entries:"
msgstr "مدخلها:"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/GenStatPageForm.ui line 55
#: rc.cpp:1250
msgid "Author:"
msgstr "نویسنده:"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/GenStatPageForm.ui line 62
#: rc.cpp:1253
msgid "Lessons:"
msgstr "درسها:"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/StatisticsPageForm.ui line 57
#: rc.cpp:1259
msgid "Grade FROM"
msgstr "درجه از"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/StatisticsPageForm.ui line 62
#: rc.cpp:1262
msgid "Grade TO"
msgstr "درجه به"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/StatisticsPageForm.ui line 67
#: rc.cpp:1265
msgid "Entries"
msgstr "مدخلها"

#. i18n: tag string
#. i18n: file ./statistics-dialogs/StatisticsPageForm.ui line 77
#: rc.cpp:1271
msgid "Reset"
msgstr "بازنشانی"

#: kva_io.cpp:85
msgid ""
"Vocabulary is modified.\n"
"\n"
"Save file before exit?\n"
msgstr ""
"واژگان تغییر داده می‌شود.\n"
"\n"
"قبل از خروج، پرونده را ذخیره می‌کنید؟\n"

#: kva_io.cpp:135
msgid "Open Vocabulary Document"
msgstr "باز کردن سند واژگان"

#: kva_io.cpp:189
msgid "Open Example Vocabulary Document"
msgstr "باز کردن سند واژگان مثال"

#: kva_io.cpp:259
msgid "Untitled"
msgstr "بدون عنوان"

#: kva_io.cpp:264 kva_io.cpp:306
#, kde-format
msgctxt "@info:status saving a file"
msgid "Saving %1"
msgstr "ذخیرۀ %1"

#: kva_io.cpp:276 kva_io.cpp:321
#, kde-format
msgid "Writing file \"%1\" resulted in an error: %2"
msgstr ""

#: kva_io.cpp:276 kva_io.cpp:321
msgid "Save File"
msgstr ""

#: kva_io.cpp:295
msgid "Save Vocabulary As"
msgstr "ذخیرۀ واژگان به عنوان"

#: kva_io.cpp:300
#, fuzzy, kde-format
#| msgid ""
#| "<qt>The file<br><b>%1</b><br />already exists. Do you want to overwrite "
#| "it?</qt>"
msgid ""
"<qt>The file<p><b>%1</b></p>already exists. Do you want to overwrite it?</qt>"
msgstr ""
"<qt>پروندۀ<br><b>%1</b><br>در حال حاضر موجود است. آیا می‌‌‌‌خواهید آن را جای‌نوشت "
"کنید؟</qt>"

#: kva_io.cpp:460
#, fuzzy
#| msgid "abbreviation"
msgctxt "context in which vocabulary entry is used"
msgid "abbreviation"
msgstr "اختصار"

#: kva_io.cpp:461
#, fuzzy
#| msgid "anatomy"
msgctxt "context in which vocabulary entry is used"
msgid "anatomy"
msgstr "  کالبد‌‌‌‌شناسی"

#: kva_io.cpp:462
#, fuzzy
#| msgid "biology"
msgctxt "context in which vocabulary entry is used"
msgid "biology"
msgstr "زیست‌شناسی"

#: kva_io.cpp:463
#, fuzzy
#| msgid "figuratively"
msgctxt "context in which vocabulary entry is used"
msgid "figuratively"
msgstr "مجازی"

#: kva_io.cpp:464
#, fuzzy
#| msgid "geology"
msgctxt "context in which vocabulary entry is used"
msgid "geology"
msgstr "زمین‌‌‌‌شناسی"

#: kva_io.cpp:465
#, fuzzy
#| msgid "historical"
msgctxt "context in which vocabulary entry is used"
msgid "historical"
msgstr "تاریخی"

#: kva_io.cpp:466
#, fuzzy
#| msgid "informal"
msgctxt "context in which vocabulary entry is used"
msgid "informal"
msgstr "بی‌‌‌قاعده"

#: kva_io.cpp:467
#, fuzzy
#| msgid "ironic"
msgctxt "context in which vocabulary entry is used"
msgid "ironic"
msgstr "کنایه‌دار"

#: kva_io.cpp:468
#, fuzzy
#| msgid "literary"
msgctxt "context in which vocabulary entry is used"
msgid "literary"
msgstr "ادبی"

#: kva_io.cpp:469
#, fuzzy
#| msgid "mythology"
msgctxt "context in which vocabulary entry is used"
msgid "mythology"
msgstr "اسطوره‌شناسی"

#: kva_io.cpp:470
#, fuzzy
#| msgid "proper name"
msgctxt "context in which vocabulary entry is used"
msgid "proper name"
msgstr "نام مناسب"

#: kva_io.cpp:471
#, fuzzy
#| msgid "pharmacy"
msgctxt "context in which vocabulary entry is used"
msgid "pharmacy"
msgstr "داروسازی"

#: kva_io.cpp:472
#, fuzzy
#| msgid "philosophy"
msgctxt "context in which vocabulary entry is used"
msgid "philosophy"
msgstr "فلسفه"

#: kva_io.cpp:473
#, fuzzy
#| msgid "physics"
msgctxt "context in which vocabulary entry is used"
msgid "physics"
msgstr "فیزیک"

#: kva_io.cpp:474
#, fuzzy
#| msgid "physiology"
msgctxt "context in which vocabulary entry is used"
msgid "physiology"
msgstr "فیزیولوژی"

#: kva_io.cpp:475
#, fuzzy
#| msgid "rhetoric"
msgctxt "context in which vocabulary entry is used"
msgid "rhetoric"
msgstr "قدرت بیان"

#: kva_io.cpp:476
#, fuzzy
#| msgid "zoology"
msgctxt "context in which vocabulary entry is used"
msgid "zoology"
msgstr "جانورشناسی"

#: kva_io.cpp:491
msgid "Welcome"
msgstr ""

#: kva_io.cpp:492
msgid "GPL (GNU General Public License)"
msgstr ""

#: kva_io.cpp:493
#, fuzzy
#| msgid "Example sentence"
msgid "Example document"
msgstr "جملۀ مثال"

#: kva_io.cpp:501
#, fuzzy
#| msgid "Second Language"
msgid "A Second Language"
msgstr "زبان دوم"

#: configure-practice/blockoptions.cpp:43
msgid "Do not Care"
msgstr "عدم توجه"

#: configure-practice/blockoptions.cpp:46
msgid "30 Min"
msgstr "۳۰ دقیقه"

#: configure-practice/blockoptions.cpp:47
msgid "1 Hour"
msgstr "۱ ساعت"

#: configure-practice/blockoptions.cpp:48
msgid "2 Hours"
msgstr "۲ ساعت"

#: configure-practice/blockoptions.cpp:49
msgid "4 Hours"
msgstr "۴ ساعت"

#: configure-practice/blockoptions.cpp:50
msgid "8 Hours"
msgstr "۸ ساعت"

#: configure-practice/blockoptions.cpp:51
msgid "12 Hours"
msgstr "۱۲ ساعت"

#: configure-practice/blockoptions.cpp:52
msgid "18 Hours"
msgstr "۱۸ ساعت"

#: configure-practice/blockoptions.cpp:54
msgid "1 Day"
msgstr "۱ روز"

#: configure-practice/blockoptions.cpp:55
msgid "2 Days"
msgstr "۲ روز"

#: configure-practice/blockoptions.cpp:56
msgid "3 Days"
msgstr "۳ روز"

#: configure-practice/blockoptions.cpp:57
msgid "4 Days"
msgstr "۴ روز"

#: configure-practice/blockoptions.cpp:58
msgid "5 Days"
msgstr "۵ روز"

#: configure-practice/blockoptions.cpp:59
msgid "6 Days"
msgstr "۶ روز"

#: configure-practice/blockoptions.cpp:61
msgid "1 Week"
msgstr "۱ هفته"

#: configure-practice/blockoptions.cpp:62
msgid "2 Weeks"
msgstr "۲ هفته"

#: configure-practice/blockoptions.cpp:63
msgid "3 Weeks"
msgstr "۳ هفته"

#: configure-practice/blockoptions.cpp:64
msgid "4 Weeks"
msgstr "۴ هفته"

#: configure-practice/blockoptions.cpp:66
msgid "1 Month"
msgstr "۱ ماه"

#: configure-practice/blockoptions.cpp:67
msgid "2 Months"
msgstr "۲ ماه"

#: configure-practice/blockoptions.cpp:68
msgid "3 Months"
msgstr "۳ ماه"

#: configure-practice/blockoptions.cpp:69
msgid "4 Months"
msgstr "۴ ماه"

#: configure-practice/blockoptions.cpp:70
msgid "5 Months"
msgstr "۵ ماه"

#: configure-practice/blockoptions.cpp:71
msgid "6 Months"
msgstr "۶ ماه"

#: configure-practice/blockoptions.cpp:72
msgid "10 Months"
msgstr "۱۰ ماه"

#: configure-practice/blockoptions.cpp:73
msgid "12 Months"
msgstr "۱۲ ماه"

#: configure-practice/blockoptions.cpp:244
msgid "Illogical blocking times.\n"
msgstr "زمان غیرمنطقی بازداشت.\n"

#: configure-practice/blockoptions.cpp:246
#: configure-practice/blockoptions.cpp:262
#, kde-format
msgid "The time for level %1 should be lower than the time for level %2.\n"
msgstr "زمان برای سطح  %1، باید کمتر از زمان برای سطح %2 باشد.\n"

#: configure-practice/blockoptions.cpp:260
msgid ""
"\n"
"Illogical expiration times.\n"
msgstr ""
"\n"
"زمان غیرمنطقی انقضا.\n"

#: configure-practice/blockoptions.cpp:279
msgid ""
"\n"
"Illogical blocking vs. expiration times.\n"
msgstr ""
"\n"
"زمان غیرمنطقی بازداشت در برابر زمان غیرمنطقی انقضا.\n"

#: configure-practice/blockoptions.cpp:281
#, kde-format
msgid ""
"The blocking time at level %1 should be lower than the expiration time.\n"
msgstr "زمان بازداشت در سطح %1، باید کمتر از زمان انقضا باشد.\n"

#: configure-practice/blockoptions.cpp:287
msgid "Illogical Values"
msgstr "مقادیر غیرمنطقی"

#: configure-practice/configurepracticewidget.cpp:68
#, fuzzy
#| msgid "Tense Description"
msgid "No options"
msgstr "توصیف زمان فعل"

#: configure-practice/configurepracticewidget.cpp:87
msgid ""
"To practice conjugations set up tenses in the \"Edit\" -> \"Grammar\" "
"options and add the conjugation forms to your vocabulary."
msgstr ""

#: configure-practice/configurepracticedialog.cpp:32
#, fuzzy
#| msgid "First Language"
msgctxt "@title:window"
msgid "Configure Practice"
msgstr "زبان اول"

#: configure-practice/configurepracticedialog.cpp:36 kva_init.cpp:328
#, fuzzy
#| msgid "Starting special practice..."
msgid "Start Practice..."
msgstr "در حال آغاز تمرین ویژه..."

#: configure-practice/configurepracticedialog.cpp:42
#, fuzzy
#| msgctxt ""
#| "Configure settings for practicing vocabulary, short title in config "
#| "dialog."
#| msgid "Practice"
msgctxt "@title:group"
msgid "Practice"
msgstr "تمرین"

#: configure-practice/configurepracticedialog.cpp:42
#, fuzzy
#| msgctxt "Configure settings for practicing vocabulary."
#| msgid "Practice Settings"
msgid "Practice options"
msgstr "تنظیمات تمرین"

#: configure-practice/configurepracticedialog.cpp:45
#, fuzzy
#| msgid "Blocking"
msgctxt ""
"@title:group vocabulary can be set to be blocked for a certain amount of time"
msgid "Blocking"
msgstr "بازداشت"

#: configure-practice/configurepracticedialog.cpp:45
msgid "Blocking Settings"
msgstr "تنظیمات بازداشت"

#: configure-practice/configurepracticedialog.cpp:48
#, fuzzy
#| msgid "Thresholds"
msgctxt ""
"@title:group ignore vocabulary based on some properties like word type"
msgid "Thresholds"
msgstr "آستانه‌ها"

#: configure-practice/configurepracticedialog.cpp:48
msgid "Threshold Settings"
msgstr "تنظیمات آستانه"

#: configure-practice/configurepracticedialog.cpp:51
msgctxt ""
"@title:group Configure advanced settings for practicing vocabulary, short "
"title in config dialog."
msgid "Advanced"
msgstr ""

#: configure-practice/configurepracticedialog.cpp:51
#, fuzzy
#| msgctxt "Configure settings for practicing vocabulary."
#| msgid "Practice Settings"
msgctxt "Configure advanced settings for practicing vocabulary."
msgid "Advanced Practice Settings"
msgstr "تنظیمات تمرین"

#: entry-dialogs/EntryDlg.cpp:45
msgid "&Reset"
msgstr "&بازنشانی‌"

#: entry-dialogs/EntryDlg.cpp:53
#, fuzzy
#| msgid "Common"
msgctxt "edit general vocabulary properties that are common to all word types"
msgid "Common"
msgstr "مشترک"

#: entry-dialogs/EntryDlg.cpp:54
msgid "General properties of the word"
msgstr "ویژگیهای عمومی واژه"

#: entry-dialogs/EntryDlg.cpp:59
#, fuzzy
#| msgid "Additional"
msgctxt "edit additional properties like image, synonym, etc."
msgid "Additional"
msgstr "اضافی"

#: entry-dialogs/EntryDlg.cpp:60
msgid "Additional properties"
msgstr "ویژگیهای اضافی"

#: entry-dialogs/EntryDlg.cpp:66
msgid "Predetermined multiple choice suggestions"
msgstr "پیشنهادهای انتخاب چندگانه از قبل تعیین‌شده"

#: entry-dialogs/EntryDlg.cpp:72
msgid "Conjugation of the selected verb"
msgstr "صرف فعلهای برگزیده"

#: entry-dialogs/EntryDlg.cpp:78
msgid "Comparison forms of the selected adjective or adverb"
msgstr ""

#: entry-dialogs/EntryDlg.cpp:100 entry-dialogs/EntryDlg.cpp:110
#, fuzzy, kde-format
#| msgid "Creates and starts test from %1 to %2"
msgid ""
"Grades from \n"
"%1 to %2"
msgstr "آزمون را از %1 تا %2 ایجاد و آغاز می‌کند"

#: entry-dialogs/EntryDlg.cpp:214
#, fuzzy, kde-format
#| msgid "Edit General Properties"
msgid "Edit General Properties"
msgid_plural "Edit General Properties for %1 Files"
msgstr[0] "ویرایش ویژگیهای عمومی"

#: entry-dialogs/EntryDlg.cpp:217
#, kde-format
msgctxt "@title:window Editing one entry, %1 the word, %2 the language"
msgid "\"%1\" (%2)"
msgstr ""

#: entry-dialogs/EntryDlg.cpp:221
#, kde-format
msgctxt "@title:window Editing %1 entries, %2 the language"
msgid "Edit One Word (%2)"
msgid_plural "Edit %1 words (%2)"
msgstr[0] ""

#: entry-dialogs/EntryDlg.cpp:288
msgid ""
"The entry dialog contains unsaved changes.\n"
"Do you want to apply or discard your changes?"
msgstr ""
"محاورۀ مدخل، حاوی تغییرات ذخیره‌‌‌نشده می‌‌‌باشد.\n"
"    می‌‌‌‌خواهید تغییرات را اِعمال کنید یا دور بیندازید؟"

#: entry-dialogs/EntryDlg.cpp:290
msgid "Unsaved Changes"
msgstr "تغییرات ذخیره‌‌‌نشده"

#: entry-dialogs/additionaleditpage.cpp:95
#, fuzzy
#| msgid "&male:\t"
msgctxt "@label image preview is empty"
msgid "No Image"
msgstr "&مذکر:‌\t‌"

#: entry-dialogs/FromToEntryPage.cpp:125
#, fuzzy, kde-format
#| msgid "Creates and starts test from %1 to %2"
msgid "Grades from %1 to %2"
msgstr "آزمون را از %1 تا %2 ایجاد و آغاز می‌کند"

#: entry-dialogs/PhoneticEntryPage.cpp:29
msgid "Select Characters From Phonetic Alphabet"
msgstr "برگزیدن نویسه‌ها از الفبای آوایی"

#: entry-dialogs/PhoneticEntryPage.cpp:33
#, fuzzy
#| msgid "Article"
msgctxt "Letter selection dialog for phonetic symbols."
msgid "Insert Letter"
msgstr "حرف تعریف"

#: entry-dialogs/CommonEntryPage.cpp:73
msgctxt "Usage (area) of an Expression"
msgid "&Usage Labels"
msgstr "برچسبهای &کاربرد‌"

#: entry-dialogs/CommonEntryPage.cpp:240
msgctxt "usage (area) of an expression"
msgid "Edit User-Defined Usage Labels"
msgstr "ویرایش برچسبهای کاربرد تعریف‌‌شدۀ کاربر"

#: entry-dialogs/CommonEntryPage.cpp:260
msgid "Edit User Defined Types"
msgstr "ویرایش انواع تعریف‌شدۀ کاربر"

#: newdocument-wizard/kvtnewdocumentwizardintropage.cpp:33
msgid "Introduction"
msgstr "مقدمه"

#: newdocument-wizard/kvtnewdocumentwizardintropage.cpp:36
msgid ""
"This wizard will get you started setting up your new document.\n"
"\n"
"With Parley you can practice anything that comes in pairs. For example "
"foreign languages and their translation to your language.\n"
"\n"
"To get started it is necessary to set up what you would like to practice.\n"
"\n"
"On the next page you can choose to use languages or anything else. In that "
"case you can simply define yourself what it is you practice by typing a "
"title for it."
msgstr ""

#: newdocument-wizard/firstidentifierlanguagepage.cpp:43
#: newdocument-wizard/secondidentifierlanguagepage.cpp:45
msgid "Identifier and language selection"
msgstr ""

#: newdocument-wizard/firstidentifierlanguagepage.cpp:44
msgid "Please select the first column data:"
msgstr ""

#: newdocument-wizard/authortitlepage.cpp:35
msgid "Title and author"
msgstr ""

#: newdocument-wizard/kvtnewdocumentwizard.cpp:50
#, fuzzy
#| msgid "Create a new KVocTrain document"
msgid "Create a New Parley Document"
msgstr "ایجاد یک سند KVocTrain جدید"

#: newdocument-wizard/secondidentifierlanguagepage.cpp:46
msgid "Please select the second column data:"
msgstr ""

#: kvttabledelegate.cpp:113
msgctxt "state of a row"
msgid "Inactive"
msgstr "غیرفعال"

#: kvttabledelegate.cpp:114
#, fuzzy
#| msgid "Acti&ve"
msgctxt "state of a row"
msgid "Active"
msgstr "&معلوم‌"

#: settings/parleyprefs.cpp:39
#, fuzzy
#| msgid "General"
msgctxt "title:window general settings"
msgid "General"
msgstr "عمومی"

#: settings/parleyprefs.cpp:39
msgid "General Settings"
msgstr "تنظیمات عمومی"

#: settings/parleyprefs.cpp:42
msgid "View"
msgstr "نما"

#: settings/parleyprefs.cpp:42
msgid "View Settings"
msgstr "تنظیمات نما"

#: settings/generaloptions.cpp:60
#, fuzzy
#| msgid ";"
msgctxt "CSV separator"
msgid ";"
msgstr "؛"

#: settings/generaloptions.cpp:61
msgctxt "CSV separator"
msgid "#"
msgstr ""

#: settings/generaloptions.cpp:62
msgctxt "CSV separator"
msgid "!"
msgstr ""

#: settings/generaloptions.cpp:63
msgctxt "CSV separator"
msgid "|"
msgstr ""

#: settings/generaloptions.cpp:64
#, fuzzy
#| msgid ","
msgctxt "CSV separator"
msgid ","
msgstr "،"

#: settings/generaloptions.cpp:65
#, fuzzy
#| msgid "TAB"
msgctxt "CSV separator: tabulator"
msgid "TAB"
msgstr "جهش"

#: settings/generaloptions.cpp:66
#, fuzzy
#| msgid ">= 2 SPACES"
msgctxt "CSV separator"
msgid ">= 2 SPACES"
msgstr ">= ۲ فاصله"

#: settings/generaloptions.cpp:67
msgctxt "CSV separator"
msgid " : "
msgstr ""

#: settings/generaloptions.cpp:68
msgctxt "CSV separator"
msgid " :: "
msgstr ""

#: kva_init.cpp:98
msgid "Creates a new blank vocabulary document"
msgstr "یک سند جدید سفید واژگان را ایجاد می‌کند"

#: kva_init.cpp:103
msgid "Opens an existing vocabulary document"
msgstr "سند موجود واژگان را باز می‌کند"

#: kva_init.cpp:110
msgid "Open &Example..."
msgstr "باز کردن &مثال...‌"

#: kva_init.cpp:112
msgid "Open an example vocabulary document"
msgstr "باز کردن یک سند واژگان نمونه"

#: kva_init.cpp:116
msgid "Vocabularies..."
msgstr "واژگان..."

#: kva_init.cpp:118
msgid "Downloads new vocabularies"
msgstr "واژگان جدید را بارگیری می‌کند"

#: kva_init.cpp:126
msgid "&Merge..."
msgstr "&ادغام...‌"

#: kva_init.cpp:128
msgid "Merge an existing vocabulary document with the current one"
msgstr "ادغام سند موجود واژگان با سند جاری"

#: kva_init.cpp:134
msgid "Save the active vocabulary document"
msgstr "ذخیرۀ سند فعال واژگان"

#: kva_init.cpp:140
msgid "Save the active vocabulary document with a different name"
msgstr "ذخیرۀ سند فعال واژگان با نامی متفاوت"

#: kva_init.cpp:145
msgid "Print the active vocabulary document"
msgstr "چاپ سند فعال واژگان"

#: kva_init.cpp:151
msgid "&Properties..."
msgstr "&ویژگیها...‌"

#: kva_init.cpp:154
#, fuzzy
#| msgid "Document Properties"
msgid "Edit document properties"
msgstr "ویژگیهای سند"

#: kva_init.cpp:160
#, fuzzy
#| msgid "Plural"
msgid "Quit Parley"
msgstr "جمع"

#: kva_init.cpp:167 kva_init.cpp:172
msgid "Copy"
msgstr "رونوشت"

#: kva_init.cpp:177
msgid "Paste"
msgstr "چسباندن"

#: kva_init.cpp:185
#, fuzzy
#| msgid "&New Language..."
msgid "&Languages..."
msgstr "زبان &جدید‌..."

#: kva_init.cpp:191
#, fuzzy
#| msgid "&Properties..."
msgid "&Grammar..."
msgstr "&ویژگیها...‌"

#: kva_init.cpp:192
#, fuzzy
#| msgid "Edit language properties in current document"
msgid "Edit language properties (types, tenses and usages)."
msgstr "ویرایش ویژگیهای زبان در سند جاری"

#: kva_init.cpp:199
msgid "Select all rows"
msgstr "برگزیدن تمام سطرها"

#: kva_init.cpp:204
msgid "Deselect all rows"
msgstr "از گزینش خارج کردن تمام سطرها"

#: kva_init.cpp:211
msgid "&Add New Entry"
msgstr "&افزودن مدخل جدید‌"

#: kva_init.cpp:214
msgid "Append a new row to the vocabulary"
msgstr "پیوستن یک سطر جدید به واژگان"

#: kva_init.cpp:221
msgid "&Delete Entry"
msgstr "&حذف مدخل"

#: kva_init.cpp:224
msgid "Delete the selected rows"
msgstr "حذف سطرهای برگزیده"

#: kva_init.cpp:234
msgid "Edit the entries in the selected rows"
msgstr "ویرایش مدخلها در سطرهای برگزیده"

#: kva_init.cpp:253
msgid "New Lesson"
msgstr "درس جدید"

#: kva_init.cpp:255
msgid "Add a new lesson to your document"
msgstr "یک سند جدید سفید واژگان را ایجاد می‌کند"

#: kva_init.cpp:262
#, fuzzy
#| msgid "Rename lesson"
msgid "Rename Lesson"
msgstr "تغییر نام درس"

#: kva_init.cpp:264
msgid "Rename the selected lesson"
msgstr "حذف سطرهای برگزیده"

#: kva_init.cpp:271
#, fuzzy
#| msgid "Delete lesson"
msgid "Delete Lesson"
msgstr "حذف درس"

#: kva_init.cpp:273
msgid "Delete the selected lesson."
msgstr "حذف سطرهای برگزیده"

#: kva_init.cpp:280
#, fuzzy
#| msgid "Select all lessons"
msgid "Select All Lessons"
msgstr "برگزیدن تمام درسها"

#: kva_init.cpp:282
msgid "Select all lessons for the test."
msgstr "برگزیدن تمام درسها"

#: kva_init.cpp:289
#, fuzzy
#| msgid "Deselect all lessons"
msgid "Deselect All Lessons"
msgstr "از گزینش خارج کردن تمام درسها"

#: kva_init.cpp:291
msgid "Remove all lessons from the test."
msgstr ""

#: kva_init.cpp:298
msgid "Split Lesson into Smaller Lessons"
msgstr "تقسیم درسها به دروس کوچکتر"

#: kva_init.cpp:300
msgid "Make multiple smaller lessons out of one big lesson."
msgstr ""

#: kva_init.cpp:310
msgid "Remove &Duplicates"
msgstr "حذف &تکراریها‌"

#: kva_init.cpp:312
msgid "Remove duplicate entries from the vocabulary"
msgstr "تغییر نام مدخلهای تکراری از واژگان"

#: kva_init.cpp:319
#, fuzzy
#| msgid "Article"
msgid "Configure Practice..."
msgstr "حرف تعریف"

#: kva_init.cpp:321
#, fuzzy
#| msgid "Starting Query"
msgid "Set up and start a test"
msgstr "آغاز پرس‌و‌جو"

#: kva_init.cpp:330
msgid "Start a test with the last settings"
msgstr ""

#: kva_init.cpp:339
msgid "&Statistics..."
msgstr "&آمار‌..."

#: kva_init.cpp:341
msgid "Show and reset statistics for the current vocabulary"
msgstr "نمایش و بازنشانی آمار برای واژگان جاری"

#: kva_init.cpp:349
msgid "Show the configuration dialog"
msgstr "نمایش محاورۀ پیکربندی"

#: kva_init.cpp:355
msgid "Toggle display of the toolbars"
msgstr "زدن ضامن نمایش میله ابزارها"

#: kva_init.cpp:360
msgid "Show Se&arch"
msgstr "نمایش &جستجو‌"

#: kva_init.cpp:362
msgid "Toggle display of the search bar"
msgstr "زدن ضامن نمایش میله جستجو"

#: kva_init.cpp:368
msgid "Show Lesson Column"
msgstr "نمایش ستون درس"

#: kva_init.cpp:374
#, fuzzy
#| msgid "Show Lesson Column"
msgid "Show Active Entry Column"
msgstr "نمایش ستون درس"

#: kva_init.cpp:382
msgid "Restore Native Order"
msgstr "باز گرداندن ترتیب طبیعی"

#: kva_init.cpp:468
#, fuzzy
#| msgid ""
#| "Double click to rename. Right click to add, delete, or rename lessons. \n"
#| "With the checkboxes you can select which lessons you want to be "
#| "queried. \n"
#| "Only checked lessons [x] will be asked in the query!"
msgid ""
"Right click to add, delete, or rename lessons. \n"
"With the checkboxes you can select which lessons you want to practice. \n"
"Only checked lessons [x] will be asked in the tests!"
msgstr ""
"دوبار فشار برای تغییر نام. فشار راست برای افزودن، حذف، یا تغییر نام درسها. \n"
"با جعبه‌های بررسی می‌توانید درسهایی که می‌خواهید پرس‌وجپ شوند را برگزینید. \n"
"فقط دروس علامت‌دار [x] در پرس‌وجو سوال می‌شوند!"

#: kva_init.cpp:474
msgid "Edit current lesson"
msgstr "ویرایش درس جاری"

#: kva_init.cpp:475
msgid "Edit lessons in test"
msgstr "ویرایش درسها در آزمون"

#: kva_init.cpp:476
msgid "Edit all lessons"
msgstr "ویرایش تمام درسها"

#: kva_init.cpp:477
msgid "Select which lessons should be displayed for editing to the right."
msgstr "درسهایی که باید برای ویرایش در سمت راست نمایش داده شوند را برگزینید"

#: kva_init.cpp:535
msgid "Enter search terms here"
msgstr "اصطلاحات جستجو را در اینجا وارد کنید"

#: kva_init.cpp:537
msgid ""
"Enter space-separated search terms to find words.\n"
"\n"
"Enter ^abc to look for words beginning with \"abc\".\n"
"Enter abc$ to look for words ending with \"abc\".\n"
"Enter type:verb to search for verbs."
msgstr ""

#: kva_init.cpp:539
msgid "S&earch:"
msgstr "&جستجو:‌"

#: kvtlessonmodel.cpp:231
#, kde-format
msgid "Lesson %1"
msgstr "درس جدید %1"

#: kvtlessonview.cpp:100
#, fuzzy
#| msgid ""
#| "There are vocabularies left in this lesson. Do you want to delete them? "
#| "You will loose your entries! You have been warned!"
msgid ""
"There are vocabularies left in this lesson. Do you want to delete them? You "
"will lose your entries! You have been warned!"
msgstr ""
"واژگانی در این درس باقی می‌ماند. می‌خواهید آنها را حذف کنید؟ مدخلهایتان را از "
"دست می‌دهید! به شما اخطار داده شد!"

#: kvtlessonview.cpp:132
msgid "Entries per Lesson"
msgstr "مدخلهای هر درس"

#: kvtlessonview.cpp:132
msgid ""
"The lesson will be split into smaller lessons. The order will be "
"randomized.\n"
"How many entries in each lesson do you want?"
msgstr ""
"درس، به درسهای کوچکتر تقسیم می شود. ترتیب، تصادفی است.\n"
"چند مدخل در هر هر درس می‌خواهید؟"

#: statistics-dialogs/StatisticsDialog.cpp:37
msgid "Document Statistics"
msgstr "آمار سند"

#: statistics-dialogs/StatisticsDialog.cpp:48
#, fuzzy
#| msgid "General"
msgctxt "general statistics page"
msgid "General"
msgstr "عمومی"

#: statistics-dialogs/StatisticsPage.cpp:279
#, kde-format
msgid ""
"<html><p style='white-space:pre'><b>Number of Entries per Grade</b></"
"p><table><tr><td>%1</td><td>%2</td></tr><tr><td>%3</td><td>%4</td></"
"tr><tr><td>%5</td><td>%6</td></tr><tr><td>%7</td><td>%8</td></tr><tr><td>%9</"
"td><td>%10</td></tr><tr><td>%11</td><td>%12</td></tr><tr><td>%13</td><td>%"
"14</td></tr><tr><td>%15</td><td>%16</td></tr></table></html>"
msgstr ""
"<html><p style='white-space:pre'><b>تعداد مدخل در هر درجه </b></"
"p><table><tr><td>%1</td><td>%2</td></tr><tr><td>%3</td><td>%4</td></"
"tr><tr><td>%5</td><td>%6</td></tr><tr><td>%7</td><td>%8</td></tr><tr><td>%9</"
"td><td>%10</td></tr><tr><td>%11</td><td>%12</td></tr><tr><td>%13</td><td>%"
"14</td></tr><tr><td>%15</td><td>%16</td></tr></table></html>"

#~ msgid "Unicode name: "
#~ msgstr "نام یونی‌کد:"

#~ msgctxt "Describing the sound of the character"
#~ msgid "Sound: "
#~ msgstr "صدا:"

#, fuzzy
#~| msgid "Split &translations"
#~ msgid "Split Translations"
#~ msgstr "جدا کردن &ترجمه‌ها‌"

#~ msgid "at"
#~ msgstr "با"

#~ msgid "Split translations at periods"
#~ msgstr "جدا کردن ترجمه‌ها با نقطه"

#~ msgid ""
#~ "When this options is enabled, translations will be split at periods if "
#~ "they have any (except any trailing periods that will be removed)."
#~ msgstr ""
#~ "هنگامی که این گزینه فعال می‌‌شود، ترجمه‌‌ها در صورت داشتن نقطه )به جز نقاط "
#~ "دنباله‌‌داری که حذف می‌‌شوند( با نقطه جدا می‌شوند."

#~ msgid "pe&riods"
#~ msgstr "&نقطه‌"

#~ msgid "Split translations at colons"
#~ msgstr "جدا کردن ترجمه‌‌‌ها با دونقطه"

#~ msgid ""
#~ "When this options is enabled, translations that have not been split at "
#~ "periods will be split at colons if they have any."
#~ msgstr ""
#~ "هنگامی که این گزینه فعال می‌شود، ترجمه‌هایی که با نقطه جدا نشده‌اند؛ اگر "
#~ "دونقطه داشته باشند، با دونقطه‌ جدا می‌‌شوند."

#~ msgid "co&lons"
#~ msgstr "&دونقطه‌"

#~ msgid "Split translations at semicolons"
#~ msgstr "جدا کردن ترجمه‌ها با نقطه-واوک"

#~ msgid ""
#~ "When this options is enabled, translations that have not been split at "
#~ "periods or colons will be split at semicolons if they have any."
#~ msgstr ""
#~ "هنگامی که این گزینه فعال می‌شود، ترجمه‌هایی که با نقطه یا دونقطه جدا "
#~ "نشده‌اند؛ در صورت داشتن نقطه - واوک، با نقطه - واوک جدا می‌شوند."

#~ msgid "sem&icolons"
#~ msgstr "&نقطه - واوک‌"

#~ msgid "Split translations at commas"
#~ msgstr "جدا کردن ترجمه‌ها با واوک"

#~ msgid ""
#~ "When this options is enabled, translations that have not been split at "
#~ "periods, colons or semicolons will be split at commas if they have any."
#~ msgstr ""
#~ "هنگامی که این گزینه‌ فعال می‌شود، ترجمه‌هایی که با نقطه، دونقطه، یا نقطه - "
#~ "واوک جدا نشده‌اند، در صورت داشتن واوک، با واوک جدا می‌‌‌شوند."

#~ msgid "co&mmas"
#~ msgstr "&واوک‌"

#~ msgid "Quit KVocTrain"
#~ msgstr "خروج از KVocTrain"

#~ msgid "You waited too long to enter the correct answer. %1% done."
#~ msgstr "برای وارد کردن پاسخ درست، خیلی منتظر شدید. %1٪ انجام ‌شد."

#, fuzzy
#~| msgid "From %1"
#~ msgid "Form"
#~ msgstr "از %1"

#~ msgid "Check this if you do not want any time limitation per query."
#~ msgstr "اگر برای هر پرس‌و‌جو محدودیت زمانی نمی‌خواهید، این را علامت بزنید."

#~ msgid "When this is checked, there is no time limitation for each query"
#~ msgstr ""
#~ "هنگامی که این علامت زده می‌شود، برای هر پرس‌و‌جو محدودیت زمانی وجود ندارد"

#~ msgid "&No time limitation"
#~ msgstr "&بدون محدودیت زمانی‌"

#~ msgid "Ma&x. time (s):"
#~ msgstr "زمان &بیشینه:‌"

#, fuzzy
#~| msgid "Your answer was wrong. %1% done."
#~ msgid "Your answer is right!"
#~ msgstr "پاسختان اشتباه بود. %1٪ انجام‌ شد."

#, fuzzy
#~| msgid "Enter the synonym:"
#~ msgid "You entered a synonym."
#~ msgstr "وارد کردن مترادف:"

#, fuzzy
#~| msgid "Your answer was wrong. %1% done."
#~ msgid "Your answer was wrong. Estimated %1% correct."
#~ msgstr "پاسختان اشتباه بود. %1٪ انجام‌ شد."

#~ msgid "If checked, activate a progress bar to show the remaining time."
#~ msgstr ""
#~ "اگر علامت زده شود، برای نمایش زمان باقی‌مانده، میلۀ پیشرفت را فعال می‌کند."

#~ msgid ""
#~ "Check this button if you want to activate a progress bar to show the "
#~ "remaining time for each query."
#~ msgstr ""
#~ "اگر می‌خواهید برای نمایش زمان باقی‌ماندۀ هر پرس‌و‌جو یک میلۀ پیشرفت را فعال "
#~ "کنید، این دکمه را علامت بزنید."

#~ msgid "S&how remaining time"
#~ msgstr "&نمایش زمان باقی‌مانده‌"

#~ msgid "Options for Written Tests"
#~ msgstr "گزینه‌ها در آزمونهای نوشته‌شده"

#~ msgid "If checked, pressing F5 or F6 will display a list of suggestions"
#~ msgstr ""
#~ "اگر علامت زده شود، فشار دادن F5 یا  F6؛ فهرستی از پیشنهادها را نمایش می‌دهد"

#~ msgid ""
#~ "When this options is enabled, you can enter part of an answer, then press "
#~ "F5 or F6 to get a list of translations starting with or containing the "
#~ "text you typed."
#~ msgstr ""
#~ "هنگامی که این گزینه فعال می‌‌شود، می‌توانید جزئی از یک پاسخ را وارد کنید، "
#~ "سپس برای به دست آوردن فهرستی از ترجمه‌هایی که با متن تحریرشدۀ شما آغاز "
#~ "می‌شو‌د یا شامل آن است، F5 یا F6 را فشار دهید."

#~ msgid "&Enable suggestion lists"
#~ msgstr "&فعال‌سازی فهرست پیشنهادها‌"

#~ msgid "Split translations and show multiple answer fields"
#~ msgstr "جدا کردن ترجمه‌ها و نمایش حوزه‌های چندگانۀ پاسخ"

#~ msgid ""
#~ "When this options is enabled, the program will split translations into "
#~ "several parts, show multiple answer fields, and you will need to answer "
#~ "each one of them. This is useful for example when a word has several "
#~ "meanings that have different translations in the other language."
#~ msgstr ""
#~ "هنگامی که این گزینه فعال می‌شود، برنامه فقط ترجمه‌ها را به چندین جزء جدا "
#~ "می‌کند، حوزه‌های چندگانۀ پاسخ را نمایش می‌دهد، و لازم است که به هر یک از "
#~ "آنها پاسخ دهید. برای مثال، این کار هنگامی مفید است که واژه‌ای که چندین "
#~ "معنی دارد، ترجمه‌های متفاوتی در زبان دیگر داشته باشد."

#~ msgid "Maximum number of fields to split translations into"
#~ msgstr "تعداد بیشینۀ حوزه‌ها برای جدا کردن ترجمه‌ها به"

#~ msgid ""
#~ "Enter the maximum number of answer fields you want to have. When "
#~ "splitting translations, the program will only split into this many parts, "
#~ "and the last part will contain the rest of the translation."
#~ msgstr ""
#~ "وارد کردن تعداد بیشینۀ حوزه‌های پاسخی که می‌خواهید داشته باشید. هنگام جدا "
#~ "کردن ترجمه‌ها، برنامه فقط ترجمه را به اجزایی جدا می‌کند، و آخرین جزء حاوی "
#~ "بقیۀ ترجمه می‌باشد."

#~ msgid "Maximum number of &fields:"
#~ msgstr "تعداد بیشینۀ &حوزه‌ها:‌"

#~ msgid ""
#~ "Press F5 for a list of translations starting with '%1'\n"
#~ "Press F6 for a list of translations containing '%1'"
#~ msgstr ""
#~ "فشار دادن F5 برای فهرستی از ترجمه‌هایی که با »%1« آغاز می‌شوند\n"
#~ "فشار دادن F6 برای فهرستی از ترجمه‌های حاوی »%1«"

#~ msgid "Word t&ype:"
#~ msgstr "&نوع واژه:‌"

#~ msgid "G&rade:"
#~ msgstr "&درجه:‌"

#~ msgid "Query c&ount:"
#~ msgstr "پرس‌و‌جوی &شمارش:‌"

#~ msgid "&Bad count:"
#~ msgstr "شمارش &بد:‌"

#, fuzzy
#~| msgctxt ""
#~| "Configure settings for practicing vocabulary, short title in config "
#~| "dialog."
#~| msgid "Practice"
#~ msgid "Last &practice:"
#~ msgstr "تمرین"

#~ msgid "N&ame:"
#~ msgstr "&نام:‌"

#~ msgid "&Save"
#~ msgstr "&ذخیره‌"

#~ msgid "&Load"
#~ msgstr "&بارگذاری‌"

#~ msgid "&New"
#~ msgstr "&جدید‌"

#~ msgid "Sep&arator:"
#~ msgstr "&جداساز:‌"

#~ msgid "Worse Than"
#~ msgstr "بدتر از"

#~ msgid "Equal/Worse Than"
#~ msgstr "برابر/بدتر از"

#~ msgid "Equal/Better Than"
#~ msgstr "برابر/بهتر از"

#~ msgid "Better Than"
#~ msgstr "بهتر از"

#~ msgid "Equal To"
#~ msgstr "برابر است با"

#~ msgid "Not Equal"
#~ msgstr "برابر نیست با"

#~ msgid "Contained In"
#~ msgstr "شامل در"

#~ msgid "Not Contained In"
#~ msgstr "شامل‌نشده در"

#~ msgid "Within Last"
#~ msgstr "در آخرین"

#~ msgid "Before"
#~ msgstr "قبل"

#, fuzzy
#~| msgid "Article"
#~ msgid "Never Practiced"
#~ msgstr "حرف تعریف"

#~ msgid "Current Lesson"
#~ msgstr "درس جاری"

#~ msgid "Not Assigned"
#~ msgstr "اختصاص داده‌نشده"

#~ msgid "Profile Description"
#~ msgstr "توصیف Profile"

#~ msgid "Enter profile description:"
#~ msgstr "وارد کردن توصیف profile:"

#~ msgid ""
#~ "You have made changes that are not yet applied.\n"
#~ "If you save a profile, those changes will not be included.\n"
#~ "Do you wish to continue?"
#~ msgstr ""
#~ "تغییراتی ایجاد کرده‌اید که هنوز اعمال نمی‌شوند.\n"
#~ "اگر profileرا ذخیره کنید، شامل این تغییرات نمی‌شود.\n"
#~ "می‌خواهید ادامه بدهید؟"

#~ msgid "Initial Italian localization"
#~ msgstr "محلی کردن آغازین ایتالیایی"

#~ msgid "Initial French localization"
#~ msgstr "محلی کردن آغازین فرانسوی"

#~ msgid "Initial Polish localization"
#~ msgstr "محلی کردن آغازین لهستانی"

#, fuzzy
#~| msgid "Comparison of Adjectives"
#~ msgid "Comparison of Adverbs"
#~ msgstr "مقایسۀ صفتها"

#, fuzzy
#~| msgid "Articles"
#~ msgid "Articles of Nouns"
#~ msgstr "حروف تعریف"

#~ msgid "Printing..."
#~ msgstr "در حال چاپ..."

#~ msgid "Ready"
#~ msgstr "آماده"

#~ msgid "Copying selection to clipboard..."
#~ msgstr "در حال رونوشت گزینش در تخته یادداشت..."

#~ msgid "Inserting clipboard contents..."
#~ msgstr "در حال درج محتویات تخته یادداشت..."

#~ msgid "Autobackup in progress"
#~ msgstr "پشتیبانی خودکار در حال انجام است"

#~ msgid "Creating new file..."
#~ msgstr "ایجاد پروندۀ جدید..."

#~ msgid "Opening file..."
#~ msgstr "در حال باز کردن پرونده..."

#~ msgid "Loading %1"
#~ msgstr "بارگذاری %1"

#~ msgid "Opening example file..."
#~ msgstr "در حال باز کردن پروندۀ مثال..."

#~ msgid "Saving file under new filename..."
#~ msgstr "در حال ذخیرۀ پرونده بر اساس نام پروندۀ جدید..."

#, fuzzy
#~| msgid "&male:\t"
#~ msgctxt "@label:image image preview is empty"
#~ msgid "No Image"
#~ msgstr "&مذکر:‌\t‌"

#~ msgid ""
#~ "There are currently no suitable expressions for the test you started.\n"
#~ "There are several possible reasons for this; maybe you do not have any "
#~ "expressions for the type of practice you requested.\n"
#~ "Most likely, you should adjust your settings referring to thresholds and "
#~ "blocking values in the practice options:\n"
#~ "should the configuration dialog be invoked now?"
#~ msgstr ""
#~ "در حال حاضر، عبارت مناسبی برای آزمونی که آغاز کردید وجود ندارد.\n"
#~ "چندین دلیل احتمالی برای این مسئله وجود دارد؛ شاید عبارتی برای نوع جستجویی "
#~ "که درخواست کردید، ندارید.\n"
#~ "به احتمال زیاد، باید تنظیماتتان که به آستانه‌‌‌‌ها و مقادیر بازداشت در "
#~ "گزینه‌‌‌های پرس‌‌و‌جو مربوط می‌شوند را میزان کنید:\n"
#~ "آیا محاورۀ پیکربندی اکنون باید احضار شود؟"

#~ msgid "Random Test"
#~ msgstr "آزمون تصادفی"

#~ msgid "Original Expression"
#~ msgstr "عبارت اصلی"

#, fuzzy
#~| msgid "&Do Not Know"
#~ msgid "Skip (&Do Not Know)"
#~ msgstr "&ندانستن‌"

#~ msgid "Language Properties"
#~ msgstr "ویژگیهای زبان"

#~ msgid ""
#~ "The type you selected could not be deleted since it is a special type "
#~ "used for practicing."
#~ msgstr ""
#~ "نوعی را که برگزیدید را نمی‌توان حذف کرد، زیرا نوعی ویژه مورد استفاده برای "
#~ "تمرین است."

#~ msgid "Delete subtype"
#~ msgstr "حذف زیرنوع"

#~ msgid "Document Properties"
#~ msgstr "ویژگیهای سند"

#~ msgid "&Stop Test"
#~ msgstr "&ایست آزمون‌"

#~ msgid "&Edit Expression..."
#~ msgstr "&ویرایش عبارت...‌"

#~ msgid ""
#~ "You have selected no lessons to be practiced. Please select at least one "
#~ "on the left."
#~ msgstr ""
#~ "درسی را برای تمرین انتخاب نکرده‌اید. لطفاً، حداقل یک مورد را از سمت چپ "
#~ "برگزینید."

#~ msgid "Starting Test"
#~ msgstr "آغاز آزمون"

#~ msgid "&Language"
#~ msgstr "&زبان‌"

#, fuzzy
#~| msgid "&Neutral:"
#~ msgid "&Neuter:"
#~ msgstr "&خنثی:‌"

#, fuzzy
#~| msgid "First Language"
#~ msgid "&Edit Languages"
#~ msgstr "زبان اول"

#~ msgid "Edit language properties in current document"
#~ msgstr "ویرایش ویژگیهای زبان در سند جاری"

#, fuzzy
#~| msgid "Question"
#~ msgid "The Question:"
#~ msgstr "پرسش"

#, fuzzy
#~| msgid "&Tense:"
#~ msgid "The Answer:"
#~ msgstr "&زمان فعل:‌"

#, fuzzy
#~| msgctxt "state of a row"
#~| msgid "In Test"
#~ msgid "Test"
#~ msgstr "در آزمون"

#~ msgid "Last q&uery:"
#~ msgstr "آخرین &پرس‌و‌جو:‌"

#~ msgid "Save/load specific practice settings in/from a profile"
#~ msgstr "ذخیره یا بار کردن تنظیمات تمرین مشخص یک profile"

#, fuzzy
#~| msgid ""
#~| "A Profile is a set of settings (settings related to queries) which you "
#~| "can save/load in order to use again later. This button allows you to see "
#~| "existing profiles, to load a new profile and to save your current "
#~| "settings in a  new profile."
#~ msgid ""
#~ "A Profile is a set of settings (settings related to practices) which you "
#~ "can save/load in order to use again later. This button allows you to see "
#~ "existing profiles, to load a new profile and to save your current "
#~ "settings in a  new profile."
#~ msgstr ""
#~ "یک Profile  مجموعه‌ای از تنظیمات است )تنظیمات مربوط به پرس‌و‌جوها( که برای "
#~ "این که بعداً دوباره استفاده کنید می‌توانید ذخیره/بار کنید. این دکمه به شما "
#~ "اجازه می‌دهد که برای بار کردن یک profile و ذخیرۀ تنظیمات جاری خود در یک "
#~ "profile جدید، profileهای موجود را ببینید."

#~ msgid "Base form:"
#~ msgstr "شکل پایه‌‌‌‌:"

#~ msgid "C&ommon"
#~ msgstr "&مشترک‌"

#~ msgid "&Common"
#~ msgstr "&مشترک‌"

#~ msgid "&3. Person:"
#~ msgstr "&۳ شخص:‌"

#~ msgid "Query Counts"
#~ msgstr "شمارشهای پرس‌وجو"

#~ msgid "Last Query &Date"
#~ msgstr "&تاریخ آخرین پرس‌و‌جو‌"

#~ msgid "From Original"
#~ msgstr "از اصل"

#~ msgid "To Original"
#~ msgstr "در اصل"

#~ msgid "Language code (ISO 639):"
#~ msgstr "کد زبان )ISO 639(:"

#, fuzzy
#~| msgid "Languages"
#~ msgid "Languages:"
#~ msgstr "زبانها"

#~ msgid "&Remark:"
#~ msgstr "&اشاره:‌"

#~ msgid "Show &All"
#~ msgstr "نمایش &همه‌"

#, fuzzy
#~| msgid "&Comparisons"
#~ msgid "Comparison Forms"
#~ msgstr "&مقایسه‌"

#, fuzzy
#~| msgid "E&xamples"
#~ msgid "Examples"
#~ msgstr "&مثالها‌"

#~ msgid "Use the Leitner learning method"
#~ msgstr "استفاده از روش یادگیری Leitner"

#~ msgid "&Use alternative learning method"
#~ msgstr "&استفاده از روش متناوب یادگیری‌"

#~ msgid "Starting property practice..."
#~ msgstr "در حال آغاز تمرین ویژگی..."

#~ msgid "Starting special practice..."
#~ msgstr "در حال آغاز تمرین ویژه..."

#~ msgid "Starting written practice..."
#~ msgstr "آغاز تمرین نوشته‌شده..."

#, fuzzy
#~| msgid "First Language"
#~ msgid "Configure languages"
#~ msgstr "زبان اول"

#~ msgid "Saving selected area under new filename..."
#~ msgstr "در حال ذخیرۀ ناحیۀ برگزیده بر اساس نام پروندۀ جدید..."

#~ msgctxt "state of a row"
#~ msgid "Active, Not in Test"
#~ msgstr "فعال، در حالت آزمون نیست"

#~ msgctxt "state of a row"
#~ msgid "In Test"
#~ msgstr "در آزمون"

#~ msgid "Save the entries in the current test as a new vocabulary"
#~ msgstr "ذخیرۀ مدخلها در آزمون جاری عنوان واژگان جدید"

#, fuzzy
#~| msgid ""
#~| "Enjoy learning with KVocTrain.\n"
#~| "Have fun!\n"
#~| "\n"
#~| "The KVocTrain team."
#~ msgid "Enjoy learning with Parley."
#~ msgstr ""
#~ "از آموزش با KVocTrain لذت ببرید.\n"
#~ "خوش بگذرد!\n"
#~ "\n"
#~ "تیم KVocTrain."

#~ msgid "Finished"
#~ msgstr "پایان یافت"

#~ msgid "&natural:\t"
#~ msgstr "&خنثی:‌\t‌"

#~ msgid "KVocTrain determines the resizing of the columns"
#~ msgstr "KVocTrain، تغییر اندازۀ ستونها را تعیین می‌کند"

#~ msgid ""
#~ "You may set a time limit KVocTrain grants you to remember the correct "
#~ "answer. Set here the maximum time you want to allow per query."
#~ msgstr ""
#~ "ممکن است یک محدودیت زمانی تنظیم کنید، KVocTrain  تضمین می‌کند که پاسخ درست "
#~ "را به یاد بیاورید. زمان بیشینه‌ای که می‌خواهید برای هر پرس‌وجو مجاز باشد را "
#~ "در اینجا تنظیم کنید."

#~ msgid "Available Languages"
#~ msgstr "زبانهای موجود"

#~ msgid "Select a language or use the Add New Language Code to add one."
#~ msgstr ""
#~ "برگزیدن یک زبان یا استفاده از »افزودن کد جدید زبان« برای افزودن یک زبان."

#~ msgid ""
#~ "You can select a language with the drop down box or use the Add New "
#~ "Language Code dialog below to add one."
#~ msgstr ""
#~ "زبان را به وسیلۀ جعبۀ پایین افت می‌توانید برگزینید، یا می‌توانید برای اضافه "
#~ "کردن یک زبان از محاورۀ »افزودن کد جدید زبان« در زیر استفاده کنید."

#~ msgid ""
#~ "Select a language or use the Add New Language or Identifier to add one."
#~ msgstr ""
#~ "برگزیدن یک زبان یا از استفاده از افزودن زبان جدید یا شناسه برای افزودن آن."

#~ msgid ""
#~ "You can select a language with the drop down box or use the Add New "
#~ "Language or Identifier functions below to add one."
#~ msgstr ""
#~ "می‌توانید زبانی را به وسیلۀ جعبۀ پایین افت گزینید، یا برای اضافه کردن یک "
#~ "زبان از افزودن زبان جدید یا تابعهای شناسه در زیر استفاده کنید."

#~ msgid "You can assign a language to each column"
#~ msgstr "یک زبان را به هر ستون می‌توانید اختصاص بدهید"

#~ msgid ""
#~ "Each column can be assigned a language. This is internally done with the "
#~ "usual international language codes."
#~ msgstr ""
#~ "هر ستون را می‌توان به یک زبان اختصاص داد. این کار به طور ناخودآگاه به "
#~ "وسیلۀ کد معمول زبانهای بین‌المللی انجام می‌شود."

#~ msgid "Language c&ode:"
#~ msgstr "&کد زبان:‌"

#~ msgid "Set a picture for the language"
#~ msgstr "قرار دادن یک عکس برای زبان"

#~ msgid "Choose a picture to represent the language above."
#~ msgstr "انتخاب یک عکس برای بازنمایی زبان بالا."

#~ msgid "&Picture:"
#~ msgstr "&عکس:‌"

#, fuzzy
#~| msgid "Quit KVocTrain"
#~ msgid "The KVocTrain team"
#~ msgstr "خروج از KVocTrain"

#~ msgid "Create Written Test"
#~ msgstr "ایجاد آزمون نوشته‌شده"

#~ msgid "Create &Multiple Choice Test"
#~ msgstr "ایجاد آزمون &چند گزینه‌ای"

#~ msgid "Creates and starts multiple choice from %1 to %2"
#~ msgstr "انتخاب چندگانه را از %1 تا %2 ایجاد و آغاز می‌کند"

#~ msgid "Creates and starts practice from %1 to %2"
#~ msgstr "تمرین را از %1 تا %2 ایجاد و آغاز می‌کند"

#~ msgid "Creates and starts multiple choice test from %1 to %2"
#~ msgstr "آزمون چند گزینه‌ای را از %1 تا %2 ایجاد و آغاز می‌کند"

#~ msgid "&Verbs"
#~ msgstr "&فعلها‌"

#~ msgid "Starts training with verbs"
#~ msgstr "آموزش را با فعلها آغاز می‌کند"

#~ msgid "&Articles"
#~ msgstr "&حروف تعریف‌"

#~ msgid "Starts training with articles"
#~ msgstr "آموزش را با حروف تعریف آغاز می‌کند"

#~ msgid "Starts training with adjectives"
#~ msgstr "آموزش را با صفتها آغاز می‌کند"

#~ msgid "Starts training with synonyms"
#~ msgstr "آموزش را با مترادفها آغاز می‌کند"

#~ msgid "Starts training with antonyms"
#~ msgstr "آموزش را با متضادها آغاز می‌کند"

#~ msgid "Starts training with examples"
#~ msgstr "آموزش را با مثالها آغاز می‌کند"

#~ msgid "&Paraphrase"
#~ msgstr "&نقل بیان‌"

#~ msgid "Starts training with paraphrases"
#~ msgstr "آموزش را با نقل بیانها آغاز می‌کند"

#~ msgid "Resume Written Test"
#~ msgstr "از سرگیری آزمون نوشته‌شده"

#~ msgid "Resumes written test with existing selection"
#~ msgstr "آزمون نوشته‌شده را گزینش موجود از سر می گیرد"

#~ msgid "Resume &Multiple Choice"
#~ msgstr "ازسرگیری انتخاب &چندگانه‌"

#~ msgid "Resumes multiple choice with existing selection"
#~ msgstr "انتخاب چندگانه را با گزینش موجود از سر می‌گیرد"

#~ msgid "Delete the selected language"
#~ msgstr "حذف زبان برگزیده"

#~ msgid "By clicking on this button you can delete the selected language."
#~ msgstr "با فشار این دکمه می‌توانید زبان برگزیده را حذف کنید."

#~ msgid "Your own description of the language code."
#~ msgstr "توصیف خودتان از کد زبان."

#~ msgid ""
#~ "An alternative language code is set here but you can change it if you want"
#~ msgstr ""
#~ "کد متناوب زبان در اینجا قرار داده می‌شود، اما اگر بخواهید، می‌توانید آن را "
#~ "تغییر بدهید"

#~ msgid ""
#~ "A description of the language is written here and you can modify it if "
#~ "you want."
#~ msgstr ""
#~ "توصیف زبان در اینجا نوشته می‌شود، و اگر بخواهید می‌توانید آن را تغییر دهید."

#~ msgid "Add New Language or Identifier"
#~ msgstr "افزودن زبان یا شناسه جدید"

#~ msgid "Add language information by selecting the name of a country"
#~ msgstr "افزودن اطلاعات زبان با گزینش نام یک کشور"

#~ msgid "Add Language Data From Country Name"
#~ msgstr "افزودن دادۀ زبان از نام کشور"

#~ msgid "Add language information by selecting the name of a language"
#~ msgstr "افزودن اطلاعات زبان با گزینش نام زبان"

#~ msgid "Add Language Data From Language Name"
#~ msgstr "افزودن دادۀ زبان از نام زبان"

#~ msgid "Allow addition of the language you typed."
#~ msgstr "اجازۀ افزودن زبانی که تحریر کردید."

#~ msgid ""
#~ "This button becomes available when you type a language code in the field."
#~ msgstr ""
#~ "هنگامی که یک کد زبان را در حوزه تحریر می‌کنید، این دکمه قابل دسترس می‌شود."

#~ msgid "&Add"
#~ msgstr "&افزودن‌"

#~ msgid "Type your language code if you know it."
#~ msgstr "اگر کد زبان خود را می‌دانید، آن را تحریر کنید."

#~ msgid ""
#~ "Type the language code if you know it or use one of the 2 buttons below "
#~ "to choose a language code."
#~ msgstr ""
#~ "اگر کد زبان را می‌دانید، یا از یکی از ۲ دکمۀ زیر برای انتخاب یک کد زبان "
#~ "استفاده می‌کنید، آن را تحریر نمایید."

#~ msgid "First Language"
#~ msgstr "زبان اول"

#~ msgid "Second Language"
#~ msgstr "زبان دوم"

#~ msgid "Your selection:"
#~ msgstr "گزینش شما:"

#~ msgid "So far you have chosen "
#~ msgstr "تا اینجا انتخاب کرده‌اید "

#~ msgid ""
#~ "\n"
#~ "Please add a second language:"
#~ msgstr ""
#~ "\n"
#~ "لطفاً زبان دوم را اضافه کنید:‌"

#~ msgid "Your selection: "
#~ msgstr "گزینش شما: "

#~ msgid "Languages or other"
#~ msgstr "زبانها یا موارد دیگر"

#~ msgid ""
#~ "Please select whether you will be practicing languages or other things "
#~ "(anything else).\n"
#~ msgstr ""
#~ "لطفاً، انتخاب کنید که زبانها را تمرین می‌کنید یا چیزهای دیگر )هر چیز دیگری"
#~ "(.\n"

#~ msgid "Other"
#~ msgstr "موارد دیگر"

#~ msgid "(This can be anything. You simply name it.)"
#~ msgstr ")هرچیزی می‌تواند باشد. فقط به آن نام دهید."

#~ msgid "Open an Existing Document"
#~ msgstr "باز کردن سند موجود"

#~ msgid "(You already have a KVocTrain document.)"
#~ msgstr ")از قبل یک سند KVocTrain دارید.("

#, fuzzy
#~| msgid ""
#~| "\n"
#~| "Please add a second language:"
#~ msgid "Please enter a name:"
#~ msgstr ""
#~ "\n"
#~ "لطفاً زبان دوم را اضافه کنید:‌"

#, fuzzy
#~| msgid "Assign the language '%1' to the selected column"
#~ msgid "Please enter a name for the second column:"
#~ msgstr "انتساب زبان »%1« به ستون برگزیده"

#, fuzzy
#~| msgid "&Translation"
#~ msgid "a translation"
#~ msgstr "&ترجمه‌ "

#, fuzzy
#~| msgid "Languages"
#~ msgid "Setup Languages"
#~ msgstr "زبانها"

#, fuzzy
#~| msgid "First Language"
#~ msgid "Language->Edit Languages"
#~ msgstr "زبان اول"

#~ msgid "Edit Properties for Original"
#~ msgstr "ویرایش ویژگیها برای اصل"

#~ msgid "Edit Properties of a Translation"
#~ msgstr "ویرایش ویژگیهای یک ترجمه"

#~ msgid "Edit vocabulary properties"
#~ msgstr "ویرایش ویژگیهای واژگان"

#~ msgid "&General"
#~ msgstr "&عمومی‌"

#~ msgid "Updating lesson indices..."
#~ msgstr "به‌‌‌‌روزرسانی نمایه‌‌‌‌های درس..."

#~ msgid "Updating tense indices..."
#~ msgstr "ددر حال به‌‌‌روزرسانی نمایه‌‌‌های زمان فعل..."

#~ msgctxt "usage (area) of an expression"
#~ msgid "Updating usage label indices..."
#~ msgstr "در حال به‌روزرسانی نمایه‌‌‌های برچسب کاربرد..."

#~ msgid "Not Queried"
#~ msgstr "پرس‌و‌جو نشده"

#~ msgid "Picture is Invalid"
#~ msgstr "عکس، نامعتبر است"

#~ msgid "No Picture Selected"
#~ msgstr "عکسی برگزیده نشده است"

#~ msgid "No Picture Selected..."
#~ msgstr "عکسی برگزیده نشده است..."

#~ msgid "No picture selected"
#~ msgstr "عکسی برگزیده نشده است"

#~ msgid "Picture is invalid"
#~ msgstr "عکس، نامعتبر است"

#~ msgid "File does not contain a valid graphics format\n"
#~ msgstr "پرونده حاوی یک قالب نگاره‌سازی معتبر نمی‌باشد\n"

#~ msgid "Language Settings"
#~ msgstr "تنظیمات زبان"

#~ msgid "The flag representing the language"
#~ msgstr "پرچمی که زبان را نمایش می‌دهد"

#~ msgid ""
#~ "The default flag representing the language is set here but you can choose "
#~ "another picture by clicking on the button."
#~ msgstr ""
#~ "پرچم پیش‌فرضی که زبان را نمایش می‌دهد در اینجا قرار داده می‌شود، اما با فشار "
#~ "دادن دکمه می‌توانید عکس دیگری انتخاب کنید."

#~ msgid "Describe the language in your own terms."
#~ msgstr "توصیف زبان با اصطلاحات خودتان."

#~ msgid ""
#~ "Here you can give the language code a descriptive name in your own "
#~ "language which is shown in the header buttons in the main view. "
#~ msgstr ""
#~ "در اینجا می‌توانید به زبان خودتان یک نام توصیفی به کد زبان بدهید، که در "
#~ "دکمه‌های سرآیند در نمای اصلی نمایش داده می‌‌شود."

#~ msgid "Lang&uage name:"
#~ msgstr "نام &زبان:‌"

#~ msgid ""
#~ "To add a language which is not listed in the menu, you must first define "
#~ "its properties in the general options dialog.\n"
#~ "\n"
#~ "Would you like to add a new language?"
#~ msgstr ""
#~ "برای پیوستن زبان جدیدی که در زیر گزینگان فهرست نمی‌شود، ابتدا باید دادۀ آن "
#~ "را در محاورۀ گزینگان عمومی اضافه کنید.\n"
#~ "\n"
#~ "می‌خواهید زبان جدیدی را اضافه کنید؟"

#~ msgid ""
#~ "You are about to delete a language permanently.\n"
#~ "Do you really want to delete '%1'?"
#~ msgstr ""
#~ "در شرف حذف کامل یک زبان هستید.\n"
#~ "واقعاً می‌خواهید »%1« را حذف کنید؟"

#~ msgid "Add a new language to the vocabulary"
#~ msgstr "افزودن زبان جدید به واژگان"

#~ msgid "&Original"
#~ msgstr "&اصلی‌"

#~ msgid "&%1. Translation"
#~ msgstr "&%1. ترجمه"

#~ msgid "Assign the language '%1' to the selected column"
#~ msgstr "انتساب زبان »%1« به ستون برگزیده"

#~ msgid "Permanently remove the language '%1' from the vocabulary"
#~ msgstr "حذف کامل زبان »%1« از واژگان"

#~ msgid ""
#~ "Please make sure that all languages you want to use are defined here."
#~ msgstr ""
#~ "لطفاً، مطمئن شوید که همه زبانهایی که می‌خواهید استفاده کنید در اینجا تعریف "
#~ "می‌شوند."

#~ msgid ""
#~ "Check the two letter list, if all languages you want to use are there. "
#~ msgstr ""
#~ "اگر همه زبانهایی که می‌خواهید استفاده کنید در اینجا هستند، دو حرف از فهرست "
#~ "را بررسی کنید. "

#~ msgid "Please set at least two languages up."
#~ msgstr "لطفاً، حداقل دو زبان را برپا کنید."

#~ msgid "Error:"
#~ msgstr "خطا:"

#~ msgid "Your categories"
#~ msgstr "دسته‌های شما"

#~ msgid "Now select titles for what you will be practicing."
#~ msgstr "اکنون عناوین آنچه می‌خواهید تمرین شوند را برگزینید."

#~ msgid "This could be something like \"Difficult Word\" and \"Meaning\"."
#~ msgstr "می‌توانید چیزی شبیه »واژه مشکل« و »معنی« باشد."

#~ msgid "First Category: "
#~ msgstr "دسته اول: "

#~ msgid ""
#~ "Please note that you can add more categories later. Use Vocabulary-"
#~ ">AppendLanguage to do that."
#~ msgstr ""
#~ "لطفاً، توجه کنید که می‌توانید دسته‌های بیشتری را بعداً اضافه کنید. برای این "
#~ "کار از واژگان-<پیوستن زبان استفاده کنید."

#~ msgid "Assign &Language"
#~ msgstr "انتساب &زبان‌"

#~ msgid "Lan&guage Properties..."
#~ msgstr "ویژگیهای &زبان‌..."

#~ msgid "Alternative language code"
#~ msgstr "کد متناوب زبان"

#~ msgid ""
#~ "Sometimes it may be useful to have a second language code because some "
#~ "languages have the usual short code and one or two longer codes."
#~ msgstr ""
#~ "گاهی اوقات ممکن است داشتن دومین کد زبان مفید باشد، زیرا بعضی زبانها کد "
#~ "کوتاه عادی و یک یا دو کد بلند‌تر دارند."

#~ msgid "Alte&rnative code:"
#~ msgstr "کد &متناوب:‌"

#~ msgid "Query"
#~ msgstr "پرس‌و‌‌جو"

#~ msgid "Query Settings"
#~ msgstr " تنظیمات‌ پرس‌‌‌و‌جو"

#~ msgid "&Vocabulary"
#~ msgstr "&واژگان‌‌"

#~ msgid "&Learning"
#~ msgstr "&یادگیری‌"

#~ msgid "Time Per Query"
#~ msgstr "زمان برای هر پرس‌و‌جو"

#~ msgid "Random Query Options"
#~ msgstr "گزینه‌های پرس‌و‌جوی تصادفی"

#~ msgid "Create Random &Query"
#~ msgstr "ایجاد &پرس‌و‌جوی تصادفی‌"

#~ msgctxt "state of a row"
#~ msgid "In Query"
#~ msgstr "در حالت پرس‌و‌جو"

#~ msgid "New lesson"
#~ msgstr "درس جدید"

#~ msgid "Resume &Query"
#~ msgstr "ازسرگیری &پرس‌و‌جو‌"

#~ msgid "Starting random query..."
#~ msgstr "در حال آغاز پرس‌و‌جوی تصادفی..."

#~ msgid "Document Options"
#~ msgstr "گزینه‌های سند"

#~ msgid "Allo&w sorting"
#~ msgstr "&اجازه برای مرتب‌سازی‌"

#~ msgctxt "usage (area) of an expression"
#~ msgid ""
#~ "This user-defined usage label could not be deleted\n"
#~ "because it is in use."
#~ msgstr ""
#~ "این برچسب کاربرد تعریف‌‌شدۀ کاربر را نمی‌توان حذف کرد\n"
#~ "زیرا در حال استفاده است."

#~ msgctxt "usage (area) of an expression"
#~ msgid "Deleting Usage Label"
#~ msgstr "حذف برچسب کاربرد"

#~ msgid "Am."
#~ msgstr "رسم آمریکایی"

#~ msgid "Americanism"
#~ msgstr "رسم آمریکایی"

#~ msgid "abbr."
#~ msgstr "اختصار"

#~ msgid "anat."
#~ msgstr "کالبد‌‌‌‌‌‌شناسی"

#~ msgid "astr."
#~ msgstr "   ستاره‌‌‌‌شناسی"

#~ msgid "astronomy"
#~ msgstr "ستاره‌شناسی"

#~ msgid "biol."
#~ msgstr "زیست‌شناسی"

#~ msgid "b.s."
#~ msgstr "حس بد"

#~ msgid "bad sense"
#~ msgstr "حس بد"

#~ msgid "contp."
#~ msgstr "تحقیرآمیز"

#~ msgid "contemptuously"
#~ msgstr "تحقیرآمیز"

#~ msgid "eccl."
#~ msgstr "مذهبی"

#~ msgid "ecclesiastical"
#~ msgstr "مذهبی"

#~ msgid "fig."
#~ msgstr "مجازی"

#~ msgid "geol."
#~ msgstr "زمین‌شناسی"

#~ msgid "icht."
#~ msgstr "ماهی‌‌‌‌شناسی"

#~ msgid "ichthyology"
#~ msgstr "ماهی‌‌‌شناسی"

#~ msgid "ifml."
#~ msgstr "بی‌قاعده"

#~ msgid "iro."
#~ msgstr "کنایه‌‌‌دار"

#~ msgid "irr."
#~ msgstr "بی‌قاعده"

#~ msgid "irregular"
#~ msgstr "بی‌‌‌قاعده"

#~ msgid "lit."
#~ msgstr "ادبی"

#~ msgid "metall."
#~ msgstr "فلزکاری"

#~ msgid "metallurgy"
#~ msgstr "فلزکاری"

#~ msgid "meteor."
#~ msgstr "هواشناسی"

#~ msgid "meteorology"
#~ msgstr "هواشناسی"

#~ msgid "min."
#~ msgstr "معدن‌‌‌‌شناسی"

#~ msgid "mineralogy"
#~ msgstr "ی   معدن‌‌‌‌شناسی"

#~ msgid "mot."
#~ msgstr "موتوری"

#~ msgid "motoring"
#~ msgstr "موتوری"

#~ msgid "mount."
#~ msgstr "کوه‌نوردی"

#~ msgid "mountaineering"
#~ msgstr "کوه‌‌‌‌نوردی"

#~ msgid "myth."
#~ msgstr "اسطوره‌شناسی"

#~ msgctxt "abbreviation: proper name"
#~ msgid "npr."
#~ msgstr "نام مناسب"

#~ msgid "opt."
#~ msgstr "نورشناسی"

#~ msgid "optics"
#~ msgstr "نورشناسی"

#~ msgid "orn."
#~ msgstr "پرنده‌‌‌شناسی"

#~ msgid "ornithology"
#~ msgstr "پرنده‌‌شناسی"

#~ msgid "o.s."
#~ msgstr "خود"

#~ msgid "oneself"
#~ msgstr "خود"

#~ msgid "pers."
#~ msgstr "شخص"

#~ msgid "person"
#~ msgstr "شخص"

#~ msgid "parl."
#~ msgstr "مجلسی"

#~ msgid "parliamentary"
#~ msgstr "مجلسی"

#~ msgid "pharm."
#~ msgstr "داروسازی"

#~ msgid "phls."
#~ msgstr "فلسفه"

#~ msgid "phot."
#~ msgstr "عکاسی"

#~ msgid "photography"
#~ msgstr "عکاسی"

#~ msgid "phys."
#~ msgstr "فیزیک"

#~ msgid "physiol."
#~ msgstr "فیزیولوژی"

#~ msgid "pl."
#~ msgstr "جمع"

#~ msgid "plural"
#~ msgstr "جمع"

#~ msgid "poet."
#~ msgstr "شعر"

#~ msgid "poetry"
#~ msgstr "شعر"

#~ msgid "pol."
#~ msgstr "علم سیاست"

#~ msgid "politics"
#~ msgstr "علم سیاست"

#~ msgid "prov."
#~ msgstr "گویش یا لهجۀ محلی"

#~ msgid "provincialism"
#~ msgstr "گویش یا لهجۀ محلی"

#~ msgid "psych."
#~ msgstr "روانشناسی"

#~ msgid "psychology"
#~ msgstr "روانشناسی"

#~ msgid "rhet."
#~ msgstr "قدرت بیان"

#~ msgid "surv."
#~ msgstr "بازدید"

#~ msgid "surveying"
#~ msgstr "بازدید"

#~ msgid "tel."
#~ msgstr "ارتباط تلگرافی"

#~ msgid "teleph."
#~ msgstr "ارتباط تلفنی"

#~ msgid "telephony"
#~ msgstr "ارتباط تلفنی"

#~ msgid "thea."
#~ msgstr "تماشاخانه"

#~ msgid "theater"
#~ msgstr "تماشاخانه"

#~ msgid "typ."
#~ msgstr "فن چاپ"

#~ msgid "typography"
#~ msgstr "فن چاپ"

#~ msgid "univ."
#~ msgstr "دانشگاه"

#~ msgid "university"
#~ msgstr "دانشگاه"

#~ msgid "vet."
#~ msgstr "دامپزشکی"

#~ msgid "veterinary medicine"
#~ msgstr "دامپزشکی"

#~ msgid "zo."
#~ msgstr "جانورشناسی"

#~ msgid "Merging file..."
#~ msgstr "در حال ادغام پرونده..."

#~ msgid "Merge Vocabulary File"
#~ msgstr "ادغام پروندۀ واژگان"

#~ msgid "Invokes input dialog for lessons"
#~ msgstr "محاورۀ ورودی برای درسها را احضار می‌کند"

#~ msgid "Type Description"
#~ msgstr "توصیف نوع"

#~ msgid "Deleting Type Description"
#~ msgstr "حذف توصیف نوع"

#~ msgid "Updating type indices..."
#~ msgstr "ددر حال به‌‌‌‌روزرسانی نمایه‌‌‌های نوع..."

#~ msgid "Name"
#~ msgstr "نام"

#~ msgid "Adverb"
#~ msgstr "قید"

#~ msgid "Pronoun"
#~ msgstr "ضمیر"

#~ msgid "Phrase"
#~ msgstr "عبارت"

#~ msgid "Numeral"
#~ msgstr "رقمی"

#~ msgid "Conjunction"
#~ msgstr "حرف ربط"

#~ msgid "Preposition"
#~ msgstr "حرف اضافه"

#, fuzzy
#~| msgid "informal"
#~ msgid "Informal"
#~ msgstr "بی‌‌‌قاعده"

#, fuzzy
#~| msgid "figuratively"
#~ msgid "Figuratively"
#~ msgstr "مجازی"

#~ msgid "Numeral Ordinal"
#~ msgstr "عدد ترتیبی رقمی"

#~ msgid "Numeral Cardinal"
#~ msgstr "عدد اصلی رقمی"

#~ msgid "Article Definite"
#~ msgstr "حرف تعریف معرفه"

#~ msgid "Article Indefinite"
#~ msgstr "حرف تعریف نکره"

#~ msgid "Verb Regular"
#~ msgstr "فعل باقاعده"

#~ msgid "Verb Irregular"
#~ msgstr "فعل بی‌قاعده"

#~ msgid "Pronoun Possessive"
#~ msgstr "ضمیر ملکی"

#~ msgid "Pronoun Personal"
#~ msgstr "ضمیر شخصی"

#~ msgid "Noun Male"
#~ msgstr "اسم مذکر"

#~ msgid "Noun Neutral"
#~ msgstr "اسم خنثی"

#~ msgid "Co&mmon"
#~ msgstr "&مشترک‌"

#~ msgid "&Multiple Choice"
#~ msgstr "انتخاب &چندگانه‌"

#~ msgid "Con&jugation"
#~ msgstr "&صرف‌"

#~ msgid "Properties to Original"
#~ msgstr "ويژگیها در اصل"

#~ msgid "Default lesson"
#~ msgstr "درس پیش‌فرض"

#~ msgid "Download Directory"
#~ msgstr "بارگیری فهرست راهنما"

#~ msgid "The directory where downloaded vocabularies will be saved."
#~ msgstr "بارگیری فهرست راهنما در جایی که واژگان بارگیری‌شده، ذخیره خواهند شد."

#~ msgid ""
#~ "Vocabularies downloaded using \"Get New Vocabularies...\" will be saved "
#~ "in this directory."
#~ msgstr ""
#~ "واژگاه بارگیری‌شده با استفاده از »گرفتن واژگان جدید...« در این فهرست راهنما "
#~ "ذخیره می‌شوند."