~ubuntu-branches/ubuntu/quantal/kde-l10n-tg/quantal-proposed

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
# translation of kcachegrind.po to Tajik
# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
# 2004, infoDev, a World Bank organization
# 2004, Khujand Computer Technologies, Inc.
# 2004, Youth Opportunities NGO
# Roger V Kovacs, <rkovacs@khujand.org>, 2004.
# Victor Ibragimov <youth_opportunities@tajik.net>, 2004.
# VATANSHOEV AKBAR <vatanshoevAkbar@hotmail.com>, 2004.
# Marina Kolucheva <youth_opportunities@tajik.net>, 2004.
# Victor Ibragimov <youth_opportunities@tajikngo.org>, 2005.
msgid ""
msgstr ""
"Project-Id-Version: kcachegrind\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2012-01-29 03:15+0100\n"
"PO-Revision-Date: 2005-09-16 16:22+0500\n"
"Last-Translator: Victor Ibragimov <youth_opportunities@tajikngo.org>\n"
"Language-Team: Tajik\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
"* НПО \"Имкониятҳои ҷавонон\" * Tajik Linux Users Group * Young Ladies Tajik "
"Linux Users Group * http://www.khujand.org * http://www.tajikngo.org * "
"http://www.yo-tj.org * Роҷер Ковакс, Виктор Ибрагимов, Марина Колючева, "
"Евгения Фатхеева, Акмал Ватаншоев, Абророва Хиромон, Акмал Саломов, Акбар "
"Ватаншоев, Фарход Ахмедов, Эркин Пулатов, Гулшод Довуди, Гулноз Курбанова, "
"Зарина Косымова, Шухрат Лоиқов, Сурайё Ҷурахонова *"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
"rkovacs@khujand.org, youth_opportunities@tajikngo.org, MarinaKL@tajikngo.org"

#. i18n: file: kcachegrind/dumpselectionbase.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, DumpSelectionBase)
#: rc.cpp:5 kcachegrind/toplevel.cpp:300 kcachegrind/toplevel.cpp:523
msgid "Profile Dumps"
msgstr "Нусхабардорҳои тахассус"

#. i18n: file: kcachegrind/dumpselectionbase.ui:24
#. i18n: ectx: property (text), widget (Q3ListView, listView1)
#: rc.cpp:8
msgid "Target"
msgstr "Мақсад"

#. i18n: file: kcachegrind/dumpselectionbase.ui:46
#. i18n: ectx: property (text), widget (Q3ListView, listView1)
#: rc.cpp:11
msgid "Time"
msgstr "Вақт"

#. i18n: file: kcachegrind/dumpselectionbase.ui:57
#. i18n: ectx: property (text), widget (Q3ListView, listView1)
#: rc.cpp:14
msgid "Path"
msgstr "Роҳча"

#. i18n: file: kcachegrind/dumpselectionbase.ui:70
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:17
#, fuzzy
msgid "Options"
msgstr "Параметр"

#. i18n: file: kcachegrind/dumpselectionbase.ui:87
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:20
msgid "Target command:"
msgstr "Фармони мақсад:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:100
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:23
msgid "Profiler options:"
msgstr "Интихобҳои тахассус:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:111
#. i18n: ectx: property (text), widget (Q3ListView, listView3)
#: rc.cpp:26
msgid "Option"
msgstr "Параметр"

#. i18n: file: kcachegrind/dumpselectionbase.ui:122
#. i18n: ectx: property (text), widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:650
#. i18n: ectx: property (text), widget (Q3ListView, listView4_3)
#: rc.cpp:29 rc.cpp:140
msgid "Value"
msgstr "Қимат"

#. i18n: file: kcachegrind/dumpselectionbase.ui:133
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:32
msgid "Trace"
msgstr "Пай"

#. i18n: file: kcachegrind/dumpselectionbase.ui:146
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:730
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:35 rc.cpp:158
msgid "Jumps"
msgstr "Париданҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:160
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:38
msgid "Instructions"
msgstr "Дастурҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:175
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:745
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:41 rc.cpp:161
msgid "Events"
msgstr "Воқеъа"

#. i18n: file: kcachegrind/dumpselectionbase.ui:188
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:44
msgid "Full Cache"
msgstr "Захираи махфӣ пур"

#. i18n: file: kcachegrind/dumpselectionbase.ui:202
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:47
msgid "Custom"
msgstr "Оддӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:217
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:50
msgid "Collect"
msgstr "Ҷамъ кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:230
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:53
#, fuzzy
#| msgid "Start"
msgid "At Startup"
msgstr "Сар кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:244
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:56
msgid "While In"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:259
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:59
msgid "Skip"
msgstr "Рад кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:272
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:62
msgid "PLT"
msgstr "PLT"

#. i18n: file: kcachegrind/dumpselectionbase.ui:286
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:898
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:65 rc.cpp:194
msgid "Function"
msgstr "Функсия"

#. i18n: file: kcachegrind/dumpselectionbase.ui:301
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:68
msgid "Dump Profile"
msgstr "Тахассуси нусхабардорӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:314
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:71
msgid "Every BBs"
msgstr "Ҳамаи BB-ҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:328
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#. i18n: file: kcachegrind/dumpselectionbase.ui:370
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:74 rc.cpp:83
msgid "On Entering"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:342
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:77
msgid "On Leaving"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:357
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:80
msgid "Zero Events"
msgstr "Нолто воқеа"

#. i18n: file: kcachegrind/dumpselectionbase.ui:385
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:86
msgid "Separate"
msgstr "Ҷудо кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:398
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:89
msgid "Threads"
msgstr "Бандҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:412
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:92
msgid "Recursions"
msgstr "Бозгаштҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:426
#. i18n: ectx: property (text), item, widget (Q3ListView, listView3)
#: rc.cpp:95
msgid "Call Chain"
msgstr "Паёпаӣ дархост"

#. i18n: file: kcachegrind/dumpselectionbase.ui:452
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#: rc.cpp:98
#, fuzzy
#| msgid "Profiler options:"
msgid "Custom profiler options:"
msgstr "Интихобҳои тахассус:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:486
#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#: rc.cpp:101
#, fuzzy
#| msgid "Dump Profile"
msgid "Run New Profile"
msgstr "Тахассуси нусхабардорӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:496
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:104
msgid "Info"
msgstr "Маълумот"

#. i18n: file: kcachegrind/dumpselectionbase.ui:505
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: rc.cpp:107
msgid "Dump reason:"
msgstr "Тахассуси далел:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:518
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#: rc.cpp:110
msgid "Event summary:"
msgstr "Натиҷаи ҷамбаст:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:529
#. i18n: ectx: property (text), widget (Q3ListView, listView4)
#: rc.cpp:113
msgid "Name"
msgstr "Ном"

#. i18n: file: kcachegrind/dumpselectionbase.ui:540
#. i18n: ectx: property (text), widget (Q3ListView, listView4)
#: rc.cpp:116
msgid "Sum"
msgstr "Натиҷа"

#. i18n: file: kcachegrind/dumpselectionbase.ui:554
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:119
msgid "Miscellaneous:"
msgstr "Гуногун:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:588
#. i18n: ectx: property (text), widget (QPushButton, pushButton6)
#: rc.cpp:122
msgid "Show"
msgstr "Нишон додан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:595
#. i18n: ectx: property (text), widget (QPushButton, pushButton5)
#: rc.cpp:125
msgid "Compare"
msgstr "Муқоиса кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:605
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:128
msgid "State"
msgstr "Ҳолат"

#. i18n: file: kcachegrind/dumpselectionbase.ui:619
#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#: rc.cpp:131
msgid "Update"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:626
#. i18n: ectx: property (text), widget (QCheckBox, checkBox1)
#: rc.cpp:134
msgid "Every [s]:"
msgstr "Ҳама:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:639
#. i18n: ectx: property (text), widget (Q3ListView, listView4_3)
#: rc.cpp:137
msgid "Counter"
msgstr "Шуморанда"

#. i18n: file: kcachegrind/dumpselectionbase.ui:661
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:143
#, fuzzy
#| msgid "Dump Profile"
msgid "Dumps Done"
msgstr "Тахассуси нусхабардорӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:675
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:146
#, fuzzy
#| msgid "Collect"
msgid "Is Collecting"
msgstr "Ҷамъ кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:689
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:149
msgid "Executed"
msgstr "Иҷро кард"

#. i18n: file: kcachegrind/dumpselectionbase.ui:702
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:152
msgid "Basic Blocks"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:716
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:155
msgid "Calls"
msgstr "Алоқаҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:758
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:164
msgid "Ir"
msgstr ""

#. i18n: file: kcachegrind/dumpselectionbase.ui:773
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:167
msgid "Distinct"
msgstr "Саҳеҳ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:786
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:170
msgid "ELF Objects"
msgstr "Объектҳои ELF"

#. i18n: file: kcachegrind/dumpselectionbase.ui:800
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:173
msgid "Functions"
msgstr "Функсияҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:814
#. i18n: ectx: property (text), item, widget (Q3ListView, listView4_3)
#: rc.cpp:176
#, fuzzy
#| msgid "Counter"
msgid "Contexts"
msgstr "Шуморанда"

#. i18n: file: kcachegrind/dumpselectionbase.ui:845
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:179
msgid "Stack trace:"
msgstr "Паи анбора:"

#. i18n: file: kcachegrind/dumpselectionbase.ui:855
#. i18n: ectx: property (text), widget (QCheckBox, checkBox2)
#: rc.cpp:182
msgid "Sync."
msgstr "Синхр."

#. i18n: file: kcachegrind/dumpselectionbase.ui:865
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:185
msgid "#"
msgstr "#"

#. i18n: file: kcachegrind/dumpselectionbase.ui:876
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:188
msgid "Incl."
msgstr "Шомил."

#. i18n: file: kcachegrind/dumpselectionbase.ui:887
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:191
#, fuzzy
#| msgid "Caller"
msgid "Called"
msgstr "Дархосткунанда"

#. i18n: file: kcachegrind/dumpselectionbase.ui:909
#. i18n: ectx: property (text), widget (Q3ListView, listView7)
#: rc.cpp:197
msgid "Location"
msgstr "Ҷойгиршавӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:928
#. i18n: ectx: property (text), widget (QPushButton, pushButton7)
#: rc.cpp:200
msgid "Start"
msgstr "Сар кардан"

#. i18n: file: kcachegrind/dumpselectionbase.ui:951
#. i18n: ectx: property (text), widget (QPushButton, pushButton6_2)
#: rc.cpp:203
msgid "Zero"
msgstr "Нул"

#. i18n: file: kcachegrind/dumpselectionbase.ui:958
#. i18n: ectx: property (text), widget (QPushButton, pushButton4)
#: rc.cpp:206
msgid "Dump"
msgstr "Нусхабардорӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:968
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:209
msgid "Messages"
msgstr "Хабарҳо"

#. i18n: file: kcachegrind/dumpselectionbase.ui:985
#. i18n: ectx: property (text), widget (QPushButton, pushButton9)
#: rc.cpp:212
msgid "Kill Run"
msgstr "Нест кардани сардиҳӣ"

#. i18n: file: kcachegrind/dumpselectionbase.ui:1008
#. i18n: ectx: property (text), widget (QPushButton, pushButton8)
#: rc.cpp:215
#, fuzzy
msgid "Clear"
msgstr "Дархосткунанда"

#. i18n: file: kcachegrind/kcachegrindui.rc:4
#. i18n: ectx: Menu (file)
#: rc.cpp:218
#, fuzzy
msgid "&File"
msgstr "Файл:"

#. i18n: file: kcachegrind/kcachegrindui.rc:10
#. i18n: ectx: Menu (view)
#: rc.cpp:221
#, fuzzy
msgid "&View"
msgstr "Файл:"

#. i18n: file: kcachegrind/kcachegrindui.rc:15
#. i18n: ectx: Menu (layouts)
#: rc.cpp:224
msgid "&Layout"
msgstr "&Схема"

#. i18n: file: kcachegrind/kcachegrindui.rc:33
#. i18n: ectx: Menu
#: rc.cpp:227
msgid "Sidebars"
msgstr ""

#. i18n: file: kcachegrind/kcachegrindui.rc:42
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:230
msgid "Main Toolbar"
msgstr ""

#. i18n: file: kcachegrind/kcachegrindui.rc:54
#. i18n: ectx: ToolBar (stateToolBar)
#: rc.cpp:233
msgid "State Toolbar"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:14
#. i18n: ectx: property (windowTitle), widget (QDialog, ConfigDlgBase)
#: rc.cpp:236
#, fuzzy
msgid "Configuration"
msgstr "Танзимоти KCachegrind"

#. i18n: file: kcachegrind/configdlgbase.ui:24
#. i18n: ectx: attribute (title), widget (QWidget, tab1)
#: rc.cpp:239
msgid "General"
msgstr "Умумӣ"

#. i18n: file: kcachegrind/configdlgbase.ui:34
#. i18n: ectx: property (text), widget (QLabel, TextLabel5)
#: rc.cpp:242
msgid "Maximum number of items in lists:"
msgstr "Рақами ниҳоят калони чизҳо дар рӯйхатҳо:"

#. i18n: file: kcachegrind/configdlgbase.ui:44
#. i18n: ectx: property (text), widget (QLabel, TextLabel3)
#: rc.cpp:245
msgid "Truncate symbols in tooltips and context menus"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:70
#. i18n: ectx: property (text), widget (QLabel, TextLabel2)
#: rc.cpp:248
msgid "when more than:"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:80
#. i18n: ectx: property (text), widget (QLabel, TextLabel2_2)
#: rc.cpp:251
msgid "when longer than:"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:90
#. i18n: ectx: property (text), widget (QLabel, TextLabel4_3)
#: rc.cpp:254
msgid "Precision of percentage values:"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:134
#. i18n: ectx: property (toolTip), widget (KIntSpinBox, maxListEdit)
#: rc.cpp:257
msgid "The Maximum Number of List Items should be below 500."
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:158
#. i18n: ectx: property (text), widget (QLabel, TextLabel1)
#: rc.cpp:260
#, fuzzy
msgid "Cost Item Colors"
msgstr "Ҳисоб кардани чиз"

#. i18n: file: kcachegrind/configdlgbase.ui:176
#. i18n: ectx: property (text), widget (QCheckBox, fileCheck)
#. i18n: file: kcachegrind/configdlgbase.ui:210
#. i18n: ectx: property (text), widget (QCheckBox, classCheck)
#. i18n: file: kcachegrind/configdlgbase.ui:224
#. i18n: ectx: property (text), widget (QCheckBox, objectCheck)
#: rc.cpp:263 rc.cpp:272 rc.cpp:275
msgid "Automatic"
msgstr "Худкорона"

#. i18n: file: kcachegrind/configdlgbase.ui:183
#. i18n: ectx: property (text), widget (QLabel, TextLabel4)
#: rc.cpp:266
msgid "Object:"
msgstr "Объект:"

#. i18n: file: kcachegrind/configdlgbase.ui:193
#. i18n: ectx: property (text), widget (QLabel, TextLabel4_2_2)
#: rc.cpp:269
msgid "Class:"
msgstr "Синф:"

#. i18n: file: kcachegrind/configdlgbase.ui:231
#. i18n: ectx: property (text), widget (QLabel, TextLabel4_2)
#: rc.cpp:278
msgid "File:"
msgstr "Файл:"

#. i18n: file: kcachegrind/configdlgbase.ui:312
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
#: rc.cpp:281
#, fuzzy
msgid "Annotations"
msgstr "Иҷозат додани даврзанӣ"

#. i18n: file: kcachegrind/configdlgbase.ui:320
#. i18n: ectx: property (text), widget (QLabel, TextLabel4_3_2)
#: rc.cpp:284
msgid "Context lines in annotations:"
msgstr ""

#. i18n: file: kcachegrind/configdlgbase.ui:341
#. i18n: ectx: property (text), widget (QLabel, TextLabel1_2)
#: rc.cpp:287
msgid "Source Folders"
msgstr "Феҳристҳои сарчашма"

#. i18n: file: kcachegrind/configdlgbase.ui:355
#. i18n: ectx: property (text), widget (KPushButton, addDirButton)
#: rc.cpp:290
#, fuzzy
#| msgid "Add..."
msgid "Add"
msgstr "Илова кардан..."

#. i18n: file: kcachegrind/configdlgbase.ui:362
#. i18n: ectx: property (text), widget (KPushButton, deleteDirButton)
#: rc.cpp:293
#, fuzzy
msgid "Delete"
msgstr "Интихоб кардан"

#. i18n: file: kcachegrind/configdlgbase.ui:400
#. i18n: ectx: property (text), widget (QTreeWidget, dirList)
#: rc.cpp:296
msgid "Object / Related Source Base"
msgstr ""

#: kcachegrind/main.cpp:40
msgid "KCachegrind"
msgstr "KCachegrind"

#: kcachegrind/main.cpp:42
msgid "KDE Frontend for Callgrind/Cachegrind"
msgstr ""

#: kcachegrind/main.cpp:44
#, fuzzy
#| msgid "(C) 2002, 2003, 2004"
msgid "(C) 2002 - 2011"
msgstr "(C) 2002, 2003, 2004"

#: kcachegrind/main.cpp:46
msgid "Josef Weidendorfer"
msgstr ""

#: kcachegrind/main.cpp:47
msgid "Author/Maintainer"
msgstr "Муаллиф/Дастгиркунанда"

#: kcachegrind/main.cpp:54
msgid "Show information of this trace"
msgstr "Нишон додани маълумоти ин пай"

#: kcachegrind/toplevel.cpp:269 kcachegrind/toplevel.cpp:497
msgid "Parts Overview"
msgstr "Аз назар гузарондани қисмҳо"

#: kcachegrind/toplevel.cpp:278
msgid "Top Cost Call Stack"
msgstr "Анбораи алоқаи нархи боло"

#: kcachegrind/toplevel.cpp:280
msgid ""
"<b>The Top Cost Call Stack</b><p>This is a purely fictional 'most probable' "
"call stack. It is built up by starting with the current selected function "
"and adds the callers/callees with highest cost at the top and to bottom.</"
"p><p>The <b>Cost</b> and <b>Calls</b> columns show the cost used for all "
"calls from the function in the line above.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:294
msgid "Flat Profile"
msgstr "Тахассуси хона"

#: kcachegrind/toplevel.cpp:307
msgid ""
"<b>Profile Dumps</b><p>This dockable shows in the top part the list of "
"loadable profile dumps in all subdirectories of: <ul><li>current working "
"directory of KCachegrind, i.e. where it was started from, and </li><li>the "
"default profile dump directory given in the configuration.</li></ul> The "
"list is sorted according to the target command profiled in the corresponding "
"dump.</p><p>On selecting a profile dump, information for it is shown in the "
"bottom area of the dockable: <ul><li><b>Options</b> allows you to view the "
"profiled command and profile options of this dump. By changing any item, a "
"new (yet unexisting) profile template is created. Press <b>Run Profile</b> "
"to start a profile run with these options in the background. </"
"li><li><b>Info</b> gives detailed info on the selected dump like event cost "
"summary and properties of the simulated cache. </li><li><b>State</b> is only "
"available for current happening profiles runs. Press <b>Update</b> to see "
"different counters of the run, and a stack trace of the current position in "
"the program profiled. Check the <b>Every</b> option to let KCachegrind "
"regularly poll these data. Check the <b>Sync</b> option to let the dockable "
"activate the top function in the current loaded dump.</li></ul></p>"
msgstr ""

#: kcachegrind/toplevel.cpp:378
msgid "&Duplicate"
msgstr "&Такроран иҷро кардан"

#: kcachegrind/toplevel.cpp:381
msgid ""
"<b>Duplicate Current Layout</b><p>Make a copy of the current layout.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:386
msgid "&Remove"
msgstr ""

#: kcachegrind/toplevel.cpp:388
msgid ""
"<b>Remove Current Layout</b><p>Delete current layout and make the previous "
"active.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:393
msgid "&Go to Next"
msgstr "&Гузаштан ба оянда"

#: kcachegrind/toplevel.cpp:396
msgid "Go to Next Layout"
msgstr "Гузаштан ба схемаи оянда"

#: kcachegrind/toplevel.cpp:400
msgid "&Go to Previous"
msgstr "&Гузаштан ба қаблӣ"

#: kcachegrind/toplevel.cpp:403
msgid "Go to Previous Layout"
msgstr "Гузаштан ба схемаи қаблӣ"

#: kcachegrind/toplevel.cpp:407
msgid "&Restore to Default"
msgstr "&Барқарор кардан то пешфарз"

#: kcachegrind/toplevel.cpp:409
msgid "Restore Layouts to Default"
msgstr "Барқарор кардани схемаҳо ба пешфарзӣ"

#: kcachegrind/toplevel.cpp:413
msgid "&Save as Default"
msgstr "&Нигоҳ доштан ҳамчун пешфарз"

#: kcachegrind/toplevel.cpp:415
msgid "Save Layouts as Default"
msgstr "Нигоҳ доштани схемаҳо ҳамчун пешфарзӣ"

#: kcachegrind/toplevel.cpp:426
msgid "<b>New</b><p>Open new empty KCachegrind window.</p>"
msgstr "<b>Нав</b><p>Кушодани тирезаи нави холии KCachegrind.</p>"

#: kcachegrind/toplevel.cpp:430
msgid "&Add..."
msgstr "&Илова кардан..."

#: kcachegrind/toplevel.cpp:432
msgid ""
"<b>Add Profile Data</b><p>This opens an additional profile data file in the "
"current window.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:438
msgctxt "Reload a document"
msgid "&Reload"
msgstr ""

#: kcachegrind/toplevel.cpp:441
msgid "<b>Reload Profile Data</b><p>This loads any new created parts, too.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:446
msgid "&Export Graph"
msgstr "&Содир кардани нақша"

#: kcachegrind/toplevel.cpp:449
msgid ""
"<b>Export Call Graph</b><p>Generates a file with extension .dot for the "
"tools of the GraphViz package.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:457
msgid "&Force Dump"
msgstr "&Нуфузи нусхабардорӣ"

#: kcachegrind/toplevel.cpp:460
msgid ""
"<b>Force Dump</b><p>This forces a dump for a Callgrind profile run in the "
"current directory. This action is checked while KCachegrind looks for the "
"dump. If the dump is finished, it automatically reloads the current trace. "
"If this is the one from the running Callgrind, the new created trace part "
"will be loaded, too.</p><p>Force dump creates a file 'callgrind.cmd', and "
"checks every second for its existence. A running Callgrind will detect this "
"file, dump a trace part, and delete 'callgrind.cmd'. The deletion is "
"detected by KCachegrind, and it does a Reload. If there is <em>no</em> "
"Callgrind running, press 'Force Dump' again to cancel the dump request. This "
"deletes 'callgrind.cmd' itself and stops polling for a new dump.</p><p>Note: "
"A Callgrind run <em>only</em> detects existence of 'callgrind.cmd' when "
"actively running a few milliseconds, i.e. <em>not</em> sleeping. Tip: For a "
"profiled GUI program, you can awake Callgrind e.g. by resizing a window of "
"the program.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:485
msgid ""
"<b>Open Profile Data</b><p>This opens a profile data file, with possible "
"multiple parts</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:500
msgid "Show/Hide the Parts Overview Dockable"
msgstr "Нишон додани/Пинҳон кардани кӯтоҳкунии аз назаргузаронии қисмҳо"

#: kcachegrind/toplevel.cpp:505
msgid "Call Stack"
msgstr "Анбораи алоқа"

#: kcachegrind/toplevel.cpp:508
msgid "Show/Hide the Call Stack Dockable"
msgstr "Нишон додани/Пинҳон кардани кӯтоҳкунии анбораи алоқа"

#: kcachegrind/toplevel.cpp:513
msgid "Function Profile"
msgstr "Тахассуси функсия"

#: kcachegrind/toplevel.cpp:516
msgid "Show/Hide the Function Profile Dockable"
msgstr "Нишон додани/Пинҳон кардани кӯтоҳкунии тахассуси функсия"

#: kcachegrind/toplevel.cpp:524
msgid "Show/Hide the Profile Dumps Dockable"
msgstr ""

#: kcachegrind/toplevel.cpp:531
#, fuzzy
#| msgid "(active)"
msgid "Relative"
msgstr "(фаъол)"

#: kcachegrind/toplevel.cpp:533
msgid "Show relative instead of absolute costs"
msgstr "Ба ҷои нисбият нархҳои аслиро нишон диҳед"

#: kcachegrind/toplevel.cpp:539
msgid "Relative to Parent"
msgstr ""

#: kcachegrind/toplevel.cpp:542
msgid "Show percentage costs relative to parent"
msgstr ""

#: kcachegrind/toplevel.cpp:546
msgid ""
"<b>Show percentage costs relative to parent</b><p>If this is switched off, "
"percentage costs are always shown relative to the total cost of the profile "
"part(s) that are currently browsed. By turning on this option, percentage "
"cost of shown cost items will be relative to the parent cost item.</"
"p><ul><table><tr><td><b>Cost Type</b></td><td><b>Parent Cost</b></td></"
"tr><tr><td>Function Cumulative</td><td>Total</td></tr><tr><td>Function Self</"
"td><td>Function Group (*) / Total</td></tr><tr><td>Call</td><td>Function "
"Inclusive</td></tr><tr><td>Source Line</td><td>Function Inclusive</td></tr></"
"table></ul><p>(*) Only if function grouping is switched on (e.g. ELF object "
"grouping).</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:563
#, fuzzy
#| msgid "Do Cycle Detection"
msgid "Cycle Detection"
msgstr "Иҷро кардани бозёбии давр"

#: kcachegrind/toplevel.cpp:566
msgid ""
"<b>Detect recursive cycles</b><p>If this is switched off, the treemap "
"drawing will show black areas when a recursive call is made instead of "
"drawing the recursion ad infinitum. Note that the size of black areas often "
"will be wrong, as inside recursive cycles the cost of calls cannot be "
"determined; the error is small, however, for false cycles (see "
"documentation).</p><p>The correct handling for cycles is to detect them and "
"collapse all functions of a cycle into an artificial function, which is done "
"when this option is selected. Unfortunately, with GUI applications, this "
"often will lead to huge false cycles, making the analysis impossible; "
"therefore, there is the option to switch this off.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:582
msgid "Shorten Templates"
msgstr ""

#: kcachegrind/toplevel.cpp:584
msgid "Hide Template Parameters in C++ Symbols"
msgstr ""

#: kcachegrind/toplevel.cpp:585
msgid ""
"<b>Hide Template Parameters in C++ Symbols</b><p>If this is switched on, "
"every symbol displayed will have any C++ template parameters hidden, just "
"showing &lt;&gt; instead of a potentially nested template parameter.</"
"p><p>In this mode, you can hover the mouse pointer over the activated symbol "
"label to show a tooltip with the unabbreviated symbol.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:602 kcachegrind/toplevel.cpp:643
msgid "Go back in function selection history"
msgstr ""

#: kcachegrind/toplevel.cpp:608 kcachegrind/toplevel.cpp:655
msgid "Go forward in function selection history"
msgstr ""

#: kcachegrind/toplevel.cpp:614 kcachegrind/toplevel.cpp:628
msgid ""
"<b>Go Up</b><p>Go to last selected caller of current function. If no caller "
"was visited, use that with highest cost.</p>"
msgstr ""

#: kcachegrind/toplevel.cpp:620
msgid "&Up"
msgstr "&Ба боло"

#: kcachegrind/toplevel.cpp:661 kcachegrind/toplevel.cpp:1516
msgid "Primary Event Type"
msgstr "Навъи воқеъаи асосӣ"

#: kcachegrind/toplevel.cpp:662
msgid "Select primary event type of costs"
msgstr "Интихоб кардани навъи воқеъаи асосӣ аз нархҳо"

#: kcachegrind/toplevel.cpp:684 kcachegrind/toplevel.cpp:1521
msgid "Secondary Event Type"
msgstr "Навъи воқеъаи миёна"

#: kcachegrind/toplevel.cpp:685
msgid "Select secondary event type for cost e.g. shown in annotations"
msgstr ""

#: kcachegrind/toplevel.cpp:695
msgid "Grouping"
msgstr "Ба гурӯҳҳо ҷудокунӣ"

#: kcachegrind/toplevel.cpp:697
msgid "Select how functions are grouped into higher level cost items"
msgstr ""

#: kcachegrind/toplevel.cpp:703
msgid "(No Grouping)"
msgstr "(Ба гурӯҳҳо ҷудокунӣ нашуд)"

#: kcachegrind/toplevel.cpp:715
msgid "Split"
msgstr "Ҷудо кардан"

#: kcachegrind/toplevel.cpp:718
msgid "Show two information panels"
msgstr "Нишон додани ду пайраҳаи ахборот"

#: kcachegrind/toplevel.cpp:724
msgid "Split Horizontal"
msgstr "Ҷудо кардани хати уфуқӣ"

#: kcachegrind/toplevel.cpp:727
msgid "Change Split Orientation when main window is split."
msgstr ""

#: kcachegrind/toplevel.cpp:929 kcachegrind/toplevel.cpp:987
msgid ""
"cachegrind.out* callgrind.out*|Callgrind Profile Data\n"
"*|All Files"
msgstr ""

#: kcachegrind/toplevel.cpp:931
msgid "Select Callgrind Profile Data"
msgstr ""

#: kcachegrind/toplevel.cpp:949 kcachegrind/toplevel.cpp:978
#, kde-format
msgid ""
"Could not open the file \"%1\". Check it exists and you have enough "
"permissions to read it."
msgstr ""

#: kcachegrind/toplevel.cpp:989
msgid "Add Callgrind Profile Data"
msgstr ""

#: kcachegrind/toplevel.cpp:1140 kcachegrind/toplevel.cpp:1469
msgid "(Hidden)"
msgstr "(Пинҳонкарда)"

#: kcachegrind/toplevel.cpp:1526
msgid "Hide"
msgstr "Пинҳон кардан"

#: kcachegrind/toplevel.cpp:1568
msgid "Show Absolute Cost"
msgstr "Нишон додани нархи мутлақ"

#: kcachegrind/toplevel.cpp:1571
msgid "Show Relative Cost"
msgstr ""

#: kcachegrind/toplevel.cpp:1603
msgid "Go Back"
msgstr "Гузаштан ба қафо"

#: kcachegrind/toplevel.cpp:1604
msgid "Go Forward"
msgstr "Ба пеш гузаштан"

#: kcachegrind/toplevel.cpp:1605
msgid "Go Up"
msgstr "Ба боло гузаштан"

#: kcachegrind/toplevel.cpp:1817
#, kde-format
msgid "Layout Count: %1"
msgstr "Ҳисоби схема: %1"

#: kcachegrind/toplevel.cpp:1824
msgid "No profile data file loaded."
msgstr ""

#: kcachegrind/toplevel.cpp:1833
#, kde-format
msgid "Total %1 Cost: %2"
msgstr "Ҳамагӣ %1 нарх: %2"

#: kcachegrind/toplevel.cpp:1845
msgid "No event type selected"
msgstr "Навъи воқеъа интихоб карда нашуд"

#: kcachegrind/toplevel.cpp:2036
msgid "Cannot determine receiver PID for dump request"
msgstr ""

#: kcachegrind/toplevel.cpp:2077
msgid "Error running callgrind_control"
msgstr ""

#: kcachegrind/toplevel.cpp:2116 kcachegrind/toplevel.cpp:2153
#: kcachegrind/toplevel.cpp:2190
msgid "(No Stack)"
msgstr "(Анбора нест)"

#: kcachegrind/toplevel.cpp:2122
msgid "(No next function)"
msgstr "(Функсияи оянда нест)"

#: kcachegrind/toplevel.cpp:2159
msgid "(No previous function)"
msgstr "(Функсияи қаблӣ нест)"

#: kcachegrind/toplevel.cpp:2195
msgid "(No Function Up)"
msgstr "(Функсияи болои нест)"

#: kcachegrind/toplevel.cpp:2327 kcachegrind/toplevel.cpp:2341
#, kde-format
msgid "Loading %1"
msgstr "Пурборкунии %1"

#: kcachegrind/toplevel.cpp:2335
#, fuzzy, kde-format
#| msgid "Loading %1"
msgid "Error loading %1: %2"
msgstr "Пурборкунии %1"

#: kcachegrind/configdlg.cpp:145 kcachegrind/configdlg.cpp:333
#: kcachegrind/configdlg.cpp:352
msgid "(always)"
msgstr "(ҳамавақт)"

#: kcachegrind/configdlg.cpp:360
msgid "Choose Source Folder"
msgstr "Феҳристи сарчашмаро интихоб кунед"

#. i18n: file: tips:2
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:3
msgid ""
"<p>...that the <em>What's this...</em> help for every GUI widget\n"
"in KCachegrind contains detailed usage information for this widget?\n"
"It is highly recommend to read at least these help texts on first\n"
"use. Request <em>What's this...</em> help by pressing\n"
"Shift-F1 and clicking on the widget.</p>\n"
msgstr ""

#. i18n: file: tips:12
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:12
msgid ""
"<p>...that you can get profile information at instruction level\n"
"with Calltree when you provide the option <em>--dump-instr=yes</em>?\n"
"Use the Assembler View for the instruction annotations.\n"
"</p>\n"
msgstr ""

#. i18n: file: tips:21
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:20
msgid ""
"<p>...that you can use Alt-Left/Right keys of your keyboard to go\n"
"back/forward in the active object history ?</p>\n"
msgstr ""

#. i18n: file: tips:28
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:26
msgid ""
"<p>...that you can navigate in the Callee/Caller Map View using\n"
"arrow keys? Use Left/Right to change to siblings of the current\n"
"item; use Up/Down to go one nesting level up/down. To select\n"
"the current item, press Space, and to activate it, press Return.\n"
"</p>\n"
msgstr ""

#. i18n: file: tips:38
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:35
msgid ""
"<p>...that you can navigate in the Call Graph View using\n"
"arrow keys? Use Up/Down to go one calling level up/down, alternating\n"
"between calls and functions. Use Left/Right to change to siblings of a "
"current\n"
"selected call. To activate the current item, press Return.\n"
"</p>\n"
msgstr ""

#. i18n: file: tips:48
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:44
msgid ""
"<p>...that you can rapidly locate a function by entering part of its\n"
"name (case-insensitive) into the edit line of the toolbar\n"
"and hit return?</p>\n"
msgstr ""

#. i18n: file: tips:56
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:51
msgid ""
"<p>...that you can assign custom colors to \n"
"ELF objects/C++ Classes/Source Files for graph coloring\n"
"in <em>Settings->Configure KCachegrind...</em>?</p>\n"
msgstr ""

#. i18n: file: tips:64
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:58
msgid ""
"<p>...that you can see if debug info is available for a selected \n"
"function by looking at the location label in the Info tab or\n"
"the source listing header in the source tab?</p>\n"
"<p>There must be the name of the source file (with extension).\n"
"If KCachegrind still does not show the source, make sure that you\n"
"have added the directory of the source file to the\n"
"<em>Source Directories</em> list in the configuration.\n"
msgstr ""

#. i18n: file: tips:76
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:69
msgid ""
"<p>...that you can configure whether KCachgrind should\n"
"show absolute event counts or relative ones (percentage display)?</p>\n"
msgstr ""

#. i18n: file: tips:83
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:75
msgid ""
"<p>...that you can configure the maximum number of items\n"
"for all function lists in KCachegrind? Limiting the number\n"
"of items is done to get a fast reacting GUI. The last item in\n"
"the list will show you the number of skipped functions, together\n"
"with a cost condition for these skipped functions.</p>\n"
"<p>To activate a function with small costs, search for it and select\n"
"it in the flat profile. Selecting functions with small cost will\n"
"temporarily add them to the flat profile list.</p>\n"
msgstr ""

#. i18n: file: tips:96
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:87
msgid ""
"<p>...that the Coverage tab - in contrast to the Call Lists tab -\n"
"shows <em>all</em> functions that are calling the selected function\n"
"(upper part) / are called by the selected function (bottom part),\n"
"no matter how many function are between them on the stack?</p>\n"
"<p>Examples:</p>\n"
"<p>An entry in the upper list for function foo1() with a value of 50%\n"
"with function bar() selected means that 50% of all the cost of function\n"
"bar() happened while called from function foo1().</p>\n"
"<p>An entry in the bottom list for function foo2() with a value of 50%\n"
"with function bar() selected means that 50% of all the cost of function\n"
"bar() happened while calling foo2() from bar().</p>\n"
msgstr ""

#. i18n: file: tips:112
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:102
msgid ""
"<p>...that waiting for the tool tip inside of a tree map\n"
"shows the list of names of the nested rectangles the mouse\n"
"pointer is over?</p>\n"
"<p>Items from this list can be selected by pressing the right\n"
"mouse button.</p>\n"
msgstr ""

#. i18n: file: tips:122
#. i18n: ectx: @info:tipoftheday
#: tips.cpp:111
msgid ""
"<p>...that you can constrain the cost counts shown to only a\n"
"few parts of the whole trace by selecting these parts in the\n"
"\"Trace Selection\" Dockable?</p>\n"
"<p>To generate multiple parts in a profiling run with\n"
"cachegrind, use e.g. option --cachedumps=xxx for parts\n"
"of a length of xxx basic blocks (A basic block is a run\n"
"of not-branching assembler statements inside of your program\n"
"code).</p>\n"
msgstr ""

#~ msgid "Source Files"
#~ msgstr "Файлҳои сарчашма"

#~ msgid "C++ Classes"
#~ msgstr "Синфҳои C++"

#~ msgid "Function (no Grouping)"
#~ msgstr "Функсия (Ба гурӯҳҳо ҷудокунӣ нест)"

#~ msgid "KCachegrind Configuration"
#~ msgstr "Танзимоти KCachegrind"

#~ msgid "Active call to '%1'"
#~ msgstr "Сигнали фаъол ба '%1'"

#~ msgid "%1 call to '%2'"
#~ msgid_plural "%1 calls to '%2'"
#~ msgstr[0] "%1 сигнал ба '%2'"
#~ msgstr[1] "%1 сигнал ба '%2'"

#~ msgid "Jump %1 of %2 times to 0x%3"
#~ msgstr "Гузаштан %1 аз %2 бор ба 0x%3"

#~ msgid "Jump %1 times to 0x%2"
#~ msgstr "Гузаштан %1 бор ба 0x%2"

#~ msgid "(cycle)"
#~ msgstr "(давр)"

#~ msgid "Abstract Item"
#~ msgstr "Таҷрид кардани чиз"

#~ msgid "Cost Item"
#~ msgstr "Ҳисоб кардани чиз"

#~ msgid "Part Source Line"
#~ msgstr "Хати қисми сарчашма"

#~ msgid "Source Line"
#~ msgstr "Хати сарчашма"

#~ msgid "Part Line Call"
#~ msgstr "Сигнали қисми хат"

#~ msgid "Line Call"
#~ msgstr "Сигнали хат"

#~ msgid "Part Jump"
#~ msgstr "Паридани қисм"

#~ msgid "Jump"
#~ msgstr "Паридан"

#~ msgid "Part Instruction"
#~ msgstr "Дастури қисм"

#~ msgid "Instruction"
#~ msgstr "Дастур"

#~ msgid "Part Instruction Jump"
#~ msgstr "Паридани дастури қисм"

#~ msgid "Instruction Jump"
#~ msgstr "Паридани дастур"

#~ msgid "Part Instruction Call"
#~ msgstr "Алоқаи дастури қисм"

#~ msgid "Instruction Call"
#~ msgstr "Алоқаи дастур"

#~ msgid "Part Call"
#~ msgstr "Қисми сигнал"

#~ msgid "Call"
#~ msgstr "Сигнал"

#~ msgid "Part Function"
#~ msgstr "Функсияи қисм"

#~ msgid "Function Source File"
#~ msgstr "Файли сарчашмаи функсия"

#~ msgid "Function Cycle"
#~ msgstr "Даври функция"

#~ msgid "Part Class"
#~ msgstr "Қисми синф"

#~ msgid "Class"
#~ msgstr "Синф"

#~ msgid "Part Source File"
#~ msgstr "Файли қисми сарчашма"

#~ msgid "Source File"
#~ msgstr "Файли сарчашма"

#~ msgid "Part ELF Object"
#~ msgstr "Объекти қисми ELF"

#~ msgid "ELF Object"
#~ msgstr "Объекти ELF"

#~ msgid "Profile Part"
#~ msgstr "Қисми тахассус"

#~ msgid "Program Trace"
#~ msgstr "Пайи барнома"

#~ msgid "%1 from %2"
#~ msgstr "%1 аз %2"

#~ msgid "(unknown)"
#~ msgstr "(номаълум)"

#~ msgid "(no caller)"
#~ msgstr "(оператор нест)"

#~ msgid "%1 via %2"
#~ msgstr "%1 аз %2"

#~ msgid "(not found)"
#~ msgstr "(ёфт нашуд)"

#, fuzzy
#~| msgid "Name"
#~ msgctxt "A thing's name"
#~ msgid "Name"
#~ msgstr "Ном"

#~ msgid "Cost"
#~ msgstr "Нарх"

#~ msgid "Profile Part Overview: Current is '%1'"
#~ msgstr "Аз назаргузаронии қисми тахассус: '%1' ҷорӣ аст"

#, fuzzy
#~| msgid "Select '%1'"
#~ msgid "Deselect '%1'"
#~ msgstr "Интихоб кардани '%1'"

#~ msgid "Select '%1'"
#~ msgstr "Интихоб кардани '%1'"

#~ msgid "Select All Parts"
#~ msgstr "Интихоб кардани ҳамаи қисмҳо"

#~ msgid "Visible Parts"
#~ msgstr "Қисмҳои намоён"

#~ msgid "Hide Selected Parts"
#~ msgstr "Пинҳон кардани қисмҳои интихобшуда"

#~ msgid "Unhide Hidden Parts"
#~ msgstr "Кушодани қисмҳои пинҳоншуда"

#~ msgid "Go to '%1'"
#~ msgstr "Ба '%1' гузаштан"

#~ msgid "Visualization"
#~ msgstr "Таҷассумкорӣ"

#~ msgid "Partitioning Mode"
#~ msgstr "Ҳолати бахшбандӣ"

#~ msgid "Zoom Function"
#~ msgstr "Функсияи тағйири андозаи тасвир"

#~ msgid "Show Direct Calls"
#~ msgstr "Дархостҳои аниқро нишон диҳед"

#~ msgid "Draw Names"
#~ msgstr "Кашидани номҳо"

#~ msgid "Draw Costs"
#~ msgstr "Кашидани нархҳо"

#~ msgid "Ignore Proportions"
#~ msgstr "Аҳамият надодани таносуб"

#, fuzzy
#~ msgid "Draw Frames"
#~ msgstr "Кашидани номҳо"

#~ msgid "Allow Rotation"
#~ msgstr "Иҷозат додани даврзанӣ"

#~ msgid "Hide Info"
#~ msgstr "Пинҳон кардани маълумот"

#~ msgid "Show Info"
#~ msgstr "Нишон додани маълумот"

#~ msgid "(no trace loaded)"
#~ msgstr "(пай пурбор нашуд)"

#~ msgid "Jump %1 of %2 times to %3"
#~ msgstr "Гузаштан %1 аз %2 бор ба %3"

#~ msgid "Jump %1 times to %2"
#~ msgstr "Гузаштан %1 бор ба %2"

#~ msgid "(%1 item skipped)"
#~ msgid_plural "(%1 items skipped)"
#~ msgstr[0] "(%1 чиз рад карда шудааст)"
#~ msgstr[1] "(%1 чиз рад карда шудааст)"

#~ msgid "Show Relative Costs"
#~ msgstr "Нархҳои нисбиро нишон диҳед"

#~ msgid "Show Absolute Costs"
#~ msgstr "Нархҳои аслиро нишон диҳед"

#~ msgid "Skip Cycle Detection"
#~ msgstr "Рад кардани бозёбии давр"

#~ msgid "Cost 2"
#~ msgstr "Нархи 2"

#~ msgid "Hex"
#~ msgstr "Hex"

#~ msgid "Assembler"
#~ msgstr "Ассемблер"

#~ msgid "Source Position"
#~ msgstr "Вазъияти сарчашма"

#~ msgid "Go to Address %1"
#~ msgstr "Ба суроғаи %1 гузаштан"

#~ msgid "Hex Code"
#~ msgstr "Коди Hex"

#~ msgid "      --trace-jump=yes"
#~ msgstr "      --пай-гузаштан=ҳа"

#~ msgid "(No Assembler)"
#~ msgstr "(Ассемблер нест)"

#~ msgid "Call(s) from %1"
#~ msgstr "Сигнал(ҳо) аз %1"

#~ msgid "Call(s) to %1"
#~ msgstr "Сигнал(ҳо) ба %1"

#~ msgid "(unknown call)"
#~ msgstr "(дархости номаълум)"

#, fuzzy
#~| msgid "None"
#~ msgctxt "Depth 0"
#~ msgid "None"
#~ msgstr "Ҳеҷ"

#~ msgid "max. 2"
#~ msgstr "максималӣ 2"

#~ msgid "max. 5"
#~ msgstr "максималӣ 5"

#~ msgid "max. 10"
#~ msgstr "максималӣ 10"

#~ msgid "max. 15"
#~ msgstr "максималӣ 15"

#~ msgid "No Minimum"
#~ msgstr "Минемалӣ нест"

#~ msgid "50 %"
#~ msgstr "50 %"

#~ msgid "20 %"
#~ msgstr "20 %"

#~ msgid "10 %"
#~ msgstr "10 %"

#~ msgid "5 %"
#~ msgstr "5 %"

#~ msgid "2 %"
#~ msgstr "2 %"

#~ msgid "1 %"
#~ msgstr "1 %"

#~ msgid "Same as Node"
#~ msgstr "Ҳамон барин гиреҳ "

#~ msgid "50 % of Node"
#~ msgstr "50 %ба гиреҳ"

#~ msgid "20 % of Node"
#~ msgstr "20 % ба гиреҳ"

#~ msgid "10 % of Node"
#~ msgstr "10 % ба гиреҳ"

#~ msgid "Top Left"
#~ msgstr "Тарафи чапи боло"

#~ msgid "Top Right"
#~ msgstr "Тарафи рости боло"

#~ msgid "Bottom Left"
#~ msgstr "Тарафи чапи поён"

#~ msgid "Bottom Right"
#~ msgstr "Тарафи рости поён"

#~ msgid "Top to Down"
#~ msgstr "Аз боло ба поён"

#~ msgid "Left to Right"
#~ msgstr "Аз тарафи чап ба рост"

#~ msgid "Circular"
#~ msgstr "Доирашакл"

#, fuzzy
#~ msgid "Stop Layouting"
#~ msgstr "Истодан дар функсия"

#~ msgid "As Image ..."
#~ msgstr "Ҳамчун тасвир ..."

#~ msgid "Export Graph"
#~ msgstr "Содир кардани нақша"

#~ msgid "Compact"
#~ msgstr "Зичӣ"

#~ msgid "Normal"
#~ msgstr "Оддӣ"

#~ msgid "Tall"
#~ msgstr "Баланд"

#~ msgid "Graph"
#~ msgstr "Нақша"

#, fuzzy
#~| msgid "&Layout"
#~ msgid "Layout"
#~ msgstr "&Схема"

#~ msgid "Move to Top"
#~ msgstr "Кӯчондан ба боло"

#, fuzzy
#~ msgctxt "Move to Top"
#~ msgid "Top"
#~ msgstr "Ба тарафи чапи боло"

#~ msgid "Move to Right"
#~ msgstr "Кӯчондан ба тарафи рост"

#, fuzzy
#~ msgctxt "Move to Right"
#~ msgid "Right"
#~ msgstr "Ба тарафи рости боло"

#~ msgid "Move to Bottom"
#~ msgstr "Кӯчондан ба поён"

#, fuzzy
#~ msgctxt "Move to Bottom"
#~ msgid "Bottom"
#~ msgstr "Ба тарафи чапи поён"

#~ msgid "Move to Bottom Left"
#~ msgstr "Кӯчондан ба тарафи чапи поён"

#, fuzzy
#~| msgid "Bottom Left"
#~ msgctxt "Move to Bottom Left"
#~ msgid "Bottom Left"
#~ msgstr "Тарафи чапи поён"

#~ msgid "Hide This Tab"
#~ msgstr "Пинҳон кардани ин ҷадвалбандӣ"

#~ msgid "Hide Area"
#~ msgstr "Пинҳон кардани фазо"

#, fuzzy
#~ msgctxt "Show on Top"
#~ msgid "Top"
#~ msgstr "Ба тарафи чапи боло"

#, fuzzy
#~ msgctxt "Show on Right"
#~ msgid "Right"
#~ msgstr "Ба тарафи рости боло"

#, fuzzy
#~ msgctxt "Show on Bottom"
#~ msgid "Bottom"
#~ msgstr "Ба тарафи чапи поён"

#, fuzzy
#~| msgid "Bottom Left"
#~ msgctxt "Show on Bottom Left"
#~ msgid "Bottom Left"
#~ msgstr "Тарафи чапи поён"

#~ msgid "Types"
#~ msgstr "Навъҳо"

#~ msgid "Callers"
#~ msgstr "Фарохонанда"

#~ msgid "All Callers"
#~ msgstr "Ҳамаи фарохонандаҳо"

#~ msgid "Caller Map"
#~ msgstr "Нақша фарохонанда"

#, fuzzy
#~| msgid "Source Folders"
#~ msgid "Source Code"
#~ msgstr "Феҳристҳои сарчашма"

#~ msgid "Parts"
#~ msgstr "Қисмҳо"

#~ msgid "Call Graph"
#~ msgstr "Намоиши дархост"

#, fuzzy
#~| msgid "Assembler"
#~ msgid "Assembly Code"
#~ msgstr "Ассемблер"

#~ msgid "(No Data loaded)"
#~ msgstr "(Маълумотҳо боргир карда нашудаанд)"

#~ msgid "(No function selected)"
#~ msgstr "(Функсия интихоб карда нашуд)"

#~ msgid "Source (unknown)"
#~ msgstr "Сарчашма (номаълум)"

#~ msgid "Go to Line %1"
#~ msgstr "Гузаштан ба хати %1"

#~ msgid "(No Source)"
#~ msgstr "(Сарчашма нест)"

#~ msgid "Source ('%1')"
#~ msgstr "Сарчашма ('%1')"

#~ msgid "Add the folder of this file to the source folder list."
#~ msgstr "Илова кардани феҳристи ин файл ба рӯйхати феҳристи сарчашма."

#~ msgid " (Thread %1)"
#~ msgstr " (Ришта %1)"

#~ msgid "(none)"
#~ msgstr "(ҳеҷ)"

#~ msgid "Unknown Type"
#~ msgstr "Навъи номаълум"

#~ msgid "Show All Items"
#~ msgstr "Нишон додани ҳамаи чизҳо"

#~ msgid "Distance"
#~ msgstr "Фосила"

#~ msgid "Self"
#~ msgstr "Аз они худ"

#~ msgid "Calling"
#~ msgstr "Дархостан"

#~ msgid "Data Read Access"
#~ msgstr "Истеъдоди ҳуқуқро хонед"

#~ msgid "Data Write Access"
#~ msgstr "Истеъдоди ҳуқуқро нависед"

#~ msgid "L1 Data Read Miss"
#~ msgstr "L1 Истеъдоди гузаронданро хонед"

#~ msgid "L1 Data Write Miss"
#~ msgstr "L1 Истеъдоди гузаронданро нависед"

#~ msgid "L2 Data Read Miss"
#~ msgstr " L2 Истеъдоди гузаронданро хонед"

#~ msgid "L2 Data Write Miss"
#~ msgstr "L2 Истеъдоди гузаронданро нависед"

#~ msgid "Samples"
#~ msgstr "Намунаҳо"

#~ msgid "System Time"
#~ msgstr "Вақти система"

#~ msgid "User Time"
#~ msgstr "Вақти истифодабаранда"

#~ msgid "L1 Miss Sum"
#~ msgstr "L1 Ҳосили ҷамъи гузаронда"

#~ msgid "L2 Miss Sum"
#~ msgstr " L2 Ҳосили ҷамъи гузаронда"

#~ msgid "Cycle Estimation"
#~ msgstr "Ҷамъбасти давр"

#~ msgid "&Search:"
#~ msgstr "&Ҷустуҷӯ:"

#~ msgid "Group"
#~ msgstr "Гурӯҳ"

#~ msgid "(no trace parts)"
#~ msgstr "(қисмҳои пай нест)"

#~ msgid "Stack Selection"
#~ msgstr "Интихоб кардани анбора"

#~ msgid "Cost2"
#~ msgstr "Нархи 2"

#~ msgid "Text %1"
#~ msgstr "Матни %1"

#~ msgid "Columns"
#~ msgstr "Сутунҳо"

#~ msgid "Rows"
#~ msgstr "Қаторҳо"

#~ msgid "Always Best"
#~ msgstr "Ҳамавақт беҳтарин"

#~ msgid "Best"
#~ msgstr "Беҳтарин"

#~ msgid "Alternate (V)"
#~ msgstr "Тағйирёбанда (V)"

#~ msgid "Alternate (H)"
#~ msgstr "Тағйирёбанда (H)"

#, fuzzy
#~ msgid "Horizontal"
#~ msgstr "Ҷудо кардани хати уфуқӣ"

#~ msgid "Nesting"
#~ msgstr "Ташаккулёбии лона"

#, fuzzy
#~ msgid "Border"
#~ msgstr "Сарҳади 0"

#~ msgid "Width %1"
#~ msgstr "Бар %1"

#~ msgid "Shading"
#~ msgstr "Соякунӣ"

#~ msgid "Take Space From Children"
#~ msgstr "Гирифтани кайҳон аз кӯдакон"

#~ msgid "Top Center"
#~ msgstr "Маркази боло"

#~ msgid "Bottom Center"
#~ msgstr "Маркази поён"

#~ msgid "No %1 Limit"
#~ msgstr "Ҳудуди %1 нест"

#~ msgid "No Area Limit"
#~ msgstr "Ҳудуди фазо нест"

#~ msgid "Area of '%1' (%2)"
#~ msgstr "Фазои '%1' (%2)"

#~ msgid "1 Pixel"
#~ msgid_plural "%1 Pixels"
#~ msgstr[0] "%1 пиксел"
#~ msgstr[1] "%1 пикселҳо"

#~ msgid "Double Area Limit (to %1)"
#~ msgstr "Дучанда кардани ҳудуди фазо (то %1)"

#~ msgid "Halve Area Limit (to %1)"
#~ msgstr "Ду тақсим кардани ҳудуди фазо (то %1)"

#~ msgid "No Depth Limit"
#~ msgstr "Ҳудуди чуқурӣ нест"

#~ msgid "Depth of '%1' (%2)"
#~ msgstr "Чуқурии '%1' (%2)"

#~ msgid "Depth %1"
#~ msgstr "Чуқурӣ %1"

#~ msgid "Go To"
#~ msgstr "Гузаштан ба"

#~ msgid "Stop at Depth"
#~ msgstr "Истодан дар чуқурӣ"

#~ msgid "Depth 10"
#~ msgstr "Чуқурии 10"

#~ msgid "Depth 15"
#~ msgstr "Чуқурии 15"

#~ msgid "Depth 20"
#~ msgstr "Чуқурии 20"

#~ msgid "Decrement Depth (to %1)"
#~ msgstr "Чуқурии афзундиҳандаи манфӣ (то %1)"

#~ msgid "Stop at Function"
#~ msgstr "Истодан дар функсия"

#~ msgid "No Function Limit"
#~ msgstr "Ҳудуди функсия нест"

#~ msgid "Stop at Area"
#~ msgstr "Истодан дар фазо"

#~ msgid "50 Pixels"
#~ msgstr "50 пиксел"

#~ msgid "100 Pixels"
#~ msgstr "100 пиксел"

#~ msgid "200 Pixels"
#~ msgstr "200 пиксел"

#~ msgid "500 Pixels"
#~ msgstr "500 пиксел"

#~ msgid "Half Area Limit (to %1)"
#~ msgstr "Ду тақсим кардани ҳудуди фазо (то %1)"

#~ msgid "Border Width"
#~ msgstr "Бари сарҳад"

#~ msgid "Border 0"
#~ msgstr "Сарҳади 0"

#~ msgid "Border 1"
#~ msgstr "Сарҳади 1"

#~ msgid "Border 2"
#~ msgstr "Сарҳади 2"

#~ msgid "Border 3"
#~ msgstr "Сарҳади 3"

#~ msgid "Draw Symbol Names"
#~ msgstr "Кашидани номҳои рамз"

#~ msgid "Draw Cost"
#~ msgstr "Кашидани нарх"

#~ msgid "Draw Location"
#~ msgstr "Кашидани ҷойгиршавӣ"

#~ msgid "Draw Calls"
#~ msgstr "Кашидани сигналҳо"

#~ msgid "Call Map: Current is '%1'"
#~ msgstr "Харитаи сигнал: '%1' ҷорӣ аст"

#~ msgid "(no function)"
#~ msgstr "(функсия нест)"

#~ msgid "(no call)"
#~ msgstr "(дархост нест)"

#~ msgid "Event Type"
#~ msgstr "Навъи воқеъа"

#~ msgid "Short"
#~ msgstr "Кӯтоҳ"

#~ msgid "Formula"
#~ msgstr "Формула"

#~ msgid "Set Secondary Event Type"
#~ msgstr "Танзим кардани навъи воқеъаи миёна"

#~ msgid "Remove Secondary Event Type"
#~ msgstr "Дур кардани навъи воқеъаи миёна"

#~ msgid "Edit Long Name"
#~ msgstr "Таҳрир кардани номи дароз"

#~ msgid "Edit Short Name"
#~ msgstr "Таҳрир кардани номи кӯтоҳ"

#~ msgid "Edit Formula"
#~ msgstr "Таҳрир кардани формула"

#~ msgid "New Cost Type ..."
#~ msgstr "Навъи нархи нав ..."

#~ msgid "New%1"
#~ msgstr "%1-и нав"

#~ msgid "New Cost Type %1"
#~ msgstr "Навъи нархи нав %1"

#~ msgid "Count"
#~ msgstr "Ҳисоб кардан"

#~ msgid "Profile Part %1"
#~ msgstr "Қисми тахассус %1"

#~ msgid "(no trace)"
#~ msgstr "(пай нест)"

#~ msgid "(no part)"
#~ msgstr "(қисм нест)"

#~ msgid "Comment"
#~ msgstr "Тавзеҳ"

#~ msgid "Hide '%1'"
#~ msgstr "Пинҳон кардани '%1'"

#~ msgid "Hide Selected"
#~ msgstr "Пинҳон кардани интихобшуда"

#~ msgid "Show All"
#~ msgstr "Нишон додани ҳама"

#~ msgid "Select"
#~ msgstr "Интихоб кардан"

#~ msgid "Go to %1"
#~ msgstr "Ба %1 гузаштан"

#~ msgid "Source"
#~ msgstr "Сарчашма"

#~ msgid "< %1"
#~ msgstr "< %1"

#~ msgid "3 %"
#~ msgstr "3 %"

#~ msgid "1.5 %"
#~ msgstr "1.5 %"

#~ msgid "TopLeft"
#~ msgstr "Ба тарафи чапи боло"

#~ msgid "TopRight"
#~ msgstr "Ба тарафи рости боло"

#~ msgid "BottomLeft"
#~ msgstr "Ба тарафи чапи поён"

#~ msgid "BottomRight"
#~ msgstr "Ба тарафи рости поён"

#~ msgid "Visualisation"
#~ msgstr "Таҷассумкорӣ"

#~ msgid "Tip of the &Day..."
#~ msgstr "Маслиҳати &рӯз..."

#~ msgid "Show \"Tip of the Day\""
#~ msgstr "Нишон додани \"Маслиҳати рӯз\""