~ubuntu-branches/ubuntu/vivid/kde-l10n-bg/vivid

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
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
#
# Yasen Pramatarov <yasen@lindeas.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2014-05-20 06:50+0000\n"
"PO-Revision-Date: 2013-08-14 10:59+0300\n"
"Last-Translator: Yasen Pramatarov <yasen@lindeas.com>\n"
"Language-Team: Bulgarian <dict@ludost.net>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Lokalize 1.5\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Ясен Праматаров"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "yasen@lindeas.com"

#: src/engine.cpp:220
msgctxt "@info:tooltip "
msgid "Cannot load built-in <icode>pate</icode> module"
msgstr ""

#: src/engine.cpp:236
msgctxt "@info:tooltip "
msgid "Cannot update Python paths"
msgstr ""

#: src/engine.cpp:252
msgctxt "@info:tooltip "
msgid "No <icode>pate</icode> built-in module"
msgstr ""

#: src/engine.cpp:308
#, fuzzy
#| msgid "Name"
msgctxt "@title:column"
msgid "Name"
msgstr "Име"

#: src/engine.cpp:310
#, fuzzy
#| msgid "Comment"
msgctxt "@title:column"
msgid "Comment"
msgstr "Коментар"

#: src/engine.cpp:495
#, kde-format
msgctxt "@info:tooltip"
msgid "Unable to find the module specified <application>%1</application>"
msgstr ""

#: src/engine.cpp:519
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Specified version has invalid format for dependency <application>%1</"
"application>: <icode>%2</icode>. Skipped</p>"
msgstr ""

#: src/engine.cpp:599
msgctxt "@info:tooltip"
msgid "<title>Dependency check</title>"
msgstr ""

#: src/engine.cpp:635
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Failed to check version of dependency <application>%1</application>: "
"Module do not have PEP396 <code>__version__</code> attribute. It is not "
"disabled, but behaviour is unpredictable...</p>"
msgstr ""

#: src/engine.cpp:655
#, kde-format
msgctxt "@info:tooltip"
msgid "<p><application>%1</application>: Unexpected module's version format"
msgstr ""

#: src/engine.cpp:670
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p><application>%1</application>: No suitable version found. Required "
"version %2 %3, but found %4</p>"
msgstr ""

#: src/engine.cpp:687
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Failure on module load <application>%1</application>:</p><pre>%2</pre>"
msgstr ""

#: src/engine.cpp:778
msgctxt "@info:tooltip"
msgid "Internal engine failure"
msgstr ""

#: src/engine.cpp:784
#, fuzzy, kde-format
#| msgid "Not Loaded: %1"
msgctxt "@info:tooltip"
msgid "Module not loaded:<nl/>%1"
msgstr "Незаредено: %1"

#: src/kate/decorators.py:223
msgctxt "@title:window"
msgid "Error in action <icode>%1</icode>"
msgstr ""

#: src/kate/decorators.py:310
msgctxt "@info:tooltip"
msgid ""
"Invalid <filename>%1</filename> file: No action with name <icode>%2</icode> "
"defined"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, errorLabel)
#: src/manager.ui:15
msgid "Error: The Python engine could not be initialized"
msgstr ""

#: src/plugin.cpp:68
msgid "Pâté host for Python plugins"
msgstr ""

#: src/plugin.cpp:70
#, fuzzy
#| msgid "System Settings"
msgid "Python interpreter settings"
msgstr "Системни настройки"

#: src/plugin.cpp:146
msgctxt "@title:window"
msgid "Pate engine could not be initialised"
msgstr ""

#: src/plugin.cpp:161
msgctxt "@title:window"
msgid "Warning"
msgstr ""

#: src/plugin.cpp:164
#, kde-format
msgctxt "@info:tooltip %1 is a number of failed plugins"
msgid ""
"%1 plugin module couldn't be loaded. Check the Python plugins config page "
"for details."
msgid_plural ""
"%1 plugin modules couldn't be loaded. Check the Python plugins config page "
"for details."
msgstr[0] ""
msgstr[1] ""

#: src/plugin.cpp:239
#, fuzzy
#| msgid "Python Plugins"
msgctxt "@title:row"
msgid "Python Plugins"
msgstr "Приставки на Python"

#: src/plugin.cpp:254
msgctxt "@title:tab"
msgid "Pâté host for Python plugins"
msgstr ""

#: src/plugin.cpp:318
msgid "About Pate"
msgstr ""

#: src/plugin.cpp:333
msgctxt "@info:tooltip "
msgid "Cannot load <icode>kate</icode> module"
msgstr ""

#: src/plugin.cpp:369
#, kde-format
msgctxt "Python variables, no translation needed"
msgid "sys.version = %1<br/>sys.path = %2"
msgstr ""

#: src/plugin.cpp:374
msgid "Paul Giannaros"
msgstr ""

#: src/plugin.cpp:374
msgid "Out-of-tree original"
msgstr ""

#: src/plugin.cpp:375
msgid "Shaheed Haque"
msgstr ""

#: src/plugin.cpp:375
msgid "Rewritten and brought in-tree, V1.0"
msgstr ""

#: src/plugin.cpp:376
msgid "Alex Turbov"
msgstr ""

#: src/plugin.cpp:376
msgid "Streamlined and updated, V2.0"
msgstr ""

#. i18n: ectx: Menu (pate)
#: src/plugins/block_ui.rc:10 src/plugins/commentar_ui.rc:10
#: src/plugins/expand/expand_ui.rc:10 src/plugins/format_ui.rc:10 src/ui.rc:10
msgid "&Pate"
msgstr ""

#. i18n: ectx: Menu (block)
#: src/plugins/block_ui.rc:12
msgid "Block Operations"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:169
#: src/plugins/cmake_utils/__init__.py:199
#: src/plugins/cmake_utils/__init__.py:600
#: src/plugins/cmake_utils/__init__.py:837
#: src/plugins/expand/jinja_stuff.py:108 src/plugins/expand/jinja_stuff.py:129
#: src/plugins/expand/udf.py:212 src/plugins/expand/udf.py:270
#: src/plugins/libkatepate/errors.py:78 src/plugins/try_open_file.py:43
#: src/plugins/try_open_file.py:68
msgctxt "@title:window"
msgid "Error"
msgstr "Грешка"

#: src/plugins/cmake_utils/__init__.py:170
msgctxt "@info:tooltip"
msgid "Unable to open the document: <filename>%1</filename>"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:179
msgctxt "@title:window"
msgid "<filename>CMakeLists.txt</filename> location"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:200
msgctxt "@info:tooltip"
msgid "No such file <filename>%1</filename>"
msgstr "Няма файл <filename>%1</filename>"

#: src/plugins/cmake_utils/__init__.py:292
msgctxt "@label:listbox"
msgid "CMake Auto Completion"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:339
msgctxt "@label:listbox"
msgid "CMake Variables Completion"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:356
msgctxt "@label:listbox"
msgid "CMake Commands Completion"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:425
msgctxt "@title:window"
msgid "Attention"
msgstr "Внимание"

#: src/plugins/cmake_utils/__init__.py:426
msgctxt "@info:tooltip"
msgid "Sorry, no completion for <command>%1()</command>"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:436
msgctxt "@label:listbox"
msgid "CMake <command>%1()</command> Completion"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:492
msgctxt "@title:tab"
msgid "CMake"
msgstr "CMake"

#: src/plugins/cmake_utils/__init__.py:510
msgctxt "@info/plain"
msgid "Project build directory"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:517
msgctxt "@title:tab"
msgid "CMake Cache Viewer"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:533
msgctxt "@title:tab"
msgid "CMake Help"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:540
msgctxt "@title:tab"
msgid "Tool View Settings"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:603
msgctxt "@info:tooltip"
msgid "Unable to get CMake cache content:<nl/><message>%1</message>"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:624
msgctxt "@item::inlistbox/plain"
msgid "Commands"
msgstr "Команди"

#: src/plugins/cmake_utils/__init__.py:653
msgctxt "@item:inlistbox"
msgid "Modules from %1 (%2)"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:657
msgctxt "@item:inlistbox"
msgid "Standard modules (%1)"
msgstr "Стандартни модули (%1)"

#: src/plugins/cmake_utils/__init__.py:662
msgctxt "@item::inlistbox/plain"
msgid "Modules (%1)"
msgstr "Модули (%1)"

#: src/plugins/cmake_utils/__init__.py:681
msgctxt "@item::inlistbox/plain"
msgid "Policies"
msgstr "Правила"

#: src/plugins/cmake_utils/__init__.py:694
msgctxt "@item::inlistbox/plain"
msgid "Properties"
msgstr "Свойства"

#: src/plugins/cmake_utils/__init__.py:714
msgctxt "@item::inlistbox/plain"
msgid "Variables"
msgstr "Променливи"

#: src/plugins/cmake_utils/__init__.py:838
msgctxt "@info:tooltip"
msgid "CMake executable test run failed:<nl/><message>%1</message>"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:877
msgctxt "@title:window"
msgid "Select a Directory with CMake Modules"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:911
msgctxt "@item:inmenu"
msgid "CMake Helper Plugin"
msgstr ""

#: src/plugins/cmake_utils/__init__.py:912
msgctxt "@title:group"
msgid "CMake Helper Settings"
msgstr ""

#: src/plugins/cmake_utils/cmake_help_parser.py:122
msgctxt "@item:intext"
msgid "CMake executable is not configured"
msgstr ""

#: src/plugins/cmake_utils/cmake_help_parser.py:136
msgctxt "@item:intext"
msgid ""
"Running <command>%1</command> finished with errors:<nl/><message>%2</message>"
msgstr ""

#: src/plugins/cmake_utils/cmake_help_parser.py:153
msgctxt "@item:intext"
msgid "Specified CMake executable <command>%1</command> looks invalid"
msgstr ""

#: src/plugins/cmake_utils/cmake_help_parser.py:160
msgctxt "@item:intext"
msgid "Specified CMake executable <command>%1</command> not found"
msgstr ""

#: src/plugins/cmake_utils/cmake_help_parser.py:284
msgctxt "@item:intext/plain"
msgid "Specified path %1 does not look like a CMake build directory"
msgstr ""

#. i18n: ectx: Menu (file)
#: src/plugins/cmake_utils/cmake_utils_ui.rc:10
#: src/plugins/try_open_file_ui.rc:10
#, fuzzy
#| msgid "File"
msgid "&File"
msgstr "Файл"

#. i18n: ectx: property (windowTitle), widget (QWidget, cmakeSettings)
#: src/plugins/cmake_utils/settings.ui:6
msgid "CMake Settings"
msgstr ""

#. i18n: ectx: property (title), widget (KButtonGroup, system)
#: src/plugins/cmake_utils/settings.ui:12
msgid "System Settings"
msgstr "Системни настройки"

#. i18n: ectx: property (text), widget (QLabel, cmakeBinaryLabel)
#: src/plugins/cmake_utils/settings.ui:21
msgid "CMake executable:"
msgstr ""

#. i18n: ectx: property (toolTip), widget (KUrlRequester, cmakeBinary)
#. i18n: ectx: property (whatsThis), widget (KUrlRequester, cmakeBinary)
#: src/plugins/cmake_utils/settings.ui:28
#: src/plugins/cmake_utils/settings.ui:31
msgid "Path to CMake executable"
msgstr ""

#. i18n: ectx: property (toolTip), widget (QSpinBox, parentDirsLookupCnt)
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#: src/plugins/cmake_utils/settings.ui:38
#: src/plugins/cmake_utils/settings.ui:48
msgid ""
"<p>How many parent directories to check for <filename>CMakeLists.txt</"
"filename> if the latter is absent in a current document's path</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/cmake_utils/settings.ui:51
msgid "CMakeLists lookup parents:"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: src/plugins/cmake_utils/settings.ui:61
msgid "Auxiliary CMake Module Directories"
msgstr ""

#. i18n: ectx: property (toolTip), widget (QListWidget, moduleDirs)
#: src/plugins/cmake_utils/settings.ui:67
msgid ""
"Auxiliary paths with CMake modules. CMake will try to parse the initial "
"comment for every module found, so you can see a help screen for custom "
"modules in the tool view."
msgstr ""

#. i18n: ectx: property (toolTip), widget (QPushButton, addButton)
#: src/plugins/cmake_utils/settings.ui:76
msgid "Open a file dialog to select a path to be added."
msgstr ""

#. i18n: ectx: property (text), widget (QPushButton, addButton)
#: src/plugins/cmake_utils/settings.ui:79
msgid "Add"
msgstr "Добавяне"

#. i18n: ectx: property (toolTip), widget (QPushButton, removeButton)
#: src/plugins/cmake_utils/settings.ui:86
msgid "Removes the currently selected path from a list of auxiliary modules."
msgstr ""

#. i18n: ectx: property (text), widget (QPushButton, removeButton)
#: src/plugins/cmake_utils/settings.ui:89
msgid "Remove"
msgstr "Премахване"

#. i18n: ectx: property (title), widget (KButtonGroup, session)
#: src/plugins/cmake_utils/settings.ui:114
msgid "Session Settings"
msgstr "Настройки на сесия"

#. i18n: ectx: property (text), widget (QLabel, projectBuildDirLabel)
#: src/plugins/cmake_utils/settings.ui:123
msgid "Project build dir:"
msgstr ""

#. i18n: ectx: property (toolTip), widget (KUrlRequester, projectBuildDir)
#. i18n: ectx: property (whatsThis), widget (KUrlRequester, projectBuildDir)
#: src/plugins/cmake_utils/settings.ui:130
#: src/plugins/cmake_utils/settings.ui:133
msgid "Path to a project build directory associated with a current session"
msgstr ""

#. i18n: ectx: property (windowTitle), widget (QWidget, cacheViewPage)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:6
msgid "CMake Cache View"
msgstr ""

#. i18n: ectx: property (toolTip), widget (KTreeWidgetSearchLine, cacheFilter)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:14
msgid "Filter CMake cache items by name"
msgstr ""

#. i18n: ectx: property (placeholderText), widget (KTreeWidgetSearchLine, helpFilter)
#. i18n: ectx: property (placeholderText), widget (KTreeWidgetSearchLine, cacheFilter)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:17
#: src/plugins/cmake_utils/toolview_help_page.ui:12
msgid "Quick search"
msgstr "Бързо търсене"

#. i18n: ectx: property (toolTip), widget (KUrlRequester, buildDir)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:24
msgid "<p>Select <i>top build dir</i> controlled by CMake</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QTreeWidget, cacheItems)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:43
msgid "Name"
msgstr "Име"

#. i18n: ectx: property (text), widget (QTreeWidget, cacheItems)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:48
msgid "Type"
msgstr "Вид"

#. i18n: ectx: property (text), widget (QTreeWidget, cacheItems)
#: src/plugins/cmake_utils/toolview_cacheview_page.ui:53
msgid "Value"
msgstr "Стойност"

#. i18n: ectx: property (windowTitle), widget (QWidget, cmakeHelp)
#: src/plugins/cmake_utils/toolview_help_page.ui:6
msgid "CMake Help"
msgstr ""

#. i18n: ectx: property (toolTip), widget (QTreeWidget, helpTargets)
#: src/plugins/cmake_utils/toolview_help_page.ui:19
msgid "Double-click to insert the current item to a document"
msgstr ""

#. i18n: ectx: property (windowTitle), widget (QWidget, cfgPage)
#: src/plugins/cmake_utils/toolview_settings_page.ui:6
msgid "Tool View Settings"
msgstr ""

#. i18n: ectx: property (toolTip), widget (QCheckBox, mode)
#: src/plugins/cmake_utils/toolview_settings_page.ui:12
msgid ""
"<p>Same as <i>advanced mode</i> in <span style=\" font-family:'Courier New,"
"courier';\">ccmake</span></p>"
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, mode)
#: src/plugins/cmake_utils/toolview_settings_page.ui:15
msgid "Show cache items marked as advanced"
msgstr ""

#. i18n: ectx: property (toolTip), widget (QCheckBox, htmlize)
#: src/plugins/cmake_utils/toolview_settings_page.ui:23
msgid ""
"Try to turn plain ASCII text into HTML using simple structured text rules.\n"
"It works quite well for builtins, but sometimes may distort results for "
"others (custom modules)."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, htmlize)
#: src/plugins/cmake_utils/toolview_settings_page.ui:26
msgid "Try to beautify the help output"
msgstr ""

#: src/plugins/color_tools/color_chooser.py:58
msgctxt "@action:button"
msgid "&Other..."
msgstr "&Друго..."

#: src/plugins/color_tools/color_palette.py:61
msgctxt "@title:tab"
msgid "Palette"
msgstr "Палитра"

#. i18n: ectx: property (toolTip), widget (KPushButton, update)
#: src/plugins/color_tools/color_tools_toolview.ui:33
msgid "Rescan current document for #colors"
msgstr ""

#. i18n: ectx: property (text), widget (KPushButton, update)
#: src/plugins/color_tools/color_tools_toolview.ui:36
msgid "Update"
msgstr "Обновяване"

#: src/plugins/commentar.py:421 src/plugins/commentar.py:473
#: src/plugins/commentar.py:499 src/plugins/commentar.py:656
#: src/plugins/format.py:325 src/plugins/format.py:336
#: src/plugins/format.py:352 src/plugins/format.py:398
#: src/plugins/format.py:409 src/plugins/format.py:425
#: src/plugins/libkatepate/decorators.py:61
#: src/plugins/libkatepate/decorators.py:111
#: src/plugins/libkatepate/decorators.py:140
msgctxt "@title:window"
msgid "Alert"
msgstr "Аларма"

#: src/plugins/commentar.py:424 src/plugins/commentar.py:476
#: src/plugins/commentar.py:502
msgctxt "@info:tooltip"
msgid ""
"The cursor is not positioned in any <icode>#if0</icode>/<icode>#if1</icode> "
"block"
msgstr ""

#: src/plugins/commentar.py:659
msgctxt "@info:tooltip"
msgid "Unable to detect a commented paragraph at cursor..."
msgstr ""

#: src/plugins/commentar.py:779
#, fuzzy
#| msgctxt "@action:inmenu"
#| msgid "Commentar Plugin"
msgctxt "@item:inmenu"
msgid "Commentar Plugin"
msgstr "Приставка за коментари"

#: src/plugins/commentar.py:780
msgctxt "@title:group"
msgid "Commentar Plugin Settings"
msgstr "Настройки на приставката за коментари"

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/commentar.ui:13
msgid "Same-line comment position"
msgstr ""

#. i18n: ectx: Menu (comments)
#: src/plugins/commentar_ui.rc:13
#, fuzzy
#| msgid "Comment"
msgid "&Comments"
msgstr "Коментар"

#: src/plugins/django_utils/django_settings.py:22
msgid "Create Django Form"
msgstr "Създаване на форма за Django"

#: src/plugins/django_utils/django_settings.py:24
msgid "Create Django Model"
msgstr "Създаване на модел за Django"

#: src/plugins/django_utils/django_settings.py:26
msgid "Template Django URLs"
msgstr ""

#: src/plugins/django_utils/django_settings.py:28
msgid "Template Import Views"
msgstr ""

#: src/plugins/django_utils/django_settings.py:30
msgid "Template Block"
msgstr ""

#: src/plugins/django_utils/django_settings.py:32
msgid "Close Template Tag"
msgstr ""

#: src/plugins/django_utils/django_settings.py:37
msgid "Django Utils"
msgstr "Инструменти за Django"

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/django_utils/django_utils.ui:13
msgid "Django tags to close when call the \"Close Template tag\" action"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/django_utils/django_utils.ui:28
msgid "URL template file"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/django_utils/django_utils.ui:43
msgid "View import snippet"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/django_utils/django_utils.ui:58
msgid "Pattern Model Form"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/django_utils/django_utils.ui:73
msgid "Pattern Model"
msgstr ""

#: src/plugins/expand/expands_completion_model.py:34
msgctxt "@label:listbox"
msgid "Expands Available"
msgstr ""

#: src/plugins/expand/jinja_stuff.py:109
#, fuzzy
#| msgctxt "@info:tooltip"
#| msgid "No such file <filename>%1</filename>"
msgctxt "@info:tooltip"
msgid "Template file not found <filename>%1</filename>"
msgstr "Няма файл <filename>%1</filename>"

#: src/plugins/expand/jinja_stuff.py:132
msgctxt "@info:tooltip"
msgid "Template file error [<filename>%1</filename>]: <status>%2</status>"
msgstr ""

#: src/plugins/expand/udf.py:125
msgctxt "@info"
msgid "end of file reached"
msgstr ""

#: src/plugins/expand/udf.py:131
msgctxt "@info"
msgid "end of line reached while searching for <icode>%1</icode>"
msgstr ""

#: src/plugins/expand/udf.py:204
msgctxt "@title:window"
msgid "Parse error"
msgstr "Грешка при обработка"

#: src/plugins/expand/udf.py:213
msgctxt "@info:tooltip"
msgid "Expansion \"<icode>%1</icode>\" not found"
msgstr ""

#: src/plugins/expand/udf.py:250
msgctxt "@info"
msgid "Traceback (most recent call last):<nl/>"
msgstr ""

#: src/plugins/expand/udf.py:259
msgctxt "@info"
msgid "<link url=\"%1\">%2</link>"
msgstr "<link url=\"%1\">%2</link>"

#: src/plugins/expand/udf.py:264
msgctxt "@info"
msgid ""
"File <filename>\"(/[^\n"
"]+)\"</filename>, line"
msgstr ""

#: src/plugins/expand/udf.py:271
msgctxt "@info:tooltip"
msgid "<bcode>%1</bcode>"
msgstr "<bcode>%1</bcode>"

#: src/plugins/format.py:124 src/plugins/format.py:157
#: src/plugins/format.py:209 src/plugins/format.py:242
#: src/plugins/format.py:267
msgctxt "@info"
msgid ""
"Misbalanced brackets: at <numid>%1</numid>,<numid>%2</numid> and <numid>%3</"
"numid>,<numid>%4</numid>"
msgstr ""

#: src/plugins/format.py:328 src/plugins/format.py:339
#: src/plugins/format.py:355 src/plugins/format.py:401
#: src/plugins/format.py:412 src/plugins/format.py:428
msgctxt "@info:tooltip"
msgid "Failed to parse C++ expression:<nl/><message>%1</message>"
msgstr ""

#: src/plugins/format.py:340 src/plugins/format.py:413
msgctxt "@info:tooltip"
msgid "Did not find anything to format"
msgstr ""

#: src/plugins/gid/__init__.py:195
msgid "File"
msgstr "Файл"

#: src/plugins/gid/__init__.py:195
msgid "Match"
msgstr "Съвпадение"

#: src/plugins/gid/__init__.py:360
msgid "Filter '%1' is not a valid regular expression"
msgstr ""

#: src/plugins/gid/__init__.py:360
msgid "Invalid filter"
msgstr "Неправилен филтър"

#: src/plugins/gid/__init__.py:392
msgid "Scanned %1 of %2 files in %3 seconds"
msgstr ""

#: src/plugins/gid/__init__.py:393
msgid "Scan more files?"
msgstr "Да се претърсят ли още файлове?"

#: src/plugins/gid/__init__.py:393
msgid "All Files"
msgstr "Всички файлове"

#: src/plugins/gid/__init__.py:393
msgid "More Files"
msgstr "Още файлове"

#: src/plugins/gid/__init__.py:471
msgid "gid Search"
msgstr ""

#: src/plugins/gid/__init__.py:613
msgid "ID database error"
msgstr ""

#: src/plugins/gid/__init__.py:630
#, no-python-format
msgid "'%1' does not contain '%2'"
msgstr "\"%1\" не съдържа \"%2\""

#: src/plugins/gid/__init__.py:630
#, python-format
msgid "Cannot use %i"
msgstr ""

#: src/plugins/gid/__init__.py:711
msgctxt "@item:inmenu"
msgid "GNU idutils"
msgstr ""

#: src/plugins/gid/__init__.py:712
msgctxt "@title:group"
msgid "<command section='1'>gid</command> token Lookup and Navigation"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, labelIdFile)
#: src/plugins/gid/config.ui:12
msgid "ID file:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KUrlRequester, idFile)
#: src/plugins/gid/config.ui:22
msgid "Name of ID file, as generated by mkid(1)."
msgstr ""

#. i18n: ectx: property (filter), widget (KUrlRequester, idFile)
#: src/plugins/gid/config.ui:26
msgid ""
"ID\n"
"*|All Files"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, labelKeySize)
#: src/plugins/gid/config.ui:33
msgid "Complete tokens after:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, keySize)
#: src/plugins/gid/config.ui:43
msgid "Minimum length of token before completions will be shown."
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: src/plugins/gid/config.ui:59
msgid "Transform Filenames"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, labelSrcIn)
#: src/plugins/gid/config.ui:65
msgid "Replace file prefix ending with key:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, srcIn)
#: src/plugins/gid/config.ui:75
msgid "Discard the first part of the file name ending with this key."
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, labelSrcOut)
#: src/plugins/gid/config.ui:82
msgid "With this file prefix:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, srcOut)
#: src/plugins/gid/config.ui:103
#, no-c-format
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/"
"REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Ubuntu'; font-size:9pt; font-"
"weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Replacement prefix. To use "
"the prefix of the ID file ending with the key, use %{idPrefix}. This can be "
"used to work with remotely mounted Clearcase views, for example, set:</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">ID "
"file:                                   /view/myview/<span style=\" font-"
"weight:600;\">topdir</span>/ID </p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Replace prefix "
"ending:     /<span style=\" font-weight:600;\">topdir</span> </p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">With "
"prefix:                         %{idPrefix}/<span style=\" font-weight:600;"
"\">topdir</span> </p>\n"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Or, to use a pre-generated "
"ID file with a different workspace, set:</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">ID "
"file:                                   /snapshots/<span style=\" font-"
"weight:600;\">topdir</span>/ID </p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Replace prefix "
"ending:     /<span style=\" font-weight:600;\">topdir</span> </p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">With "
"prefix:                         /myworkspace/<span style=\" font-weight:600;"
"\">topdir</span> </p></body></html>"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: src/plugins/gid/config.ui:113
msgid "Highlight Matches"
msgstr "Осветяване на съвпаденията"

#. i18n: ectx: property (text), widget (QLabel, labelUseEtags)
#: src/plugins/gid/config.ui:119
msgid "Highlight definitions using etags(1):"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QCheckBox, useEtags)
#: src/plugins/gid/config.ui:129
msgid "Use etags(1) to find definitions, and highlight them."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, useEtags)
#: src/plugins/gid/config.ui:132
msgid "Enabled"
msgstr "Включено"

#. i18n: ectx: property (text), widget (QLabel, labelUseSuffixes)
#: src/plugins/gid/config.ui:139
msgid "Highlight files with suffixes:"
msgstr "Осветяване на файлове с разширения:"

#. i18n: ectx: property (whatsThis), widget (KLineEdit, useSuffixes)
#: src/plugins/gid/config.ui:149
msgid "Use .h;.hxx to highlight files which may contain declarations."
msgstr ""

#. i18n: ectx: Menu (gid)
#: src/plugins/gid/gid_ui.rc:10
msgid "&Gid"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KHistoryComboBox, filter)
#: src/plugins/gid/tool.ui:17
#, no-c-format
msgid ""
"A regular expression which must also be matched. Use %{token} to include the "
"token.\n"
"\n"
"This can be used to get the effect of full text searching for strings which "
"contain the token and match the filter."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KHistoryComboBox, token)
#: src/plugins/gid/tool.ui:33
msgid ""
"Find a symbol, filename or other token using auto-completion. Hit return to "
"lookup occurrences within files."
msgstr ""

#. i18n: ectx: property (text), widget (QPushButton, settings)
#: src/plugins/gid/tool.ui:43
msgid "Settings..."
msgstr "Настройки..."

#. i18n: ectx: property (text), widget (QLabel, labelToken)
#: src/plugins/gid/tool.ui:50
msgid "Token:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QTableView, matches)
#: src/plugins/gid/tool.ui:64
msgid "Filtered matches for the token. Activate a match to jump to it."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QTableView, history)
#: src/plugins/gid/tool.ui:84
msgid "Stack of previous locations. Activate an item to jump to it."
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, labelFilter)
#: src/plugins/gid/tool.ui:104
msgid "Filter:"
msgstr "Филтър:"

#: src/plugins/js_utils/__init__.py:41
msgctxt "@item:inmenu"
msgid "JavaScript Utilities"
msgstr ""

#: src/plugins/js_utils/__init__.py:42
msgctxt "@title:group"
msgid "JavaScript Utilities Options"
msgstr ""

#: src/plugins/js_utils/js_autocomplete.py:33
msgctxt "@title:menu"
msgid "JavaScript autocomplete"
msgstr ""

#: src/plugins/js_utils/js_autocomplete.py:52
msgctxt "@title:menu"
msgid "jQuery autocomplete"
msgstr ""

#: src/plugins/js_utils/js_lint.py:72
msgctxt "@info:status"
msgid ""
"<p>\n"
"            Additionally to free software licenses like GPL and MIT,\n"
"            this functionality requires you to accept the following "
"conditions:\n"
"            </p><p>%1</p><p>\n"
"            Do you want to accept and download the functionality?\n"
"            </p>"
msgstr ""

#: src/plugins/js_utils/js_lint.py:78
msgctxt "@title:window"
msgid "Accept license?"
msgstr ""

#: src/plugins/js_utils/js_lint.py:88
msgctxt "@info:status"
msgid "No acceptable linter named %1!"
msgstr ""

#: src/plugins/js_utils/js_lint.py:111
msgctxt "@info:status"
msgid "Download failed"
msgstr ""

#: src/plugins/js_utils/js_lint.py:130
msgctxt "@info:status"
msgid "<application>%1</application> OK"
msgstr ""

#: src/plugins/js_utils/js_lint.py:146
msgctxt "@info:status"
msgid "<application>%1</application> Errors:"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, jsonConfig)
#: src/plugins/js_utils/js_utils.ui:17
msgid "JSON config"
msgstr "Настройка на JSON"

#. i18n: ectx: property (text), widget (QLabel, jsonIndentLabel)
#: src/plugins/js_utils/js_utils.ui:23
msgid "JSON Indent"
msgstr "Отстъп в JSON"

#. i18n: ectx: property (text), widget (QLabel, jsonEncodingLabel)
#: src/plugins/js_utils/js_utils.ui:40
msgid "JSON encoding"
msgstr "Кодировка на JSON"

#. i18n: ectx: property (value), widget (QLineEdit, jsonEncoding)
#: src/plugins/js_utils/js_utils.ui:50
msgid "utf-8"
msgstr "utf-8"

#. i18n: ectx: property (title), widget (QGroupBox, menuConfig)
#: src/plugins/js_utils/js_utils.ui:60
#, fuzzy
#| msgid "JSON config"
msgid "Menu config"
msgstr "Настройка на JSON"

#. i18n: ectx: property (text), widget (QLabel, lintOnSaveLabel)
#: src/plugins/js_utils/js_utils.ui:66
msgid "Lint when saving"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, jsAutocompletionLabel)
#: src/plugins/js_utils/js_utils.ui:79
msgid "JavaScript autocompletion"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, jQueryAutocompletionLabel)
#: src/plugins/js_utils/js_utils.ui:92
msgid "jQuery autocompletion"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, linterLabel)
#: src/plugins/js_utils/js_utils.ui:105
msgid "Linter"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, jQueryReadyConfig)
#: src/plugins/js_utils/js_utils.ui:121
msgid "jQuery ready Snippet"
msgstr ""

#. i18n: ectx: Menu (javascript)
#: src/plugins/js_utils/js_utils_ui.rc:10
msgid "&JavaScript"
msgstr ""

#: src/plugins/js_utils/json_pretty.py:55
msgctxt "@info:status"
msgid "This selected text is not valid JSON: <message>%1</message>"
msgstr ""

#: src/plugins/libkatepate/autocomplete.py:44
msgid "Autopate"
msgstr ""

#: src/plugins/libkatepate/decorators.py:64
msgctxt "@info:tooltip placeholder is a mime-type"
msgid "This action has no sense for <command>%1</command> documents"
msgstr ""

#: src/plugins/libkatepate/decorators.py:84
msgctxt "@title:window"
msgid "Sorry..."
msgstr ""

#: src/plugins/libkatepate/decorators.py:87
msgctxt "@info:tooltip placeholder is a mime-type"
msgid "<command>%1</command> is unsupported document type."
msgstr ""

#: src/plugins/libkatepate/decorators.py:114
msgctxt "@info:tooltip"
msgid "This operation is for block selection mode"
msgstr ""

#: src/plugins/libkatepate/decorators.py:119
msgctxt "@info:tooltip"
msgid "This operation is for normal selection mode"
msgstr ""

#: src/plugins/libkatepate/decorators.py:137
msgctxt "@info:tooltip"
msgid "This operation cannot be performed while text is selected"
msgstr ""

#: src/plugins/libkatepate/decorators.py:139
msgctxt "@info:tooltip"
msgid "Text must be selected to perform this operation"
msgstr ""

#: src/plugins/libkatepate/errors.py:73
msgid ""
"\n"
"\n"
"And other errors"
msgstr ""

#: src/plugins/libkatepate/errors.py:82
msgctxt "@title:window"
msgid "Success"
msgstr ""

#: src/plugins/libkatepate/errors.py:106
msgid "~*~ Position: (%1, %2)"
msgstr ""

#: src/plugins/libkatepate/errors.py:108
msgid "~*~ Line: %1"
msgstr ""

#: src/plugins/python_autocomplete/python_autocomplete.py:52
msgid "Python autocomplete"
msgstr ""

#: src/plugins/python_autocomplete/python_autocomplete.py:140
msgid "There was a syntax error in this file:"
msgstr ""

#: src/plugins/python_autocomplete/python_autocomplete.py:142
msgctxt "%1 is error message"
msgid ""
"%1\n"
"  * file: %2"
msgstr ""
"%1\n"
"  * файл: %2"

#: src/plugins/python_autocomplete/python_autocomplete.py:144
msgctxt "%1 is error message"
msgid ""
"%1\n"
"  * text: %2"
msgstr ""
"%1\n"
"  * текст: %2"

#: src/plugins/python_autocomplete/python_autocomplete.py:146
msgctxt "%1 is error message"
msgid ""
"%1\n"
"  * line: %2"
msgstr ""
"%1\n"
"  * ред: %2"

#: src/plugins/python_autocomplete_jedi.py:75
msgctxt "@label:listbox"
msgid "Python Jedi autocomplete"
msgstr ""

#. i18n: ectx: attribute (title), widget (QWidget, generalTab)
#: src/plugins/python_console_classic/config.ui:10
msgid "General"
msgstr "Общи"

#. i18n: ectx: property (whatsThis), widget (KLineEdit, ps2)
#: src/plugins/python_console_classic/config.ui:16
msgid "Continuation prompt"
msgstr ""

#. i18n: ectx: property (text), widget (KLineEdit, ps2)
#: src/plugins/python_console_classic/config.ui:19
msgid "..."
msgstr "..."

#. i18n: ectx: property (whatsThis), widget (KLineEdit, ps1)
#: src/plugins/python_console_classic/config.ui:26
msgid "Main prompt"
msgstr ""

#. i18n: ectx: property (text), widget (KLineEdit, ps1)
#: src/plugins/python_console_classic/config.ui:29
msgid ">>>"
msgstr ">>>"

#. i18n: ectx: property (text), widget (QLabel, labelPs2)
#: src/plugins/python_console_classic/config.ui:36
msgid "Continuation Prompt:"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, labelPs1)
#: src/plugins/python_console_classic/config.ui:46
msgid "Main Prompt:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KFontChooser, font)
#: src/plugins/python_console_classic/config.ui:56
msgid "Main display font"
msgstr ""

#. i18n: ectx: attribute (title), widget (QWidget, coloursTab)
#: src/plugins/python_console_classic/config.ui:64
msgid "Highlighting"
msgstr "Осветяване"

#. i18n: ectx: property (text), widget (QLabel, promptLabel)
#: src/plugins/python_console_classic/config.ui:70
msgid "Prompt:"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, stringLabel)
#: src/plugins/python_console_classic/config.ui:83
msgid "String:"
msgstr "Низ:"

#. i18n: ectx: property (text), widget (QLabel, nameLabel)
#: src/plugins/python_console_classic/config.ui:96
msgid "Name:"
msgstr "Име:"

#. i18n: ectx: property (text), widget (QLabel, integerLabel)
#: src/plugins/python_console_classic/config.ui:109
msgid "Integer:"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, floatLabel)
#: src/plugins/python_console_classic/config.ui:122
msgid "Float:"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, helpLabel)
#: src/plugins/python_console_classic/config.ui:135
msgid "Help:"
msgstr "Помощ:"

#. i18n: ectx: property (text), widget (QLabel, exceptionLabel)
#: src/plugins/python_console_classic/config.ui:148
msgid "Exception:"
msgstr "Изключение:"

#: src/plugins/python_console_classic/python_console_classic.py:241
msgid ""
"Type help(object) for help on object.\n"
"Type an expression to evaluate the expression."
msgstr ""

#: src/plugins/python_console_classic/python_console_classic.py:552
#, fuzzy
#| msgid "Python Plugins"
msgctxt "@title:tab"
msgid "Python Console"
msgstr "Приставки на Python"

#: src/plugins/python_console_classic/python_console_classic.py:558
#, fuzzy
#| msgid "Python Plugins"
msgctxt "@item:inmenu"
msgid "Python Console"
msgstr "Приставки на Python"

#: src/plugins/python_console_classic/python_console_classic.py:559
#, fuzzy
#| msgid "System Settings"
msgctxt "@title:group"
msgid "Python Console Settings"
msgstr "Системни настройки"

#: src/plugins/python_console_ipython/python_console_ipython.py:127
msgid ""
"\n"
"Failed to import “%1” from “%2” reason: %3"
msgstr ""

#: src/plugins/python_console_ipython/python_console_ipython.py:130
msgid ""
"\n"
"From “%1” autoload: %2"
msgstr ""

#: src/plugins/python_console_ipython/python_console_ipython.py:147
msgid ""
"\n"
"\n"
"Cannot load this project: %1. Python Version incompatible"
msgstr ""

#: src/plugins/python_console_ipython/python_console_ipython.py:155
msgid ""
"\n"
"\n"
"Load project: %1"
msgstr ""

#: src/plugins/python_console_ipython/python_console_ipython.py:179
msgid ""
"\n"
"Available variables are everything from pylab, “%1”, and this console as "
"“console”"
msgstr ""

#: src/plugins/python_console_ipython/python_console_ipython.py:266
#, fuzzy
#| msgid "Python Plugins"
msgctxt "@item:inmenu"
msgid "IPython Console"
msgstr "Приставки на Python"

#: src/plugins/python_console_ipython/python_console_ipython.py:267
#, fuzzy
#| msgid "System Settings"
msgctxt "@title:group"
msgid "IPython Console Settings"
msgstr "Системни настройки"

#: src/plugins/python_console_ipython/python_console_ipython.py:282
#, fuzzy
#| msgid "Python Plugins"
msgctxt "@title:tab"
msgid "IPython Console"
msgstr "Приставки на Python"

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_console_ipython/python_console_ipython.ui:9
msgid "Scrollback lines count (needs close and open kate editor)"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_console_ipython/python_console_ipython.ui:23
msgid "GUI completion type (needs close and open kate editor)"
msgstr ""

#. i18n: ectx: property (text), item, widget (QComboBox, guiCompletionType)
#: src/plugins/python_console_ipython/python_console_ipython.ui:31
msgid "Drop List"
msgstr ""

#. i18n: ectx: property (text), item, widget (QComboBox, guiCompletionType)
#: src/plugins/python_console_ipython/python_console_ipython.ui:36
msgid "Normal"
msgstr "Нормално"

#: src/plugins/python_utils/python_checkers/all_checker.py:62
#: src/plugins/python_utils/python_checkers/pep8_checker.py:84
msgid "You must save the file first"
msgstr "Трябва първо да запишете файла"

#: src/plugins/python_utils/python_checkers/parse_checker.py:49
msgid "Parse code Ok"
msgstr ""

#: src/plugins/python_utils/python_checkers/parse_checker.py:54
msgid "Parse code Errors:"
msgstr ""

#: src/plugins/python_utils/python_checkers/pep8_checker.py:125
msgid "Pep8 Ok"
msgstr ""

#: src/plugins/python_utils/python_checkers/pep8_checker.py:135
msgid "Pep8 Errors:"
msgstr ""

#: src/plugins/python_utils/python_checkers/pyflakes_checker.py:78
msgid "Problem decoding source"
msgstr ""

#: src/plugins/python_utils/python_checkers/pyflakes_checker.py:112
msgid "Pyflakes Ok"
msgstr ""

#: src/plugins/python_utils/python_checkers/pyflakes_checker.py:125
msgid "Pyflakes Errors:"
msgstr ""

#: src/plugins/python_utils/python_settings.py:23
msgid "Checkers"
msgstr ""

#: src/plugins/python_utils/python_settings.py:28
msgid "__init__ method"
msgstr ""

#: src/plugins/python_utils/python_settings.py:30
msgid "call super"
msgstr ""

#: src/plugins/python_utils/python_settings.py:32
msgid "call recursive"
msgstr ""

#: src/plugins/python_utils/python_settings.py:34
msgid "Check all"
msgstr ""

#: src/plugins/python_utils/python_settings.py:38
msgid "Syntax Errors"
msgstr "Синтактични грешки"

#: src/plugins/python_utils/python_settings.py:45
msgid "Python Utils"
msgstr "Инструменти на Python"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: src/plugins/python_utils/python_utils.ui:11
msgid "PEP-8 config"
msgstr "Настройки на PIP-8"

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_utils/python_utils.ui:17
msgid "Check PEP8 when save"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_utils/python_utils.ui:28
msgid "Ignore PEP8 errors"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_utils/python_utils.ui:44
msgid "Check PyFlakes when save"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_utils/python_utils.ui:59
msgid "Check Syntax Errors when save"
msgstr "Проверка за синтактични грешки при запис"

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/python_utils/python_utils.ui:74
msgid "IPython pdb snippet"
msgstr ""

#. i18n: ectx: property (value), widget (QLineEdit, ipdbSnippet)
#: src/plugins/python_utils/python_utils.ui:81
msgid "import ipdb; ipdb.set_trace()"
msgstr ""

#: src/plugins/try_open_file.py:46
#, fuzzy
#| msgctxt "@info:tooltip"
#| msgid "No such file <filename>%1</filename>"
msgctxt "@info:tooltip"
msgid "Unable to open the selected document: <filename>%1</filename>"
msgstr "Няма файл <filename>%1</filename>"

#: src/plugins/try_open_file.py:69
msgctxt "@info:tooltip"
msgid "Selected text doesn't looks like a valid URI"
msgstr ""

#: src/plugins/try_open_file.py:101
#, fuzzy
#| msgctxt "@info:tooltip"
#| msgid "No such file <filename>%1</filename>"
msgctxt "@ation:inmenu"
msgid "Open <filename>%1</filename>"
msgstr "Няма файл <filename>%1</filename>"

#: src/plugins/try_open_file.py:105
msgctxt "@ation:inmenu"
msgid "Open selected document"
msgstr ""

#: src/plugins/xml_pretty.py:81
msgctxt "@info:tooltip"
msgid "The selected text is not valid XML: %1"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/xml_pretty.ui:9
msgid "Indent:"
msgstr "Отстъп:"

#. i18n: ectx: property (text), widget (QLabel, label)
#: src/plugins/xml_pretty.ui:29
msgid "New line:"
msgstr "Нов ред:"

#. i18n: ectx: property (value), widget (KLineEdit, indent)
#. i18n: ectx: property (value), widget (KLineEdit, newl)
#: src/plugins/xml_pretty.ui:36 src/plugins/xml_pretty.ui:46
msgid "\\\\t"
msgstr "\\\\t"

#. i18n: ectx: Menu (xml)
#: src/plugins/xml_pretty_ui.rc:10
msgid "&XML"
msgstr ""

#. i18n: ectx: Menu (help)
#: src/ui.rc:15
#, fuzzy
#| msgid "Help:"
msgid "&Help"
msgstr "Помощ:"

#~ msgid "Actions"
#~ msgstr "Действия"

#~ msgid "Description:"
#~ msgstr "Описание:"

#~ msgid "Shortcut:"
#~ msgstr "Бърз клавиш:"

#~ msgid "Menu:"
#~ msgstr "Меню:"

#~ msgid "Icon:"
#~ msgstr "Икона:"

#~ msgid "Action:"
#~ msgstr "Действие:"

#~ msgid "Title:"
#~ msgstr "Заглавие:"

#~ msgid "Page:"
#~ msgstr "Страница:"

#, fuzzy
#~| msgid "Python Plugins"
#~ msgid "Pate Plugin"
#~ msgstr "Приставки на Python"

#~ msgid "Reload Plugins"
#~ msgstr "Презареждане на приставките"

#, fuzzy
#~| msgid "Documentation"
#~ msgctxt "@title:tab"
#~ msgid "Documentation"
#~ msgstr "Документация"

#~ msgctxt "@action:inmenu"
#~ msgid "Insert Color"
#~ msgstr "Вмъкване на цвят"

#~ msgctxt "@action:inmenu a verb"
#~ msgid "Expand"
#~ msgstr "Разширяване"

#~ msgid "Hidden"
#~ msgstr "Скрито"

#~ msgid "Loaded"
#~ msgstr "Заредено"